Skip to content

ph wsclient

Philip Helger edited this page Nov 22, 2022 · 2 revisions

A library with an easy to use WebService client based on JAX-WS

Maven usage

Add the following to your pom.xml to use this artifact:

<dependency>
  <groupId>com.helger.commons</groupId>
  <artifactId>ph-wsclient</artifactId>
  <version>x.y.z</version>
</dependency>

Note: the Maven groupId changed in v10 from com.helger to com.helger.commons

In your application you also need to provide a real JAX_WS implementation, as this project is only using the JAX-WS API as a dependency. To include the reference implementation add this depndency:

<dependency>
  <groupId>com.sun.xml.ws</groupId>
  <artifactId>jaxws-rt</artifactId>
</dependency>

Contents

  • com.helger.wsclient - contains the main class to easily configure a WebService client
  • com.helger.wsclient.mock - contains classes that are helpful for testing the integrity of JAX-WS configurations
Clone this wiki locally