RE: servlet-mapping and url-pattern

2002-05-10 Thread Galpin, Charles
> -Original Message- > From: Craig R. McClanahan [mailto:[EMAIL PROTECTED]] > Actually, there is a standard action that would let you simulate this: > > type="org.apache.struts.actions.ForwardAction" > parameters="/path/to/tiles/servlet"/> > > Now, a request to "/tiles.

RE: servlet-mapping and url-pattern

2002-05-10 Thread Craig R. McClanahan
On Fri, 10 May 2002, Nelson, Laird wrote: > > You can't use the servlet path ("/tiles") in an action mapping. Action > mappings out of the box only use path info. > Actually, there is a standard action that would let you simulate this: Now, a request to "/tiles.do" (if you're using exten

RE: servlet-mapping and url-pattern

2002-05-10 Thread Galpin, Charles
> -Original Message- > From: Mark Nichols [mailto:[EMAIL PROTECTED]] > > action > tiles/* > > > > Maybe you need the url-pattern to look like: > > > > > > Note the extra slash at the beginning of the value > > Mark Nope, no better. I'm beginning to believe t

Re: servlet-mapping and url-pattern

2002-05-10 Thread Mark Nichols
action tiles/* Maybe you need the url-pattern to look like: Note the extra slash at the beginning of the value Mark _ Join the world’s largest e-mail service with MSN Hotmail. http://www.hotmail.com

RE: servlet-mapping and url-pattern

2002-05-10 Thread Nelson, Laird
> -Original Message- > From: Galpin, Charles [mailto:[EMAIL PROTECTED]] > Web.xml: > > > action > tiles/* > > > Struts-config.xml: > > > > > > Any ideas? You can't use the servlet path ("/tiles") in an action mapping. Action mappings out of the box on

servlet-mapping and url-pattern

2002-05-10 Thread Galpin, Charles
Hi all I want to convert an existing servlet to an Action, but I'm having trouble getting a servlet mapping to work (using weblogic 7.0). Currently, I can use an URL like /tiles/with/these/parameters And the servlet mapped to /tiles/* then parses the req.getRequestURI() output to access the par