Forward a call to a webservice to another webservice?
Posted
by Luhmann
on Stack Overflow
See other posts from Stack Overflow
or by Luhmann
Published on 2010-04-19T08:45:01Z
Indexed on
2010/04/19
9:13 UTC
Read the original article
Hit count: 180
If I have an https webservice behind a firewall on a machine (A) that I cannot access, but access to a machine on the same network (B), from where I can call the webservice on machine A.
What is the best way of talking with the webservice on machine A, from the outside via machine B (that I access via VPN)?
I can obviously create a service with a matching interface on machine B, and call the methods on the webservice on machine A, and return the result. But I fear for the overhead.
Is there another way? Can i somehow forward the request?
© Stack Overflow or respective owner