473,387 Members | 1,486 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,387 software developers and data experts.

ASP.Net horrow story and questions...

This is kind of lengthy as I wanted to include as much relevant
information as possible. This problem has me dead in the water and
clients waiting, any help is extremely appreciated!

Configuration Details

Web Server:

* Window 2000 Server, SP4

* Multiple IP addresses assigned to primary NIC

* IIS 5
- IIS Admin: LocalSystem account (no interaction with desktop)

- W3SVC: LocalSystem account (no interaction with desktop)
- Anonymous access enabled using a global ADS account
- FPSE not installed
- Home Directories have a Application defined
- Multiple Web Sites each assigned an IP Address
- wwwroot moved from C:\ to RAID5 array
- each web site has a folder at the same level as wwwroot

* ASP.Net
- Version: v1.1.4322
- processModel:
- userName: "machine"
- password: "AutoGenerate"
Problem

1. In IIS Manager on Web Server create a new Web Site
A. Uses a distinct IP address on the primary NIC, Port 80, no host
header.

B. Path given to a new folder on the RAID5 drive. Anonymous access
allowed.

C. Read, Run scripts (such as ASP) permissions granted.

2. Add DNS record for new site

3. VS.Net 2003
A. Open blank solution

B. Add --> New Project --> C# ASP.NET Web Application,
Location is set to the DNS entry (i.e. -
http://dummy.ciroque-tech.net)

C. Web Access Failed dialog appears, change location
to UNC path of new application folder
(\\web_server\WebSites\Dummy)

- At this point the .csproj and .csproj.webinfo files are created.

- The Global.asax file is created followed immediately by an "Access
is Denied" message box.

- ** Click ok brings up "Save File As" with Global.xml displayed in
the File name combobox.

- Click Save, Global.asax.cs, Global.asax.resx and Global.xml files
are created.

- AssemblyInfo.cs is created.

- Web.config is created.

- WebForm1.aspx is created immediately following by another "Access is
Denied" message box.

- Click OK on the Access is Denied message box beings up a "Save File
As" dialog with WebForm1.aspx in the File name combobox.

- Clicking Save causes another "Access is Denied" message box, I can
either right-click the existing WebForm1.aspx and delete it then Save,
or click Cancel.

- WebForm1.aspx.cs and WebForm1.aspx.resx are created

- ** A message box appears stating:
The class file '$FILENAME $.cs'specified as the codebehind
for 'WebForm1.aspx' could not be loaded.
Make sure that the codebehind attribute in the page or control
directive properly references an existing code behind file.

- Wizard ends and I am left with an open WebForm1.aspx file with
corrupted Codebehind and Inherits attributes on the Page directive
element:
Codebehind="$FILENAME$.cs"
Inherits="$INHERITS$"

-- If I open what is listed in Solution Explorer as "Global.asax" I
get an open document named $FILENAME$.cs as a designer window. Also,
those files are actually created in the web site!

-- If I open the Global.xml that was created I get the correct
Codebehind and Inherits attributes of the Global.asax file!

-- If I modify the WebForm1.aspx file and save it I get an "Access is
Denied" message box, I have to delete the WebForm1.aspx shown in the
listview to actually save the changes!

Do I have the permissions set incorrectly?
Is there something wrong with my Wizard files?

I have uninstalled and reinstalled IIS on the web server.
I have uninstalled and reinstalled VS.Net 2003 on the workstation.
I have added wizard.ReportError call throughout the default.js and
common.js files but not changed any logic otherwise.
I can see where the Global.asax is being generated and it's properties
set, but lose track before the initial "Access is Denied" message box.
If I try to add more Web Forms to the site I get the same sequence of
events as when the initial Web Form is added during the web
application createion wizard.

What in the world is going on???

Thanks for any help that can be offered!

Steve Wagner
Ciroque Enterprises, Inc

Nov 18 '05 #1
4 1241
Follow up:

I turned on auditing for the relevant folders on the web server and
the VS.Net workstation and found no failures for object access.

I did, however, notice that the files on the workstation are not being
created. More specifically, the two *problem* files, global.asax and
WebForm1.aspx are not being created.

The *.csproj.user file, along with the aspnet_client, bin and obj
folders (along with the pertinent sub-folders) are being created.
Also, there are _vti_cnf and _vti_pvt folders being created on the
workstation even though FPSE are not being used. I have always
believed those folders are specific to FPSE, am I mistaken?

Anyway, I am going to keep at this (I have no choice), if anyone cares
to dig in and offer sme suggestions I am more than willing to try most
anything!

Thanks,

Steve Wagner
Ciroque Enterprises, Inc
On Sun, 17 Oct 2004 17:08:09 -0400, Steve Wagner <pu***@ciroque.com>
wrote:
This is kind of lengthy as I wanted to include as much relevant
information as possible. This problem has me dead in the water and
clients waiting, any help is extremely appreciated!

Configuration Details

Web Server:

* Window 2000 Server, SP4

* Multiple IP addresses assigned to primary NIC

* IIS 5
- IIS Admin: LocalSystem account (no interaction with desktop)

- W3SVC: LocalSystem account (no interaction with desktop)
- Anonymous access enabled using a global ADS account
- FPSE not installed
- Home Directories have a Application defined
- Multiple Web Sites each assigned an IP Address
- wwwroot moved from C:\ to RAID5 array
- each web site has a folder at the same level as wwwroot

* ASP.Net
- Version: v1.1.4322
- processModel:
- userName: "machine"
- password: "AutoGenerate"
Problem

1. In IIS Manager on Web Server create a new Web Site
A. Uses a distinct IP address on the primary NIC, Port 80, no host
header.

B. Path given to a new folder on the RAID5 drive. Anonymous access
allowed.

C. Read, Run scripts (such as ASP) permissions granted.

2. Add DNS record for new site

3. VS.Net 2003
A. Open blank solution

B. Add --> New Project --> C# ASP.NET Web Application,
Location is set to the DNS entry (i.e. -
http://dummy.ciroque-tech.net)

C. Web Access Failed dialog appears, change location
to UNC path of new application folder
(\\web_server\WebSites\Dummy)

- At this point the .csproj and .csproj.webinfo files are created.

- The Global.asax file is created followed immediately by an "Access
is Denied" message box.

- ** Click ok brings up "Save File As" with Global.xml displayed in
the File name combobox.

- Click Save, Global.asax.cs, Global.asax.resx and Global.xml files
are created.

- AssemblyInfo.cs is created.

- Web.config is created.

- WebForm1.aspx is created immediately following by another "Access is
Denied" message box.

- Click OK on the Access is Denied message box beings up a "Save File
As" dialog with WebForm1.aspx in the File name combobox.

- Clicking Save causes another "Access is Denied" message box, I can
either right-click the existing WebForm1.aspx and delete it then Save,
or click Cancel.

- WebForm1.aspx.cs and WebForm1.aspx.resx are created

- ** A message box appears stating:
The class file '$FILENAME $.cs'specified as the codebehind
for 'WebForm1.aspx' could not be loaded.
Make sure that the codebehind attribute in the page or control
directive properly references an existing code behind file.

- Wizard ends and I am left with an open WebForm1.aspx file with
corrupted Codebehind and Inherits attributes on the Page directive
element:
Codebehind="$FILENAME$.cs"
Inherits="$INHERITS$"

-- If I open what is listed in Solution Explorer as "Global.asax" I
get an open document named $FILENAME$.cs as a designer window. Also,
those files are actually created in the web site!

-- If I open the Global.xml that was created I get the correct
Codebehind and Inherits attributes of the Global.asax file!

-- If I modify the WebForm1.aspx file and save it I get an "Access is
Denied" message box, I have to delete the WebForm1.aspx shown in the
listview to actually save the changes!

Do I have the permissions set incorrectly?
Is there something wrong with my Wizard files?

I have uninstalled and reinstalled IIS on the web server.
I have uninstalled and reinstalled VS.Net 2003 on the workstation.
I have added wizard.ReportError call throughout the default.js and
common.js files but not changed any logic otherwise.
I can see where the Global.asax is being generated and it's properties
set, but lose track before the initial "Access is Denied" message box.
If I try to add more Web Forms to the site I get the same sequence of
events as when the initial Web Form is added during the web
application createion wizard.

What in the world is going on???

Thanks for any help that can be offered!

Steve Wagner
Ciroque Enterprises, Inc


Nov 18 '05 #2
Follow up:

I turned on auditing for the workstation and web server and found no
failures reported for object access. Everything seems to be there.

I did notice, however, that the two problem files (globa.asax and
WebForm1.aspx) are not being created on the workstation. The folders
(aspnet_client, bin and obj) and sub-folders seem to be there with the
curiosity of having _vti_cnf and _vti_pvt folders as well. I thought
these files were specific to FPSE, but FPSE are not being used in my
case. Am I mistaken about these folders?

I ensured that the proper user accounts were present in the global
developers ADS group and that the ADS group was present in the VS
Developers group and that the VS Developers group had proper
permissions to the folders on the web server and the workstations.

I will keep working on this (I have no other choice) and if anyone
cares to take a stab at this I am more than happy to try any
suggestions!

Thanks,

Steve Wagner
Ciroque Enterprises, Inc
On Sun, 17 Oct 2004 17:08:09 -0400, Steve Wagner <pu***@ciroque.com>
wrote:
This is kind of lengthy as I wanted to include as much relevant
information as possible. This problem has me dead in the water and
clients waiting, any help is extremely appreciated!

Configuration Details

Web Server:

* Window 2000 Server, SP4

* Multiple IP addresses assigned to primary NIC

* IIS 5
- IIS Admin: LocalSystem account (no interaction with desktop)

- W3SVC: LocalSystem account (no interaction with desktop)
- Anonymous access enabled using a global ADS account
- FPSE not installed
- Home Directories have a Application defined
- Multiple Web Sites each assigned an IP Address
- wwwroot moved from C:\ to RAID5 array
- each web site has a folder at the same level as wwwroot

* ASP.Net
- Version: v1.1.4322
- processModel:
- userName: "machine"
- password: "AutoGenerate"
Problem

1. In IIS Manager on Web Server create a new Web Site
A. Uses a distinct IP address on the primary NIC, Port 80, no host
header.

B. Path given to a new folder on the RAID5 drive. Anonymous access
allowed.

C. Read, Run scripts (such as ASP) permissions granted.

2. Add DNS record for new site

3. VS.Net 2003
A. Open blank solution

B. Add --> New Project --> C# ASP.NET Web Application,
Location is set to the DNS entry (i.e. -
http://dummy.ciroque-tech.net)

C. Web Access Failed dialog appears, change location
to UNC path of new application folder
(\\web_server\WebSites\Dummy)

- At this point the .csproj and .csproj.webinfo files are created.

- The Global.asax file is created followed immediately by an "Access
is Denied" message box.

- ** Click ok brings up "Save File As" with Global.xml displayed in
the File name combobox.

- Click Save, Global.asax.cs, Global.asax.resx and Global.xml files
are created.

- AssemblyInfo.cs is created.

- Web.config is created.

- WebForm1.aspx is created immediately following by another "Access is
Denied" message box.

- Click OK on the Access is Denied message box beings up a "Save File
As" dialog with WebForm1.aspx in the File name combobox.

- Clicking Save causes another "Access is Denied" message box, I can
either right-click the existing WebForm1.aspx and delete it then Save,
or click Cancel.

- WebForm1.aspx.cs and WebForm1.aspx.resx are created

- ** A message box appears stating:
The class file '$FILENAME $.cs'specified as the codebehind
for 'WebForm1.aspx' could not be loaded.
Make sure that the codebehind attribute in the page or control
directive properly references an existing code behind file.

- Wizard ends and I am left with an open WebForm1.aspx file with
corrupted Codebehind and Inherits attributes on the Page directive
element:
Codebehind="$FILENAME$.cs"
Inherits="$INHERITS$"

-- If I open what is listed in Solution Explorer as "Global.asax" I
get an open document named $FILENAME$.cs as a designer window. Also,
those files are actually created in the web site!

-- If I open the Global.xml that was created I get the correct
Codebehind and Inherits attributes of the Global.asax file!

-- If I modify the WebForm1.aspx file and save it I get an "Access is
Denied" message box, I have to delete the WebForm1.aspx shown in the
listview to actually save the changes!

Do I have the permissions set incorrectly?
Is there something wrong with my Wizard files?

I have uninstalled and reinstalled IIS on the web server.
I have uninstalled and reinstalled VS.Net 2003 on the workstation.
I have added wizard.ReportError call throughout the default.js and
common.js files but not changed any logic otherwise.
I can see where the Global.asax is being generated and it's properties
set, but lose track before the initial "Access is Denied" message box.
If I try to add more Web Forms to the site I get the same sequence of
events as when the initial Web Form is added during the web
application createion wizard.

What in the world is going on???

Thanks for any help that can be offered!

Steve Wagner
Ciroque Enterprises, Inc


Nov 18 '05 #3
Did you ever find out what it was, because I am facing the exact same problems here! I'd appreciate any help or directions, please mail me at michiel1978_at_hotmail_dot_com

Thanks!

User submitted from AEWNET (http://www.aewnet.com/)
Nov 19 '05 #4
I was replying to an old post which can be read here:
http://www.aewnet.com/nntp/id-124334.html

If anyone could help me find a solution, that would be great, because I have
the exact same problem.

"Guest" <Guest@aew_nospam.com> wrote in message
news:%2****************@TK2MSFTNGP15.phx.gbl...
Did you ever find out what it was, because I am facing the exact same
problems here! I'd appreciate any help or directions, please mail me at
michiel1978_at_hotmail_dot_com

Thanks!

User submitted from AEWNET (http://www.aewnet.com/)

Nov 19 '05 #5

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

Similar topics

1
by: eScrewDotCom | last post by:
eScrew Welcome to eScrew! eScrew is eScrew and this is eScrew story. eScrew will tell you eScrew story if you promise eScrew to consider eScrew story as joke. eScrew story is very funny. eScrew...
8
by: eScrewDotCom | last post by:
eScrew Welcome to eScrew! eScrew is eScrew and this is eScrew story. eScrew will tell you eScrew story if you promise eScrew to consider eScrew story as joke. eScrew story is very funny. eScrew...
5
by: eScrewDotCom | last post by:
www.eScrew.com eScrew Welcome to eScrew! eScrew is eScrew and this is eScrew story. eScrew will tell you eScrew story if you promise eScrew to consider eScrew story as joke. eScrew story is...
0
by: eScrewDotCom | last post by:
eScrew Welcome to eScrew! eScrew is eScrew and this is eScrew story. eScrew will tell you eScrew story if you promise eScrew to consider eScrew story as joke. eScrew story is very funny. eScrew...
2
by: mp | last post by:
Hello, I have a couple general questions. First, how do most web frameworks serve html? I'm coding in python and I want to keep all my html seperate from my python stuff. I can serve these html...
0
by: David D | last post by:
I have both mp3 and video files. Here is the RSS for the mp3's - http://www.bionicbuddha.com/mp3/bionicbuddha.xml Now, the with the video files, they are not streaming and in fact they are in a...
7
by: Jeff Rush | last post by:
I'm down to the wire here on answering the Forrester survey but am stumped on a few questions I hope someone can help me out with. 1) What -existing- examples of the use of Python to create...
4
by: Emanuele D'Arrigo | last post by:
Hi everybody, I'm just having a go with Unit Testing for the first time and my feeling about it in short is: Neat! I'm a bit worried about the time it's taking me to develop the tests but...
2
by: Ahmedhussain | last post by:
Hi everyone, Ok so here Im with some more questions that are little bit interesting for me. Q1 ) How to make a mailbox and how will we be able to provide functionality to mailbox? Q2 ) As we...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
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...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
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,...

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.