从ASP.NET应用程序启动java.exe时出现未知错误

时间:2012-02-28 04:38:03

标签: asp.net permissions windows-server-2008 iis-7.5 application-pool

在这些代码行上:

// Run compiler
Process p = System.Diagnostics.Process.Start("java.exe", ex);
p.WaitForExit();

我们收到此错误:

Server Error in '/' Application.

Unknown error (0xfffffffe)

Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. 

Exception Details: System.ComponentModel.Win32Exception: Unknown error (0xfffffffe)

Source Error: 

An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.

Stack Trace: 


[Win32Exception (0x80004005): Unknown error (0xfffffffe)]
   System.Diagnostics.Process.StartWithShellExecuteEx(ProcessStartInfo startInfo) +912
   System.Diagnostics.Process.Start() +136
   System.Diagnostics.Process.Start(ProcessStartInfo startInfo) +49
   Arcade.UploadFunctions.minifyC2Runtime(Int32 GameID) +333
   Arcade.GameFunctions.createGame(Int32 CatID, String Name, String Description, String Instructions, Int32 UserId, Int32 Width, Int32 Height, Int32 ParentGameID) +1338
   ArcadeSubmit.submitGame(Object sender, EventArgs e) +1329
   System.Web.UI.WebControls.Button.OnClick(EventArgs e) +118
   System.Web.UI.WebControls.Button.RaisePostBackEvent(String eventArgument) +112
   System.Web.UI.WebControls.Button.System.Web.UI.IPostBackEventHandler.RaisePostBackEvent(String eventArgument) +10
   System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) +13
   System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) +36
   System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +5563

Version Information: Microsoft .NET Framework Version:4.0.30319; ASP.NET Version:4.0.30319.272

正如我在其他问题中所指出的,这似乎是一个权限错误。但是,如果我回收我的应用程序池,则此错误消失。然后它会在几个小时左右再次开始抛出此错误。

相关的apppool以LocalService身份运行。任何人都知道会导致这种情况破裂吗?

编辑:事件查看器中的更多详细信息错误

Event code: 3005 
Event message: An unhandled exception has occurred. 
Event time: 2/29/2012 8:15:12 AM 
Event time (UTC): 2/29/2012 8:15:12 AM 
Event ID: 6b5770960c4f41b1a9ba10045b7b50d4 
Event sequence: 131746 
Event occurrence: 480 
Event detail code: 0 

Application information: 
    Application domain: /LM/W3SVC/1/ROOT-26-129749512365140162 
    Trust level: Full 
    Application Virtual Path: / 
    Application Path: C:\inetpub\wwwroot\Scirra\ 
    Machine name: WIN-MT04GJ7U5CB 

Process information: 
    Process ID: 8276 
    Process name: w3wp.exe 
    Account name: NT AUTHORITY\LOCAL SERVICE 

Exception information: 
    Exception type: Win32Exception 
    Exception message: Unknown error (0xfffffffe)
   at System.Diagnostics.Process.StartWithShellExecuteEx(ProcessStartInfo startInfo)
   at System.Diagnostics.Process.Start()
   at System.Diagnostics.Process.Start(ProcessStartInfo startInfo)
   at Arcade.UploadFunctions.minifyC2Runtime(Int32 GameID)
   at Arcade.GameFunctions.createGame(Int32 CatID, String Name, String Description, String Instructions, Int32 UserId, Int32 Width, Int32 Height, Int32 ParentGameID)
   at ArcadeSubmit.submitGame(Object sender, EventArgs e)
   at System.Web.UI.WebControls.Button.OnClick(EventArgs e)
   at System.Web.UI.WebControls.Button.RaisePostBackEvent(String eventArgument)
   at System.Web.UI.WebControls.Button.System.Web.UI.IPostBackEventHandler.RaisePostBackEvent(String eventArgument)
   at System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument)
   at System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData)
   at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)



Request information: 
    Request URL: http://www.scirra.com/ArcadeSubmit.aspx 
    Request path: /ArcadeSubmit.aspx 
    User host address: [censored] 
    User:  
    Is authenticated: False 
    Authentication Type:  
    Thread account name: NT AUTHORITY\LOCAL SERVICE 

Thread information: 
    Thread ID: 5 
    Thread account name: NT AUTHORITY\LOCAL SERVICE 
    Is impersonating: False 
    Stack trace:    at System.Diagnostics.Process.StartWithShellExecuteEx(ProcessStartInfo startInfo)
   at System.Diagnostics.Process.Start()
   at System.Diagnostics.Process.Start(ProcessStartInfo startInfo)
   at Arcade.UploadFunctions.minifyC2Runtime(Int32 GameID)
   at Arcade.GameFunctions.createGame(Int32 CatID, String Name, String Description, String Instructions, Int32 UserId, Int32 Width, Int32 Height, Int32 ParentGameID)
   at ArcadeSubmit.submitGame(Object sender, EventArgs e)
   at System.Web.UI.WebControls.Button.OnClick(EventArgs e)
   at System.Web.UI.WebControls.Button.RaisePostBackEvent(String eventArgument)
   at System.Web.UI.WebControls.Button.System.Web.UI.IPostBackEventHandler.RaisePostBackEvent(String eventArgument)
   at System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument)
   at System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData)
   at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)


Custom event details: 

0 个答案:

没有答案