Re: Is there any way to pass search query in POST parameter rather than body?

2014-11-26 Thread Kelsey Hamer
I had a similar issue. I manged to get the parameters from the post by doing: @Override public void handleRequest(final RestRequest request, final RestChannel channel) { MapString,String params = new HashMapString, String();

Re: Is there any way to pass search query in POST parameter rather than body?

2014-11-26 Thread Alex Roytman
Thanks Kelsey that could be useful. I managed to get my UI framework (ExtJS) to play better with POST so I am not dependent on having to use GET any more On Wed Nov 26 2014 at 5:54:43 PM Kelsey Hamer kelsey.ha...@gmail.com wrote: I had a similar issue. I manged to get the parameters from the