Hi,
struggling with configuring ibm connections iOS app with plist, there a lot guides around with different key/values
1. successfully preconfigure server & username
2. "SingleAccountOnly" is working also
3. "AllowRemoveAccount" isn't, still able to remove
4. "RememberPassword" isn't set in the app, has to manually enable
----------------Use the following 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>
<!-- This ManagedAppConfigurationVersion key has the value of the -->
<!-- version element in the XML document -->
<key>ManagedAppConfigurationVersion</key>
<integer>8</integer>
<!-- The plist then has a key-value pair for each configuration setting. -->
<!-- The name of the key corresponds to the keyName attribute of a key element -->
<!-- in the XML document. -->
<key>com.ibm.mobile.connections.serverURL</key>
<string>ServerName</string>
<key>com.ibm.mobile.connections.serverName</key>
<string>CustomerName</string>
<key>com.ibm.mobile.connections.user</key>
<string>$USERID$</string>
<key>SingleAccountOnly</key>
<true/>
<key>RememberPassword</key>
<true/>
<key>AllowRemoveAccount</key>
<false/>
<key>AllowiTunesSharing</key>
<false/>
<key>ExposeGeoLocation</key>
<false/>
</dict>
</plist>
-----------------------------------
what are the correct key's, are the any current sample plist - anyone please assist with this !?
thanks in advance
Matthias