Schema validation not working in EAP 6.3.2
Hello,
I've a SOAP Service running on EAP 6.3.2. Recently I recognized that my Service isn't any more validating the messages against the xsd.
It worked with EAP 6.2 and now we use the same configuration :
true ${jboss.bind.address:127.0.0.1}
Here my webservice:
@Stateless @WebServiceProvider(serviceName = "BusinessWebservice", wsdlLocation = "META-INF/wsdl/BusinessWebservice.wsdl", targetNamespace = "http://smitch.ch/ws/", portName = "BusinessPort") @TransactionAttribute(TransactionAttributeType.REQUIRED) public class BusinessServiceImpl implements BusinessPort { //... }
The wsdl is in META-INF because the service is packed into an ejb, not a war. But exept the migration from EAP 6.2 to 6.3.2 it's exactly the same.
Has there changed something how to configure or is this a bug?
Thanks,
Mike
Responses