Skip to main content
Version: 2.2.1

importRecvInspVar

This method allows importing inspection readings of variable-type characteristics:

Java class
Requestweb/wwwroot/ws/java/inspection/ImportRecvInspVarRequestType.java
Returnweb/wwwroot/ws/java/inspection/ImportRecvInspVarResponseType.java

Request:

ID #RequiredDescription
IDRECEIVINGXReceiving ID #.
IDCHARACTERISTICXCharacteristic ID #.
IDLABORATORYService center ID #.
IDUSERResponsible user ID.
DSOBSERVATIONComments on the characteristic.
ReadingsListReadings, composed of a list:
NRSAMPLE - Cycle #;
NRREADING - Reading field #;
VLREADING - Reading value (readings must have decimal separator equal to ".").

Request structure:

<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>

Return:

ID #Description
returnReturns Status, Code, and Detail.
Status can be SUCCESS or FAILURE.
Code returns 1 when successful or 0 when there is a failure.
Detail returns the error description in case of failure.