We are deploying iOS apps over the air (OTA) within our enterprise to employees and we are controlling who can access the download site via SiteMinder which authenticates the user and authorizes them based on AD group membership. This authentication process creates a cookie on the device indicating the user is authenticated (and probably that they are authorized too) so they don't continue to get prompted over and over again for each request.
The problem is that the user can download and install the app once and thereafter can never install the app again because they get caught in a credentials prompt loop. This loop is caused by the fact that the Siteminder authentication cookie has expired and is not being deleted or renewed by the user-agent on the device.
From what I've read, this is because the OTA installation URL, which starts with "itms-Services://" uses a different user-agent than mobile-Safari on the device and doesn't respond to the cookie delete call from the site and doesn't delete the cookie on its own. This also means that deleting cookies, purging cache and website data under Safari doesn't resolve the issue - Safari doesn't own the cookie.
Deleting the app (if its still installed) doesn't solve the problem either, nor does rebooting the device (I have not tried wiping the device yet and can't really start asking our users to do that anyway).
So, is there a way to tell the user-agent that itms-services is using to delete its cookies on the device or is there some other work-around to this issue for OTA deployment for iOS applications?
Using the Apple AppStore is not a viable solution in this case.
Changing the parameters in SiteMinder than govern the naming of the cookies so a new cookie is created is also not viable since this would adversely impact other single-sign-on users that this SiteMinder domain supports.