Mmm, I must create a zip file with the class file that describes the web service like
this:
| @WebService
| @SOAPBinding(style = SOAPBinding.Style.RPC)
| public class Test
| {
| @WebMethod
| public String echo(String input)
| {
| return input;
| }
| }
|
In the test.war, I insert test.class and the web.xml.
But my problems is the web.xml file, how can I create this?
Is it generated automatically by something? And how?
Thanks, bye bye.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4096437#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...