RE: [OT] Accessing HREF Target from Servlet

2013-06-29 Thread Konstantin Preißer
Hi, > -Original Message- > From: George S. [mailto:geor...@mhsoftware.com] > Sent: Saturday, June 29, 2013 7:45 PM > To: Tomcat Users List > Subject: Re: [OT] Accessing HREF Target from Servlet > > > > > > 1) Why would you need to access that part after the "#" for Auth stuff ? > > Intui

Re: [OT] Accessing HREF Target from Servlet

2013-06-29 Thread George S.
On 6/29/13 9:29 AM, André Warnier wrote: George S. wrote: I have a question. I'm doing some oAuth stuff, and the remote site is redirecting me to: my_url.html#something=blah&other_thing=blah-blah I can see this is the url in the redirect of my browser bar. What I can't figure out is how to

Re: [OT] Accessing HREF Target from Servlet

2013-06-29 Thread André Warnier
George S. wrote: I have a question. I'm doing some oAuth stuff, and the remote site is redirecting me to: my_url.html#something=blah&other_thing=blah-blah I can see this is the url in the redirect of my browser bar. What I can't figure out is how to access the part of the URL after the pound

Re: Accessing HREF Target from Servlet

2013-06-29 Thread George S.
Yes, I put some code in the page to detect the HREF anchor in the window location, and then I pass it back to the server. Nothing's ever as easy as you would like... On 6/28/13 7:55 AM, Christopher Schultz wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 George, On 6/27/13 8:56 PM, Geo

Help with crossContext="true" and getRequestDispatcher()

2013-06-29 Thread Paul Hammant
If you edit conf/context.xml and add crossContext="true", one Tomcat mounted web-app should be able to forward to (or include content from) another in the same request. I can't get it working and I have a minimal Github project ( https://github.com/paul-hammant/servletDispatcherTest) that shows ho