RE: Question about "Configuration Error" Message
- From: Perryt <Perryt@xxxxxxxxxxxxxxxxxxxxxxxxx>
- Date: Mon, 9 Oct 2006 10:42:02 -0700
Ok now I have have a question for you.,.
I have a similar problem but this solution as not fixed it for me. Whenever
I try to start an ASPX or ASMX page via the IIS server
(http://localhost/beachdrne/default.aspx) the browser beeps and then appears
to just hang. I have reset the machine.Config for both 2.0 and 1.1. Neither
of these seems to work.
Any ideas?
I can tell you if I create a web site using the file system option they will
work.
I have uninstalled and reinstalled IIS several times and run the
aspnet_regiis -i several times.
"Steven Cheng[MSFT]" wrote:
Hi Baho,.
Any further questions or anything else we can help, if so, please feel free
to post here.
Regards,
Steven Cheng
Microsoft Online Support
Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)
--------------------
| X-Tomcat-ID: 139695801
| References: <854911B2-EB62-4D7B-8DFF-573EDE7E9937@xxxxxxxxxxxxx>
<DfefwB09FHA.3808@xxxxxxxxxxxxxxxxxxxxx>
<1423C0DC-2EDE-4516-B52D-E8BC37F75F85@xxxxxxxxxxxxx>
<qL0uqDW#FHA.832@xxxxxxxxxxxxxxxxxxxxx>
<B922AB79-C494-4AC1-BD6E-5B57C32933E2@xxxxxxxxxxxxx>
| MIME-Version: 1.0
| Content-Type: text/plain
| Content-Transfer-Encoding: 7bit
| From: stcheng@xxxxxxxxxxxxxxxxxxxx (Steven Cheng[MSFT])
| Organization: Microsoft
| Date: Mon, 05 Dec 2005 08:57:58 GMT
| Subject: RE: Question about "Configuration Error" Message
| X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
| Message-ID: <5208FoX#FHA.832@xxxxxxxxxxxxxxxxxxxxx>
| Newsgroups: microsoft.public.dotnet.framework.aspnet
| Lines: 269
| Path: TK2MSFTNGXA02.phx.gbl
| Xref: TK2MSFTNGXA02.phx.gbl
microsoft.public.dotnet.framework.aspnet:362701
| NNTP-Posting-Host: tomcatimport2.phx.gbl 10.201.218.182
|
| Thanks for your quick response Baho,
|
| So the problem is that the ASPNET worker process dosn't have sufficient
| permission. And as for:
|
| what's the default permission shoule "default machine\aspnet"
| account have for that foler, file or something others?
| =========================
| Good question, here is a msdn article described the permissions a normal
| ASP.NET process account should have:
|
| #How To Create a Custom Account to Run ASP.NET
|
http://msdn.microsoft.com/library/en-us/secmod/html/secmod15.asp?frame=true
|
| So as I mentioned before, local system is just used to confirm that this
is
| a security permission problem. We're recommended to still use the default
| Machine\ASPNET account. And you can swtich back your asp.net's process
| idenitity back to "Machine" and check the permissions step by step
through
| the above article....
|
| Thanks,
|
| Steven Cheng
| Microsoft Online Support
|
| Get Secure! www.microsoft.com/security
| (This posting is provided "AS IS", with no warranties, and confers no
| rights.)
|
|
|
|
| --------------------
| | Thread-Topic: Question about "Configuration Error" Message
| | thread-index: AcX5djq94c8ySidxTxSiSr4DaxOilg==
| | X-WBNR-Posting-Host: 210.182.98.176
| | From: "=?Utf-8?B?UmlkZXI=?=" <baho@xxxxxxxxxxxxxxxxx>
| | References: <854911B2-EB62-4D7B-8DFF-573EDE7E9937@xxxxxxxxxxxxx>
| <DfefwB09FHA.3808@xxxxxxxxxxxxxxxxxxxxx>
| <1423C0DC-2EDE-4516-B52D-E8BC37F75F85@xxxxxxxxxxxxx>
| <qL0uqDW#FHA.832@xxxxxxxxxxxxxxxxxxxxx>
| | Subject: RE: Question about "Configuration Error" Message
| | Date: Mon, 5 Dec 2005 00:31:03 -0800
| | Lines: 226
| | Message-ID: <B922AB79-C494-4AC1-BD6E-5B57C32933E2@xxxxxxxxxxxxx>
| | MIME-Version: 1.0
| | Content-Type: text/plain;
| | charset="Utf-8"
| | Content-Transfer-Encoding: 7bit
| | X-Newsreader: Microsoft CDO for Windows 2000
| | Content-Class: urn:content-classes:message
| | Importance: normal
| | Priority: normal
| | X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.0
| | Newsgroups: microsoft.public.dotnet.framework.aspnet
| | NNTP-Posting-Host: TK2MSFTNGXA03.phx.gbl 10.40.2.250
| | Path: TK2MSFTNGXA02.phx.gbl!TK2MSFTNGXA03.phx.gbl
| | Xref: TK2MSFTNGXA02.phx.gbl
| microsoft.public.dotnet.framework.aspnet:362698
| | X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
| |
| | Thank you Steven ^^ It's works..
| |
| | But one more question... You said it was the permission of the asp.net
| | process. then what's the default permission shoule "default
| machine\aspnet"
| | account have for that foler, file or something others?
| |
| | >"Steven Cheng[MSFT]" wrote:
| |
| | > Thanks for your quick response Baho,
| | >
| | > So your machine is WINXP sp2 /IIS5.
| | > Currently, I'd suggest you first try changing your ASP.NET's running
| | > process's Account from default machine\aspnet to the LOCALSYSTEM to
as
| to
| | > make sure whether this is a permission problem of the asp.net process
| | > idenitity. To change the process identity, you can follow the below
| steps:
| | >
| | > 1. locate the machine.config file under your .NET framework 2.0's
| intalling
| | > folder like:
| | >
| | > C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\CONFIG
| | >
| | > 2. Open the machine.config file and find the <processModel> element,
by
| | > default it is configured as:
| | >
| | > <processModel autoConfig="true" />
| | >
| | > , we need to change it to below:
| | >
| | > <processModel autoConfig="true" userName="System"/>
| | >
| | > so as to let the ASP.NET worker process running under the local
system
| | > account(which has the most powerful permission and privileges on
local
| | > system...)
| | >
| | > 3. Restart IIS through "iisreset" command
| | >
| | >
| | > Then, test your asp.net 2.0 applicaiton again to see whether it can
| | > works......
| | >
| | > Also, this is just for testing only, generally we do not recommend
| asp.net
| | > process running under local system account. Also, the
machine.config's
| | > <processModel> element is used for IIS5 isolate model. For
IIS6/win2k3
| | > server, it by default use applicaiton pool model which is different
| from
| | > this.
| | >
| | > Anyway, please have a try to see whether it works and feel free to
post
| | > here if there're anything unclear...
| | >
| | > Thanks,
| | >
| | > Steven Cheng
| | > Microsoft Online Support
| | >
| | > Get Secure! www.microsoft.com/security
| | > (This posting is provided "AS IS", with no warranties, and confers no
| | > rights.)
| | >
| | >
| | >
| | > --------------------
| | > | Thread-Topic: Question about "Configuration Error" Message
| | > | thread-index: AcX3sBD65EPm92MaQzSgIHOQBE34Gw==
| | > | X-WBNR-Posting-Host: 210.182.98.176
| | > | From: "=?Utf-8?B?UmlkZXI=?=" <baho@xxxxxxxxxxxxxxxxx>
| | > | References: <854911B2-EB62-4D7B-8DFF-573EDE7E9937@xxxxxxxxxxxxx>
| | > <DfefwB09FHA.3808@xxxxxxxxxxxxxxxxxxxxx>
| | > | Subject: RE: Question about "Configuration Error" Message
| | > | Date: Fri, 2 Dec 2005 18:20:02 -0800
| | > | Lines: 129
| | > | Message-ID: <1423C0DC-2EDE-4516-B52D-E8BC37F75F85@xxxxxxxxxxxxx>
| | > | MIME-Version: 1.0
| | > | Content-Type: text/plain;
| | > | charset="Utf-8"
| | > | Content-Transfer-Encoding: 7bit
| | > | X-Newsreader: Microsoft CDO for Windows 2000
| | > | Content-Class: urn:content-classes:message
| | > | Importance: normal
| | > | Priority: normal
| | > | X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.0
| | > | Newsgroups: microsoft.public.dotnet.framework.aspnet
| | > | NNTP-Posting-Host: TK2MSFTNGXA03.phx.gbl 10.40.2.250
| | > | Path:
TK2MSFTNGXA02.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTNGXA03.phx.gbl
| | > | Xref: TK2MSFTNGXA02.phx.gbl
| | > microsoft.public.dotnet.framework.aspnet:362458
| | > | X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
| | > |
| | > | Hi Steven
| | > |
| | > | Yes, I've got error. After you installed the ASP.NET 2.0 QuickStart
| | > | examples on my machine. My machine environment details are
| | > | ---------------------------------
| | > | 1. OS version:
| | > | Windows XP Professional, SP2
| | > | ASP.NET version 2.0.50727
| | > |
| | > | 2. IIS physical directory:
| | > | D:\Inetpub\wwwroot
| | > |
| | > | 3. QuickStart Sample dir:
| | > | D:\Program Files\Microsoft Visual Studio 8\SDK\v2.0\QuickStart
| | > |
| | > | 4. current process identifier
| | > | aspnet_wp.exe 3628
| | > | inetinfo.exe 1968
| | > | ---------------------------------
| | > |
| | > | > Hi Baho,
| | > | >
| | > | > Welcome to ASPNET newsgroup.
| | > | > From your description, after you installed the ASP.NET 2.0
| QuickStart
| | > | > examples on your machine, you get some Erros when starting
running
| the
| | > | > application, yes?
| | > | >
| | > | > Based on the error message you pasted, I think this is a file
| access
| | > | > permission issue. Seems the ASP.NET process idenitity dosn't have
| the
| | > | > sufficient permission to access the webapplicaiton folder. Would
| you
| | > | > please help me gather the following info:
| | > | >
| | > | > 1. What's your machine's OS version (IIS version)?
| | > | >
| | > | > 2. Where did you installed the quickstart example, directly under
| the
| | > IIS
| | > | > default site's physical dir(inetpub\wwwroot...)?
| | > | >
| | > | > 3. What's the current process idenitity which is used to running
| the
| | > | > ASP.NET applcation(this depends on the things in #1 , the OS
| | > version)...
| | > | >
| | > | > Please feel free to post here if there're anything else you found
| or
| | > I've
| | > | > misunderstood.
| | > | >
| | > | > Thanks,
| | > | >
| | > | > Steven Cheng
| | > | > Microsoft Online Support
| | > | >
| | > | > Get Secure! www.microsoft.com/security
| | > | > (This posting is provided "AS IS", with no warranties, and
confers
| no
| | > | > rights.)
| | > | >
| | > | >
| | > | >
| | > | >
| | > | >
| | > | >
| | > | >
| | > | >
| | > | > --------------------
| | > | > | Thread-Topic: Question about "Configuration Error" Message
| | > | > | thread-index: AcX3CzjCdckva5nJSQO1GEyzHD3TGQ==
| | > | > | X-WBNR-Posting-Host: 210.182.98.176
| | > | > | From: "=?Utf-8?B?UmlkZXI=?=" <baho@xxxxxxxxxxxxxxxxx>
| | > | > | Subject: Question about "Configuration Error" Message
| | > | > | Date: Thu, 1 Dec 2005 22:40:02 -0800
| | > | > | Lines: 35
| | > | > | Message-ID: <854911B2-EB62-4D7B-8DFF-573EDE7E9937@xxxxxxxxxxxxx>
| | > | > | MIME-Version: 1.0
| | > | > | Content-Type: text/plain;
| | > | > | charset="Utf-8"
| | > | > | Content-Transfer-Encoding: 7bit
| | > | > | X-Newsreader: Microsoft CDO for Windows 2000
| | > | > | Content-Class: urn:content-classes:message
| | > | > | Importance: normal
| | > | > | Priority: normal
| | > | > | X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.0
| | > | > | Newsgroups: microsoft.public.dotnet.framework.aspnet
| | > | > | NNTP-Posting-Host: TK2MSFTNGXA03.phx.gbl 10.40.2.250
| | > | > | Path:
| TK2MSFTNGXA02.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTNGXA03.phx.gbl
| | > | > | Xref: TK2MSFTNGXA02.phx.gbl
| | > | > microsoft.public.dotnet.framework.aspnet:362249
| | > | > | X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
| | > | > |
- Follow-Ups:
- Re: Question about "Configuration Error" Message
- From: Jeff Dillon
- Re: Question about "Configuration Error" Message
- Prev by Date: Re: Pages no longer rendering
- Next by Date: Draw page before Page_Load() ?
- Previous by thread: Re: Javascript alert message problem
- Next by thread: Re: Question about "Configuration Error" Message
- Index(es):
Relevant Pages
|