AW: RequestLogger - Different Page Memory Addresses

2022-02-01 Thread Drummer, Matthias
page, just on a different memory location. This is expected when sessions are serialized/deserialized - usually when the container decides to do so. In your case it's a side effect of the request logger doing it. Have fun Sven On 31.01.22 19:41, Drummer, Matthias wrote: > > Hello all

RequestLogger - Different Page Memory Addresses

2022-01-31 Thread Drummer, Matthias
Hello all, I stumbled across the following issue. If the RequestLogger is activated, I get a new page object with every request (including AjaxRequests). If disabled then the page object will remain the same across multiple requests. I am wondering why this is the case. I attached a quickstart

AW: Jboss problem with to many parameters at form

2020-02-04 Thread Drummer, Matthias
forms? Best regards Stefan From "Drummer, Matthias" Subject AW: Jboss problem with to many parameters at form Date Mon, 03 Feb 2020 12:21:10 GMT Hi, you can configure your wildfly undertow settings in the standlone.xml. The default max-parameters value of the http-listener in m

AW: Jboss problem with to many parameters at form

2020-02-03 Thread Drummer, Matthias
Hi, you can configure your wildfly undertow settings in the standlone.xml. The default max-parameters value of the http-listener in my wildfly 18 is 1000. You can list your undertow configuration via jboss-cli like this: (Example for wildfly 18) /subsystem=undertow/server=default-server/http-li

AW: Wicket DropDown Change event

2019-05-20 Thread Drummer, Matthias
Hi, use "change" instead of "onchange". dropdown.add(new AjaxFormComponentUpdatingBehavior("change") { This works for me on Wicket 8.4.0 Greetings Matthias -Ursprüngliche Nachricht- Von: Sibgha Nazir Gesendet: Montag, 20. Mai 2019 16:14 An: users@wicket.apache.org Betreff: Wicket Dro

AW: ListView

2018-05-24 Thread Drummer, Matthias
Hi, here some example code for refreshing a listView via an AjaxButton if I understood you right. Perhaps it will help you. Things to note: - add the WebMarkupContainer to the AjaxRequestTarget (target.add(..)) not the ListView itself because this will not work. You tried something like that in