Service service = Service.create(wsdlURL, serviceQName);
  | YourInterface proxy = (YourInterface)service.getPort(YourInterface.class);
  | // the following call enables cookies 
  | ((BindingProvider)proxy)
  |     .getRequestContext()
  |         .put(BindingProvider.SESSION_MAINTAIN_PROPERTY, true);
  | 
  | proxy.callYourMethod()
  | 

Richard

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

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

Reply via email to