Re: Page deserialization problem after a network problem

2020-05-25 Thread Calin Pavel
On 5/19/2020 10:08 AM, Sven Meier wrote: Hi, I don't understand how that exception ends up in your component hierarchy either. Do you use a custom exception mapper or listener? I don't see any place in Wicket where that exception is stored. Best regards Sven On 18.05.20 17

Page deserialization problem after a network problem

2020-05-18 Thread Calin Pavel
Sometime our customers have network problems (e.g connection interrupted for a short period) and if that happens when we are sending response for a page, an exception is thrown: *2020-04-23 18:47:28 ERROR [ba00c0b5f1c83a39/ba00c0b5f1c83a39] [00529169] [m00080874] DefaultExceptionMapper:144 - Con

Re: Client browser timezone offset

2019-10-28 Thread Calin Pavel
ou can use Intl.DateTimeFormat().resolvedOptions().timeZone ClientProperties can be extended to get this info on server [1] https://stackoverflow.com/questions/6939685/get-client-time-zone-from-browser On Mon, 28 Oct 2019 at 22:26, Calin Pavel wrote: I'm trying to detect what is the c

Client browser timezone offset

2019-10-28 Thread Calin Pavel
I'm trying to detect what is the current timezone offset for a client browser accessing my Wicket application. I found out that BrowserInfoForm.ClientPropertiesBean contains details about: - utcOffset - utcDstOffset but these are calculated at 1.Jan and 1.June. Is there any way to determine on ser

Client browser timezone offset

2019-10-28 Thread Calin Pavel
I'm trying to detect what is the current timezone offset for a client browser accessing my Wicket application. I found out that BrowserInfoForm.ClientPropertiesBean contains details about: - utcOffset - utcDstOffset but these are calculated at 1.Jan and 1.June. Is there any way to determine on ser

Integrate Wicket with Keycloak

2019-04-10 Thread Calin Pavel
Hi everybody, Did anybody integrated Wicket with Keycloak? Do you have any sample how this could be done - to restrict access to pages, to authenticate user Thank you, Calin Pavel - To unsubscribe, e-mail: users

Re: Skip URL escape on redirect

2019-03-06 Thread Calin Pavel
Hi Martin, It works fine if using this status code. Thank you for your help. Calin Pavel On 3/6/2019 5:47 PM, Martin Grigorov wrote: Hi, Use RedirectToUrlException(yourUrl, HttpServletResponse.SC_SEE_OTHER) See https://markmail.org/message/bis57nb2yecdgzqx for more details. It has been

Skip URL escape on redirect

2019-03-06 Thread Calin Pavel
ut escaping URL? 2. is it a browser problem - it should unescape URL before doing redirect? have some doubts, since all (Chrome, IE, Firefox) works the same 3. would it be the responsibility of the targeted server to decode / unescape URL and then check for the signature? Thank you, Calin Pavel * *

Full HTML markup for a panel

2017-11-15 Thread Calin Pavel
breakpoint somewhere... Thank you, Calin Pavel

Autocomplete select options

2017-01-10 Thread Calin Pavel
Hi everybody, Does anybody know if it is possible in Wicket to select Autocomplete options by moving with arrows keys up / down without pressing ENTER? I want to have highlighted option automatically placed in the autocomplete input. Thank you, Calin Pavel