Return-Path: X-Original-To: apmail-cxf-commits-archive@www.apache.org Delivered-To: apmail-cxf-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 39DA6E634 for ; Fri, 4 Jan 2013 12:18:29 +0000 (UTC) Received: (qmail 96516 invoked by uid 500); 4 Jan 2013 12:18:28 -0000 Delivered-To: apmail-cxf-commits-archive@cxf.apache.org Received: (qmail 96441 invoked by uid 500); 4 Jan 2013 12:18:28 -0000 Mailing-List: contact commits-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 commits@cxf.apache.org Received: (qmail 96432 invoked by uid 99); 4 Jan 2013 12:18:28 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 04 Jan 2013 12:18:28 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 04 Jan 2013 12:18:26 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 63DB423888EA; Fri, 4 Jan 2013 12:18:05 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1428819 - in /cxf/branches/2.6.x-fixes/distribution/src/main/release/samples: jaxws_async/src/main/java/demo/hw/server/GreeterImpl.java wsdl_first_https/README.txt Date: Fri, 04 Jan 2013 12:18:05 -0000 To: commits@cxf.apache.org From: coheigea@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20130104121805.63DB423888EA@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: coheigea Date: Fri Jan 4 12:18:04 2013 New Revision: 1428819 URL: http://svn.apache.org/viewvc?rev=1428819&view=rev Log: Merged revisions 1428816 via git cherry-pick from https://svn.apache.org/repos/asf/cxf/trunk ........ r1428816 | coheigea | 2013-01-04 12:07:49 +0000 (Fri, 04 Jan 2013) | 2 lines Minor sample cleanup ........ Modified: cxf/branches/2.6.x-fixes/distribution/src/main/release/samples/jaxws_async/src/main/java/demo/hw/server/GreeterImpl.java cxf/branches/2.6.x-fixes/distribution/src/main/release/samples/wsdl_first_https/README.txt Modified: cxf/branches/2.6.x-fixes/distribution/src/main/release/samples/jaxws_async/src/main/java/demo/hw/server/GreeterImpl.java URL: http://svn.apache.org/viewvc/cxf/branches/2.6.x-fixes/distribution/src/main/release/samples/jaxws_async/src/main/java/demo/hw/server/GreeterImpl.java?rev=1428819&r1=1428818&r2=1428819&view=diff ============================================================================== --- cxf/branches/2.6.x-fixes/distribution/src/main/release/samples/jaxws_async/src/main/java/demo/hw/server/GreeterImpl.java (original) +++ cxf/branches/2.6.x-fixes/distribution/src/main/release/samples/jaxws_async/src/main/java/demo/hw/server/GreeterImpl.java Fri Jan 4 12:18:04 2013 @@ -41,7 +41,7 @@ public class GreeterImpl implements Gree private static final Logger LOG = Logger.getLogger(GreeterImpl.class.getPackage().getName()); - /* (non-Javadoc) + /* (non-Javadoc) * @see org.apache.hello_world_soap_http.Greeter#greetMeSometime(java.lang.String) */ @UseAsyncMethod @@ -51,7 +51,7 @@ public class GreeterImpl implements Gree return "How are you " + me; } - public Future greetMeSometimeAsync(final String me, + public Future greetMeSometimeAsync(final String me, final AsyncHandler asyncHandler) { LOG.info("Executing operation greetMeSometimeAsync asynchronously"); System.out.println("Executing operation greetMeSometimeAsync asynchronously\n"); Modified: cxf/branches/2.6.x-fixes/distribution/src/main/release/samples/wsdl_first_https/README.txt URL: http://svn.apache.org/viewvc/cxf/branches/2.6.x-fixes/distribution/src/main/release/samples/wsdl_first_https/README.txt?rev=1428819&r1=1428818&r2=1428819&view=diff ============================================================================== --- cxf/branches/2.6.x-fixes/distribution/src/main/release/samples/wsdl_first_https/README.txt (original) +++ cxf/branches/2.6.x-fixes/distribution/src/main/release/samples/wsdl_first_https/README.txt Fri Jan 4 12:18:04 2013 @@ -1,10 +1,8 @@ Hello World Demo using HTTPS communications ============================================= -This demo provides a "hello world" example of making -SOAP calls with HTTPS. +This demo provides a "hello world" example of making SOAP calls with HTTPS. -Please review the README in the samples directory before -continuing. +Please review the README in the samples directory before continuing. Building and running the demo using Maven ----------------------------------------- @@ -75,7 +73,6 @@ Here, configuration is done via Java API Spring XML files. The client does NOT provide the appropriate credentials programmatically and so the invocation on the server fails. - Scenario 4: (-Psecure.client.non.spring) Same Java class as in Scenario #3 is used, however the class is coded