Please tell me how to test WSHttpbinding with soapUI tool.In some sites i find below solutions but not working
SOLUTION1
Please follow the steps as mentioned below:
1.)Expose the service for the required Application with Wshttp bindings.
2.)In web.config file add the binding information as given below:
<wsHttpBinding>
wsHttpBinding>
3.)Reset IIS
4.)In SOAP UI Check Whether WS-A is enabled.
Trigger a request in SOAP UI...U will get the corresponding response...

IT IS NOT WORKING
SOLUTION2
[ServiceContract(SessionMode=SessionMode.Required)]
In the above change to [ServiceContract(SessionMode=SessionMode.Allowed)] this is working. But i need to use Required Only
How can i get rid of this problem ?
Replies
Know the answer? Post it — somebody with the same question will find it here.