|
.net
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
Problem migrating Web Project from ASP.Net 1.1 to 2.0I had a web site developed in asp.net 1.1 wich is already in production. I'm trying to migrate the project to framework 2.0 Initialli I had the following error during the compilation: "Error 72 The type 'nTime.Xnoopy.Server.WebServices.Global' is ambiguous: it could come from assembly 'C:\Visual Studio .Net Projects\XnoopyServer\nTime.Xnoopy.Server.WebServices\bin\nTime.Xnoopy.Server.WebServices.DLL' or from assembly 'C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\xnoopyserverws\a361590a\a1dbb2e9\App_Code.ggbfiwbk.DLL'. Please specify the assembly explicitly in the type name. C:\Visual Studio ..Net Projects\XnoopyServer\nTime.Xnoopy.Server.WebServices\Global.asax" I resolved this substituting the following line in the Global.asax: "<%@ Application Inherits="nTime.Xnoopy.Server.WebServices.Global" Language="C#" %>" whit this: "<%@ Application Inherits="nTime.Xnoopy.Server.WebServices, nTime.Xnoopy.Server.WebServices.Global" Language="C#" %>" However now i receiving the message: "Error 72 Could not load the assembly 'nTime.Xnoopy.Server.WebServices.Global'. Make sure that it is compiled before accessing the page. C:\Visual Studio .Net Projects\XnoopyServer\nTime.Xnoopy.Server.WebServices\Global.asax" Can anyone help? BTW I'm using VS version 8.0.50727.42 (RTM.050727-4200) Framework version 2.0.50727 Hi felix,
I have been trying the same as you are. At the end, I create new project and rewrite the whole aplication. Automatic conversion throws too many errors. regards,S Show quoteHide quote "Felix" <gama.fe***@bol.com.br> wrote in message news:%23QJOYjf8FHA.1864@TK2MSFTNGP12.phx.gbl... > Hi everyone. > I had a web site developed in asp.net 1.1 wich is already in production. > I'm trying to migrate the project to framework 2.0 > Initialli I had the following error during the compilation: > > "Error 72 The type 'nTime.Xnoopy.Server.WebServices.Global' is ambiguous: > it could come from assembly 'C:\Visual Studio .Net > Projects\XnoopyServer\nTime.Xnoopy.Server.WebServices\bin\nTime.Xnoopy.Server.WebServices.DLL' > or from assembly 'C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary > ASP.NET Files\xnoopyserverws\a361590a\a1dbb2e9\App_Code.ggbfiwbk.DLL'. > Please specify the assembly explicitly in the type name. C:\Visual Studio > .Net Projects\XnoopyServer\nTime.Xnoopy.Server.WebServices\Global.asax" > > I resolved this substituting the following line in the Global.asax: > "<%@ Application Inherits="nTime.Xnoopy.Server.WebServices.Global" > Language="C#" %>" > > whit this: > "<%@ Application Inherits="nTime.Xnoopy.Server.WebServices, > nTime.Xnoopy.Server.WebServices.Global" Language="C#" %>" > > However now i receiving the message: > > "Error 72 Could not load the assembly > 'nTime.Xnoopy.Server.WebServices.Global'. Make sure that it is compiled > before accessing the page. C:\Visual Studio .Net > Projects\XnoopyServer\nTime.Xnoopy.Server.WebServices\Global.asax" > > Can anyone help? > BTW I'm using VS version 8.0.50727.42 (RTM.050727-4200) > Framework version 2.0.50727 >
Other interesting topics
ASP.NET 2.0 Frustration - MS Please Help
ASP.NET does not honor Title nor Javscript options Odd behavior in 2005 with base page classes Web.Config file seems to be ignored Accessing session from thread Wizard Control How to receive keyboard input? DataGrid Nightmare http 1.1/ 403 access forbidden after framework 2.0 installed Q: moving project folder |
|||||||||||||||||||||||