right! that's where the data come from.
 rd  = new BufferedReader(new
InputStreamReader(requestGlobals.getHTTPServletRequest().getInputStream()));

        StringBuilder sb =  new StringBuilder();
         String line = null;
         while ((line = rd.readLine()) != null)
            sb.append(line);
        System.out.println(sb.toString());

--
View this message in context: 
http://tapestry.1045711.n5.nabble.com/T5-accessing-json-objects-posted-in-body-from-Groovy-tp4581287p4581362.html
Sent from the Tapestry - User mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org

Reply via email to