473,408 Members | 1,908 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,408 software developers and data experts.

Configuration Error in web.config

Any help on this error much appreciated. Application works on dev but not on
3d party host server (with useless support).

==========================
Server Error in '/' Application.
--------------------------------------------------------------------------------
Configuration Error
Description: An error occurred during the processing of a configuration file
required to service this request. Please review the specific error details
below and modify your configuration file appropriately.

Parser Error Message: The XML file \\path\webroot\web.config could not be
loaded. Logon failure: unknown user name or bad password.

Source Error:

[No relevant source lines]

Source File: \\path\webroot\web.config Line: 0
--------------------------------------------------------------------------------
Version Information: Microsoft .NET Framework Version:1.1.4322.2300; ASP.NET
Version:1.1.4322.2300
==========================

My web.config
==========================
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<appSettings>
<add key="new" value="10" />
</appSettings>
<system.web>
<compilation defaultLanguage="c#" debug="false" />
<customErrors mode="Off" />
<authentication mode="None" />
<authorization>
<allow users="*" /> <!-- Allow all users -->
</authorization>
<globalization requestEncoding="utf-8" responseEncoding="windows-1251" />
</system.web>
</configuration>
==========================

Thank you
Nov 19 '05 #1
4 5310
Pat
Alex it seems you don't have access to the Web.Config file which is XML!
Hope that helps
Patrick

"alex444" <al*****@discussions.microsoft.com> wrote in message
news:60**********************************@microsof t.com...
Any help on this error much appreciated. Application works on dev but not on 3d party host server (with useless support).

==========================
Server Error in '/' Application.
-------------------------------------------------------------------------- ------ Configuration Error
Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details
below and modify your configuration file appropriately.

Parser Error Message: The XML file \\path\webroot\web.config could not be
loaded. Logon failure: unknown user name or bad password.

Source Error:

[No relevant source lines]

Source File: \\path\webroot\web.config Line: 0
-------------------------------------------------------------------------- ------ Version Information: Microsoft .NET Framework Version:1.1.4322.2300; ASP.NET Version:1.1.4322.2300
==========================

My web.config
==========================
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<appSettings>
<add key="new" value="10" />
</appSettings>
<system.web>
<compilation defaultLanguage="c#" debug="false" />
<customErrors mode="Off" />
<authentication mode="None" />
<authorization>
<allow users="*" /> <!-- Allow all users -->
</authorization>
<globalization requestEncoding="utf-8" responseEncoding="windows-1251" /> </system.web>
</configuration>
==========================

Thank you

Nov 19 '05 #2
re:
Parser Error Message: The XML file \\path\webroot\web.config could
not be loaded. Logon failure: unknown user name or bad password.
Hi, Alex.

You're trying to access a web.config on a shared network directory.

The ASP.NET account you're using needs read permission
to access the files on the shared network directory.


Juan T. Llibre, ASP.NET MVP
ASP.NET FAQ : http://asp.net.do/faq/
Foros de ASP.NET en Español : http://asp.net.do/foros/
======================================
"alex444" <al*****@discussions.microsoft.com> wrote in message
news:60**********************************@microsof t.com... Any help on this error much appreciated. Application works on dev but not on
3d party host server (with useless support).

==========================
Server Error in '/' Application.
--------------------------------------------------------------------------------
Configuration Error
Description: An error occurred during the processing of a configuration file
required to service this request. Please review the specific error details
below and modify your configuration file appropriately.

Parser Error Message: The XML file \\path\webroot\web.config could not be
loaded. Logon failure: unknown user name or bad password.

Source Error:

[No relevant source lines]

Source File: \\path\webroot\web.config Line: 0
--------------------------------------------------------------------------------
Version Information: Microsoft .NET Framework Version:1.1.4322.2300; ASP.NET
Version:1.1.4322.2300
==========================

My web.config
==========================
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<appSettings>
<add key="new" value="10" />
</appSettings>
<system.web>
<compilation defaultLanguage="c#" debug="false" />
<customErrors mode="Off" />
<authentication mode="None" />
<authorization>
<allow users="*" /> <!-- Allow all users -->
</authorization>
<globalization requestEncoding="utf-8" responseEncoding="windows-1251" />
</system.web>
</configuration>
==========================

Thank you

Nov 19 '05 #3
well this is probably the way it is set up at host provider (brinkster) and
what I found so far that it has nothing to do with the web.config itself.
Thank you.

"Juan T. Llibre" wrote:
re:
Parser Error Message: The XML file \\path\webroot\web.config could
not be loaded. Logon failure: unknown user name or bad password.


Hi, Alex.

You're trying to access a web.config on a shared network directory.

The ASP.NET account you're using needs read permission
to access the files on the shared network directory.


Juan T. Llibre, ASP.NET MVP
ASP.NET FAQ : http://asp.net.do/faq/
Foros de ASP.NET en Español : http://asp.net.do/foros/
======================================
"alex444" <al*****@discussions.microsoft.com> wrote in message
news:60**********************************@microsof t.com...
Any help on this error much appreciated. Application works on dev but not on
3d party host server (with useless support).

==========================
Server Error in '/' Application.
--------------------------------------------------------------------------------
Configuration Error
Description: An error occurred during the processing of a configuration file
required to service this request. Please review the specific error details
below and modify your configuration file appropriately.

Parser Error Message: The XML file \\path\webroot\web.config could not be
loaded. Logon failure: unknown user name or bad password.

Source Error:

[No relevant source lines]

Source File: \\path\webroot\web.config Line: 0
--------------------------------------------------------------------------------
Version Information: Microsoft .NET Framework Version:1.1.4322.2300; ASP.NET
Version:1.1.4322.2300
==========================

My web.config
==========================
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<appSettings>
<add key="new" value="10" />
</appSettings>
<system.web>
<compilation defaultLanguage="c#" debug="false" />
<customErrors mode="Off" />
<authentication mode="None" />
<authorization>
<allow users="*" /> <!-- Allow all users -->
</authorization>
<globalization requestEncoding="utf-8" responseEncoding="windows-1251" />
</system.web>
</configuration>
==========================

Thank you


Nov 19 '05 #4
Pat
So is it working well now?

"alex444" <al*****@discussions.microsoft.com> wrote in message
news:95**********************************@microsof t.com...
well this is probably the way it is set up at host provider (brinkster) and what I found so far that it has nothing to do with the web.config itself.
Thank you.

"Juan T. Llibre" wrote:
re:
Parser Error Message: The XML file \\path\webroot\web.config could
not be loaded. Logon failure: unknown user name or bad password.


Hi, Alex.

You're trying to access a web.config on a shared network directory.

The ASP.NET account you're using needs read permission
to access the files on the shared network directory.


Juan T. Llibre, ASP.NET MVP
ASP.NET FAQ : http://asp.net.do/faq/
Foros de ASP.NET en Español : http://asp.net.do/foros/
======================================
"alex444" <al*****@discussions.microsoft.com> wrote in message
news:60**********************************@microsof t.com...
Any help on this error much appreciated. Application works on dev but not on 3d party host server (with useless support).

==========================
Server Error in '/' Application.

--------------------------------------------------------------------------

------
Configuration Error
Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately.

Parser Error Message: The XML file \\path\webroot\web.config could not be loaded. Logon failure: unknown user name or bad password.

Source Error:

[No relevant source lines]

Source File: \\path\webroot\web.config Line: 0

--------------------------------------------------------------------------

------
Version Information: Microsoft .NET Framework Version:1.1.4322.2300; ASP.NET Version:1.1.4322.2300
==========================

My web.config
==========================
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<appSettings>
<add key="new" value="10" />
</appSettings>
<system.web>
<compilation defaultLanguage="c#" debug="false" />
<customErrors mode="Off" />
<authentication mode="None" />
<authorization>
<allow users="*" /> <!-- Allow all users -->
</authorization>
<globalization requestEncoding="utf-8" responseEncoding="windows-1251" /> </system.web>
</configuration>
==========================

Thank you


Nov 19 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: Dean | last post by:
This is a problem in ASP.NET, when I run an application from Visual Studio (2003) when I do a "start without debugging". The asp page uses objects that I have built in 3 other projects,...
1
by: Ivan | last post by:
Hi, I have moved an entire solution from .netframework 1.0 to 1.1; also I have migrated the solution to VS2003. After this I have added a new project (Web) to previous solution; I'm referencing...
6
by: chokk | last post by:
All, I am getting the following error when I try to run a form page. Can someone tell me what this is about and show me how to fix it. Thnaks. Server Error in '/' Application...
2
by: Chris_24 | last post by:
To all, I am experiencing difficulties with an asp.net web application and its web.config file. No matter what I try I keep getting the following error: Server Error in '/action' Application....
10
by: Rider | last post by:
Hi, simple(?) question about asp.net configuration.. I've installed ASP.NET 2.0 QuickStart Sample successfully. But, When I'm first start application the follow message shown. ========= Server...
6
by: Jeff Hegedus | last post by:
I have a dll that requires some configuration data. I put the configuration data in a custom configuration section in a config file that is loaded in the installation folder of the dll. If I...
4
by: aSoundMind | last post by:
Hi there, I recieve this error Server Error in '/integrate' Application. -------------------------------------------------------------------------------- Configuration Error Description: An...
2
by: remya1000 | last post by:
i'm using VB.NET 2003. Last time while i did a program in Vb.Net 2005, i use "Configuration". and i could read and write to that XML configuration file like the example below. CODES:...
0
by: =?Utf-8?B?QWxoYW1icmEgRWlkb3MgRGVzYXJyb2xsbw==?= | last post by:
Hi, thanks, mister The code string rutaConfig = tbRutaConfigServicioBase.Text; '// Map to the application configuration file. ExeConfigurationFileMap configFile = New...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.