我用Mono申请了。在这个应用程序中,我将使用以下命令启动xsp4 WebServer:
string exe = "xsp4";
string args = "--root " + Path.Combine(Path.Combine(FSys.AppPath, "support"), "webapp");
args += " --port " + _activePort;
Process _procServerMac = new Process();
_procServerMac.EnableRaisingEvents = true;
_procServerMac.StartInfo.FileName = exe;
_procServerMac.StartInfo.Arguments = args;
_procServerMac.StartInfo.UseShellExecute = false;
_procServerMac.StartInfo.CreateNoWindow = true;
_procServerMac.Start();
如果我运行.app文件,从终端启动它,一切正常,但如果我通过双击运行.app(所以没有终端窗口),进程立即退出,xsp webserver永远不会启动。登记/> 怎么可能?
答案 0 :(得分:1)
解决方案
现在添加此行有效:args += " --nonstop ";