473,513 Members | 2,454 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Deploy an ASP Application

I built an ASP application and it runs fine on my local IIS. I am trying to
move the application to my web service (ISP) out on the internet. I've read
several of the help articles but they all seem to think I am deploying to
localhosts.

I created a new directory on my web page and copied most of the files from
the wwwroot subdirectory where my project exists. When I try to open the
page (by pointing to "WebForm1.aspx in the new directory) I get the error
shown below. Initially, the authentication mode was "Windows" but that gave
the same error. I changed it to "None" thinking that would resolve it.

What do I have to do in Web.config to get this to work? Also, exacctly which
files really need to be uploaded?

TIA

Wayne
================================================== ================

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: It is an error to use a section registered as
allowDefinition='MachineToApplication' beyond application level. This error
can be caused by a virtual directory not being configured as an application
in IIS.

Source Error:

Line 37: by Microsoft that offers a single logon and core profile
services for member sites.
Line 38: -->
Line 39: <authentication mode="None" />
Line 40:
Line 41:

Source File:
C:\inetpub2\resadmin\wengert\wengert.org\www\ASPDa taGridProj\web.config
Line: 39
----------------------------------------------------------------------------
----
Version Information: Microsoft .NET Framework Version:1.1.4322.573; ASP.NET
Version:1.1.4322.573
Nov 18 '05 #1
9 1879
If you use FrontPage to deply your application (and you can do so from
Visual Studio.Net), FrontPage extensions will set the directory as an IIS
application. Otherwise, the directory must be set as an IIS application
using the IIS Admin utility on the server or from a machine where you can
connect to the server with administrative privileges.

Dale

"Wayne Wengert" <wa***************@wengert.com> wrote in message
news:Oo**************@TK2MSFTNGP12.phx.gbl...
I built an ASP application and it runs fine on my local IIS. I am trying to move the application to my web service (ISP) out on the internet. I've read several of the help articles but they all seem to think I am deploying to
localhosts.

I created a new directory on my web page and copied most of the files from
the wwwroot subdirectory where my project exists. When I try to open the
page (by pointing to "WebForm1.aspx in the new directory) I get the error
shown below. Initially, the authentication mode was "Windows" but that gave the same error. I changed it to "None" thinking that would resolve it.

What do I have to do in Web.config to get this to work? Also, exacctly which files really need to be uploaded?

TIA

Wayne
================================================== ================

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: It is an error to use a section registered as
allowDefinition='MachineToApplication' beyond application level. This error can be caused by a virtual directory not being configured as an application in IIS.

Source Error:

Line 37: by Microsoft that offers a single logon and core profile services for member sites.
Line 38: -->
Line 39: <authentication mode="None" />
Line 40:
Line 41:

Source File:
C:\inetpub2\resadmin\wengert\wengert.org\www\ASPDa taGridProj\web.config
Line: 39
-------------------------------------------------------------------------- -- ----
Version Information: Microsoft .NET Framework Version:1.1.4322.573; ASP.NET Version:1.1.4322.573

Nov 18 '05 #2
Dale;

Thanks for the response. Since I only have an account on an ISP's server I
guess connecting to the server with admin rights is not possible.

Exactly how do I go about deploying using Frontpage? I've never used
Frontpage. I am using VSNET 2003 from a WinXP Pro system and I do have
Frontpage installed as part of Office 2003.

Wayne

"DalePres" <no****@nomail.com> wrote in message
news:%2******************@TK2MSFTNGP11.phx.gbl...
If you use FrontPage to deply your application (and you can do so from
Visual Studio.Net), FrontPage extensions will set the directory as an IIS
application. Otherwise, the directory must be set as an IIS application
using the IIS Admin utility on the server or from a machine where you can
connect to the server with administrative privileges.

Dale

"Wayne Wengert" <wa***************@wengert.com> wrote in message
news:Oo**************@TK2MSFTNGP12.phx.gbl...
I built an ASP application and it runs fine on my local IIS. I am trying

to
move the application to my web service (ISP) out on the internet. I've

read
several of the help articles but they all seem to think I am deploying to localhosts.

I created a new directory on my web page and copied most of the files from the wwwroot subdirectory where my project exists. When I try to open the
page (by pointing to "WebForm1.aspx in the new directory) I get the error shown below. Initially, the authentication mode was "Windows" but that

gave
the same error. I changed it to "None" thinking that would resolve it.

What do I have to do in Web.config to get this to work? Also, exacctly

which
files really need to be uploaded?

TIA

Wayne
================================================== ================

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: It is an error to use a section registered as
allowDefinition='MachineToApplication' beyond application level. This

error
can be caused by a virtual directory not being configured as an

application
in IIS.

Source Error:

Line 37: by Microsoft that offers a single logon and core

profile
services for member sites.
Line 38: -->
Line 39: <authentication mode="None" />
Line 40:
Line 41:

Source File:
C:\inetpub2\resadmin\wengert\wengert.org\www\ASPDa taGridProj\web.config
Line: 39


--------------------------------------------------------------------------
--
----
Version Information: Microsoft .NET Framework Version:1.1.4322.573;

ASP.NET
Version:1.1.4322.573


Nov 18 '05 #3
You don't have to have FrontPage installed on your machine. The necessary
functionality for publishing to a FrontPage enabled server is built into
Visual Studio .Net. Open your web project, go to the Project menu and then
choose Copy Project. In the Copy Project dialog, make sure you select
FrontPage as the web access method.

You'll probably use whatever your username and password is for your hosting
service but you may need to contact them for the appropriate username and
password.

This is the same method I use for publishing to my own hosting service.

Dale
"Wayne Wengert" <wa***************@wengert.com> wrote in message
news:uR**************@tk2msftngp13.phx.gbl...
Dale;

Thanks for the response. Since I only have an account on an ISP's server I
guess connecting to the server with admin rights is not possible.

Exactly how do I go about deploying using Frontpage? I've never used
Frontpage. I am using VSNET 2003 from a WinXP Pro system and I do have
Frontpage installed as part of Office 2003.

Wayne

"DalePres" <no****@nomail.com> wrote in message
news:%2******************@TK2MSFTNGP11.phx.gbl...
If you use FrontPage to deply your application (and you can do so from
Visual Studio.Net), FrontPage extensions will set the directory as an IIS
application. Otherwise, the directory must be set as an IIS application
using the IIS Admin utility on the server or from a machine where you can connect to the server with administrative privileges.

Dale

"Wayne Wengert" <wa***************@wengert.com> wrote in message
news:Oo**************@TK2MSFTNGP12.phx.gbl...
I built an ASP application and it runs fine on my local IIS. I am trying
to
move the application to my web service (ISP) out on the internet. I've

read
several of the help articles but they all seem to think I am deploying to localhosts.

I created a new directory on my web page and copied most of the files from the wwwroot subdirectory where my project exists. When I try to open
the page (by pointing to "WebForm1.aspx in the new directory) I get the

error shown below. Initially, the authentication mode was "Windows" but that

gave
the same error. I changed it to "None" thinking that would resolve it.

What do I have to do in Web.config to get this to work? Also, exacctly

which
files really need to be uploaded?

TIA

Wayne
================================================== ================

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: It is an error to use a section registered as
allowDefinition='MachineToApplication' beyond application level. This

error
can be caused by a virtual directory not being configured as an

application
in IIS.

Source Error:

Line 37: by Microsoft that offers a single logon and core

profile
services for member sites.
Line 38: -->
Line 39: <authentication mode="None" />
Line 40:
Line 41:

Source File:

C:\inetpub2\resadmin\wengert\wengert.org\www\ASPDa taGridProj\web.config Line: 39


--------------------------------------------------------------------------
--
----
Version Information: Microsoft .NET Framework Version:1.1.4322.573;

ASP.NET
Version:1.1.4322.573



Nov 18 '05 #4
If you don't have admin rights, you'll need to ask your ISP to set the
folder as an IIS application.

"Wayne Wengert" <wa***************@wengert.com> wrote in message
news:uR**************@tk2msftngp13.phx.gbl...
Dale;

Thanks for the response. Since I only have an account on an ISP's server I
guess connecting to the server with admin rights is not possible.

Exactly how do I go about deploying using Frontpage? I've never used
Frontpage. I am using VSNET 2003 from a WinXP Pro system and I do have
Frontpage installed as part of Office 2003.

Wayne

"DalePres" <no****@nomail.com> wrote in message
news:%2******************@TK2MSFTNGP11.phx.gbl...
If you use FrontPage to deply your application (and you can do so from
Visual Studio.Net), FrontPage extensions will set the directory as an IIS
application. Otherwise, the directory must be set as an IIS application
using the IIS Admin utility on the server or from a machine where you can connect to the server with administrative privileges.

Dale

"Wayne Wengert" <wa***************@wengert.com> wrote in message
news:Oo**************@TK2MSFTNGP12.phx.gbl...
I built an ASP application and it runs fine on my local IIS. I am trying
to
move the application to my web service (ISP) out on the internet. I've

read
several of the help articles but they all seem to think I am deploying to localhosts.

I created a new directory on my web page and copied most of the files from the wwwroot subdirectory where my project exists. When I try to open
the page (by pointing to "WebForm1.aspx in the new directory) I get the

error shown below. Initially, the authentication mode was "Windows" but that

gave
the same error. I changed it to "None" thinking that would resolve it.

What do I have to do in Web.config to get this to work? Also, exacctly

which
files really need to be uploaded?

TIA

Wayne
================================================== ================

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: It is an error to use a section registered as
allowDefinition='MachineToApplication' beyond application level. This

error
can be caused by a virtual directory not being configured as an

application
in IIS.

Source Error:

Line 37: by Microsoft that offers a single logon and core

profile
services for member sites.
Line 38: -->
Line 39: <authentication mode="None" />
Line 40:
Line 41:

Source File:

C:\inetpub2\resadmin\wengert\wengert.org\www\ASPDa taGridProj\web.config Line: 39


--------------------------------------------------------------------------
--
----
Version Information: Microsoft .NET Framework Version:1.1.4322.573;

ASP.NET
Version:1.1.4322.573



Nov 18 '05 #5
Thanks Dale. I'll give that a try.

Wayne
"DalePres" <no****@nomail.com> wrote in message
news:OT**************@TK2MSFTNGP09.phx.gbl...
You don't have to have FrontPage installed on your machine. The necessary
functionality for publishing to a FrontPage enabled server is built into
Visual Studio .Net. Open your web project, go to the Project menu and then choose Copy Project. In the Copy Project dialog, make sure you select
FrontPage as the web access method.

You'll probably use whatever your username and password is for your hosting service but you may need to contact them for the appropriate username and
password.

This is the same method I use for publishing to my own hosting service.

Dale
"Wayne Wengert" <wa***************@wengert.com> wrote in message
news:uR**************@tk2msftngp13.phx.gbl...
Dale;

Thanks for the response. Since I only have an account on an ISP's server I
guess connecting to the server with admin rights is not possible.

Exactly how do I go about deploying using Frontpage? I've never used
Frontpage. I am using VSNET 2003 from a WinXP Pro system and I do have
Frontpage installed as part of Office 2003.

Wayne

"DalePres" <no****@nomail.com> wrote in message
news:%2******************@TK2MSFTNGP11.phx.gbl...
If you use FrontPage to deply your application (and you can do so from
Visual Studio.Net), FrontPage extensions will set the directory as an IIS application. Otherwise, the directory must be set as an IIS application using the IIS Admin utility on the server or from a machine where you can connect to the server with administrative privileges.

Dale

"Wayne Wengert" <wa***************@wengert.com> wrote in message
news:Oo**************@TK2MSFTNGP12.phx.gbl...
> I built an ASP application and it runs fine on my local IIS. I am trying to
> move the application to my web service (ISP) out on the internet. I've read
> several of the help articles but they all seem to think I am deploying to
> localhosts.
>
> I created a new directory on my web page and copied most of the
files
from
> the wwwroot subdirectory where my project exists. When I try to open

the > page (by pointing to "WebForm1.aspx in the new directory) I get the

error
> shown below. Initially, the authentication mode was "Windows" but
that gave
> the same error. I changed it to "None" thinking that would resolve it. >
> What do I have to do in Web.config to get this to work? Also, exacctly which
> files really need to be uploaded?
>
> TIA
>
> Wayne
>
>
> ================================================== ================
>
> 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: It is an error to use a section registered as
> allowDefinition='MachineToApplication' beyond application level. This error
> can be caused by a virtual directory not being configured as an
application
> in IIS.
>
> Source Error:
>
> Line 37: by Microsoft that offers a single logon and core
profile
> services for member sites.
> Line 38: -->
> Line 39: <authentication mode="None" />
> Line 40:
> Line 41:
>
> Source File:
> C:\inetpub2\resadmin\wengert\wengert.org\www\ASPDa taGridProj\web.config > Line: 39
>
>


--------------------------------------------------------------------------
--
> ----
> Version Information: Microsoft .NET Framework Version:1.1.4322.573;
ASP.NET
> Version:1.1.4322.573
>
>



Nov 18 '05 #6
Interesting. I tried that again on my main ISP account and got the same
error. I then tried copying the whole directory to another ISP account and
now I am getting the following error - even though I edited the Web.Config
file as directed?
================================================== ==========

Server Error in '/' Application.
----------------------------------------------------------------------------
----

Runtime Error
Description: An application error occurred on the server. The current custom
error settings for this application prevent the details of the application
error from being viewed remotely (for security reasons). It could, however,
be viewed by browsers running on the local server machine.

Details: To enable the details of this specific error message to be viewable
on remote machines, please create a <customErrors> tag within a "web.config"
configuration file located in the root directory of the current web
application. This <customErrors> tag should then have its "mode" attribute
set to "Off".
<!-- Web.Config Configuration File -->

<configuration>
<system.web>
<customErrors mode="Off"/>
</system.web>
</configuration>
Notes: The current error page you are seeing can be replaced by a custom
error page by modifying the "defaultRedirect" attribute of the application's
<customErrors> configuration tag to point to a custom error page URL.
<!-- Web.Config Configuration File -->

<configuration>
<system.web>
<customErrors mode="RemoteOnly" defaultRedirect="mycustompage.htm"/>
</system.web>
</configuration>
================================================== ============

Wayne

"DalePres" <no****@nomail.com> wrote in message
news:OT**************@TK2MSFTNGP09.phx.gbl...
You don't have to have FrontPage installed on your machine. The necessary
functionality for publishing to a FrontPage enabled server is built into
Visual Studio .Net. Open your web project, go to the Project menu and then choose Copy Project. In the Copy Project dialog, make sure you select
FrontPage as the web access method.

You'll probably use whatever your username and password is for your hosting service but you may need to contact them for the appropriate username and
password.

This is the same method I use for publishing to my own hosting service.

Dale
"Wayne Wengert" <wa***************@wengert.com> wrote in message
news:uR**************@tk2msftngp13.phx.gbl...
Dale;

Thanks for the response. Since I only have an account on an ISP's server I
guess connecting to the server with admin rights is not possible.

Exactly how do I go about deploying using Frontpage? I've never used
Frontpage. I am using VSNET 2003 from a WinXP Pro system and I do have
Frontpage installed as part of Office 2003.

Wayne

"DalePres" <no****@nomail.com> wrote in message
news:%2******************@TK2MSFTNGP11.phx.gbl...
If you use FrontPage to deply your application (and you can do so from
Visual Studio.Net), FrontPage extensions will set the directory as an IIS application. Otherwise, the directory must be set as an IIS application using the IIS Admin utility on the server or from a machine where you can connect to the server with administrative privileges.

Dale

"Wayne Wengert" <wa***************@wengert.com> wrote in message
news:Oo**************@TK2MSFTNGP12.phx.gbl...
> I built an ASP application and it runs fine on my local IIS. I am trying to
> move the application to my web service (ISP) out on the internet. I've read
> several of the help articles but they all seem to think I am deploying to
> localhosts.
>
> I created a new directory on my web page and copied most of the
files
from
> the wwwroot subdirectory where my project exists. When I try to open

the > page (by pointing to "WebForm1.aspx in the new directory) I get the

error
> shown below. Initially, the authentication mode was "Windows" but
that gave
> the same error. I changed it to "None" thinking that would resolve it. >
> What do I have to do in Web.config to get this to work? Also, exacctly which
> files really need to be uploaded?
>
> TIA
>
> Wayne
>
>
> ================================================== ================
>
> 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: It is an error to use a section registered as
> allowDefinition='MachineToApplication' beyond application level. This error
> can be caused by a virtual directory not being configured as an
application
> in IIS.
>
> Source Error:
>
> Line 37: by Microsoft that offers a single logon and core
profile
> services for member sites.
> Line 38: -->
> Line 39: <authentication mode="None" />
> Line 40:
> Line 41:
>
> Source File:
> C:\inetpub2\resadmin\wengert\wengert.org\www\ASPDa taGridProj\web.config > Line: 39
>
>


--------------------------------------------------------------------------
--
> ----
> Version Information: Microsoft .NET Framework Version:1.1.4322.573;
ASP.NET
> Version:1.1.4322.573
>
>



Nov 18 '05 #7
Are you sure that's the same error? What you're quoting is the default
error message if you have customErrors off, but what you quoted would apply
to any server error with custom errors off.

If you're not seeing the message you discussed in your original post about
the application not being configured as an IIS application then you may just
have an error in your code now.

The custom errors attribute in web.config is used to control how much detail
you get from the server. I'm not sure if you understand how that works or
not. If you do, then disregard this but let me summarize it:

If you set customErrors to off, you will see the details about the error
displayed in the browser when you encounter a server error.
If you set customErrors to remote only, then the message you quoted last
will be displayed in all browsers EXCEPT for browsers running on the local
machine (the machine running IIS). The local machine will display more
specific details.
If you set customErrors to on then you will get the filtered error
description you quoted here both on the local IIS machine or any other
machine.

When you're troubleshooting a hosted site, you should set customErrors to
on, so that you can see the details of the error. When it's pretty stable,
then set customErrors to off. Since you can't work directly on the machine
anyway, there's no reason to set it to RemoteOnly.

Hope this helps,

Dale

"Wayne Wengert" <wa***************@wengert.com> wrote in message
news:e7**************@TK2MSFTNGP12.phx.gbl...
Interesting. I tried that again on my main ISP account and got the same
error. I then tried copying the whole directory to another ISP account and
now I am getting the following error - even though I edited the Web.Config
file as directed?
================================================== ==========

Server Error in '/' Application.
-------------------------------------------------------------------------- -- ----

Runtime Error
Description: An application error occurred on the server. The current custom error settings for this application prevent the details of the application
error from being viewed remotely (for security reasons). It could, however, be viewed by browsers running on the local server machine.

Details: To enable the details of this specific error message to be viewable on remote machines, please create a <customErrors> tag within a "web.config" configuration file located in the root directory of the current web
application. This <customErrors> tag should then have its "mode" attribute
set to "Off".
<!-- Web.Config Configuration File -->

<configuration>
<system.web>
<customErrors mode="Off"/>
</system.web>
</configuration>
Notes: The current error page you are seeing can be replaced by a custom
error page by modifying the "defaultRedirect" attribute of the application's <customErrors> configuration tag to point to a custom error page URL.
<!-- Web.Config Configuration File -->

<configuration>
<system.web>
<customErrors mode="RemoteOnly" defaultRedirect="mycustompage.htm"/> </system.web>
</configuration>
================================================== ============

Wayne

"DalePres" <no****@nomail.com> wrote in message
news:OT**************@TK2MSFTNGP09.phx.gbl...
You don't have to have FrontPage installed on your machine. The necessary
functionality for publishing to a FrontPage enabled server is built into
Visual Studio .Net. Open your web project, go to the Project menu and then
choose Copy Project. In the Copy Project dialog, make sure you select
FrontPage as the web access method.

You'll probably use whatever your username and password is for your

hosting
service but you may need to contact them for the appropriate username and password.

This is the same method I use for publishing to my own hosting service.

Dale
"Wayne Wengert" <wa***************@wengert.com> wrote in message
news:uR**************@tk2msftngp13.phx.gbl...
Dale;

Thanks for the response. Since I only have an account on an ISP's server I guess connecting to the server with admin rights is not possible.

Exactly how do I go about deploying using Frontpage? I've never used
Frontpage. I am using VSNET 2003 from a WinXP Pro system and I do have
Frontpage installed as part of Office 2003.

Wayne

"DalePres" <no****@nomail.com> wrote in message
news:%2******************@TK2MSFTNGP11.phx.gbl...
> If you use FrontPage to deply your application (and you can do so
from > Visual Studio.Net), FrontPage extensions will set the directory as an
IIS
> application. Otherwise, the directory must be set as an IIS application > using the IIS Admin utility on the server or from a machine where
you can
> connect to the server with administrative privileges.
>
> Dale
>
> "Wayne Wengert" <wa***************@wengert.com> wrote in message
> news:Oo**************@TK2MSFTNGP12.phx.gbl...
> > I built an ASP application and it runs fine on my local IIS. I am

trying
> to
> > move the application to my web service (ISP) out on the internet. I've > read
> > several of the help articles but they all seem to think I am deploying to
> > localhosts.
> >
> > I created a new directory on my web page and copied most of the files from
> > the wwwroot subdirectory where my project exists. When I try to
open the
> > page (by pointing to "WebForm1.aspx in the new directory) I get

the error
> > shown below. Initially, the authentication mode was "Windows" but

that > gave
> > the same error. I changed it to "None" thinking that would resolve it. > >
> > What do I have to do in Web.config to get this to work? Also, exacctly > which
> > files really need to be uploaded?
> >
> > TIA
> >
> > Wayne
> >
> >
> > ================================================== ================
> >
> > 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: It is an error to use a section registered as > > allowDefinition='MachineToApplication' beyond application level. This > error
> > can be caused by a virtual directory not being configured as an
> application
> > in IIS.
> >
> > Source Error:
> >
> > Line 37: by Microsoft that offers a single logon and core > profile
> > services for member sites.
> > Line 38: -->
> > Line 39: <authentication mode="None" />
> > Line 40:
> > Line 41:
> >
> > Source File:
> >

C:\inetpub2\resadmin\wengert\wengert.org\www\ASPDa taGridProj\web.config
> > Line: 39
> >
> >
>


--------------------------------------------------------------------------
> --
> > ----
> > Version Information: Microsoft .NET Framework Version:1.1.4322.573; > ASP.NET
> > Version:1.1.4322.573
> >
> >
>
>



Nov 18 '05 #8
Dale,

I am having a similar problem to Wayne and would like to try this method of
publishing. I don't see anywhere to enter my username and password. Is
there a certain format for the Destination project folder that I can include
my login info?

For anyone that's interested in my specific problem, I'll include the log
below. I'm not sure if it's a security problem or that my dll cannot be
found.

LOG: Policy not being applied to reference at this time (private, custom,
partial, or location-based assembly bind).
LOG: Post-policy reference: KLLib
LOG: Attempting download of new URL
file:///C:/WINNT/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET
Files/root/0e8190ed/8d0d2be5/KLLib.DLL.
LOG: Attempting download of new URL
file:///C:/WINNT/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET
Files/root/0e8190ed/8d0d2be5/KLLib/KLLib.DLL.
LOG: Attempting download of new URL
file:///C:/Sites/accounts/kebam/klfilterwizard.com/www/Testing/bin/KLLib.DLL.
LOG: Policy not being applied to reference at this time (private, custom,
partial, or location-based assembly bind).
LOG: Post-policy reference: KLLib, Version=1.0.1581.25046, Culture=neutral,
PublicKeyToken=null

Thanks,
Rob

"DalePres" <no****@nomail.com> wrote in message
news:OT**************@TK2MSFTNGP09.phx.gbl...
You don't have to have FrontPage installed on your machine. The necessary
functionality for publishing to a FrontPage enabled server is built into
Visual Studio .Net. Open your web project, go to the Project menu and then choose Copy Project. In the Copy Project dialog, make sure you select
FrontPage as the web access method.

You'll probably use whatever your username and password is for your hosting service but you may need to contact them for the appropriate username and
password.

This is the same method I use for publishing to my own hosting service.

Dale
"Wayne Wengert" <wa***************@wengert.com> wrote in message
news:uR**************@tk2msftngp13.phx.gbl...
Dale;

Thanks for the response. Since I only have an account on an ISP's server I
guess connecting to the server with admin rights is not possible.

Exactly how do I go about deploying using Frontpage? I've never used
Frontpage. I am using VSNET 2003 from a WinXP Pro system and I do have
Frontpage installed as part of Office 2003.

Wayne

"DalePres" <no****@nomail.com> wrote in message
news:%2******************@TK2MSFTNGP11.phx.gbl...
If you use FrontPage to deply your application (and you can do so from
Visual Studio.Net), FrontPage extensions will set the directory as an IIS application. Otherwise, the directory must be set as an IIS application using the IIS Admin utility on the server or from a machine where you can connect to the server with administrative privileges.

Dale

"Wayne Wengert" <wa***************@wengert.com> wrote in message
news:Oo**************@TK2MSFTNGP12.phx.gbl...
> I built an ASP application and it runs fine on my local IIS. I am trying to
> move the application to my web service (ISP) out on the internet. I've read
> several of the help articles but they all seem to think I am deploying to
> localhosts.
>
> I created a new directory on my web page and copied most of the
files
from
> the wwwroot subdirectory where my project exists. When I try to open

the > page (by pointing to "WebForm1.aspx in the new directory) I get the

error
> shown below. Initially, the authentication mode was "Windows" but
that gave
> the same error. I changed it to "None" thinking that would resolve it. >
> What do I have to do in Web.config to get this to work? Also, exacctly which
> files really need to be uploaded?
>
> TIA
>
> Wayne
>
>
> ================================================== ================
>
> 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: It is an error to use a section registered as
> allowDefinition='MachineToApplication' beyond application level. This error
> can be caused by a virtual directory not being configured as an
application
> in IIS.
>
> Source Error:
>
> Line 37: by Microsoft that offers a single logon and core
profile
> services for member sites.
> Line 38: -->
> Line 39: <authentication mode="None" />
> Line 40:
> Line 41:
>
> Source File:
> C:\inetpub2\resadmin\wengert\wengert.org\www\ASPDa taGridProj\web.config > Line: 39
>
>


--------------------------------------------------------------------------
--
> ----
> Version Information: Microsoft .NET Framework Version:1.1.4322.573;
ASP.NET
> Version:1.1.4322.573
>
>



Nov 18 '05 #9
If you try it and a password is required, it will pop up the password
window. At least, that's how it worked for me. I'm not an expert; I only
know that I was having the same problem and my hosting service pointed out
the solution to me.

Dale

"Rob Van Zant" <ro*******@DONTSPAMrumbayly.com> wrote in message
news:e7****************@TK2MSFTNGP09.phx.gbl...
Dale,

I am having a similar problem to Wayne and would like to try this method of publishing. I don't see anywhere to enter my username and password. Is
there a certain format for the Destination project folder that I can include my login info?

For anyone that's interested in my specific problem, I'll include the log
below. I'm not sure if it's a security problem or that my dll cannot be
found.

LOG: Policy not being applied to reference at this time (private, custom,
partial, or location-based assembly bind).
LOG: Post-policy reference: KLLib
LOG: Attempting download of new URL
file:///C:/WINNT/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET
Files/root/0e8190ed/8d0d2be5/KLLib.DLL.
LOG: Attempting download of new URL
file:///C:/WINNT/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET
Files/root/0e8190ed/8d0d2be5/KLLib/KLLib.DLL.
LOG: Attempting download of new URL
file:///C:/Sites/accounts/kebam/klfilterwizard.com/www/Testing/bin/KLLib.DLL. LOG: Policy not being applied to reference at this time (private, custom,
partial, or location-based assembly bind).
LOG: Post-policy reference: KLLib, Version=1.0.1581.25046, Culture=neutral, PublicKeyToken=null

Thanks,
Rob

"DalePres" <no****@nomail.com> wrote in message
news:OT**************@TK2MSFTNGP09.phx.gbl...
You don't have to have FrontPage installed on your machine. The necessary
functionality for publishing to a FrontPage enabled server is built into
Visual Studio .Net. Open your web project, go to the Project menu and then
choose Copy Project. In the Copy Project dialog, make sure you select
FrontPage as the web access method.

You'll probably use whatever your username and password is for your

hosting
service but you may need to contact them for the appropriate username and password.

This is the same method I use for publishing to my own hosting service.

Dale
"Wayne Wengert" <wa***************@wengert.com> wrote in message
news:uR**************@tk2msftngp13.phx.gbl...
Dale;

Thanks for the response. Since I only have an account on an ISP's server I guess connecting to the server with admin rights is not possible.

Exactly how do I go about deploying using Frontpage? I've never used
Frontpage. I am using VSNET 2003 from a WinXP Pro system and I do have
Frontpage installed as part of Office 2003.

Wayne

"DalePres" <no****@nomail.com> wrote in message
news:%2******************@TK2MSFTNGP11.phx.gbl...
> If you use FrontPage to deply your application (and you can do so
from > Visual Studio.Net), FrontPage extensions will set the directory as an
IIS
> application. Otherwise, the directory must be set as an IIS application > using the IIS Admin utility on the server or from a machine where
you can
> connect to the server with administrative privileges.
>
> Dale
>
> "Wayne Wengert" <wa***************@wengert.com> wrote in message
> news:Oo**************@TK2MSFTNGP12.phx.gbl...
> > I built an ASP application and it runs fine on my local IIS. I am

trying
> to
> > move the application to my web service (ISP) out on the internet. I've > read
> > several of the help articles but they all seem to think I am deploying to
> > localhosts.
> >
> > I created a new directory on my web page and copied most of the files from
> > the wwwroot subdirectory where my project exists. When I try to
open the
> > page (by pointing to "WebForm1.aspx in the new directory) I get

the error
> > shown below. Initially, the authentication mode was "Windows" but

that > gave
> > the same error. I changed it to "None" thinking that would resolve it. > >
> > What do I have to do in Web.config to get this to work? Also, exacctly > which
> > files really need to be uploaded?
> >
> > TIA
> >
> > Wayne
> >
> >
> > ================================================== ================
> >
> > 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: It is an error to use a section registered as > > allowDefinition='MachineToApplication' beyond application level. This > error
> > can be caused by a virtual directory not being configured as an
> application
> > in IIS.
> >
> > Source Error:
> >
> > Line 37: by Microsoft that offers a single logon and core > profile
> > services for member sites.
> > Line 38: -->
> > Line 39: <authentication mode="None" />
> > Line 40:
> > Line 41:
> >
> > Source File:
> >

C:\inetpub2\resadmin\wengert\wengert.org\www\ASPDa taGridProj\web.config
> > Line: 39
> >
> >
>


--------------------------------------------------------------------------
> --
> > ----
> > Version Information: Microsoft .NET Framework Version:1.1.4322.573; > ASP.NET
> > Version:1.1.4322.573
> >
> >
>
>



Nov 18 '05 #10

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

Similar topics

1
4169
by: Wilson Ricardo Passos Oliveira | last post by:
Hi fellows, I have two simple questions regarding the Framework's deploy and the Setup and Deploy Projects: 1. As I've read in another posts and newsgroups (and as I can imagine), VS.NET...
1
1380
by: James X. Li | last post by:
We are using an ISP to host our web site. All we get from our ISP is a root directory for our web site. We can deploy a single ASP.NET application by copying all the related files (global.asax,...
0
2320
by: Robert Warnestam | last post by:
Hello, I have some problems deploying Crystal Reports. I'm using Visual Studio 2005 Beta 1. In this version Crystal Reports (9.7.3500.0) is included. I created a small test application...
2
1872
by: Nils Hedström | last post by:
I have a ASP.NET 1.1 project that I want to be able to deploy on my web-servers while they have real traffic (40 requests/second). When I copy the projects assembly in the bin-directory of the...
4
7057
by: bob lambert | last post by:
Help I am trying to deploy to another pc a vb.net std 2002 windows form application. I am confused. I created a project - windows form I built form, compiled and debugged. I created a...
1
1391
by: alan | last post by:
I've try to deploy my application by using Setup Wizard. But after I build the setup application, it got a error said "unrecoverable error!". I don't know what's the problem. In order to the what...
4
1692
by: meo | last post by:
Does .NET provide the way to deploy library to internal developer? I am trying to find the way to deploy a library file to developer for having integration to their application BUT the customer...
6
2473
by: AGP | last post by:
I resisted for many years but I've just written my first app in .NET2005 and am looking to deploy my app with a third-party installer. ClickOnce and the VS Installer do not meed my needs and I am...
6
10940
by: =?Utf-8?B?QW5kcmV3X2QxMjM=?= | last post by:
Here is my problem. I have an app that has over 9 web services. For years I had not issues with clickonce but now it looks like the build is missing XmlSerializers.dll.deploy. I did have this...
0
1637
by: stephen | last post by:
Hi, I am using Click Once Deploy to deploy an application.(this application has an .exe, .config, .xml files) and after deployment to a location, I checked for the files and all the files are...
0
7259
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
7158
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
7380
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
7535
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
7523
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...
1
5085
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...
0
4745
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...
0
1592
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 ...
1
798
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.