org.apache.axis2.transport.http.server
Interface HttpService


public interface HttpService

Defines an HTTP request/response service for the SimpleHttpServer


Method Summary
 boolean process(SimpleRequest request, SimpleResponse response)
          This interface represents a serice to process HTTP requests.
 

Method Detail

process

public boolean process(SimpleRequest request,
                       SimpleResponse response)
                throws IOException
This interface represents a serice to process HTTP requests.

Parameters:
request - The HTTP request object.
response - The HTTP response object.
Returns:
true if this service was able to handle the request, false otherwise.
Throws:
IOException