[appengine-java] Re: Servlet request parameters empty

2010-05-04 Thread Rob
That did the trick, I love you man! :O) Now, how would I perform the same with a POST if I needed to? -Rob On May 4, 2:07 am, Stephan Hartmann wrote: > if you want to get your data as request parameter, you should use "GET" > instead of "POST" and /or let the default contentType > "applicatio

[appengine-java] Re: Servlet request parameters empty

2010-05-04 Thread Rob
Just read the "and/or", POST working great this way too. Thanks again! -Rob On May 4, 7:30 am, Rob wrote: > That did the trick, I love you man! :O) > > Now, how would I perform the same with a POST if I needed to? > > -Rob > > On May 4, 2:07 am, Stephan Hartmann wrote: > > > > > > > if you want

Re: [appengine-java] Re: Servlet request parameters empty

2010-05-04 Thread Stephan Hartmann
2010/5/4 Rob > That did the trick, I love you man! :O) > > :-) > Now, how would I perform the same with a POST if I needed to? > > If you want to POST your data as key/value pairs like with GET, and jQuery puts it into the body of the request instead of the query string (i don't know the implem