Hi,
>next question. i have an app that i had running well
>on iis/jrun. now i am porting it to orion, and my
>session code seems to have died. i am getting no
>response from httpsession. any ideas about sessions
>in orion? (i am trying to pass objects from a servlet
>to jsp's.) i have added a session-config param to the
>web.xml file but that seems not to help. what might i
>be leaving out? or must i use the httpsessionmanager
>interface supplied by orion?
Odd..I never had a problem with this. You are using HttpSession in your
code, and not the Request.setAttribute right? Also, make sure your JSP page
is using the right scope. To get a bean out of the HttpSession,
scope="session" is needed. If you put the object (in your servlet) into the
Request object, then you need to specify the scope="request".
Let me know what you dig up.