This is a multi-part message in MIME format.

------=_NextPart_000_0006_01C598EA.9DBEE5F0
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

The company I am at is testing an upgrade to a current web application =
that they run for document management and the app requires that it be =
run as the machine root so that when you type in the machine name it =
takes you to the application - there is only one development server in =
the company. The problem that we are having is that I am currently =
developing an Admin web application for this system and it is installed =
as it's own virtual directory underneath the parent root for the iis =
server. So this app is being nested underneath the other application and =
of course trying to launch my app results in an error being thrown =
notifying the user that it can't find controls that belong to the =
application running under the parent root.

Is there any way to configure the development server to run both =
applications on the same machine (the upgrade they are testing has to =
run as the machine name)? Both apps are written with the .Net 1.1 =
framework.

TIA,
Bill Youngman
Anexinet, Inc.
------=_NextPart_000_0006_01C598EA.9DBEE5F0
Content-Type: text/html;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=3DContent-Type content=3D"text/html; =
charset=3Diso-8859-1">
<META content=3D"MSHTML 6.00.2900.2627" name=3DGENERATOR>
<STYLE></STYLE>
</HEAD><FONT face=3DArial><FONT size=3D2>
<BODY>
<DIV>The company I am at is testing an upgrade to a current web =
application that=20
they run for document management and the app requires that it be run as =
the=20
machine root so that when you type in the machine name it takes you to =
the=20
application - there is only one development server in the company. The =
problem=20
that we are having is that I am currently developing an Admin web =
application=20
for this system and it is installed as it's own virtual directory =
underneath the=20
parent root for the iis server. So this app is being nested underneath =
the other=20
application and of course trying to launch my app results in an error =
being=20
thrown notifying the user that it can't find controls that belong to the =

application running under the parent root.</DIV>
<DIV>&nbsp;</DIV>
<DIV>Is there any way to configure the development server to run both=20
applications on the same machine (the upgrade they are testing has to =
run as the=20
machine name)? Both apps are written with the .Net 1.1 framework.</DIV>
<DIV>&nbsp;</DIV>
<DIV>TIA,</DIV>
<DIV>Bill Youngman</DIV>
<DIV>Anexinet, Inc.</DIV></BODY></HTML></FONT></FONT>

------=_NextPart_000_0006_01C598EA.9DBEE5F0--

Re: Nested web applications by Kristofer

Kristofer
Thu Aug 04 11:04:33 CDT 2005

Hello,

If this is a server OS, you can run two websites on the same machine and
that should work for you.


--
Regards,
Kristofer Gafvert (IIS MVP)
http://www.gafvert.info/iis/ - IIS Related Info


Bill Youngman wrote:

>The company I am at is testing an upgrade to a current web application
>that they run for document management and the app requires that it be run
>as the machine root so that when you type in the machine name it takes you
>to the application - there is only one development server in the company.
>The problem that we are having is that I am currently developing an Admin
>web application for this system and it is installed as it's own virtual
>directory underneath the parent root for the iis server. So this app is
>being nested underneath the other application and of course trying to
>launch my app results in an error being thrown notifying the user that it
>can't find controls that belong to the application running under the
>parent root.
>
>Is there any way to configure the development server to run both
>applications on the same machine (the upgrade they are testing has to run
>as the machine name)? Both apps are written with the .Net 1.1 framework.
>
>TIA,
>Bill Youngman
>Anexinet, Inc.

RE: Nested web applications by VickiDillon

VickiDillon
Fri Aug 05 09:02:13 CDT 2005

You can create a new virtual directory in IIS Manager. You can select any
path on your machine and name it anything you want. This way you can place
your code outside of wwwroot.

Hope that helps,
VIcki Dillon



"Bill Youngman" wrote:

> The company I am at is testing an upgrade to a current web application that they run for document management and the app requires that it be run as the machine root so that when you type in the machine name it takes you to the application - there is only one development server in the company. The problem that we are having is that I am currently developing an Admin web application for this system and it is installed as it's own virtual directory underneath the parent root for the iis server. So this app is being nested underneath the other application and of course trying to launch my app results in an error being thrown notifying the user that it can't find controls that belong to the application running under the parent root.
>
> Is there any way to configure the development server to run both applications on the same machine (the upgrade they are testing has to run as the machine name)? Both apps are written with the .Net 1.1 framework.
>
> TIA,
> Bill Youngman
> Anexinet, Inc

Re: Nested web applications by Bill

Bill
Tue Aug 09 14:28:42 CDT 2005

This is a multi-part message in MIME format.

------=_NextPart_000_000F_01C59CF7.08AFEED0
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

We configured our server for multiple web sites as per the Microsoft kb =
article "How To Use Host Header Names to Configure Multiple Web Sites in =
Internet Information Services 5.0" and added the appropriate information =
to the Hosts file on the server, so we have -

WebSite1 >> Properties >> Advanced >> IP Address >> 192.111.222.333=20
Host Header =
Name >> WebSite1.com

WebSite2 >> Properties >> Advanced >> IP Address >> 192.111.222.333
Host Header =
Name >> WebSite2.com

'Host' file -

192.111.222.333 WebSite1.com
192.111.222.333 WebSite2.com

In order to get to one of the web sites we have to stop the other site =
and vice versa - what have we missed?

Bill Youngman
"Bill Youngman" <wyoungman@anexinet.com> wrote in message =
news:uT3RkwQmFHA.2628@tk2msftngp13.phx.gbl...
The company I am at is testing an upgrade to a current web application =
that they run for document management and the app requires that it be =
run as the machine root so that when you type in the machine name it =
takes you to the application - there is only one development server in =
the company. The problem that we are having is that I am currently =
developing an Admin web application for this system and it is installed =
as it's own virtual directory underneath the parent root for the iis =
server. So this app is being nested underneath the other application and =
of course trying to launch my app results in an error being thrown =
notifying the user that it can't find controls that belong to the =
application running under the parent root.

Is there any way to configure the development server to run both =
applications on the same machine (the upgrade they are testing has to =
run as the machine name)? Both apps are written with the .Net 1.1 =
framework.

TIA,
Bill Youngman
Anexinet, Inc.
------=_NextPart_000_000F_01C59CF7.08AFEED0
Content-Type: text/html;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=3DContent-Type content=3D"text/html; =
charset=3Diso-8859-1">
<META content=3D"MSHTML 6.00.2900.2627" name=3DGENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=3D#ffffff>
<DIV><FONT face=3DArial size=3D2>We configured our server for multiple =
web sites as=20
per the Microsoft kb article "How To Use Host Header Names to Configure =
Multiple=20
Web Sites in Internet Information Services 5.0" and added the =
appropriate=20
information to the Hosts file on the server, so we have -</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV>
<DIV><FONT face=3DArial size=3D2>WebSite1&nbsp;&gt;&gt; Properties =
&gt;&gt; Advanced=20
&gt;&gt; IP Address &gt;&gt; 192.111.222.333&nbsp;</FONT></DIV>
<DIV><FONT face=3DArial size=3D2>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=20
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; =
&nbsp;&nbsp;&nbsp;=20
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; =
&nbsp;&nbsp;&nbsp;=20
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; =
&nbsp;&nbsp;&nbsp;=20
&nbsp;&nbsp;&nbsp;&nbsp; Host&nbsp;Header Name &gt;&gt;=20
WebSite1.com</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV>
<DIV><FONT face=3DArial size=3D2>WebSite2 &gt;&gt; Properties &gt;&gt; =
Advanced=20
&gt;&gt; IP Address &gt;&gt; 192.111.222.333</FONT></DIV>
<DIV><FONT face=3DArial size=3D2>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=20
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; =
&nbsp;&nbsp;&nbsp;=20
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; =
&nbsp;&nbsp;&nbsp;=20
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; =
&nbsp;&nbsp;&nbsp;=20
&nbsp;&nbsp;&nbsp;&nbsp; Host Header Name &gt;&gt; =
WebSite2.com</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV>
<DIV><FONT face=3DArial size=3D2>'Host' file -</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV>
<DIV><FONT face=3DArial size=3D2>192.111.222.333&nbsp;&nbsp;&nbsp;=20
WebSite1.com</FONT></DIV>
<DIV>
<DIV><FONT face=3DArial size=3D2>192.111.222.333&nbsp;&nbsp;&nbsp;=20
WebSite2.com</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV>
<DIV><FONT face=3DArial size=3D2>In order to get to one of the web sites =
we have to=20
stop the other site and vice versa - what have we missed?</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV>
<DIV><FONT face=3DArial size=3D2>Bill Youngman</FONT></DIV></DIV>
<BLOCKQUOTE dir=3Dltr=20
style=3D"PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; =
BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">
<DIV>"Bill Youngman" &lt;<A=20
href=3D"mailto:wyoungman@anexinet.com">wyoungman@anexinet.com</A>&gt; =
wrote in=20
message <A=20
=
href=3D"news:uT3RkwQmFHA.2628@tk2msftngp13.phx.gbl">news:uT3RkwQmFHA.2628=
@tk2msftngp13.phx.gbl</A>...</DIV><FONT=20
face=3DArial><FONT size=3D2>
<DIV>The company I am at is testing an upgrade to a current web =
application=20
that they run for document management and the app requires that it be =
run as=20
the machine root so that when you type in the machine name it takes =
you to the=20
application - there is only one development server in the company. The =
problem=20
that we are having is that I am currently developing an Admin web =
application=20
for this system and it is installed as it's own virtual directory =
underneath=20
the parent root for the iis server. So this app is being nested =
underneath the=20
other application and of course trying to launch my app results in an =
error=20
being thrown notifying the user that it can't find controls that =
belong to the=20
application running under the parent root.</DIV>
<DIV>&nbsp;</DIV>
<DIV>Is there any way to configure the development server to run both=20
applications on the same machine (the upgrade they are testing has to =
run as=20
the machine name)? Both apps are written with the .Net 1.1 =
framework.</DIV>
<DIV>&nbsp;</DIV>
<DIV>TIA,</DIV>
<DIV>Bill Youngman</DIV>
<DIV>Anexinet, Inc.</DIV></BLOCKQUOTE></FONT></FONT></BODY></HTML>

------=_NextPart_000_000F_01C59CF7.08AFEED0--


Re: Nested web applications by Tom

Tom
Tue Aug 09 15:23:15 CDT 2005

Are you running Windows Server or Pro?

--
Tom Kaminski IIS MVP
http://www.microsoft.com/windowsserver2003/community/centers/iis/
http://mvp.support.microsoft.com/
http://www.iistoolshed.com/ - tools, scripts, and utilities for running IIS


"Bill Youngman" <wyoungman@anexinet.com> wrote in message
news:eXwoMiRnFHA.3608@TK2MSFTNGP15.phx.gbl...
We configured our server for multiple web sites as per the Microsoft kb
article "How To Use Host Header Names to Configure Multiple Web Sites in
Internet Information Services 5.0" and added the appropriate information to
the Hosts file on the server, so we have -

WebSite1 >> Properties >> Advanced >> IP Address >> 192.111.222.333
Host Header
Name >> WebSite1.com

WebSite2 >> Properties >> Advanced >> IP Address >> 192.111.222.333
Host Header
Name >> WebSite2.com

'Host' file -

192.111.222.333 WebSite1.com
192.111.222.333 WebSite2.com

In order to get to one of the web sites we have to stop the other site and
vice versa - what have we missed?

Bill Youngman
"Bill Youngman" <wyoungman@anexinet.com> wrote in message
news:uT3RkwQmFHA.2628@tk2msftngp13.phx.gbl...
The company I am at is testing an upgrade to a current web application
that they run for document management and the app requires that it be run as
the machine root so that when you type in the machine name it takes you to
the application - there is only one development server in the company. The
problem that we are having is that I am currently developing an Admin web
application for this system and it is installed as it's own virtual
directory underneath the parent root for the iis server. So this app is
being nested underneath the other application and of course trying to launch
my app results in an error being thrown notifying the user that it can't
find controls that belong to the application running under the parent root.

Is there any way to configure the development server to run both
applications on the same machine (the upgrade they are testing has to run as
the machine name)? Both apps are written with the .Net 1.1 framework.

TIA,
Bill Youngman
Anexinet, Inc.



Re: Nested web applications by Bill

Bill
Wed Aug 10 10:02:10 CDT 2005

Windows 2000 Server

"Tom Kaminski [MVP]" <tomk (A@T) mvps (D.O.T) org> wrote in message
news:eUd7vASnFHA.1044@tk2msftngp13.phx.gbl...
> Are you running Windows Server or Pro?
>
> --
> Tom Kaminski IIS MVP
> http://www.microsoft.com/windowsserver2003/community/centers/iis/
> http://mvp.support.microsoft.com/
> http://www.iistoolshed.com/ - tools, scripts, and utilities for running
> IIS
>
>
> "Bill Youngman" <wyoungman@anexinet.com> wrote in message
> news:eXwoMiRnFHA.3608@TK2MSFTNGP15.phx.gbl...
> We configured our server for multiple web sites as per the Microsoft kb
> article "How To Use Host Header Names to Configure Multiple Web Sites in
> Internet Information Services 5.0" and added the appropriate information
> to the Hosts file on the server, so we have -
>
> WebSite1 >> Properties >> Advanced >> IP Address >> 192.111.222.333
> Host Header
> Name >> WebSite1.com
>
> WebSite2 >> Properties >> Advanced >> IP Address >> 192.111.222.333
> Host Header
> Name >> WebSite2.com
>
> 'Host' file -
>
> 192.111.222.333 WebSite1.com
> 192.111.222.333 WebSite2.com
>
> In order to get to one of the web sites we have to stop the other site and
> vice versa - what have we missed?
>
> Bill Youngman
> "Bill Youngman" <wyoungman@anexinet.com> wrote in message
> news:uT3RkwQmFHA.2628@tk2msftngp13.phx.gbl...
> The company I am at is testing an upgrade to a current web application
> that they run for document management and the app requires that it be run
> as the machine root so that when you type in the machine name it takes you
> to the application - there is only one development server in the company.
> The problem that we are having is that I am currently developing an Admin
> web application for this system and it is installed as it's own virtual
> directory underneath the parent root for the iis server. So this app is
> being nested underneath the other application and of course trying to
> launch my app results in an error being thrown notifying the user that it
> can't find controls that belong to the application running under the
> parent root.
>
> Is there any way to configure the development server to run both
> applications on the same machine (the upgrade they are testing has to run
> as the machine name)? Both apps are written with the .Net 1.1 framework.
>
> TIA,
> Bill Youngman
> Anexinet, Inc.
>