AW: [OS-webwork] How to access session data from ActionClass

2003-12-04 Thread Patrick Holzmann
PROTECTED] Gesendet: Donnerstag, 4. Dezember 2003 14:06 An: [EMAIL PROTECTED] Betreff: Re: [OS-webwork] How to access session data from ActionClass I tryed this way but I keep getting exceptions. Maybe I have missed somthing in mu config settings. Here is the code public String execute() throws

Re: [OS-webwork] How to access session data from ActionClass

2003-12-04 Thread remigijus
: Re: [OS-webwork] How to access session data from ActionClass > - Original Message - > From: "Joseph Ottinger" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Thursday, December 04, 2003 3:43 PM > Subject: Re: [OS-webwork] How to access sessio

AW: [OS-webwork] How to access session data from ActionClass

2003-12-04 Thread Patrick Holzmann
include your source to see what you've done... -Ursprüngliche Nachricht- Von: remigijus [mailto:[EMAIL PROTECTED] Gesendet: Donnerstag, 4. Dezember 2003 15:09 An: [EMAIL PROTECTED] Betreff: Re: [OS-webwork] How to access session data from ActionClass - Original Message -

Re: [OS-webwork] How to access session data from ActionClass

2003-12-04 Thread remigijus
- Original Message - From: "Joseph Ottinger" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, December 04, 2003 3:43 PM Subject: Re: [OS-webwork] How to access session data from ActionClass > Yes, it will. Again, try it. > Ok I tryed it doesn not. O

Re: [OS-webwork] How to access session data from ActionClass

2003-12-04 Thread Joseph Ottinger
Yes, it will. Again, try it. On Thu, 4 Dec 2003, remigijus wrote: > Ok I figured that. Now evrything works. But still have a quesion if I'm > going to add a new objet to session map will it be available in the session. > > > > --- > This SF.net

Re: [OS-webwork] How to access session data from ActionClass

2003-12-04 Thread remigijus
Ok I figured that. Now evrything works. But still have a quesion if I'm going to add a new objet to session map will it be available in the session. --- This SF.net email is sponsored by: SF.net Giveback Program. Does SourceForge.net help you b

Re: [OS-webwork] How to access session data from ActionClass

2003-12-04 Thread Jonas Eriksson
PROTECTED]> Sent: Thursday, December 04, 2003 2:53 PM Subject: Re: [OS-webwork] How to access session data from ActionClass The session and application maps are accessed by using static methods of the ActionContext class. To get the session map you write Map session = ActionContext.getContext().g

Re: [OS-webwork] How to access session data from ActionClass

2003-12-04 Thread remigijus
To: <[EMAIL PROTECTED]> Sent: Thursday, December 04, 2003 2:53 PM Subject: Re: [OS-webwork] How to access session data from ActionClass > The session and application maps are accessed by using static methods of > the ActionContext class. > > To get the session map you write >

Re: [OS-webwork] How to access session data from ActionClass

2003-12-04 Thread Jonas Eriksson
The session and application maps are accessed by using static methods of the ActionContext class. To get the session map you write Map session = ActionContext.getContext().getSession(); Jonas remigijus wrote: Hi How can get access to a session and application scope data from an Action class.

[OS-webwork] How to access session data from ActionClass

2003-12-04 Thread remigijus
Hi   How can get access to a session and application scope data from an Action class. If possible a little code sample, please.   Remis