Re: Wicket 6 - test ajax component.

2015-07-22 Thread gump lee
Thanks for your reply. I would try to use other testing method to test my component. On Jul 21, 2015 4:47 PM, andrea del bene an.delb...@gmail.com wrote: Hi, I don't think it's possible to send a specific key as this requires JavaScript code to be executed. But you can test AJAX events:

Re: Using Wicket 6.20 give following error

2015-07-22 Thread Serban.Balamaci
Hello, just a quick observation: In 6.x version IHeaderResponse is in a different package it's under org.apache.wicket.markup.*head* so it's explained why you'd get the exception. I think this JQWicket you are using is the problem. Looks unmaintained and designed for 1.5 version(previous version

Removing jessionid

2015-07-22 Thread Ephraim Rosenfeld
Hello Team Wicket: We are in the process of getting our web application approved for a security clearance. Two related issues are: 1. The presence of a jsessionid in the url when the application loads 2. Maintaining the same jsessionid cookie after login (Session Fixation) A

Re: Removing jessionid

2015-07-22 Thread Serban.Balamaci
Hi, 1. you can remove the sessionid from the url and have it stored in a cookie without any change to your app code. This is more of web container setup, it's not really Wicket who should be handling that. With Servlet 3.0 you can tell your web container how it should handle it in the web.xml

Re: how to send a request to an external url from wicket?

2015-07-22 Thread cosmindumy
Hi Sven, Thanks for your response but I think I cannot use this option. I need to pass to that url the form parameters. On my onSubmit, I need to build a list of parameters and pass via a post method to the url to be processed. This exception does not allow a list of parameters. Cheers, Cosmin.

Re: how to send a request to an external url from wicket?

2015-07-22 Thread Sven Meier
Hi, the url allows parameters as any url, e.g http://server.com?param1=value1param2=value2;. If you need to post your parameters, you'll have to generate a hidden form and submit it. You can render the form with wicket (some WebMarkupContainers will suffice) or just use some JavaScript for

Re: how to send a request to an external url from wicket?

2015-07-22 Thread cosmindumy
Ya, I need to submit the form with post method. This answer helped me. I will try it. Thanks a lot, Cosmin. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/how-to-send-a-request-to-an-external-url-from-wicket-tp4671642p4671646.html Sent from the Users forum mailing

How to integrate Wicket-cdi-1.1 to OSGi environment

2015-07-22 Thread fengzhenxing
Hi wicket-group: I want to integrate the wicket-cdi to Karaf container.But I met some issues in deploying wicket application. Some exception is below: javax.servlet.ServletException: java.lang.IllegalStateException: No BeanManager found via the CDI provider and no fallback specified. Check