ValidarRGSemFormatoTk
XMLTest
Resultado
Exemplos de chamada
The following is a sample HTTP POST request and response. The placeholders shown need to be replaced with actual values.
curl -X POST 'https://www.wsnv.novavidati.com.br/Online.asmx/ValidarRGSemFormatoTk' \
-H 'Content-Type: application/x-www-form-urlencoded' \
-H 'Accept: text/xml' \
--data-urlencode 'Numero=' \
--data-urlencode 'Estado=' \
--data-urlencode 'DtEmissao=' \
--data-urlencode 'Validade=' \
--data-urlencode 'DtNascimento=' \
--data-urlencode 'Expedidor=' \
--data-urlencode 'token=SEU_TOKEN' \
--data-urlencode 'Cpf='
const params = new URLSearchParams({
Numero: '',
Estado: '',
DtEmissao: '',
Validade: '',
DtNascimento: '',
Expedidor: '',
token: 'SEU_TOKEN',
Cpf: '',
});
const resp = await fetch('https://www.wsnv.novavidati.com.br/Online.asmx/ValidarRGSemFormatoTk', {
method : 'POST',
headers: { 'Content-Type': 'application/x-www-form-urlencoded' },
body : params.toString(),
});
const xml = await resp.text();
console.log(xml);
<?php
$payload = http_build_query([
'Numero' => '',
'Estado' => '',
'DtEmissao' => '',
'Validade' => '',
'DtNascimento' => '',
'Expedidor' => '',
'token' => 'SEU_TOKEN',
'Cpf' => '',
]);
$ch = curl_init('https://www.wsnv.novavidati.com.br/Online.asmx/ValidarRGSemFormatoTk');
curl_setopt_array($ch, [
CURLOPT_POST => true,
CURLOPT_POSTFIELDS => $payload,
CURLOPT_HTTPHEADER => ['Content-Type: application/x-www-form-urlencoded'],
CURLOPT_RETURNTRANSFER => true,
CURLOPT_TIMEOUT => 60,
]);
$response = curl_exec($ch);
$status = curl_getinfo($ch, CURLINFO_HTTP_CODE);
curl_close($ch);
echo "HTTP $status\n";
echo $response;
import requests
resp = requests.post(
'https://www.wsnv.novavidati.com.br/Online.asmx/ValidarRGSemFormatoTk',
data={
'Numero': '',
'Estado': '',
'DtEmissao': '',
'Validade': '',
'DtNascimento': '',
'Expedidor': '',
'token': 'SEU_TOKEN',
'Cpf': '',
},
headers={'Accept': 'text/xml'},
timeout=60,
)
resp.raise_for_status()
print(resp.text)
using var http = new HttpClient();
var form = new FormUrlEncodedContent(new Dictionary<string, string> {
["Numero"] = "",
["Estado"] = "",
["DtEmissao"] = "",
["Validade"] = "",
["DtNascimento"] = "",
["Expedidor"] = "",
["token"] = "SEU_TOKEN",
["Cpf"] = "",
});
var resp = await http.PostAsync("https://www.wsnv.novavidati.com.br/Online.asmx/ValidarRGSemFormatoTk", form);
resp.EnsureSuccessStatusCode();
var xml = await resp.Content.ReadAsStringAsync();
POST /Online.asmx/ValidarRGSemFormatoTk HTTP/1.1 Host: www.wsnv.novavidati.com.br Content-Type: application/x-www-form-urlencoded Content-Length: length Numero=string&Estado=string&DtEmissao=string&Validade=string&DtNascimento=string&Expedidor=string&token=string&Cpf=string
HTTP/1.1 200 OK Content-Type: text/xml; charset=utf-8 Content-Length: length <?xml version="1.0" encoding="utf-8"?> <string xmlns="http://tempuri.org/">string</string>
The following is a sample SOAP 1.2 request and response. The placeholders shown need to be replaced with actual values.
curl -X POST 'https://www.wsnv.novavidati.com.br/Online.asmx' \
-H 'Content-Type: application/soap+xml; charset=utf-8; action="http://tempuri.org/ValidarRGSemFormatoTk"' \
--data-raw '<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
<soap12:Body>
<ValidarRGSemFormatoTk xmlns="http://tempuri.org/">
<Numero>string</Numero>
<Estado>string</Estado>
<DtEmissao>string</DtEmissao>
<Validade>string</Validade>
<DtNascimento>string</DtNascimento>
<Expedidor>string</Expedidor>
<token>string</token>
<Cpf>string</Cpf>
</ValidarRGSemFormatoTk>
</soap12:Body>
</soap12:Envelope>'
const envelope = `<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
<soap12:Body>
<ValidarRGSemFormatoTk xmlns="http://tempuri.org/">
<Numero>string</Numero>
<Estado>string</Estado>
<DtEmissao>string</DtEmissao>
<Validade>string</Validade>
<DtNascimento>string</DtNascimento>
<Expedidor>string</Expedidor>
<token>string</token>
<Cpf>string</Cpf>
</ValidarRGSemFormatoTk>
</soap12:Body>
</soap12:Envelope>`;
const resp = await fetch('https://www.wsnv.novavidati.com.br/Online.asmx', {
method : 'POST',
headers: {
'Content-Type': 'application/soap+xml; charset=utf-8; action=\"http://tempuri.org/ValidarRGSemFormatoTk\"',
},
body: envelope,
});
const xml = await resp.text();
console.log(xml);
<?php
$envelope = <<<XML
<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
<soap12:Body>
<ValidarRGSemFormatoTk xmlns="http://tempuri.org/">
<Numero>string</Numero>
<Estado>string</Estado>
<DtEmissao>string</DtEmissao>
<Validade>string</Validade>
<DtNascimento>string</DtNascimento>
<Expedidor>string</Expedidor>
<token>string</token>
<Cpf>string</Cpf>
</ValidarRGSemFormatoTk>
</soap12:Body>
</soap12:Envelope>
XML;
$ch = curl_init('https://www.wsnv.novavidati.com.br/Online.asmx');
curl_setopt_array($ch, [
CURLOPT_POST => true,
CURLOPT_POSTFIELDS => $envelope,
CURLOPT_HTTPHEADER => [
'Content-Type: application/soap+xml; charset=utf-8; action="http://tempuri.org/ValidarRGSemFormatoTk"',
],
CURLOPT_RETURNTRANSFER => true,
CURLOPT_TIMEOUT => 60,
]);
$response = curl_exec($ch);
curl_close($ch);
echo $response;
import requests
envelope = '''\
<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
<soap12:Body>
<ValidarRGSemFormatoTk xmlns="http://tempuri.org/">
<Numero>string</Numero>
<Estado>string</Estado>
<DtEmissao>string</DtEmissao>
<Validade>string</Validade>
<DtNascimento>string</DtNascimento>
<Expedidor>string</Expedidor>
<token>string</token>
<Cpf>string</Cpf>
</ValidarRGSemFormatoTk>
</soap12:Body>
</soap12:Envelope>
'''
resp = requests.post(
'https://www.wsnv.novavidati.com.br/Online.asmx',
data=envelope.encode('utf-8'),
headers={
'Content-Type': 'application/soap+xml; charset=utf-8; action="http://tempuri.org/ValidarRGSemFormatoTk"',
},
timeout=60,
)
resp.raise_for_status()
print(resp.text)
using var http = new HttpClient();
const string envelope = @"<?xml version=""1.0"" encoding=""utf-8""?>
<soap12:Envelope xmlns:xsi=""http://www.w3.org/2001/XMLSchema-instance"" xmlns:xsd=""http://www.w3.org/2001/XMLSchema"" xmlns:soap12=""http://www.w3.org/2003/05/soap-envelope"">
<soap12:Body>
<ValidarRGSemFormatoTk xmlns=""http://tempuri.org/"">
<Numero>string</Numero>
<Estado>string</Estado>
<DtEmissao>string</DtEmissao>
<Validade>string</Validade>
<DtNascimento>string</DtNascimento>
<Expedidor>string</Expedidor>
<token>string</token>
<Cpf>string</Cpf>
</ValidarRGSemFormatoTk>
</soap12:Body>
</soap12:Envelope>";
var content = new StringContent(envelope, Encoding.UTF8, "application/soap+xml");
content.Headers.ContentType.Parameters.Add(
new System.Net.Http.Headers.NameValueHeaderValue("action", "\"http://tempuri.org/ValidarRGSemFormatoTk\""));
var resp = await http.PostAsync("https://www.wsnv.novavidati.com.br/Online.asmx", content);
resp.EnsureSuccessStatusCode();
var xml = await resp.Content.ReadAsStringAsync();
POST /Online.asmx HTTP/1.1
Host: www.wsnv.novavidati.com.br
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length
<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
<soap12:Body>
<ValidarRGSemFormatoTk xmlns="http://tempuri.org/">
<Numero>string</Numero>
<Estado>string</Estado>
<DtEmissao>string</DtEmissao>
<Validade>string</Validade>
<DtNascimento>string</DtNascimento>
<Expedidor>string</Expedidor>
<token>string</token>
<Cpf>string</Cpf>
</ValidarRGSemFormatoTk>
</soap12:Body>
</soap12:Envelope>
HTTP/1.1 200 OK
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length
<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
<soap12:Body>
<ValidarRGSemFormatoTkResponse xmlns="http://tempuri.org/">
<ValidarRGSemFormatoTkResult>string</ValidarRGSemFormatoTkResult>
</ValidarRGSemFormatoTkResponse>
</soap12:Body>
</soap12:Envelope>
The following is a sample SOAP 1.1 request and response. The placeholders shown need to be replaced with actual values.
POST /Online.asmx HTTP/1.1
Host: www.wsnv.novavidati.com.br
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://tempuri.org/ValidarRGSemFormatoTk"
<?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>
<ValidarRGSemFormatoTk xmlns="http://tempuri.org/">
<Numero>string</Numero>
<Estado>string</Estado>
<DtEmissao>string</DtEmissao>
<Validade>string</Validade>
<DtNascimento>string</DtNascimento>
<Expedidor>string</Expedidor>
<token>string</token>
<Cpf>string</Cpf>
</ValidarRGSemFormatoTk>
</soap:Body>
</soap:Envelope>
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length
<?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>
<ValidarRGSemFormatoTkResponse xmlns="http://tempuri.org/">
<ValidarRGSemFormatoTkResult>string</ValidarRGSemFormatoTkResult>
</ValidarRGSemFormatoTkResponse>
</soap:Body>
</soap:Envelope>
The following is a sample HTTP GET request and response. The placeholders shown need to be replaced with actual values.
GET /Online.asmx/ValidarRGSemFormatoTk?Numero=string&Estado=string&DtEmissao=string&Validade=string&DtNascimento=string&Expedidor=string&token=string&Cpf=string HTTP/1.1 Host: www.wsnv.novavidati.com.br
HTTP/1.1 200 OK Content-Type: text/xml; charset=utf-8 Content-Length: length <?xml version="1.0" encoding="utf-8"?> <string xmlns="http://tempuri.org/">string</string>