0
votes
1answer
217 views
Accessing the content of a JAX-WS Dispatch Response
I'm trying to access a web service with JAX-WS using:
Dispatch<Source> sourceDispatch = null;
sourceDispatch = service.createDispatch(portQName, Source.class, Service.Mode.P …
0
votes
1answer
11 views
Groovy & Jax-ws: @WebMethod annotation ignored
I recently found an example on implementing a We3bService with groovy and jax-ws:
the problem is that the @webmethod annotation seems to be ignored.
This is the source code of the …
3
votes
5answers
972 views
JAX-WS Loading WSDL from jar
I'm writing a fat client that makes use of a SOAP service for some features (bug reporting etc.)
I've got JAX-WS working fine, but by default (in netbeans at least) it fetches the …
0
votes
2answers
14 views
JAX-WS: How to Exclude a “member/field” in a Response Object (WS Response) that is inherited?
Hello Experts,
I have a WebService that returns as the result of the Invokation of the Web-Service a ResponseObject called "CustomerResponse". When I implement this object "from s …
1
vote
0answers
14 views
JBoss Web Services Behind IIS Through HTTPs
This is a tangled web that's woven, I suppose, but it really shouldn't be all that hard. Let me see if I can paint the picture:
I have written a web service, starting with a WSDL …
1
vote
3answers
118 views
JAXWS code generation and implementation along side Spring for JDK1.5
We're trying to generate source code stubs from a series of WSDLs (each with their own XSDs). We can do this fine and works perfectly under JDK1.6, however we need it to work under …
1
vote
1answer
25 views
Client catching Web Service User Exceptions [Java 6.0.17]
I am trying to send an EXCEPTION from a Web Server to a Client using JAX-WS ...
When the exception is thrown by the server the client does catch it ... but the contents are not the …
0
votes
0answers
6 views
Does metro support hot deployment?
Does metro support hot deployment?
If it supports, please give some explanation/details/links.
0
votes
0answers
2 views
Child Web Service Hiding Parent
For the purposes of code re-use, I have taken a web service which contains core functionality for my application and extended it to contain some additional, optional functionality. …
0
votes
2answers
457 views
Web service response is null, but SOAP message response is valid
I am writing a web service starting with writing the WSDL. I have been generating server-side skeleton code using wsimport and then writing my own implementing class. I'm running …
1
vote
2answers
46 views
setProperty must be overridden by all subclasses of SOAPMessage
I'm trying to deploy some web services in a WAR application on JBoss 5.1.0.
I have created the source files from an existing wsdl using JAX-WS tool wsgen. This created the Service …
1
vote
1answer
33 views
Problem calling (jax-ws) web service from within JBoss
I am trying to connect to a web service via a VPN from my server. I can connect to the wsdl and send a soap request using Curl (it gets a valid response too). The code I am using …
0
votes
1answer
27 views
How to hide interface methods in the web service when using @WebService’s `endpointInterface` attribute?
Is there a way to prevent a method from an interface used in @WebService's endpointInterface attribute to be exposed in the web service? I'm using the endpointInterface as that see …
0
votes
1answer
7 views
wsimport ant task assumptions and how to work around those
I use the ant task from jax-ws - wsimport to generate my dto's.
What I'm wanting to know is what assumptions does wsimport make? for example, w.r.t to the service endpoint and th …
1
vote
3answers
51 views
Deploying jax-ws on Tomcat
After noticing java 6 includes javax.xml.ws , I'm able can create a standalone web service.
How would I go about hosting that in tomcat 6 ?
