SOAP version mismatch between WSIT and WCF
Submitted by mla on Wed, 12/03/2008 - 11:51
@WebService()
@javax.xml.ws.BindingType(value="http://java.sun.com/xml/ns/jaxws/2003/05/soap/bindings/HTTP/")
public class HelleWorld {
/**
* Web service operation
*/
@WebMethod(operationName = "Hi")
public String Hi() {
//TODO write your implementation code here:
return "HelloWorld";
}
}
