Download the PHP package mathielen/cxml without Composer
On this page you can find all versions of the php package mathielen/cxml. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download mathielen/cxml
More information about mathielen/cxml
Files in mathielen/cxml
Informations about the package cxml
What is it?
cXML is a streamlined protocol intended for consistent communication of business documents between procurement applications, e-commerce hubs and suppliers. http://cxml.org/
cXML Reference Guide (PDF): http://xml.cxml.org/current/cXMLReferenceGuide.pdf
Status
CXML Version | Status Test |
---|---|
1.2.050 | OK |
1.2.053 | OK |
Getting Started
Installation
Then include Composer’s autoloader:
Get current dtd definition files
- Download get current Specification from http://cxml.org/downloads.html
- Extract files
- Use cXML.dtd for validation (see below)
Quickstart
Identity and credentials
Register Handler
Build cXML
Register outgoing cXML documents
You may want to register sent-out documents so they can be referenced by subsequent request-documents via payloadId.
Process incoming cXML documents
Putting it all together
Handling Date vs DateTime
The cXML specification is not perfectly clear about the format of dates and times. The specification says that dates should be formatted "in the restricted subset of ISO 8601". That means that the format could either be a full ISO 8601 format with time and timezone information (i.e. 2015-04-14T13:36:00-08:00) or a format without time and timezone (2015-04-14).
With some fields the actual time of day is not relevant and could lead to confusion. For example, the
requestedDeliveryDate
field in ItemOut
. Real-world experience shows that here it is common to only specify the date.
Althout one could argue that the time of day is still relevant here for real tight on-point deliveries.
To solve this problem we introduced a determined CXml\Model\Date
class in case of using an explicit
date (without time). This class extends DateTime
and is therefore compatible with the rest of the model. The class
enforces a date-only representation (Y-m-d).
Serialization
You should use the CXml\Model\Date
class when generating your object-graph in cases you want to output a date-only
value.
Deserialization
When parsing a date-property from a cXML document, the CXml\Model\Date
will be instantiated if a date-only
value was discovered (Y-m-d).
Credits
- Markus Thielen (https://github.com/mathielen)
All versions of cxml with dependencies
ext-simplexml Version *
ext-dom Version *
ext-libxml Version *
beberlei/assert Version @stable
jms/serializer Version ^3.30.0
psr/log Version ^1.0 || ^2.0 || ^3.0
psr/event-dispatcher Version ^1.0.0