Re: Colons as characters in relative part of the URI

2006-12-13 Thread Peter Murray
On 12/13/06 4:34 AM, Thierry Boileau wrote: > actually the parser does not take into account special characters such > as ":". > You can update your code like this : > Router router = new Router(); > Handler getXml = new GetXml(); > router.attach("/ge

Re: Colons as characters in relative part of the URI

2006-12-13 Thread Thierry Boileau
Hello Peter, actually the parser does not take into account special characters such as ":". You can update your code like this : Router router = new Router(); Handler getXml = new GetXml(); router.attach("/getXml/{PID}:{VALUE}", getXml);

Colons as characters in relative part of the URI

2006-12-12 Thread Peter Murray
Something seems to be swallowing colons from the relative part of the URL when using the hierarchical URIs function. My code looks like this: Router router = new Router(); Handler getXml = new GetXml(); router.attach("/getXml/{PID}", getXml);