Re: URL parameters separator

2007-04-23 Thread Antonio Petrelli
2007/4/23, Christopher Schultz <[EMAIL PROTECTED]>: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Harring, Harring Figueiredo wrote: > I am not sure if the DTD declares that (I did not take a look at it), but > basically the way to pass param on a HTML URL is the way it was generated - > Every

Re: URL parameters separator

2007-04-23 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Harring, Harring Figueiredo wrote: > I am not sure if the DTD declares that (I did not take a look at it), but > basically the way to pass param on a HTML URL is the way it was generated - > Every single HTTP server will not parse the parameters corre

URL parameters separator

2007-04-20 Thread Marcello Savino
In my jsp i've a code like this: The code works good. But the generated url are in this form: http://localhost:8080/myApp/myAction.do?id=161298&year=2005 Instead of http://localhost:8080/myApp/myAction.do?id=161298&year=2005 As required by the DTD declared

Re: URL parameters separator

2007-04-20 Thread Harring Figueiredo
I am not sure if the DTD declares that (I did not take a look at it), but basically the way to pass param on a HTML URL is the way it was generated - Every single HTTP server will not parse the parameters correctly if it is in the form that you want. If you have some special parser or that is inde

[OT] Re: URL parameters separator

2007-04-20 Thread Antonio Petrelli
2007/4/20, Marcello Savino <[EMAIL PROTECTED]>: The code works good. But the generated url are in this form: http://localhost:8080/myApp/myAction.do?id=161298&year=2005 Instead of http://localhost:8080/myApp/myAction.do?id=161298&year=2005 As required by the DTD declared (xhtml 1.0 strict)