Hi,
Inside started conversation, one of pages contains applet, which sends HTTP 
requests to some servlet. The servlet invokes Session bean, but its actions are 
done outside of existing conversation.
URL connection to the servlet is created as following:
uc = servletURL.openConnection();
  |             uc.setDoOutput(true);
  |             uc.setDoInput(true);
  |             uc.setUseCaches(false);
  |             uc.setRequestProperty("Content-type",
  |                             "application/x-www-form-urlencoded; 
charset=UTF-8");

How can I perform servlet actions in existing conversation scope?

Thank you.
Igor Laberov

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

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

Reply via email to