• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

ASP.NET 2.0.50727.0 ERROR code 3005

N

Nachtegaalh

Guest
I'm recieving this error in the logfiles. And one off my customers is building a new website and is having troubel with our plesk envirorment.

Event code: 3005
Event message: An unhandled exception has occurred.
Event time: 10/15/2007 3:56:24 PM
Event time (UTC): 10/15/2007 1:56:24 PM
Event ID: 2a7547eef6af446289c1f4760b444b23
Event sequence: 249
Event occurrence: 4
Event detail code: 0

Application information:
Application domain: /LM/W3SVC/6270/Root-13-128369276828593750
Trust level: Full
Application Virtual Path: /
Application Path: D:\vhost\daankromhout.nl\httpdocs\
Machine name: DELL5MPT31J

Process information:
Process ID: 1468
Process name: w3wp.exe
Account name: DELL5MPT31J\IWAM_plesk(default)

Exception information:
Exception type: InvalidCastException
Exception message: Conversion from string "11111a" to type 'Integer' is not valid.

Request information:
Request URL: http://www.daankromhout.nl/development/index.aspx?p=catalogus
Request path: /development/index.aspx
User host address: 83.161.70.32
User:
Is authenticated: False
Authentication Type:
Thread account name: DELL5MPT31J\IWAM_plesk(default)

Thread information:
Thread ID: 5
Thread account name: DELL5MPT31J\IWAM_plesk(default)
Is impersonating: False
Stack trace: at Microsoft.VisualBasic.CompilerServices.IntegerType.FromString(String Value)
at daankromhoutAdmin.catalogus.bAddItem_Click(Object sender, EventArgs e) in c:\inetpub\wwwroot\daankromhoutAdmin\controls\catalogus.ascx.vb:line 249
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:

For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp.
 
this could be the reason:

An application error occurred on the server. The current custom error settings for this application prevent the details of the application error from being viewed remotely (for security reasons). It could, however, be viewed by browsers running on the local server machine

check permissions. run reconfigurator on server in order to check plesk permissions;

To enable the details of this specific error message to be viewable on remote machines, please create a <customErrors> tag within a "web.config" configuration file located in the root directory of the current web application. This <customErrors> tag should then have its "mode" attribute set to "Off".
 
Found it. With the help of the supportteam from swsoft ;-)

CAUSE
The system TEMP and TMP variables point to a folder that does not exist. The compiler generates temporary files in the folder where the TEMP and the TMP variables point to before the files are copied to the Temporary ASP.NET Files folder. However, the folder where the system variables point to is deleted when you restart the computer. Therefore, the compiler cannot generate the temporary files.

RESOLUTION
1. Create a temporary folder under %Systemroot%, and then name it Temp.
2. Grant full permissions on the Temp folder to the aspnet user account in .NET Framework 1.0 or to the NETWORK SERVICE user account in .NET Framework 1.1.
3. Right-click My Computer, and then click Properties.
4. On the Advanced tab, click Environment Variables.
5. Select the TEMP variable under System variables, and then click Edit.
6. Type %SystemRoot%\TEMP in the Variable Value box, and then click OK.
7. Repeat steps 5 and 6 to edit the TMP variable. Click OK two times.
8. Click Start, and then click Run.
9. To reset Internet Information Services (IIS), type iisreset on the command prompt.

Note If the error message that is mentioned in the "Symptoms" section of this article persists, restart the computer.

Regards

Henk
 
Did that fix the issue for you? Im not sure why plesk support figured it was a permissions issue based on the error you are having.

Looking at the error you got it seems theres a problem with the ASP.NET code on the site not an issue with the site setup.

Conversion from string "11111a" to type 'Integer' is not valid.

This is in -
c:\inetpub\wwwroot\daankromhoutAdmin\controls\cata
logus.ascx.vb

This would indicate to me there is a problem with the websites code, its trying to turn "11111a" into a number and thats why its falling over.

I would personally use a test ASP.NET script on the site to see if ASP.NET is working and its not a problem with the customers website code.
 
Back
Top