Windows Vista Forums
Vista Forums Home Join Vista Forums Windows 7 Forum Vista Tutorials Tags
Welcome to Windows Vista Forums. Our forum is dedicated to helping you find solutions with any problems, errors or issues you are experiencing with Windows Vista. The Vista forum also covers news and updates and has an extensive Windows Vista tutorial section that covers a wide range of tips and tricks.

Go Back   Vista Forums > Misc Newsgroups > .NET General

Vista - Compilation Error

Reply
 
Old 04-08-2009   #1 (permalink)
Miro


 
 

Compilation Error

I created a dummy app with a default1.aspx and default2.aspx

Running it / compiling it through vs2008pro - all works great.
(it just has a button and a text box setting a value to the text box)

When publish it to (file folder)...
create an IIS application ( add application )...and the run my test I get
this error
< i load up http://localhost/deploytest/default2.aspx >
"deploytest" is my name i gave my c:\vs2008\deploytest folder ( where the
default.aspx file resides )

Any suggestions as to what is missing or what I have not setup?

Thanks,

Miro


Server Error in '/deploytest' Application.
--------------------------------------------------------------------------------

Compilation Error
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: BC2000: compiler initialization failed unexpectedly:
0x80070005

Source Error:



[No relevant source lines]

Source File: vbc : Fatal Line: 0

Show Detailed Compiler Output:

c:\windows\system32\inetsrv>
"C:\Windows\Microsoft.NET\Framework\v3.5\vbc.exe" /t:library /utf8output
/R:"C:\Windows\assembly\GAC_MSIL\System.Web.Mobile\2.0.0.0__b03f5f7f11d50a3a\System.Web.Mobile.dll"
/R:"C:\Windows\assembly\GAC_MSIL\System.WorkflowServices\3.5.0.0__31bf3856ad364e35\System.WorkflowServices.dll"
/R:"C:\Windows\assembly\GAC_MSIL\System.ServiceModel\3.0.0.0__b77a5c561934e089\System.ServiceModel.dll"
/R:"C:\Windows\assembly\GAC_MSIL\System.IdentityModel\3.0.0.0__b77a5c561934e089\System.IdentityModel.dll"
/R:"C:\Windows\assembly\GAC_MSIL\System.Web.Services\2.0.0.0__b03f5f7f11d50a3a\System.Web.Services.dll"
/R:"C:\Windows\assembly\GAC_MSIL\System.Drawing\2.0.0.0__b03f5f7f11d50a3a\System.Drawing.dll"
/R:"C:\Windows\assembly\GAC_MSIL\System.Data.DataSetExtensions\3.5.0.0__b77a5c561934e089\System.Data.DataSetExtensions.dll"
/R:"C:\Windows\assembly\GAC_MSIL\System.Xml\2.0.0.0__b77a5c561934e089\System.Xml.dll"
/R:"C:\Windows\assembly\GAC_MSIL\System.Configuration\2.0.0.0__b03f5f7f11d50a3a\System.Configuration.dll"
/R:"C:\Windows\assembly\GAC_MSIL\System.Runtime.Serialization\3.0.0.0__b77a5c561934e089\System.Runtime.Serialization.dll"
/R:"C:\Windows\assembly\GAC_MSIL\System.Xml.Linq\3.5.0.0__b77a5c561934e089\System.Xml.Linq.dll"
/R:"C:\Windows\assembly\GAC_MSIL\System\2.0.0.0__b77a5c561934e089\System.dll"
/R:"C:\Windows\assembly\GAC_32\System.EnterpriseServices\2.0.0.0__b03f5f7f11d50a3a\System.EnterpriseServices.dll"
/R:"C:\Windows\assembly\GAC_MSIL\System.Core\3.5.0.0__b77a5c561934e089\System.Core.dll"
/R:"C:\Windows\assembly\GAC_32\System.Data\2.0.0.0__b77a5c561934e089\System.Data.dll"
/R:"C:\Windows\assembly\GAC_MSIL\System.ServiceModel.Web\3.5.0.0__31bf3856ad364e35\System.ServiceModel.Web.dll"
/R:"C:\Windows\assembly\GAC_MSIL\System.Web.Extensions\3.5.0.0__31bf3856ad364e35\System.Web.Extensions.dll"
/R:"C:\Windows\assembly\GAC_32\System.Web\2.0.0.0__b03f5f7f11d50a3a\System.Web.dll"
/R:"C:\Windows\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET
Files\deploytest\b00af6ce\c31e73a4\assembly\dl3\66aa0a0d\4ecc5491_9cb8c901\App_Web_fky9boxx.DLL"
/out:"C:\Windows\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET
Files\deploytest\b00af6ce\c31e73a4\App_Web_default2.aspx.cdcab7d2.cwdxrhvp.dll"
/DEBUG=1 /debug+ /define:_MYTYPE=\"Web\"
/imports:Microsoft.VisualBasic,System,System.Collections,System.Collections.Generic,System.Collections.Specialized,System.Configuration,System.Text,System.Text.RegularExpressions,System.Linq,System.Xml.Linq,System.Web,System.Web.Caching,System.Web.SessionState,System.Web.Security,System.Web.Profile,System.Web.UI,System.Web.UI.WebControls,System.Web.UI.WebControls.WebParts,System.Web.UI.HtmlControls
/warnaserror- /optionInfer+
"C:\Windows\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET
Files\deploytest\b00af6ce\c31e73a4\App_Web_default2.aspx.cdcab7d2.cwdxrhvp.0.vb"
"C:\Windows\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET
Files\deploytest\b00af6ce\c31e73a4\App_Web_default2.aspx.cdcab7d2.cwdxrhvp.1.vb"


Microsoft (R) Visual Basic Compiler version 9.0.30729.1
Copyright (c) Microsoft Corporation. All rights reserved.

vbc : Fatal error BC2000 : compiler initialization failed unexpectedly:
0x80070005

--------------------------------------------------------------------------------
Version Information: Microsoft .NET Framework Version:2.0.50727.3074;
ASP.NET Version:2.0.50727.3074


My System SpecsSystem Spec
Old 04-08-2009   #2 (permalink)
Miro


 
 

Re: Compilation Error

Some other relevant information:

I suspect its a permissions thing...
as i have a basic host account for learning at www.discountasp.net and
uploaded the default2.aspx there and it works.

I am using vista

Miro

"Miro" <miro@xxxxxx> wrote in message
news:%23ETeo$JuJHA.4452@xxxxxx
Quote:

>I created a dummy app with a default1.aspx and default2.aspx
>
> Running it / compiling it through vs2008pro - all works great.
> (it just has a button and a text box setting a value to the text box)
>
> When publish it to (file folder)...
> create an IIS application ( add application )...and the run my test I get
> this error
> < i load up http://localhost/deploytest/default2.aspx >
> "deploytest" is my name i gave my c:\vs2008\deploytest folder ( where the
> default.aspx file resides )
>
> Any suggestions as to what is missing or what I have not setup?
>
> Thanks,
>
> Miro
>
>
> Server Error in '/deploytest' Application.
> --------------------------------------------------------------------------------
>
> Compilation Error
> 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: BC2000: compiler initialization failed
> unexpectedly: 0x80070005
>
> Source Error:
>
>
>
> [No relevant source lines]
>
> Source File: vbc : Fatal Line: 0
>
> Show Detailed Compiler Output:
>
> c:\windows\system32\inetsrv>
> "C:\Windows\Microsoft.NET\Framework\v3.5\vbc.exe" /t:library /utf8output
> /R:"C:\Windows\assembly\GAC_MSIL\System.Web.Mobile\2.0.0.0__b03f5f7f11d50a3a\System.Web.Mobile.dll"
> /R:"C:\Windows\assembly\GAC_MSIL\System.WorkflowServices\3.5.0.0__31bf3856ad364e35\System.WorkflowServices.dll"
> /R:"C:\Windows\assembly\GAC_MSIL\System.ServiceModel\3.0.0.0__b77a5c561934e089\System.ServiceModel.dll"
> /R:"C:\Windows\assembly\GAC_MSIL\System.IdentityModel\3.0.0.0__b77a5c561934e089\System.IdentityModel.dll"
> /R:"C:\Windows\assembly\GAC_MSIL\System.Web.Services\2.0.0.0__b03f5f7f11d50a3a\System.Web.Services.dll"
> /R:"C:\Windows\assembly\GAC_MSIL\System.Drawing\2.0.0.0__b03f5f7f11d50a3a\System.Drawing.dll"
> /R:"C:\Windows\assembly\GAC_MSIL\System.Data.DataSetExtensions\3.5.0.0__b77a5c561934e089\System.Data.DataSetExtensions.dll"
> /R:"C:\Windows\assembly\GAC_MSIL\System.Xml\2.0.0.0__b77a5c561934e089\System.Xml.dll"
> /R:"C:\Windows\assembly\GAC_MSIL\System.Configuration\2.0.0.0__b03f5f7f11d50a3a\System.Configuration.dll"
> /R:"C:\Windows\assembly\GAC_MSIL\System.Runtime.Serialization\3.0.0.0__b77a5c561934e089\System.Runtime.Serialization.dll"
> /R:"C:\Windows\assembly\GAC_MSIL\System.Xml.Linq\3.5.0.0__b77a5c561934e089\System.Xml.Linq.dll"
> /R:"C:\Windows\assembly\GAC_MSIL\System\2.0.0.0__b77a5c561934e089\System.dll"
> /R:"C:\Windows\assembly\GAC_32\System.EnterpriseServices\2.0.0.0__b03f5f7f11d50a3a\System.EnterpriseServices.dll"
> /R:"C:\Windows\assembly\GAC_MSIL\System.Core\3.5.0.0__b77a5c561934e089\System.Core.dll"
> /R:"C:\Windows\assembly\GAC_32\System.Data\2.0.0.0__b77a5c561934e089\System.Data.dll"
> /R:"C:\Windows\assembly\GAC_MSIL\System.ServiceModel.Web\3.5.0.0__31bf3856ad364e35\System.ServiceModel.Web.dll"
> /R:"C:\Windows\assembly\GAC_MSIL\System.Web.Extensions\3.5.0.0__31bf3856ad364e35\System.Web.Extensions.dll"
> /R:"C:\Windows\assembly\GAC_32\System.Web\2.0.0.0__b03f5f7f11d50a3a\System.Web.dll"
> /R:"C:\Windows\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET
> Files\deploytest\b00af6ce\c31e73a4\assembly\dl3\66aa0a0d\4ecc5491_9cb8c901\App_Web_fky9boxx.DLL"
> /out:"C:\Windows\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET
> Files\deploytest\b00af6ce\c31e73a4\App_Web_default2.aspx.cdcab7d2.cwdxrhvp.dll"
> /DEBUG=1 /debug+ /define:_MYTYPE=\"Web\"
> /imports:Microsoft.VisualBasic,System,System.Collections,System.Collections.Generic,System.Collections.Specialized,System.Configuration,System.Text,System.Text.RegularExpressions,System.Linq,System.Xml.Linq,System.Web,System.Web.Caching,System.Web.SessionState,System.Web.Security,System.Web.Profile,System.Web.UI,System.Web.UI.WebControls,System.Web.UI.WebControls.WebParts,System.Web.UI.HtmlControls
> /warnaserror- /optionInfer+
> "C:\Windows\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET
> Files\deploytest\b00af6ce\c31e73a4\App_Web_default2.aspx.cdcab7d2.cwdxrhvp.0.vb"
> "C:\Windows\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET
> Files\deploytest\b00af6ce\c31e73a4\App_Web_default2.aspx.cdcab7d2.cwdxrhvp.1.vb"
>
>
> Microsoft (R) Visual Basic Compiler version 9.0.30729.1
> Copyright (c) Microsoft Corporation. All rights reserved.
>
> vbc : Fatal error BC2000 : compiler initialization failed unexpectedly:
> 0x80070005
>
> --------------------------------------------------------------------------------
> Version Information: Microsoft .NET Framework Version:2.0.50727.3074;
> ASP.NET Version:2.0.50727.3074
My System SpecsSystem Spec
Reply

Thread Tools


Similar Threads
Thread Forum
Myst Compilation Set Vista Games
no,socket Error: 11003. Error Number: 0x800CC0D cant i send email name is correctly Vista mail
dvd compilation won't play on vista's MCE Vista music pictures video


Vista Forums is an independent web site and has not been authorized,
sponsored, or otherwise approved by Microsoft Corporation.
"Windows Vista", the Start Orb, and related materials are trademarks of Microsoft Corp.
© Designer Media Ltd

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46