metro-jax-ws
metro-jax-ws copied to clipboard
metro-jax-ws
Hi, I am implementing the service for a wsdl published by another Software Vendor. The software vendor's client uses Axis2 and I am using JAX-WS RI for the server implementation...
Class com.sun.xml.ws.api.message.Packet, line 969 looks like this: String inputAction = AddressingUtils.getAction(this.getMessage().getMessageHeaders(), addressingVersion, soapVersion); For an invalid SOAP request getMessage() returns null, so the client gets this SOAP fault instead of...
culprit is in following method ``` private List getExternalFiles(List exts) { ... if (!file.exists()) { // then relative path ... file = new File(options.sourceDir.getAbsolutePath() + File.separator + ext); } ......
JAX-WS RI should have a possibility to generate WSDLs with inline xsd schema at runtime. Reasons: 1) Some parsers fail to validate created WSDL file with external xsd. 2) Many...
This issue was based while working on [GLASSFISH-19493](https://java.net/jira/browse/GLASSFISH-19493 "CDI dependency injection fails for JAXWS handler classes"). JAX-WS is calling handler's preDestory during WSEndpoint's dispose. This should be done only when...
com.sun.xml.ws.model.JavaMethodImpl throws Exception complaining @Action (addressing action) and @WebMethod.action (SOAPAction) does not match". The requirement of SOAPAction and wsa:Action being equivalent appears in the following specs: Web Services Addressing 1.0...
I have a Web Service created using JAX-WS, which accepts a Complex Type Input and returns back a string. It expects the SOAP message to have prefix in the methodName...
Use case: user wants to expose some existing logic through SOAP -assume one has some project with classes annotated with JAXB annotations and a schema generated from these classes (or...
-create two entities (or simple DTO for them), ie Customer and Order -create a web service for each entity with findAll() operation returning collection of given DTO (2 services, CustomerWS...
It would nice to have the samples distributed with Metro use Maven instead of Ant. (CXF and Jersey are already Maven-only). This would also be a good opportunity to update...