• 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

JNLP with IIS ASPSessionID

 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
After authenticating on a website, I have a link to an applet that I launch using web start on IIS and I pass in the ASPSessionID as an argument in the JNLP. In the applet I set the connection to use the passed in session id.

connection.setRequestProperty("cookie", sessionID);

The problem is, when I call the ASP through connection.getInputStream(); the ASP does not have access to the authenticated session variables. What am I doing wrong?

Basically I have a website and want to be able to launch applets & applications without having to re-authenticate for each - I want them all to share the same session.
reply
    Bookmark Topic Watch Topic
  • New Topic