I am making a web app and part of the app is designed in ASP.NET MVC and another part in Java with GWT. I need to send a parameter from GWT in ASP.NET.Here is the code:
RequestBuilder builder = new RequestBuilder(RequestBuilder.GET, getRootUrl() + "/" + "SOME_CONTROLLER");
return builder.sendRequest("parameter", callback);
My question is: How can I retrieve this string "parameter" in ASP.NET?