Wicket 1.3 (revision 534800, updated 08:00am EST 5/3/07)

I finsihed updating my code to the trunk yesterday and my pages were loading
correctly.  I did an SVN update this morning just to pick up the latest
changes and now AbstractRequestTargetUrlCodingStrategy  is throwing an
exception "URL fragment has unmatched key/value pair: mode/:/0"

The action: click an AjaxLink that does something similar to the following:

StringBuffer sb = new StringBuffer(128);
sb.append("window.location.href='");
sb.append("/app/specChange/specChangePage/mode/add");
sb.append("';");
target.appendJavascript(sb.toString());

Upon debugging the problem,
AbstractRequestTargetUrlCodingStrategy.decodeParameters actually gets called
twice; first with "/mode/add" (as expected), but then (i can't tell exactly
when, but around the time the page is actually rendering) it gets called
with "mode/:/0" (not expected, and incorrect which is causing the
exception).

There were only a handful of files changed in SVN between me updating on the
morning or 02MAY07 and 03MAY07.  So, can anyone help me find where the URL
might be getting changed?

Chuck
-- 
View this message in context: 
http://www.nabble.com/AbstractRequestTargetUrlCodingStrategy-is-throwing-an-error-now...-tf3686373.html#a10304607
Sent from the Wicket - User mailing list archive at Nabble.com.


-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
Wicket-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/wicket-user

Reply via email to