Submit Method
See Also Example Applies To
Takes the method name and parameters,
builds the XML and uses the host settings to send the request to the remote XML-RPC server.
Returns an XMLRPCResponse object with the outcome of the call.
Syntax
object.Submit ()
| Part |
Description |
| object |
An object expression that evaluates to an XMLRPCStruct object. |
Remarks
The method will throw an error if any of the following are zero length strings HostName, HostURI, MethodName and UserAgent or if Host Port is zero. Note: Params can be empty if required.
An example of the code fragment needed is below:
Dim X As New XMLRPCRequest
Dim Y As XMLRPCResponse
' ...
' ...
' Put code to set up the request to the remote XML-RPC server here
' ...
' ...
Set Y = X.Submit
' ...
' ...
' Put code to process the response from the remote XML-RPC server here
' ...
' ...
|