StageWebView and https...
StageWebView is being used to load a generic HTML page from within a simple view. In another view, a user has been authenticated via https but when trying to retrieve the html page with StageWebView, the site is displaying the login screen rather than the content requested in the URL. The site doesn't know anything about an existing session.
This occurs only on Android/EVO. The iOS version/emulator displays the requested HTML page as expected.
The <uses-permission android:name="android.permission.INTERNET"/> permission is set for Android per the StageWebView docs.
Tidbits...
There is only one instance of StageWebView in the application.
A user previously logs in with a simple HttpService call via jsp api in another view.
The httpService variable used for the login is kept in global space so it isn’t garbage collected keeping the sessionid alive.
How does one make a StageWebView call to a https site without having to login manually since the framework won't popup a login dialog of any kind (per the docs)?
Thanks in advance!
james
