Dependente


Click here for a complete list of operations.

Carga

Test

The test form is only available for requests from the local machine.

SOAP 1.1

The following is a sample SOAP 1.1 request and response. The placeholders shown need to be replaced with actual values.

POST /WSSD/Dependente.asmx HTTP/1.1
Host: desenvolvimento.portalglauco.com.br
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://tempuri.org/Carga"

<?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>
    <Carga xmlns="http://tempuri.org/">
      <usuario>string</usuario>
      <senha>string</senha>
      <idioma>string</idioma>
      <token>string</token>
      <dependente>
        <Dependente>
          <CD_Ish_Cadastro>string</CD_Ish_Cadastro>
          <CD_Ish_Dependente>string</CD_Ish_Dependente>
          <NM_Nome>string</NM_Nome>
          <DT_Nascimento>dateTime</DT_Nascimento>
          <NU_Cpf>string</NU_Cpf>
          <CD_Sexo>string</CD_Sexo>
          <CD_Parentesco>string</CD_Parentesco>
        </Dependente>
        <Dependente>
          <CD_Ish_Cadastro>string</CD_Ish_Cadastro>
          <CD_Ish_Dependente>string</CD_Ish_Dependente>
          <NM_Nome>string</NM_Nome>
          <DT_Nascimento>dateTime</DT_Nascimento>
          <NU_Cpf>string</NU_Cpf>
          <CD_Sexo>string</CD_Sexo>
          <CD_Parentesco>string</CD_Parentesco>
        </Dependente>
      </dependente>
    </Carga>
  </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>
    <CargaResponse xmlns="http://tempuri.org/">
      <CargaResult>
        <Processado>string</Processado>
        <Mensagem>string</Mensagem>
      </CargaResult>
    </CargaResponse>
  </soap:Body>
</soap:Envelope>

SOAP 1.2

The following is a sample SOAP 1.2 request and response. The placeholders shown need to be replaced with actual values.

POST /WSSD/Dependente.asmx HTTP/1.1
Host: desenvolvimento.portalglauco.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>
    <Carga xmlns="http://tempuri.org/">
      <usuario>string</usuario>
      <senha>string</senha>
      <idioma>string</idioma>
      <token>string</token>
      <dependente>
        <Dependente>
          <CD_Ish_Cadastro>string</CD_Ish_Cadastro>
          <CD_Ish_Dependente>string</CD_Ish_Dependente>
          <NM_Nome>string</NM_Nome>
          <DT_Nascimento>dateTime</DT_Nascimento>
          <NU_Cpf>string</NU_Cpf>
          <CD_Sexo>string</CD_Sexo>
          <CD_Parentesco>string</CD_Parentesco>
        </Dependente>
        <Dependente>
          <CD_Ish_Cadastro>string</CD_Ish_Cadastro>
          <CD_Ish_Dependente>string</CD_Ish_Dependente>
          <NM_Nome>string</NM_Nome>
          <DT_Nascimento>dateTime</DT_Nascimento>
          <NU_Cpf>string</NU_Cpf>
          <CD_Sexo>string</CD_Sexo>
          <CD_Parentesco>string</CD_Parentesco>
        </Dependente>
      </dependente>
    </Carga>
  </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>
    <CargaResponse xmlns="http://tempuri.org/">
      <CargaResult>
        <Processado>string</Processado>
        <Mensagem>string</Mensagem>
      </CargaResult>
    </CargaResponse>
  </soap12:Body>
</soap12:Envelope>