LAN access to SRF file

  • Thread starter Thread starter Leonid
  • Start date Start date
L

Leonid

Hello,

I develop Web Server using ATL in VC++ .NET and I can
access it from the same computer using IE and SRF
file: 'http://localhost/ATLServerApp/ATLServerApp.srf'.
How can I access this Server from another computer
connected to LAN? What particular address do I need to
provide for IE on that remote computer?

Thanks for the help,

Leonid
 
Hi, Leonid

You should change localhost with the machine name or the IP address of that
machine.
To get the machine name or the IP, go to command prompt on the machine where
http://localhost/ATLServerApp/ATLServerApp.srf works
and run

c:\>hostname
(this will return the machine name)

or
c:\>ipconfig
(this will display the Windows IP Configuration. The IP Address should be
the second line of the output)


--
--
--
This posting is provided "AS IS" with no warranties, and confers no rights.
Please do not send email directly to this alias. It is for newsgroup
purposes only.

thanks,
bogdan
 
Thanks,

It works fine!

Regards,

Leonid
-----Original Message-----
Hi, Leonid

You should change localhost with the machine name or the IP address of that
machine.
To get the machine name or the IP, go to command prompt on the machine where
http://localhost/ATLServerApp/ATLServerApp.srf works
and run

c:\>hostname
(this will return the machine name)

or
c:\>ipconfig
(this will display the Windows IP Configuration. The IP Address should be
the second line of the output)


--
--
--
This posting is provided "AS IS" with no warranties, and confers no rights.
Please do not send email directly to this alias. It is for newsgroup
purposes only.

thanks,
bogdan







.
 
Back
Top