getApplicationEndpointWithError: method

Retrieves the application end-point with which the application can access business data.

Syntax

- ( NSString * ) getApplicationEndpointWithError : ( NSError ** ) error

Parameters

Returns

Returns the end-point as a string object (URL/URN)

Example 1

SMPAppSettings* appSettings = [SMPAppSettings initializeWithConnection:clientConn userName:"username" password:@"password"];
NSError *error = nil;
NSString *appEndPoint = [appSettings getApplicationEndpointWithError:&error];
if (!error)
{
 //Continue processing
}