Hi,
I am trying to open a file on the server. To open my file I need the URL address.
Here is the thing:
we have a server, a firewall which is using NAT to translate the IP address. So I get the serverName on my asp page, I get the virtual url. I am sending the serverName to my DLL, to try to open my file.
Dim surl as string
Set xmlhttpDoc = CreateObject("Msxml2.XMLHTTP"
surl = sServerName + "/Truc/MyFile.xsl"
xmlhttpDoc.Open "GET", surl, False
If I did not have this firewall, it would work, but because what I sent to my dll is the virtual address, it cannot open my file.
I think I need to find a way to get the IP address. Does someone have any idea?
Thanks
I am trying to open a file on the server. To open my file I need the URL address.
Here is the thing:
we have a server, a firewall which is using NAT to translate the IP address. So I get the serverName on my asp page, I get the virtual url. I am sending the serverName to my DLL, to try to open my file.
Dim surl as string
Set xmlhttpDoc = CreateObject("Msxml2.XMLHTTP"
surl = sServerName + "/Truc/MyFile.xsl"
xmlhttpDoc.Open "GET", surl, False
If I did not have this firewall, it would work, but because what I sent to my dll is the virtual address, it cannot open my file.
I think I need to find a way to get the IP address. Does someone have any idea?
Thanks