Hello,

I am using onPassivate method in Object.java page class:

        Integer onPassivate() {
                return objId;
        }

but I would like to append resulting URL with additional parameter in
following format:
        http://localhost:8080/Object/8?mod=2
so that old application security servlet works ok.

I had in mind following:
        String onPassivate() {
                return objId + "?mod"+modId;
        }
but that encodes ?,+ and makes servlet not functional.

Thanks at advance!

-- 
View this message in context: 
http://www.nabble.com/Appending-url-with-additional-parameters-within-page-class-tp20604695p20604695.html
Sent from the Tapestry - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to