Sunday, March 11, 2012

Atlas not working in IE with SSL

Hi Emil,

Strange, I don't think this issue has come up before, though I guess we haven't done much testing over SSL. There was anotherthread about https, but that user had a more complex setup.

To be sure, to service method call you are making is to the same server that hosts the app? If you runfiddler, are all the request that you see using https, or is there indeed a mix?

Thanks
David


Hi David,

Thanks for your reply. I found that the problem wasn't actually with the request at all. It was the PopupBehavior that was creating an iframe using "about:blank" as the source. I changed the line

childFrame.src = "about:blank";

to

childFrame.src = document.createTextNode('');

as suggestedhere.

Emil

This bug also shows up when using the AutoCompleteExtender on SSL.

Seems like the probelm is on line 8698 of the debug version of atlas.js.

Will this be fixed in the next version? When should we expect an update?

Thanks,

Derek


eschutte ,

Can you tell us where it is that you changed the above mentioned line that sets the childFrame.src value? Can I do this from the .aspx / .vb / .cs page, or are you referring to an included .js file?

Thanks,
Andrew


I believe the atlas.js file is being referred to. Cheers.

Use the following in your aspx pages
<atlas:ScriptManager runat="server" ID="ScriptManager1">
<Scripts>
<atlas:ScriptReference Path="~/ScriptLibrary/Debug/Atlas.js" />
<atlas:ScriptReference Path="~/ScriptLibrary/Debug/AtlasRuntime.js" />
</Scripts>
</atlas:ScriptManager>

In Atlas.js & AtlasRuntime.js just replace about:blank with javascript:'' and you are done.
If still getting error you can write tosharma_nishant@.satyam.com ormailtonis@.hotmail.com


Hi,

I'm using September release of Microsoft.Web.Atlas.dll 2.0.50727.60725 as well as UpdatePanelAnimation extenders. How/Where can I get the ScriptLibrary for this release so that I can change about:blank to javascript:?

Thanks & Regards

No comments:

Post a Comment