Hello Doug,
ANT output is from (other) example:

  | package cz.qds.wsdemo.sbi;
  | 
  | import javax.jws.WebService;
  | import javax.jws.WebMethod;
  | import java.rmi.Remote;
  | import java.rmi.RemoteException;
  | import javax.jws.soap.SOAPBinding;
  | import javax.jws.soap.SOAPBinding.Style;
  | 
  | @WebService
  | @SOAPBinding(style=Style.RPC)
  | public interface ExampleRemote extends Remote
  | {
  |    @WebMethod int add(int x, int y);
  |    @WebMethod int subtract(int x, int y);
  | }
  | 

Thanks,
Leonell

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3969660#3969660

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3969660
_______________________________________________
jboss-user mailing list
[email protected]
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to