Hi all, I developed a web service using jsr-181 that looks like this (i actually took most of the code from jboss wiki).
@WebService(name = "EndpointInterface", targetNamespace = "http://org.jboss.ws/samples/jsr181ejb", serviceName = "TestService") @SOAPBinding(style = SOAPBinding.Style.RPC) @Stateless @Remote(EJB3RemoteInterface.class) @RemoteBinding(jndiBinding = "ejb3/TestWS") public class TestWS implements EJB3RemoteInterface { @WebMethod public String echo(String input) { return input; } } I deploy the web service , and when i look inside jboss directories i can see that a WSDL file is generated during deployment. How can I control over the source and the name of the file? I guess it's via WSTOOLS, but I fail to find a good example for this. Thanks Yair View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3954279#3954279 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3954279 Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ JBoss-user mailing list JBoss-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/jboss-user