Login    Sites MenuBlueStep

BlueStep Platform Support

RelateScript
Outline full outline 
Overview 
Data Types 
Operators 
Statements 
Functions 
Data Conversion 
String Functions 
HTML/CSS/JavaScript 
Array Functions 
Date/Time Functions 
Mathematical Functions 
Advanced Functions 
Restricted Functions 
clearCache()
B.clearCache
 
clearLock(...)
B.clearLock
 
End Point request/response
B.request,B.response
 
executeQuery(...)
B.executeQuery
 
logKeyword(...) 
Mckesson Functions 
prepareLookup(...) 
setBioImage() 
storeString(...) 
storeURL(...) 
Web Services 
getNewSoapClient(...)
B.createSoapClient, B.createJaxWsSoapClient
 
SoapObject 
Sample Code 
Working with Relate Data 
How Formulas Work 
Related Topics 

The getNewSoapClient(...) function retrieves a SoapClient to initialize it.  The result of this function is a SoapClientCustomObject object.

Syntax:
getNewSoapClient( String url )
url.getNewSoapClient();

 

Parameter Description
url A String value containing url for the soap client's webservices.

 

 

The Soap Client Object

 

 

Method Description
getNewSoapCustomObject(String classPath) This function results in a SoapCustomObject containing the Class of the classPath passed to it.
soapCall(String nameSpace, String method) This function results in a Map always in case the soap call returns a Map of items, however, it is used to make webservice calls to a soap client. 
soapCall(String nameSpace, String method, String arg) This function results in a Map always in case the soap call returns a Map of items, however, it is used to make webservice calls to a soap object. 
soapCall(String nameSpace, String method, String[Integer] paramTypes , paramValues)

This function results in a Map always in case the soap call returns a Map of items, however, it is used to make webservice calls to a soap object. 

paramTypes - "String", "Boolean", "Integer", "Long", "Long[]" are implemented.

paramValues - is a variable-count, variable-type argument list which must correspond to the types passed.