Return-Path: Delivered-To: apmail-ws-sandesha-dev-archive@www.apache.org Received: (qmail 75076 invoked from network); 19 Jan 2006 05:20:07 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 19 Jan 2006 05:20:07 -0000 Received: (qmail 10187 invoked by uid 500); 19 Jan 2006 05:20:05 -0000 Delivered-To: apmail-ws-sandesha-dev-archive@ws.apache.org Received: (qmail 10100 invoked by uid 500); 19 Jan 2006 05:20:03 -0000 Mailing-List: contact sandesha-dev-help@ws.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list sandesha-dev@ws.apache.org Received: (qmail 99928 invoked by uid 500); 19 Jan 2006 05:18:20 -0000 Delivered-To: apmail-ws-sandesha-cvs@ws.apache.org Received: (qmail 99776 invoked by uid 99); 19 Jan 2006 05:18:18 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 18 Jan 2006 21:18:18 -0800 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.29) with SMTP; Wed, 18 Jan 2006 21:18:15 -0800 Received: (qmail 73062 invoked by uid 65534); 19 Jan 2006 05:17:54 -0000 Message-ID: <20060119051754.73061.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r370379 - in /webservices/sandesha/trunk/test/src/org/apache/sandesha2: AddressablePingTest.java AnonymousPingTest.java PorpertyLoaderTest.java Date: Thu, 19 Jan 2006 05:17:54 -0000 To: sandesha-cvs@ws.apache.org From: chamikara@apache.org X-Mailer: svnmailer-1.0.5 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: chamikara Date: Wed Jan 18 21:17:32 2006 New Revision: 370379 URL: http://svn.apache.org/viewcvs?rev=370379&view=rev Log: Updates to comply with a change change in Axis2. Modified: webservices/sandesha/trunk/test/src/org/apache/sandesha2/AddressablePingTest.java webservices/sandesha/trunk/test/src/org/apache/sandesha2/AnonymousPingTest.java webservices/sandesha/trunk/test/src/org/apache/sandesha2/PorpertyLoaderTest.java Modified: webservices/sandesha/trunk/test/src/org/apache/sandesha2/AddressablePingTest.java URL: http://svn.apache.org/viewcvs/webservices/sandesha/trunk/test/src/org/apache/sandesha2/AddressablePingTest.java?rev=370379&r1=370378&r2=370379&view=diff ============================================================================== --- webservices/sandesha/trunk/test/src/org/apache/sandesha2/AddressablePingTest.java (original) +++ webservices/sandesha/trunk/test/src/org/apache/sandesha2/AddressablePingTest.java Wed Jan 18 21:17:32 2006 @@ -45,7 +45,7 @@ SimpleHTTPServer httpServer = null; public void setUp () throws AxisFault { - httpServer = new SimpleHTTPServer ("target\\repos\\server",8060); + httpServer = new SimpleHTTPServer ("target\\repos\\server","target\\repos\\server\\axis2.xml",8060); httpServer.start(); try { Thread.sleep(300); @@ -65,7 +65,7 @@ String transportTo = "http://127.0.0.1:8060/axis2/services/RMInteropService"; String acksToEPR = "http://127.0.0.1:6060/axis2/services/__ANONYMOUS_SERVICE__"; - ConfigurationContext configContext = new ConfigurationContextFactory().createConfigurationContextFromFileSystem("target\\repos\\client"); + ConfigurationContext configContext = new ConfigurationContextFactory().createConfigurationContextFromFileSystem("target\\repos\\client","target\\repos\\server\\axis2.xml"); //clientOptions.setSoapVersionURI(SOAP12Constants.SOAP_ENVELOPE_NAMESPACE_URI); Options clientOptions = new Options (); Modified: webservices/sandesha/trunk/test/src/org/apache/sandesha2/AnonymousPingTest.java URL: http://svn.apache.org/viewcvs/webservices/sandesha/trunk/test/src/org/apache/sandesha2/AnonymousPingTest.java?rev=370379&r1=370378&r2=370379&view=diff ============================================================================== --- webservices/sandesha/trunk/test/src/org/apache/sandesha2/AnonymousPingTest.java (original) +++ webservices/sandesha/trunk/test/src/org/apache/sandesha2/AnonymousPingTest.java Wed Jan 18 21:17:32 2006 @@ -45,7 +45,7 @@ SimpleHTTPServer httpServer = null; public void setUp () throws AxisFault { - httpServer = new SimpleHTTPServer ("target\\repos\\server",8060); + httpServer = new SimpleHTTPServer ("target\\repos\\server","target\\repos\\server\\axis2.xml",8060); httpServer.start(); try { Thread.sleep(300); @@ -64,7 +64,7 @@ String to = "http://127.0.0.1:8060/axis2/services/RMInteropService"; String transportTo = "http://127.0.0.1:8060/axis2/services/RMInteropService"; - ConfigurationContext configContext = new ConfigurationContextFactory().createConfigurationContextFromFileSystem("target\\repos\\client"); + ConfigurationContext configContext = new ConfigurationContextFactory().createConfigurationContextFromFileSystem("target\\repos\\client","target\\repos\\server\\axis2.xml"); //clientOptions.setSoapVersionURI(SOAP12Constants.SOAP_ENVELOPE_NAMESPACE_URI); Options clientOptions = new Options (); Modified: webservices/sandesha/trunk/test/src/org/apache/sandesha2/PorpertyLoaderTest.java URL: http://svn.apache.org/viewcvs/webservices/sandesha/trunk/test/src/org/apache/sandesha2/PorpertyLoaderTest.java?rev=370379&r1=370378&r2=370379&view=diff ============================================================================== --- webservices/sandesha/trunk/test/src/org/apache/sandesha2/PorpertyLoaderTest.java (original) +++ webservices/sandesha/trunk/test/src/org/apache/sandesha2/PorpertyLoaderTest.java Wed Jan 18 21:17:32 2006 @@ -44,7 +44,7 @@ try { InputStream in = new FileInputStream (file); - manager.reload(in); + manager.loadPropertiesFromPropertyFile(in); in.close(); } catch (Exception e) { fail (e.getMessage()); --------------------------------------------------------------------- To unsubscribe, e-mail: sandesha-dev-unsubscribe@ws.apache.org For additional commands, e-mail: sandesha-dev-help@ws.apache.org