Flex 3/JS - 打开 sqeezebox 时出现 407 错误
我需要使用挤压盒(与 mootools 1.2.4 结合使用)打开链接。
因此,我创建了一个 test.js (其中包含一个打开挤压盒的函数)、一个 Test.mxml 应用程序(包含一个调用 js 函数的按钮),并在 html 页面中添加了所有脚本。
test.js:
function openSqueezeBox(url){
alert("Tentative d'ouverture de: " + url);
SqueezeBox.initialize();
SqueezeBox.open(url);
};
Test.mxml:
<mx:Script>
<![CDATA[
private function btnHandler1(e:MouseEvent):void{
ExternalInterface.call("openSqueezeBox", 'http://www.google.com');
}
]]>
</mx:Script>
<mx:HBox>
<mx:Button label="google" click="btnHandler1(event)"/>
</mx:HBox>
启动应用程序并单击按钮时,我确实收到了警报窗口。然而,挤压盒没有打开。我收到 407 错误:需要代理身份验证。
我确实在我的工作场所中使用了代理,但是该应用程序是在已经经过身份验证的浏览器窗口中启动的...
我现在不知道该怎么做才能让它工作>_< 因此,如果有人能启发我,我将非常感激 =)
非常感谢您的时间 ;)
问候,
BS_C3
I need to open a link using a squeezebox (in combination with the mootools 1.2.4).
So, I've created a test.js (which contains a function to open a squeezebox), a Test.mxml application (containing a button that calls the js function) and I added all the scripts in the html page.
test.js:
function openSqueezeBox(url){
alert("Tentative d'ouverture de: " + url);
SqueezeBox.initialize();
SqueezeBox.open(url);
};
Test.mxml:
<mx:Script>
<![CDATA[
private function btnHandler1(e:MouseEvent):void{
ExternalInterface.call("openSqueezeBox", 'http://www.google.com');
}
]]>
</mx:Script>
<mx:HBox>
<mx:Button label="google" click="btnHandler1(event)"/>
</mx:HBox>
When launching the application and clicking the button, I do get the alert window. However, the squeezebox is not opening. I get a 407 error: proxy authentication required.
I am indeed behind a proxy in my workplace, however the application is launched in a browser window that's already authenticated...
I do not really now what to do to get it work >_<
So if anyone can enlighten me, it'd be really appreciated =)
Thanks a lot for your time ;)
Regards,
BS_C3
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
外部页面在 IFrame 中加载。您可以尝试在SB中加载图像或普通元素,看看是否会抛出相同的错误。
External pages are loaded in an IFrame. You can try to load images or normal elements in the SB and see if it throws the same error.