metro-jax-ws
metro-jax-ws copied to clipboard
metro-jax-ws
I'd wish that wsimports generates the service name QName as a publicly accessible constant field in each generated @WebServiceClient. I think it should be permitted because QName is an immutable...
When some exception is thrown which is not modeled, the following is returned: ``` S:Server org.xml.sax.SAXParseException ``` The WSDL uses sole SOAP 1.1, still the WSDL generated at runtime adds...
Currently, it is impossible to throw either WebServiceExceptions or customs excpetions from WSDL which have a different faultcode than S:Server. This is really annoying because you neither can provide custom...
Same issue as #709. It is still not resolved C:\javadev\prj\wsimport\other>wsimport -version JAX-WS RI 2.2.4-b01 C:\javadev\prj\wsimport\other>xjc -episode common.episode AogMessages.xsd parsing a schema... compiling a schema... cz\komix\egate\aog\messages\ObjectFactory.java cz\komix\egate\aog\messages\PingRequest.java cz\komix\egate\aog\messages\PingResponse.java cz\komix\egate\aog\messages\package-info.java cz\komix\egate\aog\types\ObjectFactory.java cz\komix\egate\aog\types\PingData.java...
[http://stackoverflow.com/questions/15487762/publish-and-stop-endpoint-web-service-in-java](http://stackoverflow.com/questions/15487762/publish-and-stop-endpoint-web-service-in-java) #### Affected Versions [2.2.8] Source: [https://github.com/javaee/metro-jax-ws/issues/1162](https://github.com/javaee/metro-jax-ws/issues/1162) Author: glassfishrobot
When JAX-WS RI is deployed on the latest versions of Java 7 or Java 8, each call to javax.xml.ws.Service.getPort() generates a new set of proxy classes. This fills up PermGen/MetaSpace....
At the moment, a one-arg constructor with type _java.net.URL_ is only generated for JAX-WS 2.2, when indicating target=2.2 (default) to _wsimport_. It should also be generated starting from target=2.0, as...
We have a WSDL which contains the following: ``` ... binding: ``` After SEI generation and endpoint publication the JAX-WS generated WSDL collapses both into one message: ``` ``` Though,...
My WSDL has one service and one port: ``` ``` Then wiring the stuff with Spring: ``` ``` As you can see, I am using the same instance on two...
Consider this output model: ``` ``` It happens to me that the source where I obtain the data for response was missing the revision id and uid. A SOAP fault...