getPushEndpointWithError:(NSError **) method

Fetches the end-point using which the enterprise back-end can push data to the ODP client via the server.

Syntax

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

Parameters

Returns

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