Hi,
in our project we have the need to "tunnel" http requests via MobileIron as MAM (https://www.mobileiron.com/en/solutions/mobile-application-management-mam)
The documentation of MobileIron states that:
An AppConnect app can use HTTP/HTTPS tunneling only if the app accesses the enterprise
server using one of the following APIs:
• java.net.HttpURLConnection
• java.net.ssl.HttpsURLConnection
• Android HttpClient
• DefaultHTTPClient, using the standard Apache HttpClient library with the
org.apache.http.package name
Note: HTTP/S tunneling is not supported with non-standard libraries such as
com.squareup.okhttp.HttpClient or the Apache HttpClient library repackaged under
the ch.boye.httpclientandroidlib package.
In our app all http web request are "hand made" using the System.Net namespace and the HttpWebRequest/HttpWebResponse classes.
My question is: how those classes works in deep? If I use HttpWebRequest class I'm compliant with MobileIron?
thanks
F