How to create a soap WSDL file from this XML that was sent to me?
Or would it be possible to point me to some link for some Java sample that calls a soap web service without the WSDL?
Request:
<?xml version="1.0"?>
<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:ver="http://www.turismodeportugal.pt/SRJSchema/VerificacaoIdentidade">
<soap:Header/>
<soap:Body>
<ver:PedidoVerificacaoTP>
<ver:CodEntidadeExploradora>000</ver:CodEntidadeExploradora>
<ver:Nome>John Doe</ver:Nome>
<ver:NumeroIdentificacao>90909090</ver:NumeroIdentificacao>
<ver:TipoIdentificacao>1</ver:TipoIdentificacao>
<ver:DataNascimento>1900-06-27</ver:DataNascimento>
</ver:PedidoVerificacaoTP>
</soap:Body>
</soap:Envelope>
Response:
<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope">
<soap:Header xmlns:ver="http://www.turismodeportugal.pt/SRJSchema/VerificacaoIdentidade"/>
<soap:Body xmlns:ver="http://www.turismodeportugal.pt/SRJSchema/VerificacaoIdentidade">
<RespostaVerificacaoTP xmlns="http://www.turismodeportugal.pt/SRJSchema/VerificacaoIdentidade">
<Sucesso>true</Sucesso>
<Valido>S</Valido>
</RespostaVerificacaoTP>
</soap:Body>
</soap:Envelope>