2 Replies Latest reply on Sep 13, 2006 12:41 PM by gavin.king

    Binding to existing conversation

    igorl

      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