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#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...