Re: 404 : https://wicket.apache.org/learn/#javadoc JavaDoc 9.x

2019-10-07 Thread Martin Grigorov
Fixed! On Mon, Oct 7, 2019, 12:11 Martin Grigorov wrote: > Hi Francois, > > This is a known issue. > > https://markmail.org/message/6owzkxowbsf33jcy > https://markmail.org/message/ac65iqbmwjdlugz3 > > I will try to find a working solution for it this week. > > Martin > > > On Mon, Oct 7, 2019

Re: Wicket Cookie Deletion

2019-10-07 Thread Martin Grigorov
On Mon, Oct 7, 2019 at 12:32 PM Sibgha Nazir wrote: > > > > You don't use *expires *here. > > > Yes it is irrelevant. Please ignore it. > > > This should work. > > Check what are the response headers in Chrome's Dev Tools > Network. The > > new max-age value must be set to 0. > > > I went to

Re: Is there a SOAP resource?

2019-10-07 Thread Martin Grigorov
Hi, I am not aware of such resource. That does not mean that there is no such out there though! But SOAP is just XML, i.e. text, so you can read and parse it and do whatever is needed. Martin On Mon, Oct 7, 2019 at 1:22 PM Per Newgro wrote: > Hello every1, > > i would like to migrate some

Is there a SOAP resource?

2019-10-07 Thread Per Newgro
Hello every1, i would like to migrate some features of an web app to my wicket app. The web app is a spring boot app that provides access to data using SOAP. The web service extracts the SOAP request and calls my wicket app by using rest resource. But now i need to replace the additional web

Re: Wicket Cookie Deletion

2019-10-07 Thread Sibgha Nazir
> > You don't use *expires *here. Yes it is irrelevant. Please ignore it. This should work. > Check what are the response headers in Chrome's Dev Tools > Network. The > new max-age value must be set to 0. I went to chrome dev tool -> network. But i cannot see whats max-age and where to look

Re: 404 : https://wicket.apache.org/learn/#javadoc JavaDoc 9.x

2019-10-07 Thread Martin Grigorov
Hi Francois, This is a known issue. https://markmail.org/message/6owzkxowbsf33jcy https://markmail.org/message/ac65iqbmwjdlugz3 I will try to find a working solution for it this week. Martin On Mon, Oct 7, 2019 at 11:17 AM Francois Meillet wrote: > Hi, > > There is a 404 for >

404 : https://wicket.apache.org/learn/#javadoc JavaDoc 9.x

2019-10-07 Thread Francois Meillet
Hi, There is a 404 for https://ci.apache.org/projects/wicket/apidocs/9.x/index.html François

Re: Wicket Cookie Deletion

2019-10-07 Thread Martin Grigorov
Hi, On Mon, Oct 7, 2019 at 3:14 AM Sibgha Nazir wrote: > Hi, > > I set a cookie from JavaScript in the chrome browser like > > > var d = new Date(); > > d.setTime(d.getTime() + (exdays * 24 * 60 * 60 * 1000)); > > var expires = "expires=" + d.toUTCString(); > > document.cookie =