ASP.NET and Server problems

Jekyll

New Member
I have been working on a few test apps offline on my desktop and all works fine. I have installed the .NET SDK on our web server and connected to it to create a web app. When I go to the site where it should be, I get a 'Server Application Unavailable'. I checked the main log for for that site and it has a 500 by the request, but no other info. The URL I am going to is www.iclayoutonline.com/NET. If anyone has any suggestions that would be great.<BR><BR>Thanks,<BR>PatrickI had this problem after upgrading from rc1 to asp.net final. However I imagine it could be caused by other things as well. <BR>Its a permission problem. In machine.config edit this section. Change the username attribute from "machine" to "SYSTEM"<BR><BR> <processModel<BR> enable="true"<BR> timeout="Infinite"<BR> idleTimeout="Infinite"<BR> shutdownTimeout="0:00:05"<BR> requestLimit="Infinite"<BR> requestQueueLimit="5000"<BR> restartQueueLimit="10"<BR> memoryLimit="60"<BR> webGarden="false"<BR> cpuMask="0xffffffff"<BR> userName="Machine"<BR> password="AutoGenerate"<BR>I tried changing the username in that file and restarting IIS. I also rebooted the machine to see if that would help. I downloaded the full sdk again and installed it. Thats what the doc's called for if you were having problems, but that did not work either. Does not make much sense since it works on my home system, but not my server in the datacenter. Would this error page come up like that if it was a program error? Maybe its just a code error... I will try some other examples later and see if I can get them to work.<BR><BR>Thanks,<BR>Patrick
 
Back
Top