Executes an expression on the specified remote vault.

Namespace: BlueCieloECM.InnoCielo.Meridian.Scripting
Assembly: BlueCieloECM.InnoCielo.Meridian (in BlueCieloECM.InnoCielo.Meridian.dll) Version: 1.4.0.0 (1.4.40.0)

Syntax

C#
public Object CallRemote(
	string url,
	string username,
	string password,
	string remoteVault,
	string expression,
	Object arg
)
Visual Basic
Public Function CallRemote ( _
	url As String, _
	username As String, _
	password As String, _
	remoteVault As String, _
	expression As String, _
	arg As Object _
) As Object
Visual C++
public:
Object^ CallRemote(
	String^ url, 
	String^ username, 
	String^ password, 
	String^ remoteVault, 
	String^ expression, 
	Object^ arg
)

Parameters

url
Type: System..::..String
The base URL for Web Access on the remote server (e.g. http://remote.com/meridian).
username
Type: System..::..String
The name of the user to log in to Web Access on the remote server.
password
Type: System..::..String
The password to log in to Web Access on the remote server.
remoteVault
Type: System..::..String
The name of the remote vault (not the WebAccessLocationID property value of the remote vault, because this will change when the vault is republished).
expression
Type: System..::..String
The expression to evaluate.
arg
Type: System..::..Object
The parameter required to evaluate the specified expression.

Return Value

The result of the remote call.

See Also