I am trying to write my first program that has to do with SOAP. I am trying to make an SOAP API call using cURL. I tried the string from command line with something like:
curl -d "blah blah" "API endpoint"
but I got the response:
SOAP version mismatch or invalid SOAP message
can someone...
I am trying to write my first program that has to do with SOAP. I am trying to make an SOAP API call using cURL. I tried the string from command line with something like:
curl -d "blah blah" "API endpoint"
but I got the response:
SOAP version mismatch or invalid SOAP message
can someone...
I am new to PHP and would like some help.
I have a form I am creating that has two textareas, "REQUEST" that is editable and "RESPONSE" that is read only. I also have a "submit" button which will eventually have some PHP code behind it. I want my form to take input in the "REQUEST" field...