vote up 0 vote down star

I've created a copy of our legacy, (decrepit) homegrown Timesheet ASP application on to a different, newer workstation for backup purposes.

I've finally got it to the point where I can run it locally over http, using this address:

http://localhost/timesheet/Timesheet.asp

I would like to test it over the network with an address like this:

http://backupServerHostname/timesheet/Timesheet.asp

The live application uses a similar addressing scheme. I'm just not clear on what needs to be done to make this application available from the new server.

flag

76% accept rate

4 Answers

vote up 0 vote down check

You'll want to ensure that backup server isn't using windows firewall or something to block port 80 access. Also you may run into permissions issues if your asp app isn't set to allow anonymous access (assuming you want that).

link|flag
That was something I didn't think of. Thanks! – Jack BeNimble Feb 18 at 18:52
vote up 0 vote down

Nothing needs to be done. If it is serving localhost on Port 80, it should serve other computers on your local network using a name similar to the one you gave. It may literally be as easy as just trying it...

link|flag
vote up 0 vote down

If you just need to browse to it from other machines at work, just replace the "localhost" part with your machine name.

If you need it accessible over the net, you need to install it with IIS on an outward-facing server, and then browse to it that way.

link|flag
vote up 0 vote down

Goto the folder where the Timesheet web stuff lives (could be C:\Inetpub\wwwroot\TimeSheet, just a guess).

Then Right-Click on the folder, select "Properties", then click the "Web Sharing" tab, then select "Share This Folder" option, this should bring up an "Edit Alias" window. Change the alias to "backupServerHostName".

This is assuming all the machines on on the same LAN.

link|flag
Great answer, that's what I needed to do. In addition to checking the firewall – Jack BeNimble Feb 18 at 19:05

Your Answer

Get an OpenID
or

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