Re: [flexcoders] Security Sandbox Violation for module accessing localhost rest service in dev

2012-02-03 Thread Alex Harui
Use a testing server, don’t run from file:// On 2/2/12 9:45 AM, Greg Lafrance glafra...@chikaradev.com wrote: Our app has a main module with link button, and clicking each link button loads different modules in the main content area. For only one module, we get a Security Sandbox

[flexcoders] Security Sandbox Violation for module accessing localhost rest service in dev

2012-02-02 Thread Greg Lafrance
Our app has a main module with link button, and clicking each link button loads different modules in the main content area. For only one module, we get a Security Sandbox Violation when we try to do a multipart post of image data. I can't find anything significantly different about this

[flexcoders] *** Security Sandbox Violation ***

2010-09-01 Thread Yu, Deyang
I am building a Flex portal. Which has main application and several sub-applications. I am using sandboxed application. I do have crossdomain.xml defined in both main application and sub applications. And in the main application, I used the swfloader like : mx:SWFLoader id=couponApp width=100%

Re: [flexcoders] *** Security Sandbox Violation ***

2010-09-01 Thread Alex Harui
If you get that output but the application does not halt, then you can ignore it. If you want it to be sandboxed, then you can’t access things in it. You would not need a crossdomain.xml file. If you are using Flex 4, make sure you added the option

RE: [flexcoders] *** Security Sandbox Violation ***

2010-09-01 Thread Yu, Deyang
PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] *** Security Sandbox Violation *** If you get that output but the application does not halt, then you can ignore it. If you want it to be sandboxed, then you can't access things in it. You would not need a crossdomain.xml file

Re: [flexcoders] *** Security Sandbox Violation ***

2010-09-01 Thread Alex Harui
[mailto:flexcod...@yahoogroups.com] On Behalf Of Alex Harui Sent: Wednesday, September 01, 2010 12:40 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] *** Security Sandbox Violation *** If you get that output but the application does not halt, then you can ignore it. If you want

RE: [flexcoders] *** Security Sandbox Violation ***

2010-09-01 Thread Yu, Deyang
SDK 3.3 From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Alex Harui Sent: Wednesday, September 01, 2010 6:28 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] *** Security Sandbox Violation *** Which version of Flex are you using? On 9/1/10 9:50 AM

Re: [flexcoders] *** Security Sandbox Violation ***

2010-09-01 Thread Alex Harui
: SDK 3.3 From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Alex Harui Sent: Wednesday, September 01, 2010 6:28 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] *** Security Sandbox Violation *** Which version of Flex are you using? On 9/1/10 9:50 AM

[flexcoders] Security sandbox violation

2010-05-24 Thread Richard Rodseth
I'm creating a demo swf that won't attach to a server and may be hosted, or launched from the desktop. I wish to externalize some data in a separate xml or text file that will live beside the SWF rather than being embedded in it (actually I may need both). What's the best approach here? In using

Re: [flexcoders] Security sandbox violation

2010-05-24 Thread Oleg Sivokon
Please correct me if I'm wrong, but I think that if you launch it in standalone player, you shouldn't get the security error, well, maybe for system or read-only files, or, maybe due to other system restrictions, but generally it should just work...

Re: [flexcoders] Security sandbox violation

2010-05-24 Thread Richard Rodseth
Yes, that's what I'm seeing with both URLLoader and HTTPService. So I guess my question becomes: How do you debug this stuff in FB ? On Mon, May 24, 2010 at 12:18 PM, Oleg Sivokon olegsivo...@gmail.comwrote: Please correct me if I'm wrong, but I think that if you launch it in standalone

Re: [flexcoders] Security sandbox violation

2010-05-24 Thread Oleg Sivokon
Sorry, are you running it in standalone player or in browser? There shouldn't be a problem if you run it in standalone player.

Re: [flexcoders] Security sandbox violation

2010-05-24 Thread Richard Rodseth
Potentially both. The client wishes to host it on a web server (with no app server/db access) but it could also get run from the desktop, unless we provide the wrapper as part of our solution. The browser version is required. On Mon, May 24, 2010 at 12:48 PM, Oleg Sivokon

Re: [flexcoders] Security sandbox violation

2010-05-24 Thread Richard Rodseth
And both seem to work when I'm launching from the desktop, but not from the debugger. On Mon, May 24, 2010 at 1:19 PM, Richard Rodseth rrods...@gmail.com wrote: Potentially both. The client wishes to host it on a web server (with no app server/db access) but it could also get run from the

Re: [flexcoders] Security sandbox violation

2010-05-24 Thread Oleg Sivokon
Not sure I get it, how do you launch that from debugger? There are several options available in FB (and few more in SDK and in alternative debuggers), you can launch in browser, and if you have debug player installed there, it will start the debugger client in FB, or, you can launch in standalone

Re: [flexcoders] Security sandbox violation

2010-05-24 Thread Richard Rodseth
It's possible I have multiple players on my system, and FB is using a different one. By launch, I just meant using the Run/Launch button within FB as opposed to finding the wrapper html in the Finder and opening it. On Mon, May 24, 2010 at 2:04 PM, Oleg Sivokon olegsivo...@gmail.com wrote:

Re: [flexcoders] Security sandbox violation

2010-05-24 Thread Oleg Sivokon
When you click launch it may either launch in browser or in standalone player. Which one does it launch?

Re: [flexcoders] Security sandbox violation

2010-05-24 Thread Richard Rodseth
Standard behavior in FB is to launch in browser (the html-wrapper folder gets copied to bin-debug with template items filled in. I'm guessing you aren't an FB user - I'm not away of any other way to launch from within FB. On Mon, May 24, 2010 at 3:14 PM, Oleg Sivokon olegsivo...@gmail.com wrote:

Re: [flexcoders] Security sandbox violation

2010-05-24 Thread Oleg Sivokon
Well, I am, but I usually compile with Ant and launch the player from the build script. So, I really didn't remember which are the default settings. Well, that's not really related. In your case you'd need to configure the builder to launch whatever it compiles in the run configuration follow

Re: [flexcoders] Security sandbox violation

2010-05-24 Thread Richard Rodseth
Uh oh. So there appears to be a Safari/Firefox difference. I was launching Safari when opening the html file in the Finder, and Firefox in Eclipse. Whichever way I launch (fb or Finder), I get the security error in Firefox, and not in Safari. Sorry for the confusion. So now I'm back to wondering

Re: [flexcoders] Security sandbox violation

2010-05-24 Thread Oleg Sivokon
No, it is different. If the SWF is embedded in HTML page, it requires that you specify the trusted locations on your machine, so it could load content: http://macromedia.com/support/documentation/en/flashplayer/help/settings_manager04.html Read carefully the text in gray under the picture. But, if

Re: [flexcoders] Security sandbox violation

2010-05-24 Thread Richard Rodseth
Not sure I follow that page, but it appears that the -use-network=false compiler flag may be helpful for this scenario. If only FB allowed you to set different compiler options for different applications within a project. On Mon, May 24, 2010 at 4:11 PM, Oleg Sivokon olegsivo...@gmail.com wrote:

[flexcoders] Security sandbox violation and BitmapDraw

2010-03-24 Thread jcastel...@ymail.com
Hi all, I'm having an Security error with a Flex application ... I'm currently using the Open Source Media Framework to display two videos loaded from a website. I added a crossdomain file at the root of the website that I load with

Re: [flexcoders] Security sandbox violation and BitmapDraw

2010-03-24 Thread Oleg Sivokon
Detach the NetStream from the video, draw it, attach the stream again - this bug exists ever since there was this security limitation, my forecast it's not going to be fixed in the upcoming year, so, you ought to be safe using that :D Best. Oleg

[flexcoders] Security sandbox violation error after upgrade to SDK 3.2

2009-03-17 Thread Tim Hoff
Hi all, I just updated the Flex SDK to version 3.2, and am now getting a Security sandbox violation error everytime that I launch an AIR application from Eclipse. I was wondering if anyone else has run into this and might know of a fix. The stack trace is listed below. Thanks, -TH Error

RE: [flexcoders] Security sandbox violation error after upgrade to SDK 3.2

2009-03-17 Thread Alex Harui
: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Tim Hoff Sent: Tuesday, March 17, 2009 4:58 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Security sandbox violation error after upgrade to SDK 3.2 Hi all, I just updated the Flex SDK to version 3.2, and am now

Re: [flexcoders] *** Security Sandbox Violation *** ?

2009-02-02 Thread Alan K
I'm confused, if the app runs fine, then what is the problem? Your getting a sandbox error because your trying to grab data from somewhere besides the host application's home. Alan I get the error message when I debug a application.the application works fine, but I get the message in debug

[flexcoders] *** Security Sandbox Violation *** ?

2009-02-01 Thread markflex2007
I get the error message when I debug a application.the application works fine, but I get the message in debug console. Thanks *** Security Sandbox Violation *** SecurityDomain 'file:///C:/Documents and Settings/mark/My Documents/Flex Builder 3/test0211a/bin-debug/CheckBoxDataGridApp1.html' tried

[flexcoders] Security sandbox violation on Bitmapdata.draw( rtmpVid ) despite crosspolicy.xml

2009-01-16 Thread jwebbsuccess
Take a look at this video player; notice there is an image on screen before the video begins playback: http://www.huffingtonpost.com/2009/01/14/obama-on-inauguration- you_n_157881.html I'm trying to create similar 'preview frame' functionality in my own custom-built Flex/AS3-based RTMP video

RE: [flexcoders] Security sandbox violation on Bitmapdata.draw( rtmpVid ) despite crosspolicy.xml

2009-01-16 Thread Alex Harui
Are you testing this over http:// or file:// If file:// crossdomain.xml may not be in play. From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of jwebbsuccess Sent: Friday, January 16, 2009 11:50 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Security

[flexcoders] Security sandbox violation on Bitmapdata.draw( rtmpVid ) despite crosspolicy.xml

2009-01-15 Thread jwebbsuccess
Take a look at this video player; notice there is an image on screen before the video begins playback: http://www.huffingtonpost.com/2009/01/14/obama-on-inauguration- you_n_157881.html I'm trying to create similar 'preview frame' functionality in my own custom-built Flex/AS3-based RTMP video

[flexcoders] Security sandbox violation on Bitmapdata.draw( rtmpVid ) despite crosspolicy.xml

2009-01-15 Thread jwebbsuccess
Take a look at this video player; notice there is an image on screen before the video begins playback: http://www.huffingtonpost.com/2009/01/14/obama-on-inauguration- you_n_157881.html I'm trying to create similar 'preview frame' functionality in my own custom-built Flex/AS3-based RTMP video

[flexcoders] Security sandbox violation on Bitmapdata.draw( rtmpVid ) despite crosspolicy.xml

2009-01-15 Thread jwebbsuccess
Take a look at this video player; notice there is an image on screen before the video begins playback: http://www.huffingtonpost.com/2009/01/14/obama-on-inauguration- you_n_157881.html I'm trying to create similar 'preview frame' functionality in my own custom-built Flex/AS3-based RTMP video

[flexcoders] security sandbox violation in standalone player but not in browser

2009-01-07 Thread Maciek Sakrejda
(sorry if this is a dupe, but the message I sent yesterday still hasn't posted to the list--they're usually up within minutes) Our application has been working fine in various browsers. I'm trying to get it to work in the standalone player (version 9 debug and 10 debug--same behavior--for Linux)

[flexcoders] security sandbox violation in standalone player but not in browser

2009-01-06 Thread Maciek Sakrejda
Our application has been working fine in various browsers. I'm trying to get it to work in the standalone player (version 9 debug and 10 debug--same behavior--for Linux) for automated testing, but I'm hitting some security sandbox violations: *** Security Sandbox Violation *** Connection to

RE: [flexcoders] security sandbox violation in standalone player but not in browser

2009-01-06 Thread Alex Harui
...@yahoogroups.com] On Behalf Of Maciek Sakrejda Sent: Tuesday, January 06, 2009 6:37 PM To: flexcoders Subject: [flexcoders] security sandbox violation in standalone player but not in browser Our application has been working fine in various browsers. I'm trying to get it to work in the standalone player

[flexcoders] Security sandbox violation: local SWF files cannot use the LoaderContext.securityDomain property

2008-11-17 Thread Ward Loockx
Hello, When I'm trying to load images from a remote server I get the following error message.. *Security sandbox violation: local SWF files cannot use the LoaderContext.securityDomain property* I've been googling and nothing that works for me. When I put the swf on the remote server it

Re: [flexcoders] Security Sandbox Violation message

2008-11-17 Thread anuj sharma
When I got this error in my app I set Security.allowDomain(*); I am not sure that's the right way of doing stuff but that did take care of my run time error and make my app up and running. Thxs Anuj On Sun, Nov 16, 2008 at 9:57 PM, brucewhealton [EMAIL PROTECTED]wrote: Hello all, Anyone have

RE: [flexcoders] Security Sandbox Violation message

2008-11-17 Thread Alex Harui
Sent: Monday, November 17, 2008 10:00 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Security Sandbox Violation message When I got this error in my app I set Security.allowDomain(*); I am not sure that's the right way of doing stuff but that did take care of my run time error

[flexcoders] Security Sandbox Violation message

2008-11-16 Thread brucewhealton
Hello all, Anyone have any ideas as to why I would get this message: Security Sandbox Violation? I googled it and came up with a listing where it said that if I was seeing it in Firefox browser to try it in IE browser. I did that and did not get the message when using IE. Note, this

[flexcoders] Security sandbox violation: BitmapData.draw:

2008-09-19 Thread [EMAIL PROTECTED]
I have run into a problem with accessing youtube images. I can access them once but not twice. . Here is the example: http://journeyblueheaven.com/index.php You can click on Watch once, and it loads an XML file from a youtube rss, and diplays the results, including images from youtube. So far

Re: [flexcoders] Security sandbox violation: BitmapData.draw:

2008-09-19 Thread [EMAIL PROTECTED]
I made a workaround by using static images on my server, so the link does not make the error anymore. It works fine in this situation, but I'd still sure like to know what the answer to this is because I've run into it before. [EMAIL PROTECTED] wrote: I have run into a problem with accessing

[flexcoders] Security sandbox violation error with socket connection

2008-07-16 Thread Greg Hess
Hi All, I am stumped. I had to use a socket to connect to a fully RESTfull (PUT, DELETE ect..) web service endpoint on our server. It has been testing fine when running from my local file system (actually have been wondering why I am not getting sandbox errors as this is definately not connecting

RE: [flexcoders] Security sandbox violation error with socket connection

2008-07-16 Thread Tracy Spratt
] Security sandbox violation error with socket connection Hi All, I am stumped. I had to use a socket to connect to a fully RESTfull (PUT, DELETE ect..) web service endpoint on our server. It has been testing fine when running from my local file system (actually have been wondering why I am

Re: [flexcoders] Security sandbox violation error with socket connection

2008-07-16 Thread Greg Hess
] Security sandbox violation error with socket connection Hi All, I am stumped. I had to use a socket to connect to a fully RESTfull (PUT, DELETE ect..) web service endpoint on our server. It has been testing fine when running from my local file system (actually have been wondering why I am

RE: [flexcoders] Security sandbox violation error with socket connection

2008-07-16 Thread Tracy Spratt
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Greg Hess Sent: Wednesday, July 16, 2008 3:14 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Security sandbox violation error with socket connection Thanks Tracy, much appreciated. I

Re: [flexcoders] Security sandbox violation error with socket connection

2008-07-16 Thread Greg Hess
, 2008 1:55 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Security sandbox violation error with socket connection Hi All, I am stumped. I had to use a socket to connect to a fully RESTfull (PUT, DELETE ect..) web service endpoint on our server. It has been testing fine when running

[flexcoders] Security sandbox violation when using navigateToURL

2008-01-14 Thread João
Hello, i am having this error when i call a navigateToURL: SecurityError: Error #2137: Security sandbox violation: https://ww3.logo.pt/portal/multimedia/index.swf cannot navigate window _self within http://www.logo.pt/SE7E/cms.aspx (allowScriptAccess is sameDomain). Attempted URL was

[flexcoders] Security sandbox violation 2048

2007-12-06 Thread sarah_e_boys
I was hoping someone could help me with this security violation error I am getting. I recently uploaded my image gallery application to a server and when I try to download an image via a zip file I get this error. It was working fine locally. As a simple test I have used the following code.

Re: [flexcoders] Security sandbox violation 2048

2007-12-06 Thread Tom Chiverton
On Thursday 06 Dec 2007, sarah_e_boys wrote: I was hoping someone could help me with this security violation error I am getting. I recently uploaded my image gallery application to a server and when I try to download an image via a zip file I get this error. It was working fine locally. You

[flexcoders] Security sandbox violation

2007-05-08 Thread thierrybertossa
I have a strange probleme with the security sandbox... I can't load a rss feed when I put my project on my IIS (localhost) I have tried: ?xml version=1.0? !-- http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd -- cross-domain-policy allow-access-from domain=*/ /cross-domain-policy In

RE: [flexcoders] Security sandbox violation

2007-05-08 Thread Alex Harui
The crossdomain.xml must be on www.lemonde.fr From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of thierrybertossa Sent: Tuesday, May 08, 2007 11:34 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Security sandbox violation I have

[flexcoders] Security sandbox violation and socket question

2007-02-19 Thread elad_nyc
Josh Tynjala created the amazing application to connect to AIM (see here: http://www.zeuslabs.us/archives/6/connecting-to-aim-with-actionscript-3- sockets/), however when I try to run it on a remote server it pause for few minutes and than it gives an error messages: Error #2044: Unhandled

Re: [flexcoders] Security sandbox violation and socket question

2007-02-19 Thread Ralf Bokelberg
It is possible, if aimexpress.oscar.aol.com http://aol.com:5190/ provides a crossdomain.xml Cheers Ralf. On 2/19/07, elad_nyc [EMAIL PROTECTED] wrote: Josh Tynjala created the amazing application to connect to AIM (see here:

[flexcoders] Security Sandbox Violation loading localhost based Flash SWF into Flex app during development

2007-01-10 Thread Samuel R. Neff
We have a Flex app that loads a Flash SWF and during development we get a lot of these errors: *** Security Sandbox Violation *** SecurityDomain 'http://localhost/abc.swf?ID=4799' tried to access incompatible context 'file:///C:/Projects/xyz/bin/xyz-debug.html' It doesn't happen when deployed

RE: [flexcoders] Security sandbox violation using PHP, APACHE MYSQL

2006-04-02 Thread Matt Chotin
AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Security sandbox violation using PHP, APACHE MYSQL hi allnot a new question but still can't find the answer... i think this is more of a flash security issue but I get the following error when running my project... Error

[flexcoders] Security sandbox violation using PHP, APACHE MYSQL

2006-03-31 Thread lift69boy
hi allnot a new question but still can't find the answer... i think this is more of a flash security issue but I get the following error when running my project... Error: code:Client.CouldNotDecode string:'Error #2070: Security sandbox violation: caller '%s' may not access Stage owned by

Re: [flexcoders] Security sandbox violation

2006-03-03 Thread Abdul Qabiz
Hi,How are you making AMFPHP connection? Are you using carlaabreu.com/../gateway.php or www.carlaabreu.com/../gateway.php ?I think, if you are trying to access data from a sub domain to main domain, it might be problem...Not sure, check the security whitepaper for the Maths behind it...-abdul

[flexcoders] Security sandbox violation

2006-03-01 Thread jf.saldanha
Hi This error is about cross domain files i think? But today and i put on run the example of Mike Potter http://blogs.adobe.com/mikepotter/ I put the example run onLine that way give the error http://www.carlaabreu.com/amfphp2test.html That way run http://carlaabreu.com/amfphp2test.html The

RE: [flexcoders] Security Sandbox Violation when loading image

2005-10-25 Thread Alon J Salant
:[EMAIL PROTECTED] Sent: Friday, March 25, 2005 10:42 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Security Sandbox Violation when loading image I'm trying to load some images from a different domain than the one my Flex app lives on. When I do, the debugger prints out a bunch of errors

RE: [flexcoders] Security Sandbox Violation when loading image

2005-03-29 Thread Dimitrios Gianninas
he results of the RO call. Jimmy Gianninas Software Developer - Optimal Payments Inc. From: Kristopher Schultz [mailto:[EMAIL PROTECTED] Sent: Monday, March 28, 2005 12:49 PMTo: flexcoders@yahoogroups.comSubject: RE: [flexcoders] Security Sandbox Violation when loading image Well, I figured

RE: [flexcoders] Security Sandbox Violation when loading image

2005-03-29 Thread Matt Chotin
:49 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Security Sandbox Violation when loading image Well, I figured out why I was experiencing different behavior when pulling data in from an XML file vs. pulling it in via a remote object. My remote object method call was returning

RE: [flexcoders] Security Sandbox Violation when loading image

2005-03-28 Thread Kristopher Schultz
Well, I figured out why I was experiencing different behavior when pulling data in from an XML file vs. pulling it in via a remote object. My remote object method call was returning an Array of objects which on the Java side were instances of a simple data object class I had created called

[flexcoders] Security Sandbox Violation when loading image

2005-03-25 Thread Kristopher Schultz
I'm trying to load some images from a different domain than the one my Flex app lives on. When I do, the debugger prints out a bunch of errors like this: *** Security Sandbox Violation *** SecurityDomain 'http://myserver.com/index.mxml?debug=true' tried to access incompatible context

RE: [flexcoders] Security Sandbox Violation when loading image

2005-03-25 Thread Matt Chotin
on crossdomain). Sorry, not very useful I know, Matt From: Kristopher Schultz [mailto:[EMAIL PROTECTED] Sent: Friday, March 25, 2005 10:42 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Security Sandbox Violation when loading image I'm trying to load some images from

Re: [flexcoders] Security Sandbox Violation when loading image

2005-03-25 Thread Manish Jethani
On Fri, 25 Mar 2005 20:32:14 -0800, Matt Chotin [EMAIL PROTECTED] wrote: wonder if Manish ran into this with the map example J The map sample loads images from the same host, but the flickr/delicious sample loads them directly from flickr.com.