Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

Es soll der Status der Verkaufsübermittlung abgefragt werden. Hierzu werden an die Adresse https://b2b.beispielserver.com/ mittels der POST-Methode des HTTP-Protokolls folgende Daten vom Medientyp application/xml übertragen:

 

<?xml version="1.0" encoding="utf-8"?>
<GetStatusSaleTransmitB2BRequest xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="urn:veloconnect:sale-B2B-1.6">
  <BuyersID xmlns="urn:veloconnect:transaction-1.0">B127645</BuyersID>
  <Credential xmlns="urn:veloconnect:transaction-1.0">
    <Password>secret</Password>
  </Credential>
  <TransactionID xmlns="urn:veloconnect:transaction-1.0">44f80ce3-05c1-4a28-b981-8b4a0794a7a4</TransactionID>
  <IsTest xmlns="urn:veloconnect:transaction-1.0">true</IsTest>
  <StartIndex>0</StartIndex>
  <Count>2</Count>
</GetStatusSaleTransmitB2BRequest>

 

Die Antwort des Servers sieht beispielsweise so aus:

 

<?xml version="1.0" encoding="utf-8"?>
<GetStatusSaleTransmitB2BResponse xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="urn:veloconnect:sale-B2B-1.6">
  <BuyersID xmlns="urn:veloconnect:transaction-1.0">B127645</BuyersID>
  <ResponseCode xmlns="urn:veloconnect:transaction-1.0">200</ResponseCode>
  <TransactionID xmlns="urn:veloconnect:transaction-1.0">44f80ce3-05c1-4a28-b981-8b4a0794a7a4</TransactionID>
  <StatusCode xmlns="urn:veloconnect:transaction-1.0">85</StatusCode>
  <IsTest xmlns="urn:veloconnect:transaction-1.0">true</IsTest>
  <StartIndex>0</StartIndex>
  <Count>2</Count>
  <TotalCount>3</TotalCount>
  <SaleTransmitB2BResponseLine>
    <ID>72458d29-2c31-4b99-8df5-9d25e3eadbdb</ID>
    <SellersItemIdentification xmlns="urn:oasis:names:specification:ubl:schema:xsd:CommonAggregateComponents-1.0">
      <ID>12345</ID>
    </SellersItemIdentification>
    <BuyersItemIdentification xmlns="urn:oasis:names:specification:ubl:schema:xsd:CommonAggregateComponents-1.0">
      <ID>111</ID>
    </BuyersItemIdentification>
    <Quantity>1</Quantity>
    <SaleDate>2021-04-28T10:40:42.3168812+02:00</SaleDate>
  </SaleTransmitB2BResponseLine>
  <SaleTransmitB2BResponseLine>
    <ID>d870ee25-c1b2-4d90-84ac-704ae5be8cb3</ID>
    <SellersItemIdentification xmlns="urn:oasis:names:specification:ubl:schema:xsd:CommonAggregateComponents-1.0">
      <ID>6789</ID>
    </SellersItemIdentification>
    <BuyersItemIdentification xmlns="urn:oasis:names:specification:ubl:schema:xsd:CommonAggregateComponents-1.0">
      <ID>111</ID>
    </BuyersItemIdentification>
    <Quantity>1</Quantity>
    <SaleDate>2021-04-28T10:45:42.3168812+02:00</SaleDate>
  </SaleTransmitB2BResponseLine>
</GetStatusSaleTransmitB2BResponse>

 

Hieran ist folgendes zu erkennen:

  • Die erzeugte Transaktionsinstanz hat die TransactionID 44f80ce3-05c1-4a28-b981-8b4a0794a7a4.

  • Die Transaktion befindet sich im Zustand 85, d.h. die Verkäufe wurden importiert

  • No labels