Integrate wso2bps
[vfc/nfvo/wfengine.git] / wso2bpel-ext / wso2bpel-core / distribution / standalone / src / main / assembly / wso2bps / bin / shutdown.bat
1 @REM
2 @REM Copyright (C) 2015 ZTE, Inc. and others. All rights reserved. (ZTE)
3 @REM
4 @REM Licensed under the Apache License, Version 2.0 (the "License");
5 @REM you may not use this file except in compliance with the License.
6 @REM You may obtain a copy of the License at
7 @REM
8 @REM         http://www.apache.org/licenses/LICENSE-2.0
9 @REM
10 @REM Unless required by applicable law or agreed to in writing, software
11 @REM distributed under the License is distributed on an "AS IS" BASIS,
12 @REM WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 @REM See the License for the specific language governing permissions and
14 @REM limitations under the License.
15 @REM
16 @echo off
17 title stopping WSO2
18
19 set HOME=%~dp0
20 set Main_Class="org.wso2.carbon.bootstrap.Bootstrap"
21
22 echo ================== WSO2 info  =============================================
23 echo HOME=$HOME
24 echo Main_Class=%Main_Class%
25 echo ===============================================================================
26
27 echo ### Stopping WSO2
28 cd /d %HOME%
29
30 rem set JAVA_HOME=D:\WorkSoftware\jdk1.7.0_60
31 for /f "delims=" %%i in ('"%JAVA_HOME%\bin\jcmd"') do (
32   call find_kill_process "%%i" %Main_Class%
33 )
34 exit