Developing on a server that's not on port 80...

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I'm trying to create a project on a virtual server that runs on port 8000, rather than port 80.

I tried creating the project at http://localhost:8000/MyFolder but it keeps telling me that the file path doesn't map to the url. Is there some trick to using different port numbers?

Thanks.

Jerry
 
Are you tring to build using VS 2005?
if VS 2005 has its own webserver and user differrent port each time.


--------------------
From: <[email protected]>
Subject: Developing on a server that's not on port 80...
Date: Thu, 17 Aug 2006 12:31:03 -0700
Lines: 47
MIME-Version: 1.0
Content-Type: multipart/alternative;
boundary="----=_NextPart_000_0006_01C6C1F9.0103C6C0"
X-Priority: 3
X-MSMail-Priority: Normal
X-Newsreader: Microsoft Outlook Express 6.00.2900.2869
X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2962
Message-ID: <#[email protected]>
Newsgroups: microsoft.public.dotnet.framework.aspnet
NNTP-Posting-Host: pddcfw.phelpsd.com 198.176.208.75
Path: TK2MSFTNGXA01.phx.gbl!TK2MSFTNGP01.phx.gbl!TK2MSFTNGP04.phx.gbl
Xref: TK2MSFTNGXA01.phx.gbl microsoft.public.dotnet.framework.aspnet:414064
X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet

I'm trying to create a project on a virtual server that runs on port 8000, rather than port 80.
I tried creating the project at http://localhost:8000/MyFolder but it
keeps telling me that the file path doesn't map to the url. Is there some
trick to using different port numbers?
Thanks.
Jerry

--

Thank You,
Nanda Lella[MSFT],

This Posting is provided "AS IS" with no warranties, and confers no rights.
 
re:
Is there some trick to using different port numbers?

Not really a "trick", but you're doing it in the wrong place.

VS 2005 will work with your project regardless of which port IIS is using.

If you want to create a website on a port different from port 80,
create your new website on whatever port you want to use ( in IIS )
( 8000, for example ).

Totally separate from that, create a new VS 2005 website in your project directory.

After you're done coding, you can *publish*
your VS website project to your IIS site on port 8000.



Juan T. Llibre, asp.net MVP
aspnetfaq.com : http://www.aspnetfaq.com/
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
I'm trying to create a project on a virtual server that runs on port 8000, rather than port 80.

I tried creating the project at http://localhost:8000/MyFolder but it keeps telling me that the file
path doesn't map to the url. Is there some trick to using different port numbers?

Thanks.

Jerry
 
Sorry... I wasn't specific enough...

This is VS 2003. And I'm trying to create an app within a SharePoint
installation that's running on port 8000 and I need to run in that same
context in order to access the SharePoint database.

Thanks.

Jerry
 
Back
Top