this implementation does not contain a WSDL definition and is not a SOAP 1.1
- by user1635118
I am trying to deploy a simple SOAP 1.2 web service to WebSphere v8. My service is
@Stateless
@WebService(serviceName = "MemberServices", portName = "MemberPort", endpointInterface = "gov.virginia.vita.edmsvc.ws.MemberWS")
@BindingType(value=SOAPBinding.SOAP12HTTP_BINDING)
@TransactionAttribute(TransactionAttributeType.REQUIRED)
public class MemberBean implements MemberWS, MemberBeanLocal {
....
}
However the server is throwing the following error:
"This implementation does not contain a WSDL definition and is not a SOAP 1.1 based binding. Per the JAXWS specification, a WSDL definition cannot be generated for this implementation.error"
this same service deploy successfully on Glashfish and JBoss, any ideas ?