importRecvInspVar
Este modelo possibilita a importação de leituras de inspeção de características do tipo variável:
Classe Java | |
---|---|
Requisição | web/wwwroot/ws/java/inspection/ImportRecvInspVarRequestType.java |
Retorno | web/wwwroot/ws/java/inspection/ImportRecvInspVarResponseType.java |
Requisição:
Identificador | Requerido | Descrição |
---|---|---|
IDRECEIVING | X | Identificador do recebimento. |
IDCHARACTERISTIC | X | Identificador da característica. |
IDLABORATORY | Identificador do centro de serviço. | |
IDUSER | Matrícula do responsável. | |
DSOBSERVATION | Observação da característica. | |
ReadingsList | Leituras, formado por uma lista: NRSAMPLE - Número do ciclo; NRREADING - Número do campo da leitura; VLREADING - Valor da leitura (As leituras deverão ter separador decimal igual a "."). |
Estrutura da requisição:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:inspection">
<soapenv:Header/>
<soapenv:Body>
<urn:importRecvInspVar>
<!--You may enter the following 6 items in any order-->
<urn:IDRECEIVING>?</urn:IDRECEIVING>
<urn:IDCHARACTERISTIC>?</urn:IDCHARACTERISTIC>
<urn:IDLABORATORY>?</urn:IDLABORATORY>
<urn:IDUSER>?</urn:IDUSER>
<urn:DSOBSERVATION>?</urn:DSOBSERVATION>
<urn:ReadingsList>
<!--Zero or more repetitions:-->
<urn:Readings>
<!--You may enter the following 3 items in any order-->
<urn:NRSAMPLE>?</urn:NRSAMPLE>
<urn:NRREADING>?</urn:NRREADING>
<urn:VLREADING>?</urn:VLREADING>
</urn:Readings>
</urn:ReadingsList>
</urn:importRecvInspVar>
</soapenv:Body>
</soapenv:Envelope>
Retorno:
Identificador | Descrição |
---|---|
return | Retorna Status, Code e Detail. Status pode ser SUCCESS ou FAILURE. O Code retorna 1 quando bem sucedido, ou 0 quando falhar. O Detail retorna a descrição do erro em caso de falha. |