ABu NeNe wrote:Hi is it possible to implement a servlet which generate no reponse? Please advise.
I'd say the answer is "no" -- your doGet() or doPost() method is called with request and response objects. You are free to ignore those objects, but the response is still sent back to the user. It's true you can call other methods, passing the request and response, and the other routines can change their states, but ultimately the response originating in the doGet() or doPost() is sent to the client.