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

GetShipmentService

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/GetShipmentService
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>
    <GetShipmentService xmlns="JubiDocWS">
      <wsuser>string</wsuser>
      <wspass>string</wspass>
      <shops_id>int</shops_id>
    </GetShipmentService>
  </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>
    <GetShipmentServiceResponse xmlns="JubiDocWS">
      <GetShipmentServiceResult>
        <JDShipmentService>
          <article_id>string</article_id>
          <catnum>string</catnum>
          <price_detal>decimal</price_detal>
          <price_detal_brutto>decimal</price_detal_brutto>
          <currency_id>int</currency_id>
          <currency_symbol>string</currency_symbol>
          <vat_id>int</vat_id>
          <vat_value>decimal</vat_value>
        </JDShipmentService>
        <JDShipmentService>
          <article_id>string</article_id>
          <catnum>string</catnum>
          <price_detal>decimal</price_detal>
          <price_detal_brutto>decimal</price_detal_brutto>
          <currency_id>int</currency_id>
          <currency_symbol>string</currency_symbol>
          <vat_id>int</vat_id>
          <vat_value>decimal</vat_value>
        </JDShipmentService>
      </GetShipmentServiceResult>
    </GetShipmentServiceResponse>
  </soap:Body>
</soap:Envelope>

HTTP Get

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

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

<ArrayOfJDShipmentService xmlns="JubiDocWS">
  <JDShipmentService>
    <article_id>string</article_id>
    <catnum>string</catnum>
    <price_detal>decimal</price_detal>
    <price_detal_brutto>decimal</price_detal_brutto>
    <currency_id>int</currency_id>
    <currency_symbol>string</currency_symbol>
    <vat_id>int</vat_id>
    <vat_value>decimal</vat_value>
  </JDShipmentService>
  <JDShipmentService>
    <article_id>string</article_id>
    <catnum>string</catnum>
    <price_detal>decimal</price_detal>
    <price_detal_brutto>decimal</price_detal_brutto>
    <currency_id>int</currency_id>
    <currency_symbol>string</currency_symbol>
    <vat_id>int</vat_id>
    <vat_value>decimal</vat_value>
  </JDShipmentService>
</ArrayOfJDShipmentService>

HTTP Post

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

wsuser=string&wspass=string&shops_id=string

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

<ArrayOfJDShipmentService xmlns="JubiDocWS">
  <JDShipmentService>
    <article_id>string</article_id>
    <catnum>string</catnum>
    <price_detal>decimal</price_detal>
    <price_detal_brutto>decimal</price_detal_brutto>
    <currency_id>int</currency_id>
    <currency_symbol>string</currency_symbol>
    <vat_id>int</vat_id>
    <vat_value>decimal</vat_value>
  </JDShipmentService>
  <JDShipmentService>
    <article_id>string</article_id>
    <catnum>string</catnum>
    <price_detal>decimal</price_detal>
    <price_detal_brutto>decimal</price_detal_brutto>
    <currency_id>int</currency_id>
    <currency_symbol>string</currency_symbol>
    <vat_id>int</vat_id>
    <vat_value>decimal</vat_value>
  </JDShipmentService>
</ArrayOfJDShipmentService>