• 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
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Link in Email Message not Consitantly Responding

 
Ranch Hand
Posts: 2206
2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I have java that sends an email message using stmp. The following link is embeded in the message.

http://gvas400.webergv.weber-intranet:10059/QMSWebApp/RMAAcknowledgeServlet?p1=1639072&p2=STEVE%20DYKE&p3=20121226142556859

If the QMSWebApp application is active(open) the link works fine. However, if I close the application and click the link I get a Session has Expired message in the jsp page.

How can I get this link to work without having to have the application open on the client side.
 
Bartender
Posts: 2856
10
Firefox Browser Fedora Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
To make it work without session, the page you are accessing should be made stateless.
I see below approaches
  • Remove session management for that page.
  • Have a version of the page which is available even for anonymous users.
  • Have the page sign you on by passing sign-on parameters in the request.

  •  
    reply
      Bookmark Topic Watch Topic
    • New Topic