Soap error, Encoding: object has no 'RecordId' property

后端 未结 5 1762
情话喂你
情话喂你 2021-01-05 08:00

I am doing a registration form online that connects to a soap web service and should be able to save payment information through it. The PHP is like this

            


        
5条回答
  •  心在旅途
    2021-01-05 08:42

    Define all the fields he's claiming as "Missing property"

    So if you're using an array, and it says it's missing property 'GetData', do:

    $requestArray['GetData'] = '';

    and so on with each field, until it's working.

提交回复
热议问题