I am using SOAP UI Pro and when accessing any of the exposed methods in the services it always gives me SocketTimeOut Exception:ReadTimeout

Any idea???

link|improve this question

61% accept rate
feedback

1 Answer

I had the same problem until I changed the endpoint binding from "wsHttpBinding" to "basicHttpBinding" in the config file. "wsHttpBinding" incorporates a lot of the newer web services standards, which means that older clients may have trouble using this binding. "basicHttpBinding" works a lot like the older asmx web services. Here is a good link describing the differences: http://www.codeproject.com/KB/WCF/HttpBinding.aspx

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.