>From a GWT app I'm calling my Web2py server app.

String jsonData = "{'example' : 'example data'}";
builder.setHeader("Accept", "application/json");
builder.setHeader("Content-type", "application/json");
builder.setHeader("Content-length", Integer.toString(jsonData.length()));
builder.sendRequest(jsonData, new RequestCallback() { ... }

Where in Web2py can I access jsonData?
I've looked thru 'request' but can't locate "example data".



-- 

--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to