Instant : Unsupported field: YearOfEra when cookieUtils.cookieToDebugString() is called

2019-06-21 Thread Francois Meillet
https://issues.apache.org/jira/browse/WICKET-6678 



François
François





Re: receiving email from from p.davids@hea.jetzt when posting on users@wicket.apache.org

2019-06-21 Thread Sven Meier

Hi,

that's just an automatic reply from Patrick's mailbox.

@Patrick check your subscription please

Have fun
Sven


On 21.06.19 15:01, Francois Meillet wrote:

When I send an email to users@wicket.apache.org  I 
receive this automatic email from p.davids@hea.jetzt 

Guten Tag,
die E-Mailadresse des Empfängers hat sich geändert.
Gern leiten wir Ihre E-Mail weiter.
Bitte ändern Sie für zukünftige Mails die Empfängeradresse von @hea.jetzt in 
@teemer.de.

Freundliche Grüße
ARZ.dent GmbH


In english with Google Translate :
the recipient's e-mail address has changed.
We are happy to forward your e-mail.
Please change the recipient address of @ hea.now to @ teemer.de for future 
mails.

Wny do I get this ?
Thanks


François






-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



receiving email from from p.davids@hea.jetzt when posting on users@wicket.apache.org

2019-06-21 Thread Francois Meillet
When I send an email to users@wicket.apache.org 
 I receive this automatic email from 
p.davids@hea.jetzt 

Guten Tag,
die E-Mailadresse des Empfängers hat sich geändert.
Gern leiten wir Ihre E-Mail weiter. 
Bitte ändern Sie für zukünftige Mails die Empfängeradresse von @hea.jetzt in 
@teemer.de.

Freundliche Grüße 
ARZ.dent GmbH


In english with Google Translate : 
the recipient's e-mail address has changed. 
We are happy to forward your e-mail. 
Please change the recipient address of @ hea.now to @ teemer.de for future 
mails.

Wny do I get this ?
Thanks


François





Fast2WicketSerializer StackOverflowError

2019-06-21 Thread Francois Meillet
Hi,

I get a strange StackOverflowError with Fast2WicketSerializer

Env : Wicket version 9.0.0.M2 and previous with Fast2WicketSerializer
quickstart : https://issues.apache.org/jira/browse/WICKET-6679


When Session.get() is called in a non serialized object
and session.getMetaData(MetaDataKey) is in a serialized object
there is a StackOverflowError

Will produce a StackOverflowError
@Override
protected void onInitialize() {
super.onInitialize();

Session session = Session.get();

add(new AjaxLink("link") {

@Override
public void onClick(AjaxRequestTarget target) {

Boolean showgrid = session.getMetaData(KeyGrid);

// 
}
});
}

Will not produce StackOverflowError
@Override
protected void onInitialize() {
super.onInitialize();

add(new AjaxLink("link") {

@Override
public void onClick(AjaxRequestTarget target) {

Boolean showgrid = Session.get().getMetaData(KeyGrid);

// 
}
});
}


Exception in thread "Wicket-AsyncPageStore-PageSavingThread" 
java.lang.StackOverflowError
at 
org.nustaq.serialization.FSTObjectOutput.writeObjectCompatibleRecursive(FSTObjectOutput.java:568)
at 
org.nustaq.serialization.FSTObjectOutput.writeObjectCompatible(FSTObjectOutput.java:554)
at 
org.nustaq.serialization.FSTObjectOutput.writeObjectWithContext(FSTObjectOutput.java:450)
at 
org.nustaq.serialization.FSTObjectOutput.writeObjectWithContext(FSTObjectOutput.java:369)
at 
org.nustaq.serialization.FSTObjectOutput.writeObjectFields(FSTObjectOutput.java:664)
at 
org.nustaq.serialization.FSTObjectOutput.defaultWriteObject(FSTObjectOutput.java:546)
at 
org.nustaq.serialization.FSTObjectOutput.writeObjectWithContext(FSTObjectOutput.java:458)
at 
org.nustaq.serialization.FSTObjectOutput.writeObjectWithContext(FSTObjectOutput.java:369)
at 
org.nustaq.serialization.FSTObjectOutput.writeObjectFields(FSTObjectOutput.java:664)
at 
org.nustaq.serialization.FSTObjectOutput.defaultWriteObject(FSTObjectOutput.java:546)
at 
org.nustaq.serialization.FSTObjectOutput.writeObjectWithContext(FSTObjectOutput.java:458)
at 
org.nustaq.serialization.FSTObjectOutput.writeObjectWithContext(FSTObjectOutput.java:369)
at 
org.nustaq.serialization.FSTObjectOutput.writeObjectFields(FSTObjectOutput.java:664)
at 
org.nustaq.serialization.FSTObjectOutput.defaultWriteObject(FSTObjectOutput.java:546)
at 
org.nustaq.serialization.FSTObjectOutput.writeObjectWithContext(FSTObjectOutput.java:458)
at 
org.nustaq.serialization.FSTObjectOutput.writeObjectInternal(FSTObjectOutput.java:327)
at 
org.nustaq.serialization.serializers.FSTArrayListSerializer.writeObject(FSTArrayListSerializer.java:49)
at 
org.nustaq.serialization.FSTObjectOutput.writeObjectWithContext(FSTObjectOutput.java:476)
at 
org.nustaq.serialization.FSTObjectOutput.writeObjectWithContext(FSTObjectOutput.java:369)
at 
org.nustaq.serialization.FSTObjectOutput.writeObjectFields(FSTObjectOutput.java:664)
at 
org.nustaq.serialization.FSTObjectOutput.defaultWriteObject(FSTObjectOutput.java:546)
at 
org.nustaq.serialization.FSTObjectOutput.writeObjectWithContext(FSTObjectOutput.java:458)
at 
org.nustaq.serialization.FSTObjectOutput.writeObjectInternal(FSTObjectOutput.java:327)
at 
org.nustaq.serialization.FSTObjectOutput.writeObject(FSTObjectOutput.java:294)
at 
org.nustaq.serialization.FSTObjectOutput.writeObject(FSTObjectOutput.java:204)
at 
org.wicketstuff.pageserializer.fast2.Fast2WicketSerializer.serialize(Fast2WicketSerializer.java:77)
at 
org.apache.wicket.pageStore.InSessionPageStore$SessionData.writeObject(InSessionPageStore.java:317)



Do I miss something with the MetaData ?

François




-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org