Web Service
JubiDocWS
Overview
Service Description
Client proxy

Methods GetOffer
GetShipmentService
AddShipmentService
SyncOffer
SyncRemoved
GetProductQuantity
GetProductsBasicInfo
MakeOrder
GetOrderStatus
GetOrdersHistory
CustomerAdd
CustomerEdit
GetKinds
GetMaterials
GetUom
GetVat
GetVersion
GetServerDateTime
GetShops
GetProducers
GetFeatures

Methods for binding
JubiDocWSSoap12
GetOffer
GetShipmentService
AddShipmentService
SyncOffer
SyncRemoved
GetProductQuantity
GetProductsBasicInfo
MakeOrder
GetOrderStatus
GetOrdersHistory
CustomerAdd
CustomerEdit
GetKinds
GetMaterials
GetUom
GetVat
GetVersion
GetServerDateTime
GetShops
GetProducers
GetFeatures

GetUom

Overview | Test Form | Message Layout


The following are sample SOAP requests and responses for each protocol supported by this method:

Soap

POST /JubiDocWS.asmx
SOAPAction: JubiDocWS/GetUom
Content-Type: text/xml; charset=utf-8
Content-Length: string
Host: string

<?xml version="1.0" encoding="utf-16"?>
<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>
    <GetUom xmlns="JubiDocWS">
      <wsuser>string</wsuser>
      <wspass>string</wspass>
    </GetUom>
  </soap:Body>
</soap:Envelope>

HTTP/1.0 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: string

<?xml version="1.0" encoding="utf-16"?>
<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>
    <GetUomResponse xmlns="JubiDocWS">
      <GetUomResult>
        <Uom>
          <uom_id>int</uom_id>
          <name>string</name>
        </Uom>
        <Uom>
          <uom_id>int</uom_id>
          <name>string</name>
        </Uom>
      </GetUomResult>
    </GetUomResponse>
  </soap:Body>
</soap:Envelope>

HTTP Get

GET /JubiDocWS.asmx/GetUom?wsuser=string&wspass=string
Host: string

HTTP/1.0 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: string

<ArrayOfUom xmlns="JubiDocWS">
  <Uom>
    <uom_id>int</uom_id>
    <name>string</name>
  </Uom>
  <Uom>
    <uom_id>int</uom_id>
    <name>string</name>
  </Uom>
</ArrayOfUom>

HTTP Post

POST /JubiDocWS.asmx/GetUom
Content-Type: application/x-www-form-urlencoded
Content-Length: string
Host: string

wsuser=string&wspass=string

HTTP/1.0 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: string

<ArrayOfUom xmlns="JubiDocWS">
  <Uom>
    <uom_id>int</uom_id>
    <name>string</name>
  </Uom>
  <Uom>
    <uom_id>int</uom_id>
    <name>string</name>
  </Uom>
</ArrayOfUom>