Boa tarde pessoal!
Estou enviando uma requisição HTTP da seguinte forma:
HttpWebRequest webRequest = (HttpWebRequest)WebRequest.Create(@"https://serviceshomologa.serasaexperian.com.br:443/RelatoProxy");
E estou enviando também o seguinte pacote SOAP:
<?xml version="1.0" encoding="utf-8"?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:prox="http://services.experian.com.br/relato/proxy" xmlns:v2="http://services.experian.com.br/ebo/v2">
<soapenv:Header/>
<soapenv:Body>
<prox:ConsultarRelatoRequest>
<CNPJ>
<v2:base>MEU CNPJ</v2:base>
</CNPJ>
</prox:ConsultarRelatoRequest>
</soapenv:Body>
</soapenv:Envelope>
Porém estou recebendo a seguinte mensagem de erro:
The remote server returned an error: (500) Internal Server Error
Alguém já passou por essa mesma situação?