I am running a site on Orion application server but don't have much experience of JSP and EJB. My client wants to take the URL of the referring site and add this to the URL within their own site for the duration of the users visit.
So for example, http://www.siteA.com/home.html?referer=www.referingsite.com
The site at the moment is just static html pages with a few JSP based applications.
I know this would be possible by converting each of the pages to JSP. I am not sure how to do this though or how it would effect the navigation? If someone has a good tutorial that would cover this I would be very greatful!!
Discussions
Web tier: servlets, JSP, Web frameworks: Persisting a query string in a Java based enviroment....
-
Persisting a query string in a Java based enviroment.... (3 messages)
- Posted by: Matt Silcock
- Posted on: May 01 2001 12:10 EDT
Threaded Messages (3)
- Persisting a query string in a Java based enviroment.... by Geoffrey Wiseman on May 01 2001 23:37 EDT
- Persisting a query string in a Java based enviroment.... by Tony Brookes on May 02 2001 00:27 EDT
- Persisting a query string in a Java based enviroment.... by Matt Silcock on May 02 2001 11:12 EDT
-
Persisting a query string in a Java based enviroment....[ Go to top ]
- Posted by: Geoffrey Wiseman
- Posted on: May 01 2001 23:37 EDT
- in response to Matt Silcock
Does it have to remain in the query string, or can you simply stuff it into the session? Seems a little odd to keep it in the query string all the time. -
Persisting a query string in a Java based enviroment....[ Go to top ]
- Posted by: Tony Brookes
- Posted on: May 02 2001 00:27 EDT
- in response to Matt Silcock
If you keep it in the URL, then the user can meddle with the data, which you probably don't want.
I'd go with the suggestion given. Take it, whack it in the HttpSession and go from there.
If the reason you want to do this is to get the referrer for your logs, then skip this completely, it'll show up in the logs if you set the web server up correctly, when the first hit from the external site comes in.
Chz
Tony -
Persisting a query string in a Java based enviroment....[ Go to top ]
- Posted by: Matt Silcock
- Posted on: May 02 2001 11:12 EDT
- in response to Tony Brookes
The problem I have with the logs is that Orion does not log the refering URL. There also does not seem to be anyway to change the logging?
Anyone know any different, I have searched the Orion site etc?