Return-Path: Delivered-To: apmail-ws-tuscany-commits-archive@locus.apache.org Received: (qmail 28291 invoked from network); 21 Sep 2006 11:17:54 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 21 Sep 2006 11:17:54 -0000 Received: (qmail 79885 invoked by uid 500); 21 Sep 2006 11:17:54 -0000 Delivered-To: apmail-ws-tuscany-commits-archive@ws.apache.org Received: (qmail 79863 invoked by uid 500); 21 Sep 2006 11:17:54 -0000 Mailing-List: contact tuscany-commits-help@ws.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: tuscany-dev@ws.apache.org Delivered-To: mailing list tuscany-commits@ws.apache.org Received: (qmail 79852 invoked by uid 99); 21 Sep 2006 11:17:54 -0000 Received: from idunn.apache.osuosl.org (HELO idunn.apache.osuosl.org) (140.211.166.84) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 21 Sep 2006 04:17:54 -0700 Authentication-Results: idunn.apache.osuosl.org smtp.mail=ajborley@apache.org; spf=permerror X-ASF-Spam-Status: No, hits=-9.4 required=5.0 tests=ALL_TRUSTED,NO_REAL_NAME Received-SPF: error (idunn.apache.osuosl.org: domain apache.org from 140.211.166.113 cause and error) Received: from [140.211.166.113] ([140.211.166.113:61079] helo=eris.apache.org) by idunn.apache.osuosl.org (ecelerity 2.1.1.8 r(12930)) with ESMTP id EB/E8-04092-2D472154 for ; Thu, 21 Sep 2006 04:17:44 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id ED7091A981A; Thu, 21 Sep 2006 04:17:26 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r448516 - in /incubator/tuscany/cpp/sca/samples: PythonCalculator/deploy.cmd ides/devstudio7/projects/Calculator/wsdeploy.cmd Date: Thu, 21 Sep 2006 11:17:26 -0000 To: tuscany-commits@ws.apache.org From: ajborley@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20060921111726.ED7091A981A@eris.apache.org> X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: ajborley Date: Thu Sep 21 04:17:26 2006 New Revision: 448516 URL: http://svn.apache.org/viewvc?view=rev&rev=448516 Log: Updated sample deployment files to include the runwsserver.bat files introduced by Sebastien Modified: incubator/tuscany/cpp/sca/samples/PythonCalculator/deploy.cmd incubator/tuscany/cpp/sca/samples/ides/devstudio7/projects/Calculator/wsdeploy.cmd Modified: incubator/tuscany/cpp/sca/samples/PythonCalculator/deploy.cmd URL: http://svn.apache.org/viewvc/incubator/tuscany/cpp/sca/samples/PythonCalculator/deploy.cmd?view=diff&rev=448516&r1=448515&r2=448516 ============================================================================== --- incubator/tuscany/cpp/sca/samples/PythonCalculator/deploy.cmd (original) +++ incubator/tuscany/cpp/sca/samples/PythonCalculator/deploy.cmd Thu Sep 21 04:17:26 2006 @@ -26,22 +26,28 @@ set destinationPath=%2 ) -if not exist %destinationPath%\packages mkdir %destinationPath%\packages +if not exist %destinationPath%\packages mkdir %destinationPath%\packages if not exist %destinationPath%\packages\sample.calculator mkdir %destinationPath%\packages\sample.calculator - copy %sourcePath%\sample.calculator\*.componentType %destinationPath%\packages\sample.calculator -copy %sourcePath%\sample.calculator\*.composite %destinationPath%\packages\sample.calculator -copy %sourcePath%\sample.calculator\*.py %destinationPath%\packages\sample.calculator +copy %sourcePath%\sample.calculator\*.composite %destinationPath%\packages\sample.calculator +copy %sourcePath%\sample.calculator\*.py %destinationPath%\packages\sample.calculator copy %sourcePath%\sample.calculator\Calculator.wsdl %destinationPath%\packages\sample.calculator -if not exist %destinationPath%\bin mkdir %destinationPath%\bin -copy %sourcePath%\sample.calculator.client\calculator_client.py %destinationPath%\bin -copy %sourcePath%\sample.calculator.client\runclient.bat %destinationPath%\bin +if not exist %destinationPath%\packages\sample.calculator.client mkdir %destinationPath%\packages\sample.calculator.client +copy %sourcePath%\sample.calculator.client\calculator_client.py %destinationPath%\packages\sample.calculator.client +if not exist %destinationPath%\packages\sample.calculator.wsclient mkdir %destinationPath%\packages\sample.calculator.wsclient +copy %sourcePath%\sample.calculator.wsclient\calculator_wsclient.py %destinationPath%\packages\sample.calculator.wsclient +copy %sourcePath%\sample.calculator.wsclient\sample.calculator.wsclient.composite %destinationPath%\packages\sample.calculator.wsclient +copy %sourcePath%\sample.calculator.wsclient\Calculator.wsdl %destinationPath%\packages\sample.calculator.wsclient -if not exist %destinationPath%\configuration mkdir %destinationPath%\configuration +if not exist %destinationPath%\configuration mkdir %destinationPath%\configuration if not exist %destinationPath%\configuration\sample.calculator.solution mkdir %destinationPath%\configuration\sample.calculator.solution - copy %sourcePath%\sample.calculator.solution\*.composite %destinationPath%\configuration\sample.calculator.solution + +if not exist %destinationPath%\bin mkdir %destinationPath%\bin +copy %sourcePath%\sample.calculator.client\runclient.bat %destinationPath%\bin +copy %sourcePath%\sample.calculator\runwsserver.bat %destinationPath%\bin +copy %sourcePath%\sample.calculator.wsclient\runwsclient.bat %destinationPath%\bin endlocal Modified: incubator/tuscany/cpp/sca/samples/ides/devstudio7/projects/Calculator/wsdeploy.cmd URL: http://svn.apache.org/viewvc/incubator/tuscany/cpp/sca/samples/ides/devstudio7/projects/Calculator/wsdeploy.cmd?view=diff&rev=448516&r1=448515&r2=448516 ============================================================================== --- incubator/tuscany/cpp/sca/samples/ides/devstudio7/projects/Calculator/wsdeploy.cmd (original) +++ incubator/tuscany/cpp/sca/samples/ides/devstudio7/projects/Calculator/wsdeploy.cmd Thu Sep 21 04:17:26 2006 @@ -49,7 +49,8 @@ if %buildMode% == Debug ( copy %currentPath%\WSClient\%buildMode%\calculator_wsclient.pdb %destinationPath%\bin ) -copy %sourcePath%\sample.calculator.wsclient\runwsclient.bat %destinationPath%\bin +copy %sourcePath%\sample.calculator.wsclient\runwsclient.bat %destinationPath%\bin +copy %sourcePath%\sample.calculator\runwsserver.bat %destinationPath%\bin if not exist %destinationPath%\configuration mkdir %destinationPath%\configuration --------------------------------------------------------------------- To unsubscribe, e-mail: tuscany-commits-unsubscribe@ws.apache.org For additional commands, e-mail: tuscany-commits-help@ws.apache.org