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 011B9E8F5 for ; Wed, 28 Nov 2012 16:57:35 +0000 (UTC) Received: (qmail 27081 invoked by uid 500); 28 Nov 2012 16:57:34 -0000 Delivered-To: apmail-cxf-commits-archive@cxf.apache.org Received: (qmail 26954 invoked by uid 500); 28 Nov 2012 16:57:34 -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 26947 invoked by uid 99); 28 Nov 2012 16:57:33 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 28 Nov 2012 16:57:33 +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; Wed, 28 Nov 2012 16:57:31 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 591982388A40; Wed, 28 Nov 2012 16:57:09 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1414811 - in /cxf/branches/2.6.x-fixes/distribution/src/main/release/samples/wsdl_first_dynamic_client/src/main: java/demo/hw/server/SpringServer.java java/demo/hw/server/server-beans.xml resources/server-beans.xml Date: Wed, 28 Nov 2012 16:57:09 -0000 To: commits@cxf.apache.org From: gmazza@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20121128165709.591982388A40@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: gmazza Date: Wed Nov 28 16:57:08 2012 New Revision: 1414811 URL: http://svn.apache.org/viewvc?rev=1414811&view=rev Log: Better Mavenized wsdl_first_dynamic_client sample. Added: cxf/branches/2.6.x-fixes/distribution/src/main/release/samples/wsdl_first_dynamic_client/src/main/resources/server-beans.xml - copied unchanged from r1414802, cxf/trunk/distribution/src/main/release/samples/wsdl_first_dynamic_client/src/main/resources/server-beans.xml Removed: cxf/branches/2.6.x-fixes/distribution/src/main/release/samples/wsdl_first_dynamic_client/src/main/java/demo/hw/server/server-beans.xml Modified: cxf/branches/2.6.x-fixes/distribution/src/main/release/samples/wsdl_first_dynamic_client/src/main/java/demo/hw/server/SpringServer.java Modified: cxf/branches/2.6.x-fixes/distribution/src/main/release/samples/wsdl_first_dynamic_client/src/main/java/demo/hw/server/SpringServer.java URL: http://svn.apache.org/viewvc/cxf/branches/2.6.x-fixes/distribution/src/main/release/samples/wsdl_first_dynamic_client/src/main/java/demo/hw/server/SpringServer.java?rev=1414811&r1=1414810&r2=1414811&view=diff ============================================================================== --- cxf/branches/2.6.x-fixes/distribution/src/main/release/samples/wsdl_first_dynamic_client/src/main/java/demo/hw/server/SpringServer.java (original) +++ cxf/branches/2.6.x-fixes/distribution/src/main/release/samples/wsdl_first_dynamic_client/src/main/java/demo/hw/server/SpringServer.java Wed Nov 28 16:57:08 2012 @@ -26,7 +26,7 @@ public class SpringServer { protected SpringServer() throws Exception { System.out.println("Starting Server"); // creating the context sets the server into motion. - new ClassPathXmlApplicationContext(new String[] {"/demo/hw/server/server-beans.xml"}); + new ClassPathXmlApplicationContext(new String[] {"/server-beans.xml"}); } public static void main(String args[]) throws Exception {