MVN

com.xkcoding : soap-ws

Maven & Gradle

May 24, 2019
296 stars

soap-ws · soap-ws is a lightweight and easy-to-use Java library to handle SOAP message generation and SOAP message transmission on a purely XML level. With the usage of this library within few lines of code you can easily import your WSDL and generate SOAP messages directly in an XML format. Then you can use the SoapClient to transmit this message over HTTP(s) to a web-service endpoint. Finally, you can run SoapServer to receive SOAP messages and and respond to them. And all of that requires no classes or stubs generation - everything happens directly in an XML format.

<dependency>
    <groupId>com.xkcoding</groupId>
    <artifactId>soap-ws</artifactId>
    <version>0.0.2</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of com.xkcoding : soap-ws to add to Maven - Latest Versions:

  • Latest Stable: 0.0.2

All Versions

Choose a version of com.xkcoding : soap-ws to add to Maven - All Versions:

Version Vulnerabilities Updated
0.0.x
soap-ws-0.0.2
soap-ws-0.0.1

How to add a POM dependency to Maven

POM as dependency in dependencyManagement

<dependency>
    <groupId>com.xkcoding</groupId>
    <artifactId>soap-ws</artifactId>
    <version>0.0.2</version>
</dependency>

Advertisement