Re: PathInfo and session init

2005-07-21 Thread Laurie Harper
You need to use wildcard action mappings: http://struts.apache.org/userGuide/building_controller.html#action_mapping_wildcards I've posted around this subject a few times; check the archives for threads with 'path info' or 'wildcard' in the subject :-) L. Ed Griebel wrote: Hmm, that's inter

Re: PathInfo and session init

2005-07-21 Thread Ed Griebel
Hmm, that's interesting, with one of my webapps it doesn't work for me either! I haven't had a use for this yet so I haven't run into this issue, so I don't know if there's a standard way to handle this in Struts. Seems like extending RequestProcessor to ignore trailing url arguments is over the

Re: PathInfo and session init

2005-07-21 Thread Daniel Łaś
Hi Ed Thanks for your help. Ed Griebel napisał(a): Hi Daniel- 1) You can set up a Session Listener, which is a class which implements HttpSessionListener. You implement 2 methods, sessionCreated() and sessionDestoryed() to do what you need to. This will need to be added to web.xml file under

Re: PathInfo and session init

2005-07-21 Thread Ed Griebel
Hi Daniel- 1) You can set up a Session Listener, which is a class which implements HttpSessionListener. You implement 2 methods, sessionCreated() and sessionDestoryed() to do what you need to. This will need to be added to web.xml file under a class path and name. Here is an old article but it's s