Tomáš Kraus
Tomáš Kraus
-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...
JAX-WS supports "Java first" approach. Currently, the non-primitive parameters of a WebMethod are marked minOccurs="0" in a generated WSDL, even when I want them to be mandatory in the WSDL....
Nowadays JAX-WS solution offers session aware services only via cookie which is not customizable. This causes problems when having several different services on the same server (host) since cookies are...
I am using wsimport to generate a Java client API from my WSDL file and have experienced an error with enum type generation. I have WSDL as follows: The applicable...
JAXWS wsimport generate code as follows: A Header class @XmlRootElement(name = "MyCustomHeader" ) public class MyCustomHeader { ... } A PortType class with the following method: @WebMethod(operationName = "AnOperation", action...
as of now ws tools support 'fork' attribute but for this to be useful by IDE's 'jvm' attribute has to be supported as well (use-case: cross-compilation - ie IDE runs...
Calling MessageContextFactory.createContext(InputStream, MimeHeaders) fails with: java.lang.IllegalArgumentException: Undefined property com.sun.xml.ws.api.message.packet.inbound.transport.headers at org.jvnet.ws.message.BasePropertySet.put(BasePropertySet.java:395) at org.jvnet.ws.message.BaseDistributedPropertySet.put(BaseDistributedPropertySet.java:171) at com.sun.xml.ws.api.message.MessageContextFactory.createContext(MessageContextFactory.java:140) at com.oracle.webservices.disiimpl.client.ClientResponseTransportImpl.createContext(ClientResponseTransportImpl.java:142) #### Environment JDK 6, JAX-WS RI jaxws22 branch trunk #### Affected Versions [2.2.8]...
Using JAX-WS-RI or Metro I can write a WebService using the com.sun.xml.ws.api.server.AsyncProvider interface. I can choose to get the whole message including the SOAP headers import javax.xml.transform.Source; import com.sun.xml.ws.api.server.AsyncProvider; import...
I reported this originally on the jaxb mailing list ([http://java.net/projects/jaxb/lists/users/archive/2011-12/message/16):](http://java.net/projects/jaxb/lists/users/archive/2011-12/message/16):) I have created a JAX-WS client and am trying to execute a webservice that has a nillable output. As long...