i am creating a simple SOAP web service.
i am to ensure that it runs on a tomcat web service.
im trying to implement this with JAX-WS (see code)
my question is: does the Endpoint.publish use the tomcat server to host this or is it a mini glassfish kind of server?
should i be extending UnicastRemoveObject or something similiar instead?
ideally it would be able to be packaged into a .WAR and dropped in the directory and just work.
It doesn't seem to work with my installed tomcat server as is because it says the port is already in use. I'm using Ubuntu karmic with the tomcat6 package installed, it could also be my user doesnt have permissions to publish to the running tomcat on 8080
i hope this question is clear enough
sample code:
@WebService
public class UserAttributes {
public static void main(String[] args) {
UserAttributes instance = new UserAttributes();
Endpoint.publish("http://localhost:8082/WebServices/userattributes",
instance);
}
public string Hello() {
return "Hello World";
}
}
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…