Downloading Customization Resource Bundles

(Optional) The application can download the custom resources using this API. The customized resource bundles are assigned to application connections in the Sybase Control Center.

A customization resource bundle is a JAR file that includes a manifest file of name and version properties. It enables you to associate deployed client applications with different versions of customization resources. See Application Customization Resource Bundles in Sybase Control Center for Sybase Unwired Platform for information about the implementation task flow of customizations resource bundles.

The following code illustrates how to download customization resource bundles.

NSData* customResourceBundleData = [ODPAppSettings getCustomizationResourceBundleWithCustomizationResource:customizationResource userName:USERNAME passWord:PASSWORD error:&error];
  if (!error) 
  {
      // Further processing
  }