This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

SUPPORT Q&A - Server Error in '/Innovator' Application.

cadmageren - Wednesday, March 25, 2009 10:22 AM:

I have just installed Innovator on our server, - default settings, and gets the following error.

Any ideas?

/Michael Christoffersen

-------------

 Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately.

Compiler Error Message: CS1002: ; expected

Source Error:

Line 9:  </html>
Line 10: <%
Line 11: Dim qs As String = Request.ServerVariables("QUERY_STRING")
Line 12: If qs <> "" Then qs = "?" + qs
Line 13: Response.Redirect("Client/" + qs)


Source File: c:Program FilesArasInnovatorInnovatordefault.aspx    Line: 11

Server Error in '/Innovator' Application.

Compilation Error

 

 



Anonymous - Wednesday, March 25, 2009 3:49 PM:

Unusual error for me.

1) What are your Server Variables?

Example:

Windows Server 2003 x86 with .NET 2.0

2) What database server are you running?  SQL Server Express 2005?

3) What are your steps to repeat?  Is this error happening when you type in the URL to connect to Aras Innovator (localhost/InnovatorSever) or after you try the admin credentials and select the login button?

Thanks,

Chris



cadmageren - Thursday, March 26, 2009 4:16 AM:

1. Windows Server 2003 x86 with .NET 3.5 (2.0.50727)

2. SQL Server 2005 Express.

3. Running it from the localhost/InnovatorSever on the server. And do not even come to the "Login window"

Thanks in advance.

 



tstickel - Friday, March 27, 2009 3:53 PM:

Hi

It looks to me that what is happening is that the code in default.aspx that is to be run on the server is being compiled as if was written in C#, not Visual Basic Script.  So the compiler doesn't find a ";" at the end of a statement and that triggers a compile error.

There is a setting in IIS where the default ASP language can set.  For my Innovator Web Sites, it's set to VBScript.   Any chance that it is set to C# for your Innovator web site?  I don't know if this helps any, just a guess.



cadmageren - Monday, March 30, 2009 2:59 AM:



cadmageren - Monday, March 30, 2009 7:17 AM:

Now it is working.

I added this to the default.aspx: <%@ Language="VBScript" %>

The default Language is, as seen above, set to VBScript, but we have other applications running on the same server. Maybe this causes the problem.

Anyway - problem solved.

/Michael Christoffersen