I have a website running ASP.NET (C#) on server A
. I need my website to access a webservice on server B
. server B
will only accept incoming requests if the requestee is located within a certain IP range and server A
is not within this range.
I have a server server C
which is located within the IP range and the only thing blocking server A
from server C
is a firewall (which I have access to). It must be possible to create a hole in the firewall between server A
and server C
, but my question is:
How do I relay the request from server A
to server B
via server C
?
I need the response from server B
to get back to server A
also :)
Thanks in advance.