I'm experimenting with java servlets using GWAN. It's easy to get GET requests to work using the api.Gwan class.
My problem is how do I get POST requests to work.
import api.Gwan;
public class ProccessGETRequest {
public static int jmain(long env, String[] args) {
//GET request is contained in the args
...
//but how do you access the POST request?
}
}
If this functionality does not exist, could someone suggest an implementation. This would be easier to figure out if the api.Gwan class were open source... :(