Skip to content

Library capable of converting SOAP backend service to REST backends

License

Notifications You must be signed in to change notification settings

anupama-pathirage/soap-to-rest

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

63 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SOAP to REST Conversion Java Library

Introduction

This open source library is capable of converting SOAP backend service to REST backends. The library is written to get the SOAP Webservice contract using WSDL file and generate OpenAPI Specification (Swagger file) along with the required SOAP Request bodies that will convert the REST JSON input to SOAP message. There are two methods to convert the SOAP Endpoints. Either using the URL of the real SOAP backend or the Zip file contain all the WSDL files and respective XSD files.

How to build

Clone the repository and build the project using executing following command in terminal

mvn clean install

Prerequisites

  • Maven 3.6.3 or higher (tested on 3.6.3)
  • Java 11.0 or higher (tested on java 11)

How to use

There are two methods in SOAPToRestConverter.java that convert the WSDL to REST Endpoint

  1. Use the following method to generate REST service from WSDL URL
getSOAPtoRESTConversionData(URL url,String apiTitle,String apiVersion)
  1. Use the following method to generate REST service from WSDL File
getSOAPtoRESTConversionData(String filePath,String apiTitle,String apiVersion)

Both methods will return an object from SOAPtoRESTConversionData.java class which contains following

OpenAPI openAPI;
        Map<String, SOAPRequestElement> soapRequestBodyMapping;
        String soapService;
        String soapPort;
  • openAPI, soapService and soapPort are the respective representation of the SOAP endpoint
  • soapRequestBodyMapping contains a map of SOAPRequestElement for all the SOAP operations.

SOAPRequestElement Contains following,

Document soapRequestBody;
        String soapAction;
        String soapNamespace;
        String nameSpace;

Document contains org.w3c.dom.Document of the Request message that need to send to the SOAP backend under soapAction. This Document contains the message with the placeholders for JSON input

License

Copyright (c) 2022, WSO2 Inc. (http://www.wso2.org) All Rights Reserved.

WSO2 Inc. licenses this file to you under the Apache License,
Version 2.0 (the "License"); you may not use this file except
in compliance with the License.
You may obtain a copy of the License at

  http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.

About

Library capable of converting SOAP backend service to REST backends

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 100.0%