org.jboss.wsf.spi.invocation
Interface RequestHandler


public interface RequestHandler

A general JAXWS request handler.

Since:
20-Apr-2007
Author:
Thomas.Diesler@jboss.com

Method Summary
 void handleHttpRequest(Endpoint endpoint, javax.servlet.http.HttpServletRequest req, javax.servlet.http.HttpServletResponse res, javax.servlet.ServletContext context)
          Handle a web service http request
 void handleRequest(Endpoint endpoint, java.io.InputStream inputStream, java.io.OutputStream outputStream, InvocationContext context)
          Handle a web service request
 void handleWSDLRequest(Endpoint endpoint, java.io.OutputStream output, InvocationContext context)
          Handle a wsdl request
 

Method Detail

handleHttpRequest

void handleHttpRequest(Endpoint endpoint,
                       javax.servlet.http.HttpServletRequest req,
                       javax.servlet.http.HttpServletResponse res,
                       javax.servlet.ServletContext context)
                       throws javax.servlet.ServletException,
                              java.io.IOException
Handle a web service http request

Throws:
javax.servlet.ServletException
java.io.IOException

handleRequest

void handleRequest(Endpoint endpoint,
                   java.io.InputStream inputStream,
                   java.io.OutputStream outputStream,
                   InvocationContext context)
                   throws java.io.IOException
Handle a web service request

Throws:
java.io.IOException

handleWSDLRequest

void handleWSDLRequest(Endpoint endpoint,
                       java.io.OutputStream output,
                       InvocationContext context)
                       throws java.io.IOException
Handle a wsdl request

Throws:
java.io.IOException


Copyright © 2010 JBoss, a division of Red Hat. All Rights Reserved.