• 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
  • Ron McLeod
  • paul wheaton
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
  • Himai Minh
Bartenders:

Session handling under OAS 9.0.3

 
Greenhorn
Posts: 6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
My servlet, which runs fine under ApacheTomCat 4.1.18 is not properly holding on to sessions when deployed under OAS 9iAS(9.0.3).

Http Session is created during logon process.
The cookie contains a session id in the request.
But servlet container doesn't seem to have retained that session id at first time - request.getSession(false) returns NULL.
When I repeat logon procedure then all works fine - session is fetched from request successfully.

I think that this problem arises from a peculiarity of the OAS servlet engine. Can anyone help with this issue?
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic