Re: not able to access URL in 2nd app in 7.0.23

2012-01-26 Thread Mark Thomas
On 26/01/2012 03:59, removeps-c...@yahoo.com wrote: >> When Tomcat receives an unauthenticated request for a protected >> resource it intercepts and saves that request, then forwards to >> the resource defined in the login config. > > True. Also, I'm not making the request through Firefox. I did

Re: not able to access URL in 2nd app in 7.0.23

2012-01-25 Thread removeps-code
quest. Hope this is clear. --- On Wed, 1/25/12, Pid wrote: > From: Pid > Subject: Re: not able to access URL in 2nd app in 7.0.23 > To: "Tomcat Users List" > Date: Wednesday, January 25, 2012, 2:59 PM > On 25/01/2012 22:03, removeps-c...@yahoo.com > wrote: > &g

Re: not able to access URL in 2nd app in 7.0.23

2012-01-25 Thread Pid
a bug in Tomcat, or you're telling us something else and I don't know what that is. Can you reproduce the error using a clean & simple application config? p > --- On Wed, 1/25/12, Pid wrote: > >> From: Pid >> Subject: Re: not able to access URL in 2nd app in 7.0.

Re: not able to access URL in 2nd app in 7.0.23

2012-01-25 Thread removeps-code
/myapp/login.html > > > > Thus I must move/copy my code in doPost to build > login.html into doGet. > > > > This did work. > > So, you're saying that the method value 'POST' is not > preserved after > successful authentication and appears to be

Re: not able to access URL in 2nd app in 7.0.23

2012-01-25 Thread Pid
43/myapp/login.html > > Thus I must move/copy my code in doPost to build login.html into doGet. > > This did work. So, you're saying that the method value 'POST' is not preserved after successful authentication and appears to be converted to a 'GET'? p

Re: not able to access URL in 2nd app in 7.0.23

2012-01-25 Thread removeps-code
dré Warnier > Subject: Re: not able to access URL in 2nd app in 7.0.23 > To: "Tomcat Users List" > Date: Wednesday, January 25, 2012, 9:18 AM > removeps-c...@yahoo.com > wrote: > ... > >>>  > >>    > /folder/action.do > >>>    > >&

Re: not able to access URL in 2nd app in 7.0.23

2012-01-25 Thread removeps-code
to access URL in 2nd app in 7.0.23 > To: "Tomcat Users List" > Date: Wednesday, January 25, 2012, 9:10 AM > Replies in place > > --- On Wed, 1/25/12, Pid > wrote: > > > From: Pid > > Subject: Re: not able to access URL in 2nd app in > 7.0.23 > >

Re: not able to access URL in 2nd app in 7.0.23

2012-01-25 Thread André Warnier
removeps-c...@yahoo.com wrote: ... /folder/action.do ... So I will try two things. First, remove the https to see if it works. Second, change the url-mapping from an exact match like "/myapps/folder/action.do" to "*.action.do" In any case, the URL against which you match shoul

Re: not able to access URL in 2nd app in 7.0.23

2012-01-25 Thread removeps-code
Replies in place --- On Wed, 1/25/12, Pid wrote: > From: Pid > Subject: Re: not able to access URL in 2nd app in 7.0.23 > To: "Tomcat Users List" > Date: Wednesday, January 25, 2012, 12:55 AM > On 25/01/2012 02:49, removeps-c...@yahoo.com > wrote: > >

Re: not able to access URL in 2nd app in 7.0.23

2012-01-25 Thread Pid
On 25/01/2012 02:49, removeps-c...@yahoo.com wrote: > In my webapps folder there are two folders: ROOT, myapp. ROOT is the default > app. > > In myapp/WEB-INF/web.xml there is > > > MyServlet > package.MyServlet > 1 > > > MyServlet > /folder/action.do > > > When