# This patch file was generated by NetBeans IDE # Following Index: paths are relative to: /export/home/vbk/release551/serverplugins/sun/appsrv81 # This patch can be applied using context Tools: Patch action on respective folder. # It uses platform neutral UTF-8 encoding and \n newlines. # Above lines and this line are ignored by the patching process. Index: src/org/netbeans/modules/j2ee/sun/ide/j2ee/StartSunServer.java *** /export/home/vbk/release551/serverplugins/sun/appsrv81/src/org/netbeans/modules/j2ee/sun/ide/j2ee/StartSunServer.java Base (1.4.4.6.2.23.10.3) --- /export/home/vbk/release551/serverplugins/sun/appsrv81/src/org/netbeans/modules/j2ee/sun/ide/j2ee/StartSunServer.java Locally Modified (Based On 1.4.4.6.2.23.10.3) *************** *** 355,365 **** } ! String asadminCmd = domainDir + File.separator + domain +File.separator + "bin" + File.separator + "stopserv"; if (File.separator.equals("\\")) { asadminCmd = asadminCmd + ".bat"; //NOI18N } ! String arr[] = { asadminCmd, " "}; errorCode = exec(arr, CMD_STOP, null); if (errorCode != 0) { --- 355,367 ---- } ! String asadminCmd = installRoot + File.separator + ! "bin" + File.separator + "asadmin"; //NOI18N if (File.separator.equals("\\")) { asadminCmd = asadminCmd + ".bat"; //NOI18N } ! String arr[] = { asadminCmd, "stop-domain", "--domaindir", // NOI18N ! domainDir, domain }; errorCode = exec(arr, CMD_STOP, null); if (errorCode != 0) {