Re: [Wicket-user] IE 6 requests new session OTT

2007-01-05 Thread Nino Wael
Correct, I think I know whats going wrong...

Since we live in an Iframe. I guess this is what happens:

User clicks a link which leads to us via an Iframe with an static url. Then the 
servlet container makes the url rewrite, which is ok. But if the user clicks 
again on the link our session id are of course gone from the url and the 
servlet container treats this as an new session. Again this is only a problem 
when session cookies aren't allowed.


So the solution are to give an session id from the page having our application 
within the iframe. 

So this is where I ask how do I force a specific session id to be used, 
retrieved from the url?

Regards Nino

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Martijn Dashorst
Sent: 5. januar 2007 12:19
To: wicket-user@lists.sourceforge.net
Subject: Re: [Wicket-user] IE 6 requests new session OTT

The servlet container will use url rewriting (i.e. append the
jsessionid=afwo020394) when a cookie can't be set.

Martijn


On 1/5/07, Nino Wael <[EMAIL PROTECTED]> wrote:
>
>
>
>
> Sorry for so many posts about this. But are there any way to avoid session
> cookies? And stil maintain session state?
>
>
>
> We are using load balancing with apache upfront and then tomcat.
>
>
>
> Regards Nino
>
>
>
>  
>
>
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] On
> Behalf Of Nino Wael
>  Sent: 5. januar 2007 12:12
>  To: wicket-user@lists.sourceforge.net
>  Subject: Re: [Wicket-user] IE 6 requests new session OTT
>
>
>
>
> Hmm just found out that, there is a setting in IE 6 where you can disallow
> session cookies. Setting this to false, clears our problem...
>
>
>
> This appears to be default, are there any way to change this from our server
> side (im guessing no).
>
>
>
>
>
> Regards Nino
>
>
>
>  
>
>
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] On
> Behalf Of Nino Wael
>  Sent: 5. januar 2007 12:05
>  To: wicket-user@lists.sourceforge.net
>  Subject: [Wicket-user] IE 6 requests new session OTT
>
>
>
> Hi
>
>
>
> I guess this is not directly connected to wicket. But it seems that IE 6 has
> a nasty habbit of requesting new sessions sometimes(Bill Gates random
> generator). This are giving us some problems with the page expired
> exceptions, and some other stuff, THE FACT that we loose our session context
> are horrible.
>
>
>
> We live within an iframe, so im not sure if this triggers it somehow. Has
> anyone experienced this and what did you do, if something could be done?
>
>
>
> I do not have this problem with firefox. Which even uses authenticated
> sessions cross browser instance.
>
>
>
>
>
> Regards Nino
> -
> Take Surveys. Earn Cash. Influence the Future of IT
> Join SourceForge.net's Techsay panel and you'll get the chance to share your
> opinions on IT & business topics through brief surveys - and earn cash
> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
>
> ___
> Wicket-user mailing list
> Wicket-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wicket-user
>
>
>


-- 
Vote for Wicket at the http://www.thebeststuffintheworld.com/vote_for/wicket
Wicket 1.2.4 is as easy as 1-2-4. Download Wicket now!
http://wicketframework.org

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] IE 6 requests new session OTT

2007-01-05 Thread Nino Wael
We are using BookmarkablePages and mounted parameters 
(app/page/parametera/valuea) btw, does this affect the ability to force 
jessionId?

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Nino Wael
Sent: 5. januar 2007 13:22
To: wicket-user@lists.sourceforge.net
Subject: Re: [Wicket-user] IE 6 requests new session OTT

Correct, I think I know whats going wrong...

Since we live in an Iframe. I guess this is what happens:

User clicks a link which leads to us via an Iframe with an static url. Then the 
servlet container makes the url rewrite, which is ok. But if the user clicks 
again on the link our session id are of course gone from the url and the 
servlet container treats this as an new session. Again this is only a problem 
when session cookies aren't allowed.


So the solution are to give an session id from the page having our application 
within the iframe. 

So this is where I ask how do I force a specific session id to be used, 
retrieved from the url?

Regards Nino

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Martijn Dashorst
Sent: 5. januar 2007 12:19
To: wicket-user@lists.sourceforge.net
Subject: Re: [Wicket-user] IE 6 requests new session OTT

The servlet container will use url rewriting (i.e. append the
jsessionid=afwo020394) when a cookie can't be set.

Martijn


On 1/5/07, Nino Wael <[EMAIL PROTECTED]> wrote:
>
>
>
>
> Sorry for so many posts about this. But are there any way to avoid session
> cookies? And stil maintain session state?
>
>
>
> We are using load balancing with apache upfront and then tomcat.
>
>
>
> Regards Nino
>
>
>
>  
>
>
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] On
> Behalf Of Nino Wael
>  Sent: 5. januar 2007 12:12
>  To: wicket-user@lists.sourceforge.net
>  Subject: Re: [Wicket-user] IE 6 requests new session OTT
>
>
>
>
> Hmm just found out that, there is a setting in IE 6 where you can disallow
> session cookies. Setting this to false, clears our problem...
>
>
>
> This appears to be default, are there any way to change this from our server
> side (im guessing no).
>
>
>
>
>
> Regards Nino
>
>
>
>  
>
>
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] On
> Behalf Of Nino Wael
>  Sent: 5. januar 2007 12:05
>  To: wicket-user@lists.sourceforge.net
>  Subject: [Wicket-user] IE 6 requests new session OTT
>
>
>
> Hi
>
>
>
> I guess this is not directly connected to wicket. But it seems that IE 6 has
> a nasty habbit of requesting new sessions sometimes(Bill Gates random
> generator). This are giving us some problems with the page expired
> exceptions, and some other stuff, THE FACT that we loose our session context
> are horrible.
>
>
>
> We live within an iframe, so im not sure if this triggers it somehow. Has
> anyone experienced this and what did you do, if something could be done?
>
>
>
> I do not have this problem with firefox. Which even uses authenticated
> sessions cross browser instance.
>
>
>
>
>
> Regards Nino
> -
> Take Surveys. Earn Cash. Influence the Future of IT
> Join SourceForge.net's Techsay panel and you'll get the chance to share your
> opinions on IT & business topics through brief surveys - and earn cash
> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
>
> ___
> Wicket-user mailing list
> Wicket-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wicket-user
>
>
>


-- 
Vote for Wicket at the http://www.thebeststuffintheworld.com/vote_for/wicket
Wicket 1.2.4 is as easy as 1-2-4. Download Wicket now!
http://wicketframework.org

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&a

Re: [Wicket-user] IE 6 requests new session OTT

2007-01-05 Thread Korbinian Bachl
You can configure Tomcat to use URL manipulation only, so he always adds the
session to the URLs - however, loosing a session this way is not known and
is usually a problem in your application, as the standard behaviour in
tomcat is that he rewrites the session on creation to all URLs as wellas
passes a cookie and only drops the URL rewriting if the cookie is working.
Browsers dont change their behaviour during a single session as long as the
user doenst chose to do so.
 
Regards

 

  _  

Von: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Im Auftrag von Nino Wael
Gesendet: Freitag, 5. Januar 2007 12:15
An: wicket-user@lists.sourceforge.net
Betreff: Re: [Wicket-user] IE 6 requests new session OTT



Sorry for so many posts about this. But are there any way to avoid session
cookies? And stil maintain session state?

 

We are using load balancing with apache upfront and then tomcat.

 

Regards Nino

 


  _  


From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Nino Wael
Sent: 5. januar 2007 12:12
To: wicket-user@lists.sourceforge.net
Subject: Re: [Wicket-user] IE 6 requests new session OTT

 

Hmm just found out that, there is a setting in IE 6 where you can disallow
session cookies. Setting this to false, clears our problem.

 

This appears to be default, are there any way to change this from our server
side (im guessing no).

 

 

Regards Nino

 


  _  


From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Nino Wael
Sent: 5. januar 2007 12:05
To: wicket-user@lists.sourceforge.net
Subject: [Wicket-user] IE 6 requests new session OTT

 

Hi 

 

I guess this is not directly connected to wicket. But it seems that IE 6 has
a nasty habbit of requesting new sessions sometimes(Bill Gates random
generator). This are giving us some problems with the page expired
exceptions, and some other stuff, THE FACT that we loose our session context
are horrible.

 

We live within an iframe, so im not sure if this triggers it somehow. Has
anyone experienced this and what did you do, if something could be done?

 

I do not have this problem with firefox. Which even uses authenticated
sessions cross browser instance.

 

 

Regards Nino

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] IE 6 requests new session OTT

2007-01-05 Thread Martijn Dashorst
The servlet container will use url rewriting (i.e. append the
jsessionid=afwo020394) when a cookie can't be set.

Martijn


On 1/5/07, Nino Wael <[EMAIL PROTECTED]> wrote:
>
>
>
>
> Sorry for so many posts about this. But are there any way to avoid session
> cookies? And stil maintain session state?
>
>
>
> We are using load balancing with apache upfront and then tomcat.
>
>
>
> Regards Nino
>
>
>
>  
>
>
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] On
> Behalf Of Nino Wael
>  Sent: 5. januar 2007 12:12
>  To: wicket-user@lists.sourceforge.net
>  Subject: Re: [Wicket-user] IE 6 requests new session OTT
>
>
>
>
> Hmm just found out that, there is a setting in IE 6 where you can disallow
> session cookies. Setting this to false, clears our problem…
>
>
>
> This appears to be default, are there any way to change this from our server
> side (im guessing no).
>
>
>
>
>
> Regards Nino
>
>
>
>  
>
>
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] On
> Behalf Of Nino Wael
>  Sent: 5. januar 2007 12:05
>  To: wicket-user@lists.sourceforge.net
>  Subject: [Wicket-user] IE 6 requests new session OTT
>
>
>
> Hi
>
>
>
> I guess this is not directly connected to wicket. But it seems that IE 6 has
> a nasty habbit of requesting new sessions sometimes(Bill Gates random
> generator). This are giving us some problems with the page expired
> exceptions, and some other stuff, THE FACT that we loose our session context
> are horrible.
>
>
>
> We live within an iframe, so im not sure if this triggers it somehow. Has
> anyone experienced this and what did you do, if something could be done?
>
>
>
> I do not have this problem with firefox. Which even uses authenticated
> sessions cross browser instance.
>
>
>
>
>
> Regards Nino
> -
> Take Surveys. Earn Cash. Influence the Future of IT
> Join SourceForge.net's Techsay panel and you'll get the chance to share your
> opinions on IT & business topics through brief surveys - and earn cash
> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
>
> ___
> Wicket-user mailing list
> Wicket-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wicket-user
>
>
>


-- 
Vote for Wicket at the http://www.thebeststuffintheworld.com/vote_for/wicket
Wicket 1.2.4 is as easy as 1-2-4. Download Wicket now!
http://wicketframework.org

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] IE 6 requests new session OTT

2007-01-05 Thread Nino Wael
Sorry for so many posts about this. But are there any way to avoid session 
cookies? And stil maintain session state?

 

We are using load balancing with apache upfront and then tomcat.

 

Regards Nino

 



From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Nino Wael
Sent: 5. januar 2007 12:12
To: wicket-user@lists.sourceforge.net
Subject: Re: [Wicket-user] IE 6 requests new session OTT

 

Hmm just found out that, there is a setting in IE 6 where you can disallow 
session cookies. Setting this to false, clears our problem...

 

This appears to be default, are there any way to change this from our server 
side (im guessing no).

 

 

Regards Nino

 



From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Nino Wael
Sent: 5. januar 2007 12:05
To: wicket-user@lists.sourceforge.net
Subject: [Wicket-user] IE 6 requests new session OTT

 

Hi 

 

I guess this is not directly connected to wicket. But it seems that IE 6 has a 
nasty habbit of requesting new sessions sometimes(Bill Gates random generator). 
This are giving us some problems with the page expired exceptions, and some 
other stuff, THE FACT that we loose our session context are horrible.

 

We live within an iframe, so im not sure if this triggers it somehow. Has 
anyone experienced this and what did you do, if something could be done?

 

I do not have this problem with firefox. Which even uses authenticated sessions 
cross browser instance.

 

 

Regards Nino

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] IE 6 requests new session OTT

2007-01-05 Thread Nino Wael
Hmm just found out that, there is a setting in IE 6 where you can disallow 
session cookies. Setting this to false, clears our problem...

 

This appears to be default, are there any way to change this from our server 
side (im guessing no).

 

 

Regards Nino

 



From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Nino Wael
Sent: 5. januar 2007 12:05
To: wicket-user@lists.sourceforge.net
Subject: [Wicket-user] IE 6 requests new session OTT

 

Hi 

 

I guess this is not directly connected to wicket. But it seems that IE 6 has a 
nasty habbit of requesting new sessions sometimes(Bill Gates random generator). 
This are giving us some problems with the page expired exceptions, and some 
other stuff, THE FACT that we loose our session context are horrible.

 

We live within an iframe, so im not sure if this triggers it somehow. Has 
anyone experienced this and what did you do, if something could be done?

 

I do not have this problem with firefox. Which even uses authenticated sessions 
cross browser instance.

 

 

Regards Nino

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


[Wicket-user] IE 6 requests new session OTT

2007-01-05 Thread Nino Wael
Hi 

 

I guess this is not directly connected to wicket. But it seems that IE 6 has a 
nasty habbit of requesting new sessions sometimes(Bill Gates random generator). 
This are giving us some problems with the page expired exceptions, and some 
other stuff, THE FACT that we loose our session context are horrible.

 

We live within an iframe, so im not sure if this triggers it somehow. Has 
anyone experienced this and what did you do, if something could be done?

 

I do not have this problem with firefox. Which even uses authenticated sessions 
cross browser instance.

 

 

Regards Nino

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user