W3C Web Services Addressing

W3C Schemas project provides JAXB and Jsonix bindings for some of the XML Schemas defined by W3C.

License

License

GroupId

GroupId

org.hisrc.w3c
ArtifactId

ArtifactId

ws-addr
Last Version

Last Version

1.4.0
Release Date

Release Date

Type

Type

pom
Description

Description

W3C Web Services Addressing
W3C Schemas project provides JAXB and Jsonix bindings for some of the XML Schemas defined by W3C.

Download ws-addr

Filename Size
ws-addr-1.4.0.pom 611 bytes
Browse

How to add to project

<!-- https://jarcasting.com/artifacts/org.hisrc.w3c/ws-addr/ -->
<dependency>
    <groupId>org.hisrc.w3c</groupId>
    <artifactId>ws-addr</artifactId>
    <version>1.4.0</version>
    <type>pom</type>
</dependency>
// https://jarcasting.com/artifacts/org.hisrc.w3c/ws-addr/
implementation 'org.hisrc.w3c:ws-addr:1.4.0'
// https://jarcasting.com/artifacts/org.hisrc.w3c/ws-addr/
implementation ("org.hisrc.w3c:ws-addr:1.4.0")
'org.hisrc.w3c:ws-addr:pom:1.4.0'
<dependency org="org.hisrc.w3c" name="ws-addr" rev="1.4.0">
  <artifact name="ws-addr" type="pom" />
</dependency>
@Grapes(
@Grab(group='org.hisrc.w3c', module='ws-addr', version='1.4.0')
)
libraryDependencies += "org.hisrc.w3c" % "ws-addr" % "1.4.0"
[org.hisrc.w3c/ws-addr "1.4.0"]

Dependencies

test (1)

Group / Artifact Type Version
junit : junit jar 4.11

Project Modules

  • 1.0-Core

W3C Schemas

W3C Schemas project provides JAXB and Jsonix bindings for some of the XML Schemas defined by W3C.

This allows converting between XML (conforming to one of these schemas) and Java objects in Java or JSON in JavaScript.

Supports the following schemas:

  • Atom_1_0
  • WS_Addr_1_0_Core
  • WSDL_2_0
    • WSDL_HTTP_2_0
    • WSDL_RPC_2_0
    • WSDL_SOAP_2_0
  • XHTML_1_0_Strict
  • XLink_1_0
  • XSD_1_0

JavaScript Example

var XLink_1_0 = require('w3c-schemas').XLink_1_0;

var context =  new Jsonix.Context([XLink_1_0]);
var unmarshaller = context.createUnmarshaller();
unmarshaller.unmarshalFile("tests/locator-01.xml", function(result) {
	test.equal("label", result.value.label);
	test.done();
});

Versions

Version
1.4.0
1.3.1
1.3.0
1.2.1
1.2.0
1.1.1
1.1.0
1.0.4
1.0.3