How to transfer binary data through multiple http server?
Posted
by solotim
on Stack Overflow
See other posts from Stack Overflow
or by solotim
Published on 2010-05-10T07:20:41Z
Indexed on
2010/05/10
7:24 UTC
Read the original article
Hit count: 294
Well, the question is not intended to be that big. Let me explain the scenario: I have two http servers. server A is accessible to end user by web browser, while server B is internal server which can only be accessed by server A. If server B generate some big jpeg image in local disk, obviously we can't just delivery those path to image to server A and eventually to end user. Then, how to let end user see those image without firstly storing those image data in server A temporarily?
I run PHP on server A and perl on server B, but this should not matter. I need a general pattern for implementing this.
© Stack Overflow or respective owner