I believe Jason and everyone are completely forgetting the usefulness of 
@WebParam here. See below:


  | @Remote @WebService @SOAPBinding(style = SOAPBinding.Style.RPC)
  | public interface CoreBackend
  | {
  |     @WebMethod public String startSession(@WebParam(name = "clientID") long 
clientID);
  |     @WebMethod public void endSession(@WebParam(name = "sessionToken") 
String sessionToken);
  |     @WebMethod public boolean login(@WebParam(name = "sessionToken") String 
sessionToken,
  |                                     @WebParam(name = "username") String 
username,
  |                                     @WebParam(name = "password") String 
password);
  |     @WebMethod public void logout(@WebParam(name = "sessionToken") String 
sessionToken);
  | }
  | 

--Scott


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

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

Reply via email to