SOAP: looks like we got no XML document

前端 未结 10 1434
日久生厌
日久生厌 2021-01-11 11:41

I\'m trying to create a web service but before I do I\'m trying to get a simple example that I found on the internet to work first but I keep getting the following error:

10条回答
  •  梦谈多话
    2021-01-11 12:15

    I received this error when I was interacting with the Magento API which was loading a model, and it was throwing a warning before outputting the xml response which was causing the error.

    To fix it you can simply turn off warnings on the API function: error_reporting(0);

提交回复
热议问题