I am currently developing a web application with Symfony that should connect to a remote web service. Then sync the database from client to server and vice versa and some other crap.
The web service server is located in IIS on the local network. Symfony2 works with Wamp on my machine.
Thus, the communication code and the request to the web service in a simple PHP script works fine. Or at least he does what I want. And any connection to the IIS server is excellent. A bit slow though, but the car is quite a mess.
Now I put the same code in the Symfony2 class, and here comes the hell. When I try to load this page, I get
101 errors (ERR_CONNECTION_RESET)
The web service server log indicates to me that the login, request and response have been sent. Therefore, I assume that the problem is related to my car, but Iβm not quite sure about it.
The funny thing is: I somehow managed to get it to work about 10 times. Then 101 again ...
I disabled the Windows 7 LAN firewall and the same result.
Any hint is greatly appreciated. Thanks.
source share