I'm starting to study PHP and need some help. I need to consume a web service , but I can not. Could someone help me?
I have wsdl: = link which requests the following structure:
SOAP request
<?xml version="1.0" encoding="utf-8"?"
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<PEDIDO>STRING</PEDIDO>
</soap:Body>
</soap:Envelope>
SOAP Request Response
<?xml version="1.0" encoding="utf-8"?"
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<CRET>STRING</CRET>
</soap:Body>
</soap:Envelope>
I have tried several models on the net and I am not guessing, I am very grateful for your help.