Return-Path: Delivered-To: apmail-cxf-issues-archive@www.apache.org Received: (qmail 61384 invoked from network); 11 Jun 2010 09:59:38 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 11 Jun 2010 09:59:38 -0000 Received: (qmail 84244 invoked by uid 500); 11 Jun 2010 09:59:38 -0000 Delivered-To: apmail-cxf-issues-archive@cxf.apache.org Received: (qmail 83347 invoked by uid 500); 11 Jun 2010 09:59:36 -0000 Mailing-List: contact issues-help@cxf.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cxf.apache.org Delivered-To: mailing list issues@cxf.apache.org Received: (qmail 83337 invoked by uid 99); 11 Jun 2010 09:59:35 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 11 Jun 2010 09:59:35 +0000 X-ASF-Spam-Status: No, hits=-1513.6 required=10.0 tests=ALL_TRUSTED,AWL X-Spam-Check-By: apache.org Received: from [140.211.11.22] (HELO thor.apache.org) (140.211.11.22) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 11 Jun 2010 09:59:35 +0000 Received: from thor (localhost [127.0.0.1]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o5B9xFQ4011307 for ; Fri, 11 Jun 2010 09:59:15 GMT Message-ID: <3261990.41991276250355012.JavaMail.jira@thor> Date: Fri, 11 Jun 2010 05:59:15 -0400 (EDT) From: "jimma (JIRA)" To: issues@cxf.apache.org Subject: [jira] Created: (CXF-2845) JAXWS2.2: Implement new added apis javax.xml.ws.spi.http.* MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 JAXWS2.2: Implement new added apis javax.xml.ws.spi.http.* ----------------------------------------------------------- Key: CXF-2845 URL: https://issues.apache.org/jira/browse/CXF-2845 Project: CXF Issue Type: Task Components: JAX-WS Runtime Reporter: jimma Assignee: jimma Fix For: 2.2.10 JAXWS.2.2 Spec says : 6.6 javax.xml.ws.spi.http (HTTP SPI) The classes in this package can be used for a portable deployment of JAX-WS web services in a HTTP con- tainer(for example, servlet container). This SPI enables to decouple the JAX-WS deployment and runtime and is not meant for end developers but for container or its extension developers. The HTTP SPI allows a deployment to use any available web services runtime for HTTP transport. Java EE6 web profile vendors can support JSR-109[16] deployments using the JAX-WS 2.2 runtime in Java SE platform. For example, a Servlet 3.0 extension can be used to do the JSR-109 deployment by reading deployment descriptors and hand-off the request processing to the web services runtime that is in Java SE platform. The HTTP SPI consists of the following classes: javax.xml.ws.spi.http.HttpContext HttpContext represents a mapping between the root URI path of a web service to a HttpHandler which is invoked to handle requests destined for that path on the associated container. javax.xml.ws.spi.http.HttpExchange This class encapsulates a HTTP request received and a re- sponse to be generated in one exchange. javax.xml.ws.spi.http.HttpHandler A handler which is invoked to process HTTP exchanges. javax.xml.ws.spi.Invoker Invoker hides the detail of calling into application endpoint implemen- tation. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.