RE: Help with URL Rewrite in IFrame!

2011-09-23 Thread kugaprakash
-and-redirects.html However, I am unable to get this to work for the IFrame (InlineFrame) I have. Highly appreciate your response Thanks Kuga From: Dan Retzlaff [via Apache Wicket] [mailto:ml-node+s1842946n3837770...@n4.nabble.com] Sent: Friday, September 23, 2011 12:05 PM To: Kugaprakash Visagamani Subject: Re

Re: Help with URL Rewrite in IFrame!

2011-09-23 Thread kugaprakash
://httpd.apache.org/docs/2.2/mod/mod_proxy.html. For trivial content making the request yourself might be okay, but as soon as the page refers to other images/CSS/etc, you'll be reinventing the wheel. :) On Fri, Sep 23, 2011 at 12:17 PM, kugaprakash [hidden email]/user/SendEmail.jtp?type=nodenode=3837827i

Help with URL Rewrite in IFrame!

2011-09-22 Thread kugaprakash
Hi, I would like to request your help with the following question: Have a Wicket application running on Jetty webserver. We also have a 3rd party software which is running in another web container, and they have their own web GUI. We would like to render parts of their GUI in our wicket

Re: Help with URL Rewrite in IFrame!

2011-09-22 Thread kugaprakash
Hi, Appreciate the response. Is there any way to redirect the URL when wicket gets it? Is there a URL rewriting capability? NOTE: Need to rewrite the URL only for the IFrame, and not the whole page. thanks Kuga -- View this message in context:

Re: inlineframe usage

2011-09-22 Thread kugaprakash
Hi, Can you please let me know if you had a solution? Also would appreciate any sample code. we have a similar issue, I have a wicket panel, with few components and then have an IFrame. Thanks Kuga -- View this message in context:

Re: wicket osgi (not Pax)

2010-10-12 Thread kugaprakash
Hi, I have multiple Wicket Applications running on different servers, each of them runs on OSGI/Jetty, and a Master Wicket Application also runs on OSGI/Jetty. Master wicket application, has its own server, where it gets the data from the sub servers. Do you recommend Pax Wicket for such

Re: Integrating Separate Different Wicket Applications Into One

2010-10-11 Thread kugaprakash
Hi, Can you please let me know? thanks Kuga -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Integrating-Separate-Different-Wicket-Applications-Into-One-tp1889319p2990281.html Sent from the Users forum mailing list archive at Nabble.com.

Re: Integrating Separate Different Wicket Applications Into One

2010-10-08 Thread kugaprakash
Hi, I am trying to solve similar problem as the Original Post. Can you please share some details of your ideas that you done? Much appreciated. Best Regards -- View this message in context:

Re: Problem with Crypted URL

2010-06-04 Thread kugaprakash
Actually I should say, that it is not force re-directing even on using the recommended approach. It still stays in the same current page. Am I doing something wrong here? I tried to remove the finally block {Session.get().invalidate(); } and moved that code to detach(), still no success.

Re: Problem with Crypted URL

2010-06-03 Thread kugaprakash
Thanks for the response, I am trying to implement your recommended solution, however, It goes into the respond method and I did the following public void respond(RequestCycle requestCycle) { PageParameters param = new PageParameters();

Re: Problem with Crypted URL

2010-06-02 Thread kugaprakash
Can anybody help me with this question? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Problem-with-Crypted-URL-tp1875435p2240647.html Sent from the Wicket - User mailing list archive at Nabble.com.

RE: Problem with Crypted URL

2010-06-02 Thread kugaprakash
] Sent: Wednesday, June 02, 2010 2:30 PM To: Kugaprakash Visagamani Subject: Re: Problem with Crypted URL maybe because you are invalidating the session, which happens after the page is rendered. i would instead invalidate the session and reditect to a bookmarkable url that points

Re: Problem with Crypted URL

2010-05-27 Thread kugaprakash
We are using Wicket 1.3.5 (Unable to upgrade to latest Wicket release, due to a CSRF fix needed for a previous release build) and I am doing the following: protected IRequestCodingStrategy newRequestCodingStrategy(){ return new CryptedUrlWebRequestCodingStrategy(new

Issue with AjaxLinks in ListView

2009-07-31 Thread Kugaprakash Visagamani
Hi, I have a page that has a panel with ListViewAjaxLink (Listview contains AjaxLink's). I go to that page, click on a links - does an ajax update of one section in a page, and then I do a target.addComponent(listViewPanel) to update the link selection background. This works fine so far.

Wicket Wizard window question!

2008-09-23 Thread Kugaprakash Visagamani
Hi, I was browsing through the wicket forums, for one of the problems I am having using Wicket wizard in ModalWindow. Wondering if anyone could help me with any possible solutions. Greatly appreciate you time and response. I have changed the WizardButtons to use Ajax buttons. The