Hello,
I need to make a form that validates the fields with a web service with SOAP protocol. Validating the fields will give a true/false answer. If it is true you must send an email and fake a message on the screen.
These are the data sent to me from the web service for validation:
Access (WSDL):
http://www.carnetjove.cat/carnetjove/service/webService?wsdl
I need to make a form that validates the fields with a web service with SOAP protocol. Validating the fields will give a true/false answer. If it is true you must send an email and fake a message on the screen.
These are the data sent to me from the web service for validation:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:web="http://webservice.carnetjove.acjoventut.com/">
<soapenv:Header/>
<soapenv:Body>
<web:usuariExistent>
<login>xxxxxxxxxxxxxxxxxxxx</login>
<password>xxxxxxxxxx</password>
<numeroDocument>12345678Z</numeroDocument>
<nom>NOM</nom>
<cognom1>COGNOM1</cognom1>
<cognom2>COGNOM2</cognom2>
<dataNaixement>19820526</dataNaixement>
<numCarnet>6033123412341234</numCarnet>
</web:usuariExistent>
</soapenv:Body>
</soapenv:Envelope>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<ns1:usuariExistentResponse
xmlns:ns1="http://webservice.carnetjove.acjoventut.com/">
<return>false</return>
</ns1:usuariExistentResponse>
</soap:Body>
</soap:Envelope>
Access (WSDL):
http://www.carnetjove.cat/carnetjove/service/webService?wsdl