473,569 Members | 2,383 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Trouble deploying ASP.NET application

Tried both FTP and frontpage extensions method to the host server.
Server has directory running as a ASP.NET application.

If I take out ...Inherits="qu izengine.WebFor m1"...the page loads but no
functionality.. . of course becuase I have code behind on it.

My problem is extreemly basic. Make an application on my machine, then
publish to host, fire application and I get the following error.
I am completely lost and totally stunned how hard it is to get information
on how to deploy a standard ASP.NET application with no odd settings or
database onto a host server!
Server Error in '/quiz' Application.
--------------------------------------------------------------------------------

The remote server returned an error: (404) Not Found.
Description: An unhandled exception occurred during the execution of the
current web request. Please review the stack trace for more information about
the error and where it originated in the code.

Exception Details: System.Net.WebE xception: The remote server returned an
error: (404) Not Found.

Source Error:

An unhandled exception was generated during the execution of the current web
request. Information regarding the origin and location of the exception can
be identified using the exception stack trace below.

Stack Trace:
[WebException: The remote server returned an error: (404) Not Found.]
System.Net.Http WebRequest.Chec kFinalStatus() +680
System.Net.Http WebRequest.EndG etResponse(IAsy ncResult asyncResult) +139
System.Net.Http WebRequest.GetR esponse() +249
System.Xml.XmlD ownloadManager. GetNonFileStrea m(Uri uri, ICredentials
credentials) +65
System.Xml.XmlD ownloadManager. GetStream(Uri uri, ICredentials
credentials) +94
System.Xml.XmlU rlResolver.GetE ntity(Uri absoluteUri, String role, Type
ofObjectToRetur n) +55
System.Xml.XmlT extReader.Creat eScanner() +384
System.Xml.XmlT extReader.Init( ) +23
System.Xml.XmlT extReader.Read( ) +530
System.Xml.XmlR eader.MoveToCon tent() +75
System.Data.Dat aSet.ReadXmlSch ema(XmlReader reader, Boolean
denyResolving) +122
System.Data.Dat aSet.ReadXmlSch ema(String fileName) +60
quizengine.WebF orm1.Page_Load( Object sender, EventArgs e) in
c:\inetpub\wwwr oot\quizengine\ default.aspx.cs :25
System.Web.UI.C ontrol.OnLoad(E ventArgs e) +67
System.Web.UI.C ontrol.LoadRecu rsive() +35
System.Web.UI.P age.ProcessRequ estMain() +750

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

Nov 19 '05 #1
1 1386
problem solved!

although I need to use a full path for my local host directory to access my
XML files for some bizare reason I thought I could just put the file name
only when I deployed it to the host. Once I put the full path name of my host
server..problem gone.

Now I can work on the other problems.

"Sean" wrote:
Tried both FTP and frontpage extensions method to the host server.
Server has directory running as a ASP.NET application.

If I take out ...Inherits="qu izengine.WebFor m1"...the page loads but no
functionality.. . of course becuase I have code behind on it.

My problem is extreemly basic. Make an application on my machine, then
publish to host, fire application and I get the following error.
I am completely lost and totally stunned how hard it is to get information
on how to deploy a standard ASP.NET application with no odd settings or
database onto a host server!
Server Error in '/quiz' Application.
--------------------------------------------------------------------------------

The remote server returned an error: (404) Not Found.
Description: An unhandled exception occurred during the execution of the
current web request. Please review the stack trace for more information about
the error and where it originated in the code.

Exception Details: System.Net.WebE xception: The remote server returned an
error: (404) Not Found.

Source Error:

An unhandled exception was generated during the execution of the current web
request. Information regarding the origin and location of the exception can
be identified using the exception stack trace below.

Stack Trace:
[WebException: The remote server returned an error: (404) Not Found.]
System.Net.Http WebRequest.Chec kFinalStatus() +680
System.Net.Http WebRequest.EndG etResponse(IAsy ncResult asyncResult) +139
System.Net.Http WebRequest.GetR esponse() +249
System.Xml.XmlD ownloadManager. GetNonFileStrea m(Uri uri, ICredentials
credentials) +65
System.Xml.XmlD ownloadManager. GetStream(Uri uri, ICredentials
credentials) +94
System.Xml.XmlU rlResolver.GetE ntity(Uri absoluteUri, String role, Type
ofObjectToRetur n) +55
System.Xml.XmlT extReader.Creat eScanner() +384
System.Xml.XmlT extReader.Init( ) +23
System.Xml.XmlT extReader.Read( ) +530
System.Xml.XmlR eader.MoveToCon tent() +75
System.Data.Dat aSet.ReadXmlSch ema(XmlReader reader, Boolean
denyResolving) +122
System.Data.Dat aSet.ReadXmlSch ema(String fileName) +60
quizengine.WebF orm1.Page_Load( Object sender, EventArgs e) in
c:\inetpub\wwwr oot\quizengine\ default.aspx.cs :25
System.Web.UI.C ontrol.OnLoad(E ventArgs e) +67
System.Web.UI.C ontrol.LoadRecu rsive() +35
System.Web.UI.P age.ProcessRequ estMain() +750

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

Nov 19 '05 #2

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

Similar topics

2
1294
by: Stefan | last post by:
I have a problem deploying a ASP.Net app on a 2003 Enterprise server. After installing the application I get 404's when I try to access the aspx pages on the server (not other pages like html or stylesheets). I installed IIS after the .Net runtime and ran aspnet_regiis afterwards. I checked, that the .aspx extension is mapped to the...
0
1190
by: Stephen | last post by:
Hi I am having trouble with a third party component that I am attempting to use on our web application (Xceed Graph Component). When I develop locally it all works fine, but as soon as I try to deploy it to our web hosts server it has a security problem. I contacted our web host and they sent me their machine.config and...
10
1435
by: fenway | last post by:
Hi, I'm new to ASP.NET and just finished up a small application. Essentially it's just a form that writes data to a CSV file on the server after a user fills in the form. The code compiles and runs on my development machine (VS.NET 2002) but when I FTP all the files to the server I get a "Server Error in '/' Application." error. I can't...
5
2158
by: Richard Mintz | last post by:
Hi, I am trying to deploy a C# application to a Windows 2000 machine. When I try to run the app after the install i get a runtime error. the setup works on both XP and windows 2003 server machines. Any Ideas Thanks for your help
0
1399
by: Dave | last post by:
Hello The application I'm building an installer for uses dlls which were developed originally in C. Since the application itself is developed in C#, these dlls were wrapped using SWIG. Initially, the machine environment variables were set to enable code development; however, I am facing problem deploying the application. To work with these...
6
5518
by: Ryan | last post by:
Is there any way to save a VB 2005 created application as an .MSI install file? The only method I see is to publish as a .EXE. Curious because I want to push out an application with Group Policy. Thanks, Ryan
3
2608
by: pooba53 | last post by:
I have a VB .NET 2003 application that communicates with an Access db. I am deploying the application using the Wizard that creates an install package and it IS properly grabbing the Access db and putting it in the Program Files directory along with the application executable, no problem. The problem is this... The OleDbConnection knows...
0
1359
by: Amit | last post by:
Hi,I am new to .net 2.0 and have just built one web application and deployed the application on web server. The problem which i am facing is that if i make any changes in the .cs files or aspx files then everytime i have to publish the site and give new upload for whole site everytime which i feel is not correct way of doing it.and if i give...
3
2767
by: kkao77 | last post by:
can you show me in more detail? I have same problem where on the page it's https://service.premilance.com/Company.svc, but the svcutil tells me to get it from https://pserver1/Company.svc?wsdl which is incorrect.. I have no clue how to fix it and i'm struggling for two days already :( On Mar 13, 3:09 pm, "Tiago Halm"...
0
7703
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main...
0
7926
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. ...
0
8132
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that...
1
7678
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 Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For...
0
7982
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 protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the...
0
6286
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, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then...
1
5514
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes...
0
3644
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2116
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system

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.