The original URI is (let's say):
http://xx.xx.xxx.xx:8000/mypath?parm1=1&parm2=he
getRequestURI
returns : http://xx.xx.xxx.xx:8000/mypath?parm1=1
It ignores the 2nd parameter.
If I replace the &
by comma(s), it returns the full URI with all the parameters.
Have you experienced the same problem? Have you any solution?
Is it a way of reading the first GET header line via another method? (Using HTTPServer
).