Re: CryptoMapper not encoding query string - Wicket 6.5.0

2013-07-09 Thread Martin Grigorov
On Tue, Jul 9, 2013 at 1:54 PM, Rakesh A wrote: > Hi, > > After bit more debugging I found that the URL provided in the previous post > were indeed 1.4.x generated, new URL generated is similar to the one given > below > > > http://localhost:9090/myTest/?8-1.ILinkListener-contentPanel-layout-entr

Re: CryptoMapper not encoding query string - Wicket 6.5.0

2013-07-09 Thread Sven Meier
>reproduce the problem in wicketstuff-gmap3-examples. Sorry, this was meant for the thread describing a problem with CryptoMapper and wicketstuff-gmap3. Sven On 07/09/2013 01:25 PM, Sven Meier wrote: Please create a quickstart or just instruct us how to reproduce the problem in wicketstuff-g

Re: CryptoMapper not encoding query string - Wicket 6.5.0

2013-07-09 Thread Sven Meier
Please create a quickstart or just instruct us how to reproduce the problem in wicketstuff-gmap3-examples. Sven On 07/09/2013 12:54 PM, Rakesh A wrote: Hi, After bit more debugging I found that the URL provided in the previous post were indeed 1.4.x generated, new URL generated is similar to

Re: CryptoMapper not encoding query string - Wicket 6.5.0

2013-07-09 Thread Rakesh A
Hi, After bit more debugging I found that the URL provided in the previous post were indeed 1.4.x generated, new URL generated is similar to the one given below http://localhost:9090/myTest/?8-1.ILinkListener-contentPanel-layout-entryPanel-layoutButtonPanel-actionButtonTitleHolder-actionButton B

Re: CryptoMapper not encoding query string - Wicket 6.5.0

2013-06-21 Thread Martin Grigorov
Wicket 1.5.x+ doesn't produce urls with wicket:interface in the query string. Something is wrong. On Fri, Jun 21, 2013 at 9:52 AM, Rakesh A wrote: > Hi, > > Code is recently upgraded from Wicket v1.4.21 to v6.5.0 > > Regards, > Rakesh.A > > > > -- > View this message in context: > http://apache-

Re: CryptoMapper not encoding query string - Wicket 6.5.0

2013-06-21 Thread Rakesh A
Hi, Code is recently upgraded from Wicket v1.4.21 to v6.5.0 Regards, Rakesh.A -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/CryptoMapper-not-encoding-query-string-Wicket-6-5-0-tp4659643p4659651.html Sent from the Users forum mailing list archive at Nabble.com. -

Re: CryptoMapper not encoding query string - Wicket 6.5.0

2013-06-21 Thread Rakesh A
Hi, I added the below two lines in my WebApplication#init() method. getSecuritySettings().setCryptFactory(new KeyInSessionSunJceCryptFactory()); setRootRequestMapper(new PnCryptoMapper(getRootRequestMapper(), this)); When I debug, for me "url.getSegments().isEmpty()" is 'true' [my ur

Re: CryptoMapper not encoding query string - Wicket 6.5.0

2013-06-21 Thread Martin Grigorov
On Fri, Jun 21, 2013 at 6:27 AM, iamrakesh wrote: > Hi, > > I am using Wicket 6.5.0 and I am trying to use CryptoMapper in my > application and URLs in my application look something like the one given > below > > > http://localhost:8080/myTest/?wicket:interface=:2:contentPanel:layout:entryPanel:la

Re: CryptoMapper not encoding query string - Wicket 6.5.0

2013-06-21 Thread Sven Meier
Take a look at CryptoMapperTest#additionalParameters(): Urls to listeners should be encoded as everything else. How do you setup your CryptoMapper? Sven On 06/21/2013 06:27 AM, iamrakesh wrote: Hi, I am using Wicket 6.5.0 and I am trying to use CryptoMapper in my application and URLs in my ap