RE: jsessionid problem with a new window (HTA)

2002-12-19 Thread Ralph Einfeldt
How do yo create the url. I guess it's inside do_submit_popup. Is this function part of the local page or part of an external js file ? Why don't you just use: javascript:window.parent.do_submit_popup('<%= response.encodeUrl("PrintReport") %>',null,'_new'); > -Original Message- > From:

RE: jsessionid problem with a new window (HTA)

2002-12-19 Thread Yong Wang
Hi Ralph, the js function gets included into the JSP page and it looks something like the following. Do you see anything wrong? <% final String currentSessionID = session.getId(); %> ... function do_submit_popup(newAction, submitType, targetFrame) { var newAction2 = newAction + "\;jsessionid

RE: jsessionid problem with a new window (HTA)

2002-12-20 Thread Ralph Einfeldt
f it is the same as the one that was used to create the window. > -Original Message- > From: Yong Wang [mailto:[EMAIL PROTECTED]] > Sent: Thursday, December 19, 2002 5:20 PM > To: Tomcat Users List > Subject: RE: jsessionid problem with a new window (HTA) > > > H