Re: JAX-WS Endpoint within a WOApplication

2012-10-02 Thread Matteo Centro
Yes, I don't know if it's Axis that is old or the stuff connecting to my app that sucks but with JAX-WS I solved the problem (of course I had to make a proxy on apache to be able to connect to port 8080). Now I need to find a way to make the endpoint link to the WOPort... I'll try your suggestion b

Re: JAX-WS Endpoint within a WOApplication

2012-10-02 Thread John Huss
The WO web service stuff is just a wrapper around Axis 1.4, which is a generic java library, so I would be surprised if it wouldn't work. That said, Axis 1.4 is quite old now, and using something newer is a good option. The port thing doesn't matter -- 8080 is just the standard J2EE port, but you

JAX-WS Endpoint within a WOApplication

2012-10-02 Thread Matteo Centro
Hi list, I'm trying to implement a webservice using JAX-WS after I concluded that the app that needs to talk with mine can't speak through WOWebServices... All the examples I found make a webservice server by javax.xml.ws.Endpoint.publish("http://localhost:8080/WS/NameOfService";, implementor);