retrieve public ip adress

2015-04-12 Thread Chris
Hi all, I have deployed the Wicket app on a PAAS provider and would like to save the IP address of the users accessing the application. With following code, the ip address retrieved is always the internal one (192.168.0.1) when I access the application - I would like to retrieve the public ip

Re: about Kartik-v's BootstrapFileInput

2015-04-12 Thread Martin Grigorov
Hi, See BootstrapFileInputField On Apr 12, 2015 8:32 AM, Hasan Çelik hsnclk1...@gmail.com wrote: ​Normally I was using ​Jasny's FileUpload.. As I understand, you've changed fileupload library... While I was using Jasny's FileUpload, my saving process was like that,

about Kartik-v's BootstrapFileInput

2015-04-12 Thread Hasan Çelik
​Normally I was using ​Jasny's FileUpload.. As I understand, you've changed fileupload library... While I was using Jasny's FileUpload, my saving process was like that, user1.setPhoto(fileUploadField.getFileUpload().getBytes()); But in the Kartik-v's BootstrapFileInput, I didn't find a way to

Wicket 7: Problem hiding form from AjaxSubmitLink

2015-04-12 Thread Don Ferguson
Dear Wicket Boffins, I have a Wicket 6 app that I’ve recently migrated to Wicket 7. In the app there is a form whose AjaxSubmitLink hides the form as part of the submit. In Wicket7, this causes a ListenerInvocationNotAllowedException to be thrown, since the component that submitted the form

Re: Wicket 7: Problem hiding form from AjaxSubmitLink

2015-04-12 Thread Martin Grigorov
Hi, Please create a quickstart app and attach it to a ticket at JIRA. Thanks! On Apr 12, 2015 9:43 PM, Don Ferguson don.fergu...@gmail.com wrote: Dear Wicket Boffins, I have a Wicket 6 app that I’ve recently migrated to Wicket 7. In the app there is a form whose AjaxSubmitLink hides the

browser back

2015-04-12 Thread Chris
Hi all, How can browser back cache be disabled? When having a page flow A B C D, I would like that if page D is loaded, the session is invalidated and browser back cache disabled, so that browser back does not work anymore. Between all other pages, browser back should work. Thanks a lot,