osdir.com
mailing list archive

Subject: asp.net 2.0 Whidbey hosting service - msg#00322

List: windows.devel.dotnet.web

Date: Prev Next Index Thread: Prev Next Index
Hi all,

Does any one know a hosting service where I can host my whidbey asp.net
2.0 site?

Please let me know.

thanks

===================================
This list is hosted by DevelopMentor® http://www.develop.com
NEW! ASP.NET courses you may be interested in:

Guerrilla ASP.NET, 17 May 2004, in Los Angeles
http://www.develop.com/courses/gaspdotnetls

View archives and manage your subscription(s) at http://discuss.develop.com



Was this page helpful?
Yes No
Thread at a glance:

Previous Message by Date: click to view message preview

Re: Error I can't trace

But anything like that would fail in debug mode here as well... -----Original Message----- From: Discussion of building .NET applications targeted for the Web [mailto:DOTNET-WEB@xxxxxxxxxxxxxxxxxxx] On Behalf Of Nick Simpson Sent: Wednesday, 24 March 2004 10:38 To: DOTNET-WEB@xxxxxxxxxxxxxxxxxxx Subject: Re: [DOTNET-WEB] Error I can't trace Yeh - i most often get this when i accidentally get one of the methods in an application's Management layer to call itself instead of the identically named method in the Data layer. :-) ----- Original Message ----- From: "Damon Squires" <Squires@xxxxxxxxxxx> To: <DOTNET-WEB@xxxxxxxxxxxxxxxxxxx> Sent: Tuesday, March 23, 2004 10:31 PM Subject: Re: [DOTNET-WEB] Error I can't trace You probably have some time of circular reference or a recursive function not exiting. For example: public int X { get { return(X); } } -----Original Message----- From: Discussion of building .NET applications targeted for the Web [mailto:DOTNET-WEB@xxxxxxxxxxxxxxxxxxx] On Behalf Of Dean A. Cleaver Sent: Tuesday, March 23, 2004 4:29 PM To: DOTNET-WEB@xxxxxxxxxxxxxxxxxxx Subject: [DOTNET-WEB] Error I can't trace I'm getting this error on a live site, but it gives me nothing to go on: Stack Trace: System.Web.HttpUnhandledException: Exception of type System.Web.HttpUnhandledException was thrown. ---> System.StackOverflowException: Exception of type System.StackOverflowException was thrown. --- End of inner exception stack trace --- at System.Web.UI.Page.HandleError(Exception e) at System.Web.UI.Page.ProcessRequestMain() at System.Web.UI.Page.ProcessRequest() at System.Web.UI.Page.ProcessRequest(HttpContext context) at System.Web.CallHandlerExecutionStep.System.Web.HttpApplication+IExecutio nStep.Execute() at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) Basically, the entire call stack is not my code - so I have zero idea what's going on - any ideas where to even start looking? Dino =================================== This list is hosted by DevelopMentor(r) http://www.develop.com NEW! ASP.NET courses you may be interested in: Guerrilla ASP.NET, 17 May 2004, in Los Angeles http://www.develop.com/courses/gaspdotnetls View archives and manage your subscription(s) at http://discuss.develop.com =================================== This list is hosted by DevelopMentor® http://www.develop.com NEW! ASP.NET courses you may be interested in: Guerrilla ASP.NET, 17 May 2004, in Los Angeles http://www.develop.com/courses/gaspdotnetls View archives and manage your subscription(s) at http://discuss.develop.com

Next Message by Date: click to view message preview

Re: Error I can't trace

Seeing as the source of this seems to be: System.Web.UI.Page.HandleError(Exception e) Assuming that this method is called if an unhandled exception occurs during the life cycle of the page then why not explicitly throw an unhandled exception from one of your pages and see what happens. See if this method works correctly. Do you get the error message for the error you have thrown or do you get the overflow exception? Don't know much about HandleError. Is this something you need to override or plug into? Is error handling and logging in general working on your site? Might the error handling code on one of your pages be itself throwing an exception and therefore somehow recursing? Not sure this will get you any nearer to finding out what is going on but don't know what else to suggest. ----- Original Message ----- From: "Dean A. Cleaver" <dean.cleaver@xxxxxxxxxxxxxxxxxxxx> To: <DOTNET-WEB@xxxxxxxxxxxxxxxxxxx> Sent: Tuesday, March 23, 2004 10:47 PM Subject: Re: [DOTNET-WEB] Error I can't trace But anything like that would fail in debug mode here as well... -----Original Message----- From: Discussion of building .NET applications targeted for the Web [mailto:DOTNET-WEB@xxxxxxxxxxxxxxxxxxx] On Behalf Of Nick Simpson Sent: Wednesday, 24 March 2004 10:38 To: DOTNET-WEB@xxxxxxxxxxxxxxxxxxx Subject: Re: [DOTNET-WEB] Error I can't trace Yeh - i most often get this when i accidentally get one of the methods in an application's Management layer to call itself instead of the identically named method in the Data layer. :-) ----- Original Message ----- From: "Damon Squires" <Squires@xxxxxxxxxxx> To: <DOTNET-WEB@xxxxxxxxxxxxxxxxxxx> Sent: Tuesday, March 23, 2004 10:31 PM Subject: Re: [DOTNET-WEB] Error I can't trace You probably have some time of circular reference or a recursive function not exiting. For example: public int X { get { return(X); } } -----Original Message----- From: Discussion of building .NET applications targeted for the Web [mailto:DOTNET-WEB@xxxxxxxxxxxxxxxxxxx] On Behalf Of Dean A. Cleaver Sent: Tuesday, March 23, 2004 4:29 PM To: DOTNET-WEB@xxxxxxxxxxxxxxxxxxx Subject: [DOTNET-WEB] Error I can't trace I'm getting this error on a live site, but it gives me nothing to go on: Stack Trace: System.Web.HttpUnhandledException: Exception of type System.Web.HttpUnhandledException was thrown. ---> System.StackOverflowException: Exception of type System.StackOverflowException was thrown. --- End of inner exception stack trace --- at System.Web.UI.Page.HandleError(Exception e) at System.Web.UI.Page.ProcessRequestMain() at System.Web.UI.Page.ProcessRequest() at System.Web.UI.Page.ProcessRequest(HttpContext context) at System.Web.CallHandlerExecutionStep.System.Web.HttpApplication+IExecutio nStep.Execute() at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) Basically, the entire call stack is not my code - so I have zero idea what's going on - any ideas where to even start looking? Dino =================================== This list is hosted by DevelopMentor® http://www.develop.com NEW! ASP.NET courses you may be interested in: Guerrilla ASP.NET, 17 May 2004, in Los Angeles http://www.develop.com/courses/gaspdotnetls View archives and manage your subscription(s) at http://discuss.develop.com

Previous Message by Thread: click to view message preview

Error I can't trace

I'm getting this error on a live site, but it gives me nothing to go on: Stack Trace: System.Web.HttpUnhandledException: Exception of type System.Web.HttpUnhandledException was thrown. ---> System.StackOverflowException: Exception of type System.StackOverflowException was thrown. --- End of inner exception stack trace --- at System.Web.UI.Page.HandleError(Exception e) at System.Web.UI.Page.ProcessRequestMain() at System.Web.UI.Page.ProcessRequest() at System.Web.UI.Page.ProcessRequest(HttpContext context) at System.Web.CallHandlerExecutionStep.System.Web.HttpApplication+IExecutio nStep.Execute() at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) Basically, the entire call stack is not my code - so I have zero idea what's going on - any ideas where to even start looking? Dino =================================== This list is hosted by DevelopMentor® http://www.develop.com NEW! ASP.NET courses you may be interested in: Guerrilla ASP.NET, 17 May 2004, in Los Angeles http://www.develop.com/courses/gaspdotnetls View archives and manage your subscription(s) at http://discuss.develop.com

Next Message by Thread: click to view message preview

Re: asp.net 2.0 Whidbey hosting service

I'm pretty sure hosting is against the EULA. I've heard rumors of a GoLive license, but am not sure. hth, Dave ----- Original Message ----- From: "Zulfiqar Syed" <zulfiqarsyed@xxxxxxxxx> To: <DOTNET-WEB@xxxxxxxxxxxxxxxxxxx> Sent: Tuesday, March 23, 2004 5:37 PM Subject: [DOTNET-WEB] asp.net 2.0 Whidbey hosting service > Hi all, > > Does any one know a hosting service where I can host my whidbey asp.net > 2.0 site? > > Please let me know. > > thanks > > =================================== > This list is hosted by DevelopMentor® http://www.develop.com > NEW! ASP.NET courses you may be interested in: > > Guerrilla ASP.NET, 17 May 2004, in Los Angeles > http://www.develop.com/courses/gaspdotnetls > > View archives and manage your subscription(s) at http://discuss.develop.com > =================================== This list is hosted by DevelopMentor® http://www.develop.com NEW! ASP.NET courses you may be interested in: Guerrilla ASP.NET, 17 May 2004, in Los Angeles http://www.develop.com/courses/gaspdotnetls View archives and manage your subscription(s) at http://discuss.develop.com
Sign up for updates to this mailing list. email:
Loading Comments...
Home | News | Patents | Sitemap | FAQ | advertise

Advertising by