Hi All,
I am trying to login and perform some taks using SOAP API with ansible. Can you please let me know how to call SOAP API along with examples would really help.
Thanks
Rajasekhar
Hi All,
I am trying to login and perform some taks using SOAP API with ansible. Can you please let me know how to call SOAP API along with examples would really help.
Thanks
Rajasekhar
Not sure if there is an explicit module to make soap call however u can use the shell module:
http://docs.ansible.com/ansible/latest/shell_module.html
Here is some documentation on how to make soap call using curl:
http://lancegatlin.org/tech/test-a-soap-web-service-using-curl
Combining the options above is what u want.
Thanks,
Eshan
You may be able to use URI module.
If you are on windows, or have some windows hosts, you can make use of the webServiceProxy cmdlets. This is nice as you can use the wsdl and discover the available methods on the webservice interface at runtime.
Here’s a powershell script that can be used to connect to a soap webservice and return the methods it exposes.
`
Function Check_WebService{Param([string] $wsdl)
Process{
write-host “checking: $wsdl”
$username = “1”
$secpasswd = ConvertTo-SecureString “password” -AsPlainText -Force
$credential = New-Object System.Management.Automation.PSCredential ($username, $secpasswd)
#$credential = Get-Credential
try {
$ws_proxy = New-WebServiceProxy -Uri $wsdl -Namespace “Soap11” -Class “Soap11” -Credential $credential
$namespace = $ws_proxy.GetType().Namespace
$ws_proxy| Get-Member -MemberType Method
$ws_proxy.Dispose()
} catch {
write-host $_.Exception.Message
write-host “Failed while checking: $wsdl”
exit(1)
}
}}
write-host “checking that interfaces can be generated by .net”
Check_WebService -wsdl “http://hostname/path/to/your.wsdl”
`
Another way to do this would be to use a tool such as SoapUI which contains a program called ‘testrunner’ which lets you run soapui tests from the command line.
Jon