getApplicationEndpointWithError:(NSError **) method

Fetches the end-point using which the application can start accessing the business data (application end-point).

Syntax

public static virtual NSString * getApplicationEndpointWithError: (NSError ** error)

Parameters

Returns

Returns the end-point as a string object (URL/URN.) Usage NSError* error = nil; NSString* appEndPoint = [ODPAppSettings getApplicationEndpointWithError:&error]; if (!error) { // Further processing }