this implementation does not contain a WSDL definition and is not a SOAP 1.1
Posted
by
user1635118
on Stack Overflow
See other posts from Stack Overflow
or by user1635118
Published on 2012-08-30T06:23:38Z
Indexed on
2012/09/03
21:38 UTC
Read the original article
Hit count: 235
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 ?
© Stack Overflow or respective owner