Add wso2bpel-ext code
[vfc/nfvo/wfengine.git] / wso2bpel-ext / wso2bpel-core / distribution / standalone / src / main / assembly / run.bat
1 @REM\r
2 @REM\r
3 @REM Copyright 2016 [ZTE] and others.\r
4 @REM\r
5 @REM Licensed under the Apache License, Version 2.0 (the "License");\r
6 @REM you may not use this file except in compliance with the License.\r
7 @REM You may obtain a copy of the License at\r
8 @REM\r
9 @REM     http://www.apache.org/licenses/LICENSE-2.0\r
10 @REM\r
11 @REM Unless required by applicable law or agreed to in writing, software\r
12 @REM distributed under the License is distributed on an "AS IS" BASIS,\r
13 @REM WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
14 @REM See the License for the specific language governing permissions and\r
15 @REM limitations under the License.\r
16 @REM\r
17 \r
18 @echo off\r
19 title wso2bpel-service\r
20 \r
21 set RUNHOME=%~dp0\r
22 echo ### RUNHOME: %RUNHOME%\r
23 echo ### Starting wso2bpel-service\r
24 \r
25 set JAVA="%JAVA_HOME%\bin\java.exe"\r
26 set port=8312\r
27 set jvm_opts=-Xms50m -Xmx128m\r
28 rem set jvm_opts=%jvm_opts% -Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,address=%port%,server=y,suspend=n\r
29 set class_path=%RUNHOME%;lib\*;%RUNHOME%wso2bpel-service.jar\r
30 echo ### jvm_opts: %jvm_opts%\r
31 echo ### class_path: %class_path%\r
32 \r
33 %JAVA% -classpath %class_path% %jvm_opts% org.openo.carbon.bpel.Wso2BpelApplication server %RUNHOME%conf/wso2bpel.yml\r
34 \r
35 IF ERRORLEVEL 1 goto showerror\r
36 exit\r
37 :showerror\r
38 echo WARNING: Error occurred during startup or Server abnormally stopped by way of killing the process,Please check!\r
39 echo After checking, press any key to close \r
40 pause\r
41 exit