Return-Path: Delivered-To: apmail-incubator-cxf-commits-archive@locus.apache.org Received: (qmail 32593 invoked from network); 8 Oct 2007 17:31:43 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 8 Oct 2007 17:31:43 -0000 Received: (qmail 90146 invoked by uid 500); 8 Oct 2007 17:31:31 -0000 Delivered-To: apmail-incubator-cxf-commits-archive@incubator.apache.org Received: (qmail 90022 invoked by uid 500); 8 Oct 2007 17:31:31 -0000 Mailing-List: contact cxf-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: cxf-dev@incubator.apache.org Delivered-To: mailing list cxf-commits@incubator.apache.org Received: (qmail 90013 invoked by uid 99); 8 Oct 2007 17:31:31 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 08 Oct 2007 10:31:31 -0700 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 08 Oct 2007 17:31:34 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 1CEEF1A9832; Mon, 8 Oct 2007 10:31:14 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r582902 - in /incubator/cxf/branches/2.0.x-fixes: ./ distribution/src/main/release/samples/integration/jca/hello_world_soap_http/ distribution/src/main/release/samples/integration/jca/hello_world_soap_http/src/demo/servlet/ Date: Mon, 08 Oct 2007 17:31:13 -0000 To: cxf-commits@incubator.apache.org From: dkulp@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20071008173114.1CEEF1A9832@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: dkulp Date: Mon Oct 8 10:31:12 2007 New Revision: 582902 URL: http://svn.apache.org/viewvc?rev=582902&view=rev Log: Merged revisions 579531 via svnmerge from https://svn.apache.org/repos/asf/incubator/cxf/trunk ........ r579531 | ningjiang | 2007-09-26 05:22:03 -0400 (Wed, 26 Sep 2007) | 1 line CXF-1063 applied the patch from Jeff, thanks. ........ Modified: incubator/cxf/branches/2.0.x-fixes/ (props changed) incubator/cxf/branches/2.0.x-fixes/distribution/src/main/release/samples/integration/jca/hello_world_soap_http/README.txt incubator/cxf/branches/2.0.x-fixes/distribution/src/main/release/samples/integration/jca/hello_world_soap_http/src/demo/servlet/HelloWorldServlet.java Propchange: incubator/cxf/branches/2.0.x-fixes/ ------------------------------------------------------------------------------ Binary property 'svnmerge-integrated' - no diff available. Modified: incubator/cxf/branches/2.0.x-fixes/distribution/src/main/release/samples/integration/jca/hello_world_soap_http/README.txt URL: http://svn.apache.org/viewvc/incubator/cxf/branches/2.0.x-fixes/distribution/src/main/release/samples/integration/jca/hello_world_soap_http/README.txt?rev=582902&r1=582901&r2=582902&view=diff ============================================================================== --- incubator/cxf/branches/2.0.x-fixes/distribution/src/main/release/samples/integration/jca/hello_world_soap_http/README.txt (original) +++ incubator/cxf/branches/2.0.x-fixes/distribution/src/main/release/samples/integration/jca/hello_world_soap_http/README.txt Mon Oct 8 10:31:12 2007 @@ -104,8 +104,7 @@ (Windows) > cd common > ant -The demo may be built from the directory -hello_world_soap_http. +The demo needs be built from the directory outbound. Issue the command: @@ -121,7 +120,7 @@ To launch the service: -1. Move into the sample/hello_world/ directory. +1. Move into the sample/wsdl_first/ directory. 2. launch server Issue the command: (Unix) % ant server Modified: incubator/cxf/branches/2.0.x-fixes/distribution/src/main/release/samples/integration/jca/hello_world_soap_http/src/demo/servlet/HelloWorldServlet.java URL: http://svn.apache.org/viewvc/incubator/cxf/branches/2.0.x-fixes/distribution/src/main/release/samples/integration/jca/hello_world_soap_http/src/demo/servlet/HelloWorldServlet.java?rev=582902&r1=582901&r2=582902&view=diff ============================================================================== --- incubator/cxf/branches/2.0.x-fixes/distribution/src/main/release/samples/integration/jca/hello_world_soap_http/src/demo/servlet/HelloWorldServlet.java (original) +++ incubator/cxf/branches/2.0.x-fixes/distribution/src/main/release/samples/integration/jca/hello_world_soap_http/src/demo/servlet/HelloWorldServlet.java Mon Oct 8 10:31:12 2007 @@ -31,6 +31,7 @@ import org.apache.cxf.connector.CXFConnectionFactory; import org.apache.cxf.connector.Connection; +import org.apache.cxf.jca.cxf.CXFConnectionRequestInfo; import org.apache.hello_world_soap_http.Greeter; public class HelloWorldServlet extends DemoServletBase { @@ -80,7 +81,8 @@ // create the connection // - return (Connection)factory.getConnection(Greeter.class, wsdlLocation, serviceName, portName); + CXFConnectionRequestInfo requestInfo = new CXFConnectionRequestInfo(Greeter.class, wsdlLocation, serviceName, portName); + return (Connection)factory.getConnection(requestInfo); }