[x]
Posted via EE Mobile

Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again.

Question
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

6.4

HTTPS, IE & Flex

Asked by hallikpapa in Adobe Flex, ActionScript

Tags: https, ie, firefox, flex

I have an application that works fine over http. I push it into production and it runs over https, and it runs fine in firefox, but in IE none of the remoting calls work and there is no data to display. It doesn't go into a reloading frenzy, and I can click around the app just fine, but it's in essence broken because it loads no data.

I load the app in the browser via https and I loaded up Charles Web Debugging proxy and I do not see any https remoting calls to my ZendAMF php file being made thru IE. There are calls, but they just seem to be blank, but that always happens. I am assuming it's some kind of session setup within flex or something. Usually the 4th reference to my php remoting file is when it starts calling the methods I had setup to call. And the 4th call in Firefox is to my getUser method, but there is no 4th call to the AMF Remoting php file in IE.

And like I said, all the remote methods are called just fine in all browsers via http, and it works perfectly in firefox via https.

IE and https is where nothing happens; no data is loaded and I don't see any error messages. I don't know where to start. Help?

UPDATE: I see in this post it may have to do with cache-control, and have also heard that possibly the pragma: no-cache that I see in the HTTP headers. Any idea how I can adjust the headers that are returned to fix this problem?

http://tech.groups.yahoo.com/group/flexcoders/message/44323

Below is where I setup the remoting delegate for all Remoting Calls
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
public dynamic class RemotingDelegate extends Proxy
	{
		public static var ENCODING_TYPE:uint = ObjectEncoding.AMF3;
		public static var GATEWAY:String = ApplicationFacade.SERVER_NAME + "/amf.php";
		
		public static var DESTINATION:String = "amf-remoting";
		
		protected var _responder:IResponder;
		protected var _gateway:String;
		protected var _source:String;
		protected var _remoteObject:RemoteObject;
		
		public function RemotingDelegate(responder:IResponder, source:String)
		{
			this._responder = responder;
			this._source = source;
			
			this._remoteObject = new RemoteObject(RemotingDelegate.DESTINATION);
			this._remoteObject.endpoint = RemotingDelegate.GATEWAY;
			this._remoteObject.source = source;
			this._remoteObject.showBusyCursor = true;
			this._remoteObject.addEventListener(ResultEvent.RESULT, this.__onResult);
			this._remoteObject.addEventListener(FaultEvent.FAULT, this.__onFault);
		}
[+][-]08/20/09 10:54 AM, ID: 25145318Accepted Solution

View this solution now by starting your 30-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

About this solution

Zones: Adobe Flex, ActionScript
Tags: https, ie, firefox, flex
Sign Up Now!
Solution Provided By: hallikpapa
Participating Experts: 0
Solution Grade: A
 
 
Loading Advertisement...
20091111-EE-VQP-92 - Hierarchy / EE_QW_3_20080625