
This object is only available in a
licensed version of Klipfolio Dashboard. In order to use it in Klipfolio Personal Dashboard,
add
<enterprise>true</enterprise> in your
<setup> block.
Created by Engines.SOAP.newClient(), the SOAPClient object provides a way to make a SOAP request to a remote web server.
|
Properties Summary |
String |
namespace
The SOAP namespace to be associated with the SOAP request. |
String |
namespaceUri
The URI associated with the client namespace. |
|
Function Summary |
function
|
call( <String> command, <String> soap_request )
Sends SOAP request to configured URL.
|
namespace
String namespace
The SOAP namespace to be associated with the SOAP request.
namespaceUri
String namespaceUri
The URI associated with the client namespace.
call
function call( <String> command, <String> soap_request )
Sends SOAP request to configured URL.
Parameters:
command - string specifying the remote SOAP command. It is specific to the remote server's supported commands. Refer to the server's specifications.
soap_request - JSON object of the SOAP input values of the form { name1: value1, name2: value2 } For example,
var response = soap_client.call(
"SOAPCommandName",
{
"method": "method.specific.to.api",
"api_key": "0123456789abcdefg",
"foo": "bar"
}
);
© 2009 Klipfolio Inc. All Rights Reserved.