Top "Jax-ws" questions

JAX-WS is the JSR 224 defining a Java API for XML-Based Web Services

Changing the default XML namespace prefix generated with JAXWS

I am using JAXWS to generate a WebService client for a Java Application we're building. When JAXWS build its XMLs …

java web-services jax-ws xml-namespaces webservice-client
How does a wsimport generated client work?

Before anything else, I want you to know that I can already connect to the web service server. I'm asking …

java web-services jax-ws axis2 wsimport
What's the difference between <binding> and <portType> in WSDL?

Both <binding> and <portType> seem to define an operation and its message. I don't quite understand, …

xml web-services wsdl jax-ws
@XmlElement(required=true) for @WebParam does not work

I'm building web service using JAX-WS. I have a strange problem that the annotation @XmlElement(required=true) for @WebParam works …

java annotations jax-ws required
How to choose between JAX-RS and JAX-WS web services implementation?

In what contexts is it better to use one over the other and why? Thanks!

java jax-ws jax-rs
wsimport - how to generate service endpoint classes and JAXB classes in separate projects/folders

We are using a top-down approach for a project with multiple web services (multiple WSDL's). Each web service needs to …

java web-services jaxb jax-ws wsimport
How to use wsimport when server expects client certificate?

I have a web service using mutual SSL authentication. I can access it just fine in the browser when I …

java web-services jax-ws wsimport
WebServices : bare vs wrapped?

I generate some WebServices out of some existing wsdl I use Maven to do this but some webservices are generated …

java web-services jax-ws
JAX-WS vs JAX-RS For RESTful Web Service

Hi I have worked with JAX-WS for SOAP based webservices. Now I want to use REST because REST have advantages …

java rest soap jax-ws jax-rs
How does one intercept a request during the Jersey lifecycle?

I've used Jersey for the better part of a year now and have just stumbled upon a problem to which …

java api jax-ws jersey jax-rs