Hi,
I have created a java method that take as arguments 2 object: httpServletRequest and httpServletRespose.
This class must simply analyze remote http requests and return http responses.
How can I test my application on localhost?
public void processImage(HttpServletRequest request, HttpServletResponse response) {
//process request
//write response
}
Thank you
Adriano.
