MicroStrategy ONE

Create iPad Device statement

Creates an iPad device. A Distribution Services iPad device is used to automatically send information from Intelligence Server to MicroStrategy Mobile and to an iPad. The device is based on a transmitter in the system.

Copy
CREATE IPADDEVICE "device_name" TRANSMITTER "transmitter_name" [DESCRIPTION "description"] [APPLEID "app_id"] [[SERVER "server_name"] [PORT port] [SERVERCERTIFICATE "certificate_name"]] [[SERVICENAME "service_name"] [SERVICEPORT port]];

where:

  • IPADDEVICE "device_name" is the name of the new iPad device to create, of type string.

  • TRANSMITTER "transmitter_name" is the transmitter that the new device is an instance of and is based on, of type string. This should be the name of an iPad transmitter in the system.

  • DESCRIPTION "description" is the description of the device to create, of type string.

  • APPLEID "app_id" is the application ID of your MicroStrategy Mobile app for iPad, of type string.

  • SERVER "server_name" is the name or IP address of the Apple Push Notification Service (APNS) used to send push notifications, of type string.

  • PORT port is the port that the APNS uses to receive push requests, of type numeric.

  • SERVERCERTIFICATE "certificate_name" is the path to the APNS provider certificate, of type string.

  • SERVICENAME "service_name" is the name or IP address of the APNS Feedback Service used for the push notifications, of type string.

  • SERVICEPORT port is the port that the APNS Feedback Service uses to receive requests, of type numeric.

Example

Copy
CREATE IPADDEVICE "iPadCertOne" TRANSMITTER 
 "MobileClientIPad" SERVER "gateway.push.apple.com" 
 PORT 2195 SERVICENAME "feedback.push.apple.com" SERVICEPORT 
 2196;