WCF Web Services Exits SoapUI

I have the following WCF.Net 4.0 project:

[ServiceContract]
public interface EchoService {
    [OperationContract]
    void Ping();
}

[ServiceBehavior]
public class EchoServiceImpl : EchoService {
    public void Ping() { }
}

I deploy Wether in IIS or run in the debugger, when I connect from SoapUI and try to call the ping command, I end up with a timeout. My intention is to create a service that can be called from Java, but I can't even get the noop ping command to work now.

Is there a way to debug what happens?

+1
source share
2 answers

If you connect to the wsHttpBinding service and get timeouts in the SoapUI project

WS-A ( ). " WS-A", " wsa: " " " WSA:. "

( http://berendjdejong.wordpress.com/2011/03/18/soapui-and-wcf-service-testing/)

WCF.

WS-A http://www.soapui.org/SOAP-and-WSDL/using-ws-addressing.html

+1

wsHttpBinding - , IIS, .

0

All Articles