• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Liutauras Vilda
  • Ron McLeod
Sheriffs:
  • Jeanne Boyarsky
  • Devaka Cooray
  • Paul Clapham
Saloon Keepers:
  • Scott Selikoff
  • Tim Holloway
  • Piet Souris
  • Mikalai Zaikin
  • Frits Walraven
Bartenders:
  • Stephan van Hulst
  • Carey Brown

Session problem

 
Greenhorn
Posts: 14
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Dear friends,
I have a Jsp (rendered on Tomcat 4.1) from which i am opening a pop-up window to display a report on Segate page server.
The call is made somewhat like this
Window.open("http://server:8080/reports/name.rpt?query string" ,param list ......);
The IIS server (listening at 8080) redirects the request to Crystal report server ( Segate page server ).
The problem am facing is that the session on Tomcat server is lost as soon as i view a report. Surprisingly this doesn't happen for some reports.
The only difference between reports is the number of parameters in query string. I could not figure out the reason.
Can anybody help me out with possible reasons.
(I have already tried out with length of query string any the number of parameters )
Thanx
 
Bartender
Posts: 4121
IntelliJ IDE Spring Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Are you using cookies or URL rewriting to track sessions?

Be sure to use HttpServletResponse.encodeURL() on the URL you are using to open the window to support URL rewriting, and change your browser settings to 'ask before accepting cookies' (or however they word it) so you can see if the session id cookie is being overwritten.
 
He was expelled for perverse baking experiments. This tiny ad is a model student:
Smokeless wood heat with a rocket mass heater
https://woodheat.net
reply
    Bookmark Topic Watch Topic
  • New Topic