Re: Trailing / on parameter name/value pairs

2010-03-19 Thread Antoine van Wel
On Fri, Mar 19, 2010 at 6:43 AM, Chris Colman chr...@stepaheadsoftware.com wrote: all servlet containers do that on first request. if you dont care about browsers with cookies disabled you can tweak tomcat to never append jsessionid to the url, afair there is a setting for that. -igor I

Trailing / on parameter name/value pairs

2010-03-18 Thread Chris Colman
I'm using BookmarkablePageLink extensively as it makes it easy to add parameter name/value pairs. I end up with URLs like: www.mysite.com/p1/v1/p2/v2 Which works fine for most cases but I have a number of questions/issues: My logs show exceptions whereby some browsers (or crawlers) without

Re: Trailing / on parameter name/value pairs

2010-03-18 Thread Igor Vaynberg
i suggest always mounting with querystringurlcodingstrategy unless you specifically want the folder structure of /name1/value1/name2/value2 which most of the time you dont. too bad this was made the default, we cant change it in 1.4 but are fixing it in 1.5 as it causes all kinds of problems.

RE: Trailing / on parameter name/value pairs

2010-03-18 Thread Chris Colman
:53 AM To: users@wicket.apache.org Subject: Re: Trailing / on parameter name/value pairs i suggest always mounting with querystringurlcodingstrategy unless you specifically want the folder structure of /name1/value1/name2/value2 which most of the time you dont. too bad this was made

Re: Trailing / on parameter name/value pairs

2010-03-18 Thread Igor Vaynberg
or is that old SEO thinking? Regards, Chris -Original Message- From: Igor Vaynberg [mailto:igor.vaynb...@gmail.com] Sent: Friday, 19 March 2010 10:53 AM To: users@wicket.apache.org Subject: Re: Trailing / on parameter name/value pairs i suggest always mounting

RE: Trailing / on parameter name/value pairs

2010-03-18 Thread Chris Colman
thinking? Regards, Chris -Original Message- From: Igor Vaynberg [mailto:igor.vaynb...@gmail.com] Sent: Friday, 19 March 2010 10:53 AM To: users@wicket.apache.org Subject: Re: Trailing / on parameter name/value pairs i suggest always mounting

Re: Trailing / on parameter name/value pairs

2010-03-18 Thread Igor Vaynberg
because they look like directories or is that old SEO thinking? Regards, Chris -Original Message- From: Igor Vaynberg [mailto:igor.vaynb...@gmail.com] Sent: Friday, 19 March 2010 10:53 AM To: users@wicket.apache.org Subject: Re: Trailing / on parameter name/value pairs

RE: Trailing / on parameter name/value pairs

2010-03-18 Thread Chris Colman
all servlet containers do that on first request. if you dont care about browsers with cookies disabled you can tweak tomcat to never append jsessionid to the url, afair there is a setting for that. -igor I wish I didn't have to care for browsers with cookies disabled but there's always some