I'm running into a problem when modifying a WCF service.
The original service method looks like this:
[OperationContract(IsOneWay = true, IsInitiating = true, IsTerminating = false)]
void Login(string userName, string password);
This method works.
The problem is that when I change it to this:
[OperationContract(IsOneWay = false, IsInitiating = true, IsTerminating = false)]
bool Login(string userName, string password);
It stops working and times out.
Any ideas?