micvm
micvm
I do not know if this helps but I noticed the Saml2LoginBeanDefinitionParser does not read the `entity-id` attribute unlike the other attributes defined within the `relying-party-registration` element.
I can have a try but I am not familiar with the Spring SDK and internals. For example, I tried to launch gradle tasks and I get the following for...
Sorry for not specifying: I did not mean the entire ZAP. Only the extension.
> The extension is not crashing either, the exception is being handled. Ok. But the current message is not being processed anymore and the processing of the packet stops without...
> Yes, it's the expected behaviour when an exception occurs. Is it the best behaviour? Not really, and something that can be improved along the better id handling. Would putting...
This works for me in `EventStreamProxy.java`: ```java if (dataIndex > line.length() && line.charAt(dataIndex) == ' ') { // do not include first whitespace dataIndex++; } ```
Thanks for pointing that out! The other way around: ```java if (dataIndex < line.length() && line.charAt(dataIndex) == ' ') { // do not include first whitespace dataIndex++; } ``` If...
Actually no, but I can make one, no problem.
I think this is the same as the unresolved issue in https://github.com/primefaces/primevue/issues/7258 .
Is this the same matter also for the Dialog component? https://stackblitz.com/edit/cnrvm8?file=src%2FApp.vue