Select to view content in your preferred language

Field Maps - MDM

368
1
01-18-2023 09:18 AM
mbowser13
New Contributor

I am trying to push a location profile property to multiple devices through MobileIron. I have created a plist with the location profile properties but I receive a response from MobileIron that the file is not valid. Any thoughts on where i've gone wrong with the plist?

<?xml version="1.0" encoding="UTF-8"?>

<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN"

"http://www.apple.com/DTDs/PropertyList-1.0.dtd">

<plist version="1.0">

<dict>

	<key>name</key>

	<string>RTK Profile</string>

	<key>mapCoordinateSystem</key>

	<integer>3857</integer>

	<key>gnssCoordinateSystem</key>

	<integer>6318</integer>

	<key>horizontalDatumTransformationName</key>

	<string>~WGS_1984_(ITRF08)_To_NAD_1983_2011</string>

</dict>

</plist>

 

0 Kudos
1 Reply
ChrisDunn1
Esri Contributor

Hi @mbowser13,

For the location profile MDM setting, the parameter only takes a single key/value pair.

The key is locationProfiles.

In your case the parameter would be the following string:

[ { "name":"RTK Profile", "mapCoordinateSystem":3857, "gnssCoordinateSystem": 6318, "horizontalDatumTransformationName": "~WGS_1984_(ITRF08)_To_NAD_1983_2011" } ]

I hope that helps!

Chris

0 Kudos