vote up 0 vote down star

We have been able to create a web site. We did this using the information in this link:

http://msdn.microsoft.com/en-us/library/ms525598.aspx

However, we would like to use a port number other that port 80. How do we do this?

We are using IIS 6

Thanks

Shiraz

flag

What IIS version are you using? – kitsune Aug 17 at 8:57
We are using IIS 6 – Shiraz Bhaiji Aug 17 at 9:00
you want to specify the port during the setup or you want to add the website to IIS by code? – Wael Dalloul Aug 17 at 9:08
@Wael Add the web site to IIS and at the same time specify the port number ofthat web site. – Shiraz Bhaiji Aug 17 at 9:29

2 Answers

vote up 3 vote down check

If you're using IIS 7, there is a new managed API called Microsoft.Web.Administration

An example from the above blog post:

ServerManager iisManager = new ServerManager();
iisManager.Sites.Add("NewSite", "http", "*:8080:", "d:\\MySite");
iisManager.Update();

If you're using IIS 6 and want to do this, it's more complex unfortunately.

You will have to create a web service on every server, a web service that handles the creation of a website because direct user impersonation over the network won't work properly (If I recall this correctly).

You will have to use Interop Services and do something similar to this (This example uses two objects, server and site, which are instances of custom classes that store a server's and site's configuration):

string metabasePath = "IIS://" + server.ComputerName + "/W3SVC";
DirectoryEntry w3svc = new DirectoryEntry(metabasePath, server.Username, server.Password);

string serverBindings = ":80:" + site.HostName;
string homeDirectory = server.WWWRootPath + "\\" + site.FolderName;


object[] newSite = new object[] { site.Name, new object[] { serverBindings }, homeDirectory };

object websiteId = (object)w3svc.Invoke("CreateNewSite", newSite);

// Returns the Website ID from the Metabase
int id = (int)websiteId;

See more here

link|flag
Thanks, unfortunatly we are using IIS 6. – Shiraz Bhaiji Aug 17 at 9:08
I did this in a legacy maintenance project once, I'll see whether I can find the code. It's pretty arcane and convoluted unfortunately. – kitsune Aug 17 at 9:33
Thanks. The second set of code you posted worked. – Shiraz Bhaiji Aug 17 at 12:41
Great... btw watch out for App Pools... there might be need for some additional configuration... – kitsune Aug 17 at 13:17
vote up 0 vote down
  1. In properties of site select "Web Site" tab and specify TCP Port.
  2. In studio to debug purpose specify http://localhost:<port>/<site&gt; at tab Web for "Use Local IIS Web Server"
link|flag
Thanks for your reply. But this is how you do it using the UI, I need to know how to do it in code. – Shiraz Bhaiji Aug 17 at 9:02
Can you use wmi over JScript or VBScript ? – Dewfy Aug 17 at 9:25

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.