Questions tagged [soap-client]

A software program that accesses a SOAP server for its operations.

Using SoapClient to send XML data to a WSDL

Here is the WSDL I am working with: My goal is to utilize SoapClient in order to send a request to the CustomerSearch method. This is the code snippet I have implemented: $url = 'https://secure.softwarekey.com/solo/webservices/XmlCustomerService.asmx?WS ...

Executing a WSDL method using SOAPClient in PHP with a parameter specified in the parameter name

Hello, I am currently utilizing PHP's soapclient function to make a call to a soap webservice (with wdsl). While I understand how to pass parameters to a method, the webservice I am working with requires parameters to be specified within the paramete ...

Encountering the issue of a self-signed certificate in the certificate chain while making a SOAP request

I recently acquired a PFX file and successfully generated both PEM and KEY files using the following commands: openssl pkcs12 -in cert.pfx -out cert.pem -clcerts -nokeys openssl pkcs12 -in cert.pfx -out cert.key -nocerts -nodes After generating the file ...

Converting a PHP SoapClient request example to Ruby on Rails

I am looking to access a web service through its API. The documentation provides an example request using PHP SoapClient, but I work with RoR and do not have experience with PHP. Can someone guide me on how to translate this to RoR code, or explain it in s ...