SoapFault exception: Could not connect to host

后端 未结 27 1636
-上瘾入骨i
-上瘾入骨i 2020-12-01 07:47

Sometimes fail to call the web service.

This problem happens all the time.

What could be the problem?

Error:
    SoapFault exception: [HTTP]          


        
27条回答
  •  无人及你
    2020-12-01 08:21

    For those who struggled the same as me with laravel artisan console command that makes a lot of requests to same wsdl of external soap server and then after some time fails with Could not connect to host error.

    The problem was because I was creating new SoapClient instance each time before request was made. Do not do that. Create it once and make each request from the same client.

    Hope it helps.

提交回复
热议问题