You are viewing a plain text version of this content. The canonical link for it is here.
Posted to stonehenge-commits@incubator.apache.org by dr...@apache.org on 2009/04/30 22:27:03 UTC

svn commit: r770472 - /incubator/stonehenge/trunk/stocktrader/dotnet/RunServices.bat

Author: drewbai
Date: Thu Apr 30 22:27:02 2009
New Revision: 770472

URL: http://svn.apache.org/viewvc?rev=770472&view=rev
Log:
STONEHENGE-33-v3.patch committed for Ben

Based on comments Daniel made in the Interop Guide this script didn't work if the user had a space in their %dotnet_root% path

Modified:
    incubator/stonehenge/trunk/stocktrader/dotnet/RunServices.bat

Modified: incubator/stonehenge/trunk/stocktrader/dotnet/RunServices.bat
URL: http://svn.apache.org/viewvc/incubator/stonehenge/trunk/stocktrader/dotnet/RunServices.bat?rev=770472&r1=770471&r2=770472&view=diff
==============================================================================
--- incubator/stonehenge/trunk/stocktrader/dotnet/RunServices.bat (original)
+++ incubator/stonehenge/trunk/stocktrader/dotnet/RunServices.bat Thu Apr 30 22:27:02 2009
@@ -31,12 +31,12 @@
 if errorlevel 2 SET runMode=release
 
 :OpsHost
-IF NOT EXIST %~dp0order_processor\bin\%runMode%\Trade.orderProcessorConsoleHost.exe GOTO NoOpsHost
-START %~dp0order_processor\bin\%runMode%\Trade.orderProcessorConsoleHost.exe
+IF NOT EXIST "%~dp0order_processor\bin\%runMode%\Trade.orderProcessorConsoleHost.exe" GOTO NoOpsHost
+START ".NET Order Processing Service" "%~dp0order_processor\bin\%runMode%\Trade.orderProcessorConsoleHost.exe"
 
 :BsHost
-IF NOT EXIST %~dp0business_service\bin\%runMode%\Trade.BusinessServiceConsole.exe GOTO NoBsHost
-START %~dp0business_service\bin\%runMode%\Trade.BusinessServiceConsole.exe
+IF NOT EXIST "%~dp0business_service\bin\%runMode%\Trade.BusinessServiceConsole.exe" GOTO NoBsHost
+START ".NET Business Service" "%~dp0business_service\bin\%runMode%\Trade.BusinessServiceConsole.exe"
 GOTO Complete
 
 :NoOpsHost