java Programming Glossary: addservice
Publishing a WS with Jax-WS Endpoint http://stackoverflow.com/questions/3680600/publishing-a-ws-with-jax-ws-endpoint If I try to get the WSDL at http localhost 1234 AddService wsdl it works fine. Trying to recieve it at http 192.168.0.133.. fine. Trying to recieve it at http 192.168.0.133 1234 AddService wsdl I don't receive anything. This address is the same as localhost... import javax.xml.ws.Endpoint @WebService public class AddService @WebMethod public int add int a int b return a b public static..
|