views:

423

answers:

1

I want to expose a web service on one node that defers onto the same web service contract on another node, basically then, proxy the web service, both nodes running glassfish.

I am using netbeans and jax-ws and I cannot get it to work. I generate the web service server part and the web service client part and use the same dto's. So the service method is very simple, just passes the request on.

My current problem is that it is insiting on using ws-coordination to "coordinate" and this uses ssl to connect between the servers and I haven't configured this so it fails.

using Glassfish 2.1 and netbeans 6.7

Has anyone successfully done this? Does anyone know how to disable ws-coordination? I'd rather not use ws-coordination as I definitely don't need it and don't want to have to configure ssl.

A: 

I've done something similar using (AsyncProvider)-based Web services.

However, you might need to write your own TubelineAssembler to create a tubeline without the Tube that processes the ws-coordination related elements. An example of how to create your own TubelineAssembler can be found here.

wierob
So I can't do it with regular synchronous web services?And going so far as using tubes to remove the impact of ws-coordination, it should be easier than that.
Michael Wiles