I have a self-hosted WCF service (Windows Service manage it) that listens to [machine host name]:55555. From this machine i create a ssh tunnel like this:
ssh -L 30300:localhost:8080 -R 1055:localhost:55555 -F ssh_config -N adeb0f776eb14c668f809cf6880ef1db@10.55.41.150
So my service can receive requests if client calls my service endpoint like this: http://localhost:1055/MyService. This works if the client is on the machine where the ssh server is (10.55.41.150 is ssh server machine and client machine).
But if client is on another machine it calls my service like this: http://10.55.41.150:1055/MyService When is called like this client gets "400 Bad request. Invalid Host name" from my service on machines >= Windows 7. The Host of this request is Host: 10.55.41.150:1055 which seems is not liked by service or by HTTP protocol. On windows xp this header is ignored so the call goes to my service.
Is there a way to configure my service or Windows to accept such requests with this host?
Thank you, Adrya