You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi there,
I have tried the wicket full calendar example using 1.3-SNAPSHOT for wicket 1.5.
I tried encoding ULRs using CryptoMapper as suggested on wiki's Request mapping page (https://cwiki.apache.org/WICKET/request-mapping.html) and I'm afraid that full calendar functionality no longer works.
Steps I took:
On WicketApplication class for wicket-fullcalendar-examples project, I added the following: @OverRide
public void init()
{
super.init();
IRequestMapper cryptoMapper = new CryptoMapper(getRootRequestMapper(), this);
setRootRequestMapper( cryptoMapper );
}
With the above implementation of the CryptoMapper, wicket full calendar example no longer works.
If I remove it, then it works as expected.
Is this a bug with wicket-fullcalendar or am I just implementing url encryption the wrong way?
I do apologise if the error is on my side and I hope I am not wasting your time.
Thanks in advance,
Lucas
The text was updated successfully, but these errors were encountered:
Hi there,
I have tried the wicket full calendar example using 1.3-SNAPSHOT for wicket 1.5.
I tried encoding ULRs using CryptoMapper as suggested on wiki's Request mapping page (https://cwiki.apache.org/WICKET/request-mapping.html) and I'm afraid that full calendar functionality no longer works.
Steps I took:
On WicketApplication class for wicket-fullcalendar-examples project, I added the following:
@OverRide
public void init()
{
super.init();
IRequestMapper cryptoMapper = new CryptoMapper(getRootRequestMapper(), this);
setRootRequestMapper( cryptoMapper );
}
With the above implementation of the CryptoMapper, wicket full calendar example no longer works.
If I remove it, then it works as expected.
Is this a bug with wicket-fullcalendar or am I just implementing url encryption the wrong way?
I do apologise if the error is on my side and I hope I am not wasting your time.
Thanks in advance,
Lucas
The text was updated successfully, but these errors were encountered: