Can you try using a browser other than IE? Let's make
sure this is the IE6 issue mentioned (which would be my guess), even if the
config change below didn't fix it for you. -Brian
From: [email protected] [mailto:[EMAIL PROTECTED] On Behalf Of Steve Pruitt
Sent: Friday, June 10, 2005 12:55 PM
To: [email protected]
Subject: RE: [flexcoders] Re: https
I tried both entries
and I still remain stuck trying to load
-S
Tomcat 5.X when combined with HTTP auth and SSL and binary content
such as a swf.
The fix is the following which will disable setting the proper but
troublesome cache-control header.
In the flex web app, add a META-INF directory. Inside of that
directory create a document
context.xml
Within this file add the following line.
<Valve
className="org.apache.catalina.authenticator.FormAuthenticator"
disableProxyCaching="false" />
If you are using BASIC instead of form just use
<Valve
className="org.apache.catalina.authenticator.BasicAuthenticator"
disableProxyCaching="false" />
Youre problem will go away.
Dave Wolf
Cynergy Systems
http://www.cynergysystems.com
--- In [email protected], "Steve Pruitt" <[EMAIL PROTECTED]> wrote:
> All,
>
> I am trying to get my Flex app working under https. I running with
> Tomcat using a self-signed certificate. I modified flex-config and
> opened up the http service whitelist to accept any https url. To kick
> it off and find the first point of failure, I just changed my url to
> https://localhost:8443/myApp/main.jsp
> <https://localhost:8443/myApp/main.jsp> . The jsp loads my swf file.
>
> After a security popup warning, IE is hung trying to load
> https://localhost:8443/anywhere/flex-internal/secure/history/history.htm
> l
> <https://localhost:8443/anywhere/flex-internal/secure/history/history.ht
> ml> . This file or its directory does not exist. Can someone explain
> what Flex is doing?'
>
>
> -S
Yahoo! Groups Links
- To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/
- To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]
- Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.

