All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.kubinity.soap.client.command.CommandInvoker.kt Maven / Gradle / Ivy

The newest version!
package org.kubinity.soap.client.command

import org.kubinity.soap.client.soap.SoapClient

class CommandInvoker(private val soapClient: SoapClient) {
    fun invoke(command: Command) {
        val soapResponse = soapClient.call(command.getSoapMessage())

        if (soapResponse.soapBody.hasFault()) {
            throw CommandInvokeException(soapResponse.soapBody.fault.faultString)
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy