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
-
error –
A double pointer to the error object in case the operation results in an error
Returns
Returns the end-point as a string object (URL/URN.) Usage NSError* error = nil; NSString* pushEndPoint = [ODPAppSettings getPushEndpointWithError:&error]; if (!error) { // Further processing }