Re: Update Cookie JSESSIONID

2013-04-04 Thread Antonios Gkogkakis
> > > Yes. I do put data into session after line of code: session = > > > ActionContext.getContext().getSession(); > > > > > > I can see a new session is created but with the original JSESSIONID > > > associated. I need it to be associated with a b

Re: Update Cookie JSESSIONID

2013-04-04 Thread Peter Lin
r Lin wrote: > > > Yes. I do put data into session after line of code: session = > > ActionContext.getContext().getSession(); > > > > I can see a new session is created but with the original JSESSIONID > > associated. I need it to be associated with a brand new JSESSIONID. I

Re: Update Cookie JSESSIONID

2013-04-04 Thread Antonios Gkogkakis
an see a new session is created but with the original JSESSIONID > associated. I need it to be associated with a brand new JSESSIONID. I > believe this is a bug in our Application server and looking for a > workaround. > > Thanks, > Peter > > > On Thu, Apr 4, 2013

Re: Update Cookie JSESSIONID

2013-04-04 Thread Peter Lin
Yes. I do put data into session after line of code: session = ActionContext.getContext().getSession(); I can see a new session is created but with the original JSESSIONID associated. I need it to be associated with a brand new JSESSIONID. I believe this is a bug in our Application server and

Re: Update Cookie JSESSIONID

2013-04-04 Thread Antonios Gkogkakis
sion(true); on the HttpServletRequest, Struts will do that for you if you attempt to put something in the invalidated session using ActionContext.getContext(). getSession().put On 4 April 2013 14:44, Peter Lin wrote: > That is exactly my problem. The application server does not send a new > JSESSIONID

Re: Update Cookie JSESSIONID

2013-04-04 Thread Peter Lin
That is exactly my problem. The application server does not send a new JSESSIONID back to browser as long as a JSESSIONID cookie came with the original request, even I specifically invalidate session and create a new one. What is work-around? Do we have a way to block JSESSIONID cookie come to

Re: Update Cookie JSESSIONID

2013-04-03 Thread JOSE L MARTINEZ-AVIAL
Are you creating a new session after invalidating the original one? If you do that, the server should send a new JSESSIONID cookie to the client on the response. Otherwise I don't know how your server will work, but I assume it will not sent any cookie back to the client, and therefore the br

Re: Update Cookie JSESSIONID

2013-04-03 Thread Peter Lin
store some data for other action classes to use. But my application server still pick the old JSESSIONID as the identifier of the new session - it is a security hole. Before an user invokes my authentication action class, he needs to enter username/password to the form. I tried to set JSESSIONID cookie

RE: Update Cookie JSESSIONID

2013-04-03 Thread Martin Gainty
leichten Manipulierbarkeit von E-Mails koennen wir keine Haftung fuer den Inhalt uebernehmen. > Date: Wed, 3 Apr 2013 15:23:09 -0500 > Subject: Update Cookie JSESSIONID > From: peterli...@gmail.com > To: user@struts.apache.org > > Due to our server always picks up the

Update Cookie JSESSIONID

2013-04-03 Thread Peter Lin
Due to our server always picks up the old JSESSIONID for creating a new user session if a cookie JSESSIONID has been passed - Waiting for Basis team to solve it. I tried to set the cookie JSESSIONID to expired before display the login screen, but failed. I just wonder can I block the JSESSIONID

RE: losing jsessionid in a cluster

2008-10-28 Thread Gundersen, Richard
, I use action everywhere. So, there was nothing wrong with the cluster which is a relief! Anyone else with the same problem: use the action attribute if you want jsessionid to be appended to urls... Richard Gundersen Java Developer Email: [EMAIL PROTECTED] Phone: 01618302398 Fax: 01618342536 Lon

Re: losing jsessionid in a cluster

2008-10-28 Thread Sébastien Domergue
. Regards Sébastien Gundersen, Richard a écrit : Hi I'm using URL rewriting (I can't use session cookies for certain reasons). In my code, I have this: Locally, this generates my URL perfectly - preserving the jsessionid - like this: https://localhost/Payment/acsResponse.action;

losing jsessionid in a cluster

2008-10-28 Thread Gundersen, Richard
Hi I'm using URL rewriting (I can't use session cookies for certain reasons). In my code, I have this: Locally, this generates my URL perfectly - preserving the jsessionid - like this: https://localhost/Payment/acsResponse.action;jsessionid=12DEE30A8983DF3D 151D However on our

Re: Not finding action because of jsessionid

2007-11-19 Thread Omkar Patil
like:- > > > but when the html get render what i get is :- > action="/addOfferPackage.action;jsessionid=1tblvfupwshge" method="POST"> > > This happens only on the first page so I guess whats happening is when my > browser makes a request the first time

Not finding action because of jsessionid

2007-11-19 Thread Vineeth Varghese
igure whether I support cookies or not. So it will go ahead and attach session id via url rewriting but after the first page once my browser starts sending things via cookies I am fine. But the problem is the action url with the jsessionid doesn't match to an action I have. For eg I hav

Re: JSessionID in URL on first request

2007-09-06 Thread Paul Benedict
al Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > On Behalf Of Paul Benedict > Sent: 06 September 2007 15:54 > To: Struts Users Mailing List > Subject: Re: JSessionID in URL on first request > > Jennie, I wasn't clear. My apologies. You don't typic

RE: JSessionID in URL on first request

2007-09-06 Thread Jennie Moeller
al Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Paul Benedict Sent: 06 September 2007 15:54 To: Struts Users Mailing List Subject: Re: JSessionID in URL on first request Jennie, I wasn't clear. My apologies. You don't typically need a session UNTIL a user lo

Re: JSessionID in URL on first request

2007-09-06 Thread Paul Benedict
PROTECTED] > On Behalf Of Paul Benedict > Sent: 06 September 2007 15:13 > To: Struts Users Mailing List > Subject: Re: JSessionID in URL on first request > > Turn off automatic session creation, if you want. It's a JSP directive. > I think it's: <% page session=&q

RE: JSessionID in URL on first request

2007-09-06 Thread Jennie Moeller
2007 15:13 To: Struts Users Mailing List Subject: Re: JSessionID in URL on first request Turn off automatic session creation, if you want. It's a JSP directive. I think it's: <% page session="false" %> You don't need sessions until you actually want to track user s

Re: JSessionID in URL on first request

2007-09-06 Thread Paul Benedict
sing HTTPD. Paul On 9/6/07, Jennie Moeller <[EMAIL PROTECTED]> wrote: > > On the very first request to our website any html:rewrite tags or > bean:include tags the URL gets rewritten with the JsessionID in it > making the link invalid which then gives a page not found error. > >

JSessionID in URL on first request

2007-09-06 Thread Jennie Moeller
On the very first request to our website any html:rewrite tags or bean:include tags the URL gets rewritten with the JsessionID in it making the link invalid which then gives a page not found error. I understand why its doing this as its not sure yet whether cookies are enabled (cookies are

[s2] sitemesh jsessionid

2007-04-02 Thread Ron Chan
When using sitemesh a session seems to be always created even when my application does not need it. Does anyone know how to get rid of the jsessionid that is generated, it is always picked up by the search engine robots. thanks -- View this message in context: http://www.nabble.com/-s2

Re: Non standard url parameter -- when jsessionid appended [SOLVED]

2007-03-05 Thread Eric Rank
Thanks Chris, You're right! I did run into that exact same problem. I can add a third solution to the ones you offer. The struts 2 url tag has an "encode" attribute. When you do: The jsessionid is omitted from the generated path. However, this should be used with c

Re: Non standard url parameter -- when jsessionid appended [SOLVED]

2007-03-05 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Eric, Eric Rank wrote: > Solved this problem. > > By setting the DefaultType directive to "text/html" in Apache's > httpd.conf, the pages with urls containing the appended ";jsessionid" > display as html, no

Re: Non standard url parameter -- when jsessionid appended [SOLVED]

2007-03-05 Thread Eric Rank
Solved this problem. By setting the DefaultType directive to "text/html" in Apache's httpd.conf, the pages with urls containing the appended ";jsessionid" display as html, not plain text. I should have thought of that before :-) Thanks Eric. On Mar 5, 2007, at

Re: Non standard url parameter -- when jsessionid appended

2007-03-05 Thread Eric Rank
Thanks Michael, I was just reading up on the servlet spec and you're right, the jsessionid is not a regular query parameter. Everything that's happening is as according to spec. The redirection to the same page when the session cookie is set would work, but only for thos

Re: Non standard url parameter -- when jsessionid appended

2007-03-05 Thread Michael Jouravlev
From servlet engine point of view, jsessionid is not a query parameter, you can verify that by calling getParameter or getParameterMap on request object, jsessionid is not there. To my mind, the simplest thing one can do is to get rid of jsessionid parameter. To do this you need to have cookies

Non standard url parameter -- when jsessionid appended

2007-03-05 Thread Eric Rank
Happy Monday everyone. I have a question for you. Hopefully it doesn't go too far off track. When I'm using the struts url tag (struts 2) to generate a link, I get a non standard url parameter, ";jsessionid" appended on the first visit with a new browser session. It se

Re: jsessionid appended to URL and page not found`

2007-02-08 Thread Joe Germuska
The solution Christopher and Dave discuss above can be handled with this in the Apache httpd.conf file: RewriteRule ^(.*);jsessionid=.*$ $1 This strips the session ID from anything that the HTTPD server is handling, although it should still get passed through the proxy. To be honest, our

Re: jsessionid appended to URL and page not found`

2007-02-07 Thread Christopher Schultz
d this problem we used one of the > rewrite mods to nudge Apache to know that the > ;jsessionid etc. was special. > > There's probably a better solution these days :) For me, this strategy is only necessary when I want Apache httpd to serve static content that has an encoded jsession

Re: jsessionid appended to URL and page not found`

2007-02-07 Thread Dave Newton
--- Vinod Kumar <[EMAIL PROTECTED]> wrote: > So I have apache+tomcat integrated. What > confirguration settings, do I need to make this work > in this scenario. IIRC when we had this problem we used one of the rewrite mods to nudge Apache to know that the ;jsessionid etc. was sp

Re: jsessionid appended to URL and page not found`

2007-02-07 Thread Vinod Kumar
ontains > the > > following line > > > > > > setup action does some pre-setup stuff and > forwards to > > home page. The home page displays well with all > > navigation links. But, when I click on any of the > > navigation links (which are actions a

Re: jsessionid appended to URL and page not found`

2007-02-07 Thread Joe Germuska
are actions and their URL looks like status.do;jsession=jfdkfdkfdk ..jsessionid appened only initially ) , I get error message that page cannot be found. If before clicking on any of the links, I do refresh on the home page and then click on any links, then it works fine. My question is, why it can

jsessionid appended to URL and page not found`

2007-02-07 Thread Vinod Kumar
. But, when I click on any of the navigation links (which are actions and their URL looks like status.do;jsession=jfdkfdkfdk ..jsessionid appened only initially ) , I get error message that page cannot be found. If before clicking on any of the links, I do refresh on the home page and then click on

Re: removing jsessionid from the URL

2006-10-04 Thread sunil virmani
Hi All, In my application in each request jsessionid is passed both in cookie as well as in url. I have enabled the cookie then why it is appearing in the URL also. Regards, Sunil On 9/7/06, Antonio Petrelli <[EMAIL PROTECTED]> wrote: sunil virmani ha scritto: > But Is there any wa

RE: URL /login.do;jsessionid=03D17FDFCC0FDD5A42EC9BB78C0AE935 was not found on this server

2006-09-11 Thread David Friedman
ubject: Re: URL /login.do;jsessionid=03D17FDFCC0FDD5A42EC9BB78C0AE935 was not found on this server Thanks for your intrest, Third party server means a live webserver where we are going to host our application. Here our jsp's are visible, which indicates that struts is working fine as

Re: URL /login.do;jsessionid=03D17FDFCC0FDD5A42EC9BB78C0AE935 was not found on this server

2006-09-11 Thread Anuraag Shinde
rd party server maps Java/Struts over to Tomcat how? Regards, David -Original Message- From: Anuraag Shinde [mailto:[EMAIL PROTECTED] Sent: Monday, September 11, 2006 1:13 AM To: user@struts.apache.org Subject: URL /login.do;jsessionid=03D17FDFCC0FDD5A42EC9BB78C0AE935 was not found on this

RE: URL /login.do;jsessionid=03D17FDFCC0FDD5A42EC9BB78C0AE935 was not found on this server

2006-09-10 Thread David Friedman
apache.org Subject: URL /login.do;jsessionid=03D17FDFCC0FDD5A42EC9BB78C0AE935 was not found on this server Hi all, Getting this strange error "*URL /login.do;jsessionid=03D17FDFCC0FDD5A42EC9BB78C0AE935 was not found on this server*" Details: On local machine i am useing tomcat4.1.31 and

URL /login.do;jsessionid=03D17FDFCC0FDD5A42EC9BB78C0AE935 was not found on this server

2006-09-10 Thread Anuraag Shinde
Hi all, Getting this strange error "*URL /login.do;jsessionid=03D17FDFCC0FDD5A42EC9BB78C0AE935 was not found on this server*" Details: On local machine i am useing tomcat4.1.31 and struts 1.1 and every thing works fine But when i try to put same files on third party live server i get

Re: removing jsessionid from the URL

2006-09-07 Thread Antonio Petrelli
sunil virmani ha scritto: But Is there any way to hide the jsession id attribute? If you don't mind if the first page has the jsessionid attribute, you have simply to enable cookies in your browser. It is my client requirement or i have to handle the session management using c

Re: removing jsessionid from the URL

2006-09-07 Thread sunil virmani
ribute. Regards, Sunil Virmani On 9/7/06, Antonio Petrelli <[EMAIL PROTECTED] > wrote: > > sunil virmani ha scritto: > > I want to remove the jsessionid attached with URL . Can you please > > tell me > > how can i confiure the same. Presently i am using apache tomcat ser

Re: removing jsessionid from the URL

2006-09-07 Thread sunil virmani
I want to remove the jsessionid attached with URL . Can you please > tell me > how can i confiure the same. Presently i am using apache tomcat server > , can > you please tell me is there any way to configure the same. The "jsessionid" attribute is put when cookies are not enable

Re: removing jsessionid from the URL

2006-09-07 Thread Jorge Martín Cuervo
Hi all, can i change the jsessionid name? is it mandatory to use jsessionid name to store the id? thanks to all. El jue, 07 de 09 de 2006 a las 10:24, Antonio Petrelli escribió: > sunil virmani ha scritto: > > I want to remove the jsessionid attached with URL . Can you please &g

Re: removing jsessionid from the URL

2006-09-07 Thread Antonio Petrelli
sunil virmani ha scritto: I want to remove the jsessionid attached with URL . Can you please tell me how can i confiure the same. Presently i am using apache tomcat server , can you please tell me is there any way to configure the same. The "jsessionid" attribute is put when cooki

removing jsessionid from the URL

2006-09-07 Thread sunil virmani
Hi , I want to remove the jsessionid attached with URL . Can you please tell me how can i confiure the same. Presently i am using apache tomcat server , can you please tell me is there any way to configure the same. Regards, Sunil Virmani

Re: Struts and Jsessionid control

2006-08-17 Thread Michael Rush
http://tomcat.apache.org/tomcat-5.0-doc/config/context.html says: Set to true if you want cookies to be used for session identifier communication if supported by the client (this is the default). Set to false if you want to disable the use of cookies for session identifier communication, an

Re: Struts and Jsessionid control

2006-08-16 Thread Wendy Smoak
On 8/16/06, Aladin Alaily <[EMAIL PROTECTED]> wrote: My understanding is that when the users turn off cookies, struts automatically encodes the session id and saves it in the URL, using encodeURL. Now, I'd like to know if there is a way to prevent this (encoding the session) so that when the us

Struts and Jsessionid control

2006-08-16 Thread Aladin Alaily
Hello, My understanding is that when the users turn off cookies, struts automatically encodes the session id and saves it in the URL, using encodeURL. Now, I'd like to know if there is a way to prevent this (encoding the session) so that when the users disable cookies sessions simply don't work.

Re: Two mysteries: ;jsessionid and bad img tag

2006-05-04 Thread Michael Jouravlev
On 5/4/06, Bryce Nesbitt <[EMAIL PROTECTED]> wrote: I've just been gifted with a struts application to maintain. Things are pretty good, but here are two little mysteries I need a little help on. The struts jsp looks like: And the resulting HTML is like this: Why the ";" in the jessionid,

Re: Two mysteries: ;jsessionid and bad img tag

2006-05-04 Thread Craig McClanahan
On 5/4/06, Bryce Nesbitt <[EMAIL PROTECTED]> wrote: I've just been gifted with a struts application to maintain. Things are pretty good, but here are two little mysteries I need a little help on. The struts jsp looks like: And the resulting HTML is like this: Why the ";" in the jessionid,

Two mysteries: ;jsessionid and bad img tag

2006-05-04 Thread Bryce Nesbitt
I've just been gifted with a struts application to maintain. Things are pretty good, but here are two little mysteries I need a little help on. The struts jsp looks like: And the resulting HTML is like this: Why the ";" in the jessionid, instead of &? And why is there no "/" at the end of

Re: jsessionid problem fix for weblogic servers

2006-05-02 Thread Ed Griebel
s in web.xml), or if your app server is fronted by Apache you could use mod_rewrite to strip the jsessionid= from URLs. Or, maybe if you put the images in the WAR but not under /do/* (or whatevers configured as the struts servlet prefix in servlet-mapping) the links would not be rewritten. The first

RE: jsessionid problem fix for weblogic servers

2006-05-02 Thread Braun, James F
:18 PM To: user@struts.apache.org Subject: Re: jsessionid problem fix for weblogic servers Does version of WebLogic does this work for? Gary >>> [EMAIL PROTECTED] 5/2/2006 10:55:41 AM >>> I had a problem with jsessionid trashing all my images and urls until I refreshed my browser.

Re: jsessionid problem fix for weblogic servers

2006-05-02 Thread Gary Feidt
Does version of WebLogic does this work for? Gary >>> [EMAIL PROTECTED] 5/2/2006 10:55:41 AM >>> I had a problem with jsessionid trashing all my images and urls until I refreshed my browser. Ted Husted points out this phenomenon on page 66 of SIA. The symptom is that ;js

jsessionid problem fix for weblogic servers

2006-05-02 Thread Braun, James F
I had a problem with jsessionid trashing all my images and urls until I refreshed my browser. Ted Husted points out this phenomenon on page 66 of SIA. The symptom is that ;jsessionid=<~long id string here> is appended to urls which confuses the weblogic app server. The fix for weblogic

Re: [OT] jsessionid

2006-01-16 Thread Michael Jouravlev
On 1/16/06, Mark Lowe <[EMAIL PROTECTED]> wrote: > The first page to be served up by the container will append the sessionid to > the url. If cookies are enabled on the client (browser) then in subsequent > requests the jsessionid will be stored in a cookie.. > > A redirect

Re: [OT] jsessionid

2006-01-16 Thread Mark Lowe
The first page to be served up by the container will append the sessionid to the url. If cookies are enabled on the client (browser) then in subsequent requests the jsessionid will be stored in a cookie.. A redirect in your welcome file should do what you want. The container can work out

AW: [OT] jsessionid

2006-01-16 Thread Bernhard Slominski
19:50 > An: Struts Users Mailing List > Betreff: Re: [OT] jsessionid > > > Helo > > There are three main methods for maintaing the session in HTTP > (according to the java servlets standard): cookies, ssl session and > URL rewriting. The jsessionid parameter is just a

Re: [OT] jsessionid

2006-01-14 Thread Marcelo Morales
Helo There are three main methods for maintaing the session in HTTP (according to the java servlets standard): cookies, ssl session and URL rewriting. The jsessionid parameter is just a way of ensuring the session when the servlet container has yet to find out if the user agent will

Re: jsessionid

2006-01-14 Thread Pieter Pareit
TED]> wrote: > > Rafael- > > I believe disabling the session *should* disable the jsessionid (assuming > you've disabled this in QueryString as well as disabled this in > serializing > to cookies..) > In either case I think Frank may shed some light .. > > Sa

Re: jsessionid

2006-01-14 Thread Martin Gainty
Rafael- I believe disabling the session *should* disable the jsessionid (assuming you've disabled this in QueryString as well as disabled this in serializing to cookies..) In either case I think Frank may shed some light .. Saludos! Martin- - Original Message - From: "Rafa

jsessionid

2006-01-13 Thread Rafael Taboada
Hi folks... Why does jsessionid appears in my application when I login???... Where can I disable this?? Thanks in advance -- Rafael Taboada Software Engineer Cell : +511-97753290 "No creo en el destino pues no me gusta tener la idea de controlar mi vida"

Re: [Help] how to erase jsessionid in URL

2005-11-08 Thread Michael Jouravlev
On 11/7/05, Pham Anh Tuan <[EMAIL PROTECTED]> wrote: > jsession is appended all time, it's not only at the first request! :( Make sure that browser accepts cookies from that host. Try a different browser for a change, default settings usually allow to accept cookies. Michael. ---

Re: AW: [Help] how to erase jsessionid in URL

2005-11-08 Thread Frank W. Zammetti
t;> Gesendet: Dienstag, 8. November 2005 08:49 >> An: Struts Users Mailing List >> Cc: Struts Users Mailing List >> Betreff: Re: [Help] how to erase jsessionid in URL >> >> >> On Tue, November 8, 2005 1:37 am, Pham Anh Tuan said: >> > PS: if I want to c

AW: [Help] how to erase jsessionid in URL

2005-11-08 Thread Bernhard Slominski
2005 08:49 > An: Struts Users Mailing List > Cc: Struts Users Mailing List > Betreff: Re: [Help] how to erase jsessionid in URL > > > On Tue, November 8, 2005 1:37 am, Pham Anh Tuan said: > > PS: if I want to change whether or not jsessionid is used, > I must config > &g

Re: [Help] how to erase jsessionid in URL

2005-11-07 Thread Frank W. Zammetti
On Tue, November 8, 2005 1:37 am, Pham Anh Tuan said: > PS: if I want to change whether or not jsessionid is used, I must config > container ? Do you have any document which instruct me how to > reconfig > container :(, if you had, plz show me, uh :") ... thank you :&quo

Re: [Help] how to erase jsessionid in URL

2005-11-07 Thread Pham Anh Tuan
jsession is appended all time, it's not only at the first request! :( Oh, maybe I should recommend my client that "Just let it me, jsession is not our problem, ... " :) ... thank you very much, Frank! PS: if I want to change whether or not jsessionid is used, I must co

Re: [Help] how to erase jsessionid in URL

2005-11-07 Thread Frank W. Zammetti
r and Chief Software Architect Omnytex Technologies http://www.omnytex.com AIM: fzammetti Yahoo: fzammetti MSN: [EMAIL PROTECTED] On Tue, November 8, 2005 1:06 am, Pham Anh Tuan said: > thanks Frank ... but :( ... I turned "cookie accept" on in my browser > (Firefox, IE), but jsessio

Re: [Help] how to erase jsessionid in URL

2005-11-07 Thread Pham Anh Tuan
thanks Frank ... but :( ... I turned "cookie accept" on in my browser (Firefox, IE), but jsessionid still be appended URL :( ... what happened, hiz :( * Pham Anh Tuan Java Developer, HR Assistant ICHI Corporation Vietnam. Room #1001,

Re: [Help] how to erase jsessionid in URL

2005-11-07 Thread Michael Jouravlev
On 11/7/05, Pham Anh Tuan <[EMAIL PROTECTED]> wrote: > thanks to MC, but ... it still doesn't work, jsessionid is still available > in URL after I add redirect to forward tag :( > > help me plz :( The first time you load page and perform a redirect, you will see sessio

Re: [Help] how to erase jsessionid in URL

2005-11-07 Thread Frank W. Zammetti
people won't be able to use the site :) Their choice, the client is always right :) Frank Pham Anh Tuan wrote: thank you, Frank :) As u said, if I want to disable jsessionid in URL, I must turn on cookie on my browser ? uh? Is it rite? I'm not sure that I understood what you mean :

Re: [Help] how to erase jsessionid in URL

2005-11-07 Thread Pham Anh Tuan
thank you, Frank :) As u said, if I want to disable jsessionid in URL, I must turn on cookie on my browser ? uh? Is it rite? I'm not sure that I understood what you mean :( "Aside from enabling cookies ...", enable cookies on my browser :( ... or where ? plz help and show

Re: [Help] how to erase jsessionid in URL

2005-11-07 Thread Pham Anh Tuan
thank you, Wendy :) It's just because my client don't want to see jsessionid in the url :( ... * Pham Anh Tuan Java Developer, HR Assistant ICHI Corporation Vietnam. Room #1001, 37 Ton Duc Thang, Dist. 1 Ho Chi Minh City, Vietnam. P

Re: [Help] how to erase jsessionid in URL

2005-11-07 Thread Wendy Smoak
On 11/7/05, Pham Anh Tuan <[EMAIL PROTECTED]> wrote: > thanks to MC, but ... it still doesn't work, jsessionid is still available > in URL after I add redirect to forward tag :( Struts is not doing this, at least not directly-- your Servlet container is. See SRV.7.1 (o

Re: [Help] how to erase jsessionid in URL

2005-11-07 Thread Frank W. Zammetti
It should be noted that jsessionid is not a Struts creation, it is a servlet spec thing... it stands for "Java Session ID" (creative, huh??) and is actually dealt with by your app server. The jsessionid can be stored in a cookie on the client, or it can be appended to the request

Re: [Help] how to erase jsessionid in URL

2005-11-07 Thread Pham Anh Tuan
thanks to MC, but ... it still doesn't work, jsessionid is still available in URL after I add redirect to forward tag :( help me plz :( * Pham Anh Tuan Java Developer, HR Assistant ICHI Corporation Vietnam. Room #1001, 37 Ton Duc Thang, Di

Re: [Help] how to erase jsessionid in URL

2005-11-07 Thread Murray Collingwood
meter on your action statements as in: I think this drops any session stuff. Cheers mc On 8 Nov 2005 at 10:07, Pham Anh Tuan wrote: > Hi all, > > I got a problem when I use Struts Framework, everytime I do a action, Struts automatically appends jsessionid parameter in URL > >

[Help] how to erase jsessionid in URL

2005-11-07 Thread Pham Anh Tuan
Hi all, I got a problem when I use Struts Framework, everytime I do a action, Struts automatically appends jsessionid parameter in URL something like below: http://localhost:8080/test/index.do;jsessionid=5DF06EA.. plz help me and show me how to erase jsessionid parameter and I don't

Re: Session Management Within Webapp 2 (jsessionid)s

2005-10-25 Thread Jim Reynolds
? > M- > - Original Message - > From: "Jim Reynolds" < [EMAIL PROTECTED]> > To: > Sent: Monday, October 24, 2005 10:57 AM > Subject: Session Management Within Webapp 2 (jsessionid)s > > > I have a project which I am working on. It does not have any ty

Re: Session Management Within Webapp 2 (jsessionid)s

2005-10-24 Thread Martin Gainty
sion isNew then the method returns false are your returning true/false? c)are you catching the IllegalStateException ??? Anyone else ? M- - Original Message - From: "Jim Reynolds" <[EMAIL PROTECTED]> To: Sent: Monday, October 24, 2005 10:57 AM Subject: Session Ma

Session Management Within Webapp 2 (jsessionid)s

2005-10-24 Thread Jim Reynolds
in. After that it works as it should, but I end up with 2 (jsessionid) cookies being created for each user? I am seeking advice, as to why this occured, and if this is normal behavior, or not-normal behavior. Upon researching the topic over the weekend, I was unable to find any threads, about this.

Re: OT: jsessionid connector error

2005-09-15 Thread Laurie Harper
ran Avtarovski wrote: I'm hoping someone here can help me with this. I'm getting inconsistency on this issue and googling hasn't helped. I'm running a struts app on OS X with Jrun 4 and Apache 2. When I use in the index.jsp file it appends the jsessionid to it and apache doesn

OT: jsessionid connector error

2005-09-14 Thread Zoran Avtarovski
I'm hoping someone here can help me with this. I'm getting inconsistency on this issue and googling hasn't helped. I'm running a struts app on OS X with Jrun 4 and Apache 2. When I use in the index.jsp file it appends the jsessionid to it and apache doesn't recognise th

Re: Struts forward and jsessionid

2005-09-09 Thread Craig McClanahan
On 9/8/05, Néstor Boscán <[EMAIL PROTECTED]> wrote: > > Hi Michael > > In my case, I'm working with WAP applications that require the jsessionid > to > be in the URL. In the case of Struts redirect forward it doesn't put the > jsessionid in the URL. When I

RE: Struts forward and jsessionid

2005-09-08 Thread Gary VanMatre
You might try using the JSTL tags. Something like this: <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"; %> Gary -- Original message -- > Hi Michael > > In my case, I'm working with WAP applications that re

RE: Struts forward and jsessionid

2005-09-08 Thread Néstor Boscán
Hi Michael In my case, I'm working with WAP applications that require the jsessionid to be in the URL. In the case of Struts redirect forward it doesn't put the jsessionid in the URL. When I browse using a WAP my session is lost in the process. Regards, Néstor Boscán -Mensaj

Re: Struts forward and jsessionid

2005-09-08 Thread Michael Jouravlev
On 9/8/05, Néstor Boscán <[EMAIL PROTECTED]> wrote: > Hi > > How can I guarantee that Struts will send the jsessionid parameter with each > forward with redirection?. Struts does not have to send session ID with forward, since forward occurs on server only. Struts (act

Struts forward and jsessionid

2005-09-08 Thread Néstor Boscán
Hi How can I guarantee that Struts will send the jsessionid parameter with each forward with redirection?. Regards, Néstor Boscán - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

Re: [OT] Re: How JSESSIONID is passes

2005-08-16 Thread GRamani
I was thinking of that too.. He did say in his initail post: "I'm keep on calling this action for different condition".. so the clue maybe hidden in that.. But then again, having been up since 3am, I perhaps shouldn't be posting to any lists..;) Geeta Dave Newton <[EMAIL PROTECTED]> wrote on

Re: [OT] Re: How JSESSIONID is passes

2005-08-16 Thread Dave Newton
[EMAIL PROTECTED] wrote: You are quite right; I was being sloppy.. Should have added the "if there's no current session" bit.. thanks for the catch.. Which makes me wonder why the original poster was continually getting new sessions; seems weird. Dave Dave Newton <[EMAIL PROTECTED]> wrot

Re: [OT] Re: How JSESSIONID is passes

2005-08-16 Thread GRamani
You are quite right; I was being sloppy.. Should have added the "if there's no current session" bit.. thanks for the catch.. Geeta Dave Newton <[EMAIL PROTECTED]> wrote on 08/16/2005 10:54:39 AM: > [EMAIL PROTECTED] wrote: > > >HttpSession Session=request.getSession(true); > > > >The "true" mea

[OT] Re: How JSESSIONID is passes

2005-08-16 Thread Dave Newton
[EMAIL PROTECTED] wrote: HttpSession Session=request.getSession(true); The "true" means create a new session. For which J2EE versions is that correct? In my 1.3 JavaDocs it says: "Returns the current |HttpSession| associated with this request or, if if there is no current session and |cre

Re: How JSESSIONID is passes

2005-08-16 Thread GRamani
; or just: HttpSession Session=request.getSession(); and your problem will disappear. Regards, Geeta "Senthilrajan VS" <[EMAIL PROTECTED]> wrote on 08/16/2005 07:54:10 AM: > Hi all, > > How Jsessionid is passed in the struts application and I don't have > any control for

How JSESSIONID is passes

2005-08-16 Thread Senthilrajan VS
Hi all, How Jsessionid is passed in the struts application and I don't have any control for that. how to avoid that. In my application I am facing the problem in the session it is creating the new session for every request. Is this problem related to Jsessionid? Thanks &

Re: Can you make Tomcat 5 create multiple JSESSIONID cookies in Firefox?

2005-04-25 Thread Ted Husted
On 4/22/05, Dick Starr <[EMAIL PROTECTED]> wrote: > I am new to both Struts and web applications and in fact am writing my > very first web application, so I may not understand how this all works. > In the app it's possible for more than one user to be on the same PC > (e.g. a user needs their supe

Re: Can you make Tomcat 5 create multiple JSESSIONID cookies in Firefox?

2005-04-22 Thread Leon Rosenberg
egards Leon > > Thanks, > > Dick > > -Original Message- > From: Leon Rosenberg [mailto:[EMAIL PROTECTED] > Sent: Thursday, April 21, 2005 4:49 PM > To: 'Struts Users Mailing List' > Subject: Re: Can you make Tomcat 5 create multiple JSESSIONID >

Re: Can you make Tomcat 5 create multiple JSESSIONID cookies in Firefox?

2005-04-22 Thread Leon Rosenberg
egards Leon > > Thanks, > > Dick > > -Original Message- > From: Leon Rosenberg [mailto:[EMAIL PROTECTED] > Sent: Thursday, April 21, 2005 4:49 PM > To: 'Struts Users Mailing List' > Subject: Re: Can you make Tomcat 5 create multiple JSESSIONID >

Re: Can you make Tomcat 5 create multiple JSESSIONID cookies in Firefox?

2005-04-22 Thread Michael Jouravlev
-- > From: K.C. Baltz [mailto:[EMAIL PROTECTED] > Sent: Thursday, April 21, 2005 5:20 PM > To: Struts Users Mailing List > Subject: Re: Can you make Tomcat 5 create multiple JSESSIONID cookies in > Firefox? > > Do you have the option of using URL-rewriting instead of cookies for &g

RE: Can you make Tomcat 5 create multiple JSESSIONID cookies in Firefox?

2005-04-22 Thread Dick Starr
PROTECTED] Sent: Thursday, April 21, 2005 5:20 PM To: Struts Users Mailing List Subject: Re: Can you make Tomcat 5 create multiple JSESSIONID cookies in Firefox? Do you have the option of using URL-rewriting instead of cookies for your session tracking? If you've used or etc for all

RE: Can you make Tomcat 5 create multiple JSESSIONID cookies in Firefox?

2005-04-22 Thread Dick Starr
Subject: Re: Can you make Tomcat 5 create multiple JSESSIONID cookies in Firefox? Maybe I'm understanding you wrong, but your multiple windows are all used by the same user, right? In this case user name and operation id should be the same for all 'vsessions' (virtual sessions betw

  1   2   >