Re: clunky

2002-04-08 Thread Shawn Bayern
On Mon, 8 Apr 2002, Steve Morrison wrote: > I noticed that 's in a are added backwards. > So if I have: > http://example.com/script.jsp";> > 1 > 2 > 3 > > It produces: > http://example.com/script.jsp?C=3&B=2&A=1 > > This isn't so good because I have an app that expects things > a certai

Re: clunky

2002-04-08 Thread Shawn Bayern
h this is to make sure that later parameters come first.) The goal is to interoperate well with JSP pages, and this is (unfortunately) incompatible with applications that care about the order of their request parameters and apply a different algorithm for their interpretation than JSP/Servlet does.

clunky

2002-04-08 Thread Steve Morrison
I noticed that 's in a are added backwards. So if I have: http://example.com/script.jsp";> 1 2 3 It produces: http://example.com/script.jsp?C=3&B=2&A=1 This isn't so good because I have an app that expects things a certain way. Also, I've found the whol