[flex_india:26341] Doubt in Flex - Your Help is Really Needed. (Refresh Issues in Flex with IE)

View: New views
9 Messages — Rating Filter:   Alert me  

[flex_india:26341] Doubt in Flex - Your Help is Really Needed. (Refresh Issues in Flex with IE)

by Leena-3 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hi Friends,

This is Leena Kale. I have an issue with refreshing my Application. I want user to allow the refresh the application by browser or F5 key. I have already tried the following ways:

Using SharedObject
Using Session Object

Both are Working fine in Mozilla Firefox and Google Chrome. But the problem in coming in Internet Explorer. It only works when we change the default setting(Automatically) from Internet Options to  Every Time I Visit the Page.

I am unable to understand this behaviour of IE towards the SWF.

Now, My Questions are:

1. Is there any way, where we don't need to change this setting of Internet Explorer and Still it works Fine?
2. Or We need to change it?
3. Is there any other way to achieve this functionality apart from What I tried?

Since, at my company our people don't want to change this setting, but still want to achieve this feature.
I know, you people are Really Good in Flex and are really busy with your important works. But, I will be really thankful to you, if you people can spend a minute or two to write the answers for these questions, since this is very critical for survival this Project.

Thanks & Regards:
Leena T. Kale
"If u wish to reach on Highest then start from Lowest....."

Contact No: 9764657046
Skype IM - leena.kale


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Flex India Community" group.
To post to this group, send email to flex_india@...
To unsubscribe from this group, send email to flex_india+unsubscribe@...
For more options, visit this group at http://groups.google.com/group/flex_india?hl=en
-~----------~----~----~----~------~----~------~--~---



Screen.jpg (125K) Download Attachment

[flex_india:26358] Re: Doubt in Flex - Your Help is Really Needed. (Refresh Issues in Flex with IE)

by Mayur Bais :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

You are hitting the cache mechanism of IE browser,
If you  read correctly in the image that you have attached ,
It says ,
  "Checked for newer version of stored pages", meaning : check if something new version is available on your server for the pages that are cached with browser.

and If user has saved setting as : "Automatically" , then IE is gonna send http request to your server on its own . May be after some time interval or when the expiry of cache is set . And not by any explicit action of refresh.

So there are work around for this :

You can override these setting for your application by using certain metadata tags in you html page that loads swf  like  :

<HTML>
<HEAD>
<META HTTP-EQUIV="Pragma" CONTENT="no-cache">
<META HTTP-EQUIV="Expires" CONTENT="-1">
</HEAD>
<BODY>
         <!--    put your swf here..-->
</BODY>
</HTML>

OR
Simpler way is append a timestamp to your swf url in html page like this :

<embed height="1000" align="middle" width="100%" type="application/x-shockwave-flash"
        wmode="transparent" quality="high" id="movie" src="http://server_url/myswf.swf?t=12456890>

Where "t" is calculated every time on  onLoad event or any other event of Body tag in html page or something (I am not html expert)
This is a kinda of hack, which make IE think that every time a a different url is requested and hence it does not picks up content from its cache.

Keep posted if any of the two things works

-Regards
Mayur








On Tue, Nov 3, 2009 at 11:21 AM, Leena kale <leenatkale@...> wrote:
Hi Friends,

This is Leena Kale. I have an issue with refreshing my Application. I want user to allow the refresh the application by browser or F5 key. I have already tried the following ways:

Using SharedObject
Using Session Object

Both are Working fine in Mozilla Firefox and Google Chrome. But the problem in coming in Internet Explorer. It only works when we change the default setting(Automatically) from Internet Options to  Every Time I Visit the Page.

I am unable to understand this behaviour of IE towards the SWF.

Now, My Questions are:

1. Is there any way, where we don't need to change this setting of Internet Explorer and Still it works Fine?
2. Or We need to change it?
3. Is there any other way to achieve this functionality apart from What I tried?

Since, at my company our people don't want to change this setting, but still want to achieve this feature.
I know, you people are Really Good in Flex and are really busy with your important works. But, I will be really thankful to you, if you people can spend a minute or two to write the answers for these questions, since this is very critical for survival this Project.

Thanks & Regards:
Leena T. Kale
"If u wish to reach on Highest then start from Lowest....."

Contact No: 9764657046
Skype IM - leena.kale





--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Flex India Community" group.
To post to this group, send email to flex_india@...
To unsubscribe from this group, send email to flex_india+unsubscribe@...
For more options, visit this group at http://groups.google.com/group/flex_india?hl=en
-~----------~----~----~----~------~----~------~--~---


[flex_india:26345] Re: Doubt in Flex - Your Help is Really Needed. (Refresh Issues in Flex with IE)

by Vaibhav Seth :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Have you tried deep linking, which is one of the key feature in Flex 3. Hope it will help.




On Tue, Nov 3, 2009 at 2:21 PM, Leena kale <leenatkale@...> wrote:
Hi Friends,

This is Leena Kale. I have an issue with refreshing my Application. I want user to allow the refresh the application by browser or F5 key. I have already tried the following ways:

Using SharedObject
Using Session Object

Both are Working fine in Mozilla Firefox and Google Chrome. But the problem in coming in Internet Explorer. It only works when we change the default setting(Automatically) from Internet Options to  Every Time I Visit the Page.

I am unable to understand this behaviour of IE towards the SWF.

Now, My Questions are:

1. Is there any way, where we don't need to change this setting of Internet Explorer and Still it works Fine?
2. Or We need to change it?
3. Is there any other way to achieve this functionality apart from What I tried?

Since, at my company our people don't want to change this setting, but still want to achieve this feature.
I know, you people are Really Good in Flex and are really busy with your important works. But, I will be really thankful to you, if you people can spend a minute or two to write the answers for these questions, since this is very critical for survival this Project.

Thanks & Regards:
Leena T. Kale
"If u wish to reach on Highest then start from Lowest....."

Contact No: 9764657046
Skype IM - leena.kale






--
Thanks,
Vaibhav Seth.

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Flex India Community" group.
To post to this group, send email to flex_india@...
To unsubscribe from this group, send email to flex_india+unsubscribe@...
For more options, visit this group at http://groups.google.com/group/flex_india?hl=en
-~----------~----~----~----~------~----~------~--~---


[flex_india:26346] Re: Doubt in Flex - Your Help is Really Needed. (Refresh Issues in Flex with IE)

by edwin.vgwhiz@gmail.com :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

How do you deep link???

On Tue, Nov 3, 2009 at 7:53 PM, Vaibhav Seth <seth.vaibhav.08@...> wrote:
Have you tried deep linking, which is one of the key feature in Flex 3. Hope it will help.





On Tue, Nov 3, 2009 at 2:21 PM, Leena kale <leenatkale@...> wrote:
Hi Friends,

This is Leena Kale. I have an issue with refreshing my Application. I want user to allow the refresh the application by browser or F5 key. I have already tried the following ways:

Using SharedObject
Using Session Object

Both are Working fine in Mozilla Firefox and Google Chrome. But the problem in coming in Internet Explorer. It only works when we change the default setting(Automatically) from Internet Options to  Every Time I Visit the Page.

I am unable to understand this behaviour of IE towards the SWF.

Now, My Questions are:

1. Is there any way, where we don't need to change this setting of Internet Explorer and Still it works Fine?
2. Or We need to change it?
3. Is there any other way to achieve this functionality apart from What I tried?

Since, at my company our people don't want to change this setting, but still want to achieve this feature.
I know, you people are Really Good in Flex and are really busy with your important works. But, I will be really thankful to you, if you people can spend a minute or two to write the answers for these questions, since this is very critical for survival this Project.

Thanks & Regards:
Leena T. Kale
"If u wish to reach on Highest then start from Lowest....."

Contact No: 9764657046
Skype IM - leena.kale






--
Thanks,
Vaibhav Seth.






--
Ed Melendez
Print/Web/Media

646.246.4368
edwin.vgwhiz@...

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Flex India Community" group.
To post to this group, send email to flex_india@...
To unsubscribe from this group, send email to flex_india+unsubscribe@...
For more options, visit this group at http://groups.google.com/group/flex_india?hl=en
-~----------~----~----~----~------~----~------~--~---


[flex_india:26356] Re: Doubt in Flex - Your Help is Really Needed. (Refresh Issues in Flex with IE)

by Elango Chennai :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hi,

Are you speaking about caching issue? When refreshing the browser it is not showing up the new content?


Sent from my iPhone

On 2009 நவ. 4, at 12:51 காலை, Leena kale <leenatkale@...> wrote:

Hi Friends,

This is Leena Kale. I have an issue with refreshing my Application. I want user to allow the refresh the application by browser or F5 key. I have already tried the following ways:

Using SharedObject
Using Session Object

Both are Working fine in Mozilla Firefox and Google Chrome. But the problem in coming in Internet Explorer. It only works when we change the default setting(Automatically) from Internet Options to  Every Time I Visit the Page.

I am unable to understand this behaviour of IE towards the SWF.

Now, My Questions are:

1. Is there any way, where we don't need to change this setting of Internet Explorer and Still it works Fine?
2. Or We need to change it?
3. Is there any other way to achieve this functionality apart from What I tried?

Since, at my company our people don't want to change this setting, but still want to achieve this feature.
I know, you people are Really Good in Flex and are really busy with your important works. But, I will be really thankful to you, if you people can spend a minute or two to write the answers for these questions, since this is very critical for survival this Project.

Thanks & Regards:
Leena T. Kale
"If u wish to reach on Highest then start from Lowest....."

Contact No: 9764657046
Skype IM - leena.kale



<Screen.jpg>

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Flex India Community" group.
To post to this group, send email to flex_india@...
To unsubscribe from this group, send email to flex_india+unsubscribe@...
For more options, visit this group at http://groups.google.com/group/flex_india?hl=en
-~----------~----~----~----~------~----~------~--~---


[flex_india:26347] Re: Doubt in Flex - Your Help is Really Needed. (Refresh Issues in Flex with IE)

by Vaibhav Seth :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

http://labs.adobe.com/wiki/index.php/Flex_3:Feature_Introductions:_Deep_Linking



On Tue, Nov 3, 2009 at 8:08 PM, <edwin.vgwhiz@...> wrote:
How do you deep link???

On Tue, Nov 3, 2009 at 7:53 PM, Vaibhav Seth <seth.vaibhav.08@...> wrote:
Have you tried deep linking, which is one of the key feature in Flex 3. Hope it will help.





On Tue, Nov 3, 2009 at 2:21 PM, Leena kale <leenatkale@...> wrote:
Hi Friends,

This is Leena Kale. I have an issue with refreshing my Application. I want user to allow the refresh the application by browser or F5 key. I have already tried the following ways:

Using SharedObject
Using Session Object

Both are Working fine in Mozilla Firefox and Google Chrome. But the problem in coming in Internet Explorer. It only works when we change the default setting(Automatically) from Internet Options to  Every Time I Visit the Page.

I am unable to understand this behaviour of IE towards the SWF.

Now, My Questions are:

1. Is there any way, where we don't need to change this setting of Internet Explorer and Still it works Fine?
2. Or We need to change it?
3. Is there any other way to achieve this functionality apart from What I tried?

Since, at my company our people don't want to change this setting, but still want to achieve this feature.
I know, you people are Really Good in Flex and are really busy with your important works. But, I will be really thankful to you, if you people can spend a minute or two to write the answers for these questions, since this is very critical for survival this Project.

Thanks & Regards:
Leena T. Kale
"If u wish to reach on Highest then start from Lowest....."

Contact No: 9764657046
Skype IM - leena.kale






--
Thanks,
Vaibhav Seth.






--
Ed Melendez
Print/Web/Media

646.246.4368
edwin.vgwhiz@...






--
Thanks,
Vaibhav Seth.

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Flex India Community" group.
To post to this group, send email to flex_india@...
To unsubscribe from this group, send email to flex_india+unsubscribe@...
For more options, visit this group at http://groups.google.com/group/flex_india?hl=en
-~----------~----~----~----~------~----~------~--~---


[flex_india:26357] Re: Doubt in Flex - Your Help is Really Needed. (Refresh Issues in Flex with IE)

by Hari Narayanan-3 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message


I am using modules in my application... Then how can i implement?


Regards,
Hari

On Nov 4, 7:10 am, Vaibhav Seth <seth.vaibhav...@...> wrote:

> http://labs.adobe.com/wiki/index.php/Flex_3:Feature_Introductions:_De...
>
>
>
>
>
> On Tue, Nov 3, 2009 at 8:08 PM, <edwin.vgw...@...> wrote:
> > How do you deep link???
>
> > On Tue, Nov 3, 2009 at 7:53 PM, Vaibhav Seth <seth.vaibhav...@...>wrote:
>
> >> Have you tried deep linking, which is one of the key feature in Flex 3.
> >> Hope it will help.
>
> >> On Tue, Nov 3, 2009 at 2:21 PM, Leena kale <leenatk...@...> wrote:
>
> >>> Hi Friends,
>
> >>> This is Leena Kale. I have an issue with refreshing my Application. I
> >>> want user to allow the refresh the application by browser or F5 key. I have
> >>> already tried the following ways:
>
> >>> Using SharedObject
> >>> Using Session Object
>
> >>> Both are Working fine in Mozilla Firefox and Google Chrome. But the
> >>> problem in coming in Internet Explorer. It only works when we change the
> >>> *default setting(Automatically)* from Internet Options to  *Every Time I
> >>> Visit the Page.*
>
> >>> I am unable to understand this behaviour of IE towards the SWF.
>
> >>> Now, My Questions are:
>
> >>> 1. Is there any way, where we don't need to change this setting of
> >>> Internet Explorer and Still it works Fine?
> >>> 2. Or We need to change it?
> >>> 3. Is there any other way to achieve this functionality apart from What I
> >>> tried?
>
> >>> Since, at my company our people don't want to change this setting, but
> >>> still want to achieve this feature.
> >>> I know, you people are Really Good in Flex and are really busy with your
> >>> important works. But, I will be really thankful to you, if you people can
> >>> spend a minute or two to write the answers for these questions, since this
> >>> is very critical for survival this Project.
>
> >>> Thanks & Regards:
> >>> Leena T. Kale
> >>> "If u wish to reach on Highest then start from Lowest....."
>
> >>> Contact No: 9764657046
> >>> Skype IM - leena.kale
>
> >> --
> >> Thanks,
> >> Vaibhav Seth.
>
> > --
> > Ed Melendez
> > Print/Web/Media
>
> > 646.246.4368
> > edwin.vgw...@...
>
> --
> Thanks,
> Vaibhav Seth.- Hide quoted text -
>
> - Show quoted text -

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Flex India Community" group.
To post to this group, send email to flex_india@...
To unsubscribe from this group, send email to flex_india+unsubscribe@...
For more options, visit this group at http://groups.google.com/group/flex_india?hl=en
-~----------~----~----~----~------~----~------~--~---


[flex_india:26362] Re: Doubt in Flex - Your Help is Really Needed. (Refresh Issues in Flex with IE)

by jassy-2 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

yes you can pass a query string to the swf parametere with a unique value i.e. math.random etc

On Wed, Nov 4, 2009 at 11:53 AM, Vaibhav Seth <seth.vaibhav.08@...> wrote:
Have you tried deep linking, which is one of the key feature in Flex 3. Hope it will help.





On Tue, Nov 3, 2009 at 2:21 PM, Leena kale <leenatkale@...> wrote:
Hi Friends,

This is Leena Kale. I have an issue with refreshing my Application. I want user to allow the refresh the application by browser or F5 key. I have already tried the following ways:

Using SharedObject
Using Session Object

Both are Working fine in Mozilla Firefox and Google Chrome. But the problem in coming in Internet Explorer. It only works when we change the default setting(Automatically) from Internet Options to  Every Time I Visit the Page.

I am unable to understand this behaviour of IE towards the SWF.

Now, My Questions are:

1. Is there any way, where we don't need to change this setting of Internet Explorer and Still it works Fine?
2. Or We need to change it?
3. Is there any other way to achieve this functionality apart from What I tried?

Since, at my company our people don't want to change this setting, but still want to achieve this feature.
I know, you people are Really Good in Flex and are really busy with your important works. But, I will be really thankful to you, if you people can spend a minute or two to write the answers for these questions, since this is very critical for survival this Project.

Thanks & Regards:
Leena T. Kale
"If u wish to reach on Highest then start from Lowest....."

Contact No: 9764657046
Skype IM - leena.kale






--
Thanks,
Vaibhav Seth.






--
regards
Jasmeet Singh

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Flex India Community" group.
To post to this group, send email to flex_india@...
To unsubscribe from this group, send email to flex_india+unsubscribe@...
For more options, visit this group at http://groups.google.com/group/flex_india?hl=en
-~----------~----~----~----~------~----~------~--~---


[flex_india:26376] Re: Doubt in Flex - Your Help is Really Needed. (Refresh Issues in Flex with IE)

by AshishMishra :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message


You need to change the setting in IE. Since In my application also,
this happens for IE only. It works fine with other browsers like
Firefox, Chrome, Opera. Only, IE behaves strange.

I also tried using all the tags(below) which is used to override the
cache settings, but it doesn't work for IE. On the default setting of
IE, Neither HttpService call works, nor SharedObject.

<META HTTP-EQUIV="Expires" CONTENT="0">
<META HTTP-EQUIV="Pragma" CONTENT="no-cache">
<META HTTP-EQUIV="Cache-Control" CONTENT="no-cache">

The best way is to either use the Browser or Change Setting.

Regards,
Ashish Mishra

On Nov 4, 9:54 am, Jasmeet Sehgal <jasmeetseh...@...> wrote:

> yes you can pass a query string to the swf parametere with a unique value
> i.e. math.random etc
>
> On Wed, Nov 4, 2009 at 11:53 AM, Vaibhav Seth <seth.vaibhav...@...>wrote:
>
>
>
>
>
> > Have you tried deep linking, which is one of the key feature in Flex 3.
> > Hope it will help.
>
> > On Tue, Nov 3, 2009 at 2:21 PM, Leena kale <leenatk...@...> wrote:
>
> >> Hi Friends,
>
> >> This is Leena Kale. I have an issue with refreshing my Application. I want
> >> user to allow the refresh the application by browser or F5 key. I have
> >> already tried the following ways:
>
> >> Using SharedObject
> >> Using Session Object
>
> >> Both are Working fine in Mozilla Firefox and Google Chrome. But the
> >> problem in coming in Internet Explorer. It only works when we change the
> >> *default setting(Automatically)* from Internet Options to  *Every Time I
> >> Visit the Page.*
>
> >> I am unable to understand this behaviour of IE towards the SWF.
>
> >> Now, My Questions are:
>
> >> 1. Is there any way, where we don't need to change this setting of
> >> Internet Explorer and Still it works Fine?
> >> 2. Or We need to change it?
> >> 3. Is there any other way to achieve this functionality apart from What I
> >> tried?
>
> >> Since, at my company our people don't want to change this setting, but
> >> still want to achieve this feature.
> >> I know, you people are Really Good in Flex and are really busy with your
> >> important works. But, I will be really thankful to you, if you people can
> >> spend a minute or two to write the answers for these questions, since this
> >> is very critical for survival this Project.
>
> >> Thanks & Regards:
> >> Leena T. Kale
> >> "If u wish to reach on Highest then start from Lowest....."
>
> >> Contact No: 9764657046
> >> Skype IM - leena.kale
>
> > --
> > Thanks,
> > Vaibhav Seth.
>
> --
> regards
> Jasmeet Singh
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Flex India Community" group.
To post to this group, send email to flex_india@...
To unsubscribe from this group, send email to flex_india+unsubscribe@...
For more options, visit this group at http://groups.google.com/group/flex_india?hl=en
-~----------~----~----~----~------~----~------~--~---