Hello All,
I'm currently using wicket 7.2.0-SNAPSHOT
have following code in my Application:
mountResource("/recordings/mp4/${id}", new Mp4RecordingResourceReference());
mountResource("/recordings/ogg/${id}", new OggRecordingResourceReference());
mountResource("/recordings/jpg/${id}", new
JpgRecordingResourceReference()); //should be in sync with VideoPlayer
trying to do:
org.apache.wicket.request.cycle.RequestCycle.get().urlFor(new
Mp4RecordingResourceReference(), new PageParameters().add("id", 666))
getting
./recordings/jpg/666
instead of
./recordings/mp4/666
Is there something wrong with my code?
will try to reproduce with 7.2.0 release
--
WBR
Maxim aka solomax