Possible keys include:
Note: the last 3 you would substitute the WSDL name in the place of “wsdl”
wsdl_count returns the number of WSDLs installed
Example:
_FmNx_GetPref( “wsdl_count” )Returns 4 if 4 WSDLs were installed
wsdl_names returns the names of all the WSDLs installed
Example:
_FmNx_GetPref( “wsdl_names” )Returns the list of wsdl names (example assumes you have only 4 WSDLs installed)
xQuotesfunction_count returns the number of WSDL functions installed
Demographics
PhoneNotify
SMSNotify
Example:
_FmNx_GetPref( “function_count” )Returns 82 for the 4 WSDLs installed
function_names returns the function names of each installed function
Example:
_FmNx_GetPref( “function_names” )Returns 82 function names
NOTE: the list is reduced to only show a few entries to save space
SMS_GetCountryCodes
xQuotes_GetChartDesign
PhoneNotify_CancelNotify
Demographics_GetIncomeHouseValueByAddress …
function_prototypes returns the function name and parameters of each installed function
Example:
_FmNx_GetPref( “function_prototypes” )Returns 82 function prototypes
NOTE: the list is reduced to only show a few entries to save space
SMS_GetCountryCodes( EmailAddress; UserID; Password )
PhoneNotify_LM_AddNewList( ListName; ParentListID; LicenseKey )
xQuotes_GetChartDesign( Username; Password; Tracer ) …
verbose returns “true” or “false”. This is helpful when debugging what is sent and returned by the request. On a Mac it can be viewed using the console application. By default this option is set to “true”.
host returns the host ip address of request's destination.
port returns the destination port number of the request.
wsdl:user – [required format] – returns the user name associated with this wsdl – but first, set it with _FmNx_SetPref( “wsdl:user=string” ).
Example:
_FmNx_GetPref( “xQuotes:user” )Returns “fmnexus” if previously set with
_FmNx_SetPref( “xQuotes:user=fmnexus” )
wsdl:password – [required format] – returns the password associated with this wsdl – first, set it with
_FmNx_SetPref( “wsdl:password=string” )
Example:
_FmNx_GetPref( “xQuotes:password” )Returns “abc123” if is was previously set with
_FmNx_SetPref( “xQuotes:password=abc123” )wsdl:timeout – needs to be supplied in this format – returns the timeout value in seconds associated with this wsdl – you need to first set it with _FmNx_SetPref( “wsdl:timeout=seconds” ).
Example:
_FmNx_GetPref( “xQuotes:timeout” )Returns “10” if is was previously set with
_FmNx_SetPref( “xQuotes:timeout=10” )
Comments