Re: Wicketstuff filename too long error

2015-03-23 Thread Hasan Çelik
I think, you're right...When I tried to clone D:/test/, it worked... Thanks Web Sitesi : www.ab-hibe.com E-mail: hasance...@berkadem.com E-mail: i...@ab-hibe.com Gsm1: 0 544 640 96 25 Adres : 1271. Sokak 33/14 Sabri Mermutlu İş Merkezi Balgat Ankara 2015-03-23 14:54 GMT+02:00 Richter, Marvin

Re: Running a local process using Wicket

2015-03-23 Thread Sebastien
Hi, If you would like to start an external process (a batch or whatever, but *not* command line of course) then the answer is yes, even it is more an architectural question than truly related to Wicket directly (I mean, if you would like to properly separate layers...) A common option is to make

Re: Running a local process using Wicket

2015-03-23 Thread Richter, Marvin
I’m not sure if I understood it right but if you actually want to start a command on the machine the browser is running on the answer is no, and should never be possible for security reasons. But that has nothing to do with Wicket but with a webpage in the browser which is sandboxed and

wicket abort ajax handling of multipart form when the server is stopped

2015-03-23 Thread ywtsang
in normal case, I have tested that wicket ajax multipart form submit event can be triggered properly in this sequence onbefore onprecondition onbeforesend onafter onsucess oncomplete but when the server is stopped and the same ajax multipart form is submitted, only these events are

Re: Running a local process using Wicket

2015-03-23 Thread Christoph Läubrich
Depending on your enviourment you can either use: - Signed Java Applet - ActiveX Control - Browser Plugin - Any other active technology As mentioned earlier that is nothing specific to Wicket. And you should consider why you want to switch to a WebApp if you have requirements to start local

Running a local process using Wicket

2015-03-23 Thread drf
We want to replace our fat client application (developed using C#) with a web application. Wicket is one of the technology options we are considering. Our question: Is it possible, and if so, how, to run a local process on the users machine (normally run from the command line) from Wicket. Thanks