Retrieves the push end-point which the enterprise back-end can use to push data to the ODP client via the server.
Syntax
public static virtual NSString *
getPushEndpointWithError:
(NSError ** error)
Parameters
-
error –
Double pointer to the error object if the method results in an error.
Returns
End-point as a string object (URL/URN). Usage NSError* error = nil; NSString* pushEndPoint = [ODPAppSettings getPushEndpointWithError:&error]; if (!error) { // Further processing }