C# How to communicate between 2 servers

Posted by Chau on Stack Overflow See other posts from Stack Overflow or by Chau
Published on 2010-05-17T09:28:58Z Indexed on 2010/05/17 9:40 UTC
Read the original article Hit count: 464

Filed under:
|
|

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.

© Stack Overflow or respective owner

Related posts about c#

Related posts about server