Skip to content

Soap Easier is a minimal java library to work with soap services. Is based on simple string templates to create the soap message and use a very low level to establish the http connection. Keywords[ java soap xml library ]

Notifications You must be signed in to change notification settings

jrichardsz-software-architect-tools/soap-easier

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 

Repository files navigation

Soap Easier

  • Are you working with soap and legacy and awful services?
  • wsdl does not meet the standard?
  • security is pain in your #$%&?

If the above is your case, forget the complicated libraries and use Soap Easier.

Soap Easier is a minimal java library to work with soap services. Is based on simple string templates to create the soap message and use a very low level to establish the http connection.

Steps

  • Try to consume your service with SoapUI. If SoapUI can not, very few people in this world can do it.
  • Add to your pom
<dependency>
  <groupId>org.jrichardsz.soapeasier</groupId>
  <artifactId>soap-easier</artifactId>
  <version>1.0.0</version>
</dependency>
  • create a file in your src/main/resources with a xml string. This string must be the soap request of a success execution with soapui. Example : add-integer-request.xml
<soapenv:Envelope ...>
   <soapenv:Header/>
   <soapenv:Body>
      <tem:AddInteger>
         <tem:Arg1>5</tem:Arg1>
         <tem:Arg2>6</tem:Arg2>
      </tem:AddInteger>
   </soapenv:Body>
</soapenv:Envelope>
  • Just consume your soap operation:
SimpleHttpSoapClient client = new SimpleHttpSoapClient();

client.setServiceUrl("http://www.crcind.com/csp/samples/SOAP.Demo.cls");
client.setContentType("text/xml; charset=utf-8");
client.setSoapAction("http://tempuri.org/SOAP.Demo.AddInteger");

client.configure();

SoapClasspathMessage message = new SoapClasspathMessage();
message.setXmlLocation("/add-integer-request.xml");
String response = client.performOperation(message);

That's All!

Parameterized requests

In the background The Apache Velocity Project is used. Take a look this test !

Secure requests

Currently, only basic authentication is supported. Take a look this test !

Roadmap

  • Add more security strategies
  • Split message in header and body
  • Add Pojos as an alternative to HashMap parameters

About

Soap Easier is a minimal java library to work with soap services. Is based on simple string templates to create the soap message and use a very low level to establish the http connection. Keywords[ java soap xml library ]

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages