Google Maps refuses access

2013-09-12 Thread Piratenvisier
I am using google maps embeded in my 1.5 wicket application . I used the wicket.contrib.gmap modules, which worked fine till now. Since a few days I get back the error: Server returned HTTP response code: 403 for URL:

Re: Google Maps refuses access

2013-09-12 Thread Bas Gooren
Hi, You're probably hitting a usage limit: https://developers.google.com/maps/documentation/business/articles/usage_limits?hl=nl#http403 Met vriendelijke groet, Kind regards, Bas Gooren Op 12-9-2013 8:41, schreef Piratenvisier: I am using google maps embeded in my 1.5 wicket application

Possible asynchronous ajax operations with form ajaxsubmitlink

2013-09-12 Thread Brown, Berlin [PRI-1PP]
Is it possible for wicket to execute operations asynchronously in terms of handling ajax calls. For example, if I have an ajax submit link. AjaxSubmitLink1 { OnSubmit() { runLongRunningOperation(); // Imagine this operation runs 10 seconds } } AjaxSubmitLink2 {

Re: Possible asynchronous ajax operations with form ajaxsubmitlink

2013-09-12 Thread Sven Meier
No, because all access to Wicket pages is serialized (on the server). Sven On 09/12/2013 03:20 PM, Brown, Berlin [PRI-1PP] wrote: Is it possible for wicket to execute operations asynchronously in terms of handling ajax calls. For example, if I have an ajax submit link.