URLLoader sandbox issue

I'm trying to load an XML file which is in the same directory
as the main mxml file. This is the code:
package testXML
import flash.display.Sprite;
import flash.errors.*;
import flash.events.*;
import flash.net.URLLoader;
import flash.net.URLRequest;
import flash.system.Security;
public class LoadXML
public function LoadXML():void {
var request:URLRequest = new URLRequest("Data/xml.xml");
var loader:URLLoader = new URLLoader();
loader.addEventListener(Event.COMPLETE, completeHandler);
trace ("bla");
try {
loader.load(request);
} catch (error:ArgumentError) {
trace("An ArgumentError has occurred.");
} catch (error:SecurityError) {
trace("A SecurityError has occurred.");
trace (error);
private function completeHandler(event:Event):void {
var dataXML:XML = XML(event.target.data);
trace(dataXML.toXMLString());
When tracing the sandboxtype it's localWithNetwork, could
this be the problem?
The solutions I tried are:
- setting in the flex-config.xml file the
<use-network>false</use-network>
- placing the file online in stead of local
Thanks!
Jolijn

I'm trying to load an XML file which is in the same directory
as the main mxml file. This is the code:
package testXML
import flash.display.Sprite;
import flash.errors.*;
import flash.events.*;
import flash.net.URLLoader;
import flash.net.URLRequest;
import flash.system.Security;
public class LoadXML
public function LoadXML():void {
var request:URLRequest = new URLRequest("Data/xml.xml");
var loader:URLLoader = new URLLoader();
loader.addEventListener(Event.COMPLETE, completeHandler);
trace ("bla");
try {
loader.load(request);
} catch (error:ArgumentError) {
trace("An ArgumentError has occurred.");
} catch (error:SecurityError) {
trace("A SecurityError has occurred.");
trace (error);
private function completeHandler(event:Event):void {
var dataXML:XML = XML(event.target.data);
trace(dataXML.toXMLString());
When tracing the sandboxtype it's localWithNetwork, could
this be the problem?
The solutions I tried are:
- setting in the flex-config.xml file the
<use-network>false</use-network>
- placing the file online in stead of local
Thanks!
Jolijn

Similar Messages

  • Oracle Sandbox issue

    Hi,
    I wanted to create a custom webcenter application which is customizable by users at runtime with sandox feature enabled. And i want save all the changes done at runtime by the users as personalization as the changes must not get reflected for the other users.
    The steps i followed are
    1. Created a webcenter application which uses oracle composer.
    2.Implemented ADF security.
    3.Updated the adf-config file with the required namespaces.
    4.Updated the web.xml file to set the appropriate filter mappings.(order of the filter ServletADFFilter,WebCenterComposerFilter & AdfBindingFilter)
    5.Implemented Custom customization and ComposerSessionOptionsFactory classes.
    6.Registered the classes with Oracle composer in adf-config.xml.
    7.Registered a MDS repository in EM.
    Finally to enable sandbox creation, our application should be configured to use the database store. I'm not sure of how to do this.And also how to make the appplication use the MDS repository registered in EM?.
    Without completing this step the sandbox is not getting enabled in the application and i'm not getting the save button in oracle composer toolbar.
    Please help me resolving the issue.
    Thanks.

    Thanks for your point. I changed the adf-config.xml accordingly as
    <metadata-store-usages>
    <metadata-store-usage id="WebCenterFileMetadataStore"
    default-cust-store="true" deploy-target="true">
    <metadata-store class-name="oracle.mds.persistence.stores.db.DBMetadataStore">
    <property name="jndi-datasource"
    value="jdbc/mds/MyMDSRepository"/>
    <property name="partition-name" value="MyMDSPartition"/>
    </metadata-store>
    </metadata-store-usage>
    </metadata-store-usages>
    But when i create an EAR file of my application,the adf-config.xml in the EAR file doesn't have the <metadata-store class-name> tag in the file.Its missing.
    The <metadata-store-usuages> tag in adf-config.xml of the EAR file
    <metadata-store-usages><metadata-store-usage default-cust-store="true" deploy-target="true" id="WebCenterFileMetadataStore"/></metadata-store-usages>
    Also when i start my integrated weblogic server i get the following exceptions
    oracle.mds.internal.lcm.exception.ValidationException: MDS-05790: The metadata store definition is either missing or incorrectly specified in the application configuration.
    oracle.mds.config.MDSConfigurationException: MDS-01335: namespace "/xliffBundles" mapped to metadata-store-usage "WebCenterFileMetadataStore" but its definition was not found in MDS configuration.
    java.lang.RuntimeException: java.lang.reflect.InvocationTargetException
    My adf-config.xml file for reference
    <?xml version="1.0" encoding="windows-1252" ?>
    <adf-config xmlns="http://xmlns.oracle.com/adf/config"
    xmlns:adf="http://xmlns.oracle.com/adf/config/properties"
    xmlns:mdsC="http://xmlns.oracle.com/adf/mds/config">
    <adf:adf-properties-child xmlns="http://xmlns.oracle.com/adf/config/properties">
    <adf-property name="adfAppUID" value="MDS1-7151"/>
    </adf:adf-properties-child>
    <adf-resourcebundle-config xmlns="http://xmlns.oracle.com/adf/resourcebundle/config">
    <applicationBundleName>resourcebundles/xliffBundles/MDS1OverrideBundle</applicationBundleName>
    <bundleList>
    <bundleId override="true">oracle.adf.view.page.editor.resource.ComposerOverrideBundle</bundleId>
    </bundleList>
    </adf-resourcebundle-config>
    <page-editor-config xmlns="http://xmlns.oracle.com/adf/pageeditor/config">
    <session-options-factory>view.AppsSessionOptionsFactoryImpl</session-options-factory>
    <sandbox-namespaces>
    <namespace path="/pages"/>
    <namespace path="/pageDefs"/>
    </sandbox-namespaces>
    </page-editor-config>
    <adf-security-child xmlns="http://xmlns.oracle.com/adf/security/config">
    <JaasSecurityContext initialContextFactoryClass="oracle.adf.share.security.JAASInitialContextFactory"
    jaasProviderClass="oracle.adf.share.security.providers.jps.JpsSecurityContext"
    authorizationEnforce="true"
    authenticationRequire="true"/>
    </adf-security-child>
    <adf-controller-config xmlns="http://xmlns.oracle.com/adf/controller/config">
    <adf-scope-ha-support>true</adf-scope-ha-support>
    <enable-grammar-validation>true</enable-grammar-validation>
    <enable-implicit-savepoints>false</enable-implicit-savepoints>
    </adf-controller-config>
    <mdsC:adf-mds-config version="11.1.1.000">
    <mds-config xmlns="http://xmlns.oracle.com/mds/config">
    <persistence-config>
    <metadata-namespaces>
    <namespace path="/oracle/adf/rc/metadata"
    metadata-store-usage="WebCenterFileMetadataStore"/>
    <namespace path="/persdef/"
    metadata-store-usage="WebCenterFileMetadataStore"/>
    <namespace path="/resourcebundles/"
    metadata-store-usage="WebCenterFileMetadataStore"/>
    <namespace path="/xliffBundles/"
    metadata-store-usage="WebCenterFileMetadataStore"/>
    <!-- Your jspx customizations alone go here -->
    <namespace path="/pages"
    metadata-store-usage="WebCenterFileMetadataStore">
    <namespace-restriction type="CUSTOMIZATIONS"/>
    </namespace>
    <!-- Your pagedef customizations alone go here -->
    <namespace path="/pageDefs"
    metadata-store-usage="WebCenterFileMetadataStore">
    <namespace-restriction type="CUSTOMIZATIONS"/>
    </namespace>
    </metadata-namespaces>
    <metadata-store-usages>
    <metadata-store-usage id="WebCenterFileMetadataStore"
    default-cust-store="true" deploy-target="true">
    <metadata-store class-name="oracle.mds.persistence.stores.db.DBMetadataStore">
    <property name="jndi-datasource"
    value="jdbc/mds/MyMDSRepository"/>
    <property name="partition-name" value="MyMDSPartition"/>
    </metadata-store>
    </metadata-store-usage>
    </metadata-store-usages>
    </persistence-config>
    <cust-config>
    <match>
    <customization-class name="oracle.adf.share.config.UserCC"/>
    </match>
    </cust-config>
    <cache-config>
    <max-size-kb>100000</max-size-kb>
    </cache-config>
    </mds-config>
    </mdsC:adf-mds-config>
    <adf-faces-config xmlns="http://xmlns.oracle.com/adf/faces/config">
    <persistent-change-manager>
    <persistent-change-manager-class>
    oracle.adf.view.rich.change.MDSDocumentChangeManager
    </persistent-change-manager-class>
    </persistent-change-manager>
    <taglib-config>
    <taglib uri="http://xmlns.oracle.com/adf/faces/customizable">
    <tag name="showDetailFrame">
    <persist-operations>
    all
    </persist-operations>
    <attribute name="expansionMode">
    <persist-changes>
    true
    </persist-changes>
    </attribute>
    <attribute name="contentStyle">
    <persist-changes>
    true
    </persist-changes>
    </attribute>
    </tag>
    <tag name="panelCustomizable">
    <persist-operations>
    all
    </persist-operations>
    </tag>
    </taglib>
    <taglib uri="http://xmlns.oracle.com/adf/pageeditor">
    <tag name="layoutCustomizable">
    <attribute name="type">
    <persist-changes>
    true
    </persist-changes>
    </attribute>
    </tag>
    </taglib>
    </taglib-config>
    </adf-faces-config>
    </adf-config>
    So, still the problem persists.I'm not able to enable the sandbox for my application.
    Thanks.
    Edited by: user12952392 on May 28, 2010 7:02 AM

  • Need Help figuring out security sandbox issue after changing webhost

    I'm in the process of switching my webhost from 1&1 shared hosting to a dedicated IP address with a smaller company that specializes in Drupal sites and doesn't know much about flash. 
    1&1 is still the Registrar for my domain, but I've 'parked' YourGods.com on the Holistic servers and have 'pointed' my site to the Holistic DomainNameServers instead of the 1&1 servers.
    After doing this, my Flash site (which is based on the Gaia framework) stopped working, and the Flashplayer Debugger, gave me the following errors:
    Error: Failed to load policy file from xmlsocket://127.0.0.1:5800
    Error: Request for resource at xmlsocket://127.0.0.1:5800 by requestor from http://www.yourgods.com/bin/main.swf has failed because the server cannot be reached.
    *** Security Sandbox Violation ***
    Connection to 127.0.0.1:5800 halted - not permitted from http://www.yourgods.com/bin/main.swf
    Someone helping me on another thread thought 127.0.0.1:5800 might mean the problem had to do with my paths and that I was trying to access something on my local computer, as opposed to being a standard cross-domain issue where one server was trying to access files on another, unrelated server.
    Can someone clarify this?
    I Googled 127.0.0.1:5800 and found some stuff about loops between a server and the originating computer but I'm really not sure how to put all of this together.
    Is there a way (with the flash debugger or other software) to step through my actionscript code with periodic breakpoints so I can figure out what line is causing the problem?
    Or a way to figure out if this is a problem between Holistic and my local computer or Holistic and the 1&1 web servers?
    Thanks for any help.

    Thanks Josh.
    I finally tracked this down last night with help from the folks at actionscript.org.  I hadn't deactivated my Debugger which runs off of a desktop AIR application - so the server was trying to reach my localhost to run its trace statements.  Deactivating the Debugger fixed the problem. 

  • CrossDomain/SandBox Issue with 4.5.1 Upgrade

    So I upgraded to 4.5.1 and dutifully followed the instructions given to create a new workspace, except that the instructions seem to leave out a step. After doing the exports and creating a new workspace I tried to use Import/File System to transfer my project but FB complained that it couldn't import into a workspace with no open projects. Hmmmm....didn't see anything about that in those instructions. So I created a new project named the same as my old and did the import: now when I try to launch it Flash complains of a "SandBox violation" and it seems to be looking for a crossdomain file.
    Why?
    I didn't have this issue before, launching my project hundreds of times. I realize a million things could be wrong but I tried to follow Adobe's instructions (such as they were). Seems to have been a mistake.
    Anyone else having this sort of issue?
    Thanks.

    So I upgraded to 4.5.1 and dutifully followed the instructions given to create a new workspace, except that the instructions seem to leave out a step. After doing the exports and creating a new workspace I tried to use Import/File System to transfer my project but FB complained that it couldn't import into a workspace with no open projects. Hmmmm....didn't see anything about that in those instructions. So I created a new project named the same as my old and did the import: now when I try to launch it Flash complains of a "SandBox violation" and it seems to be looking for a crossdomain file.
    Why?
    I didn't have this issue before, launching my project hundreds of times. I realize a million things could be wrong but I tried to follow Adobe's instructions (such as they were). Seems to have been a mistake.
    Anyone else having this sort of issue?
    Thanks.

  • Sandbox Issues

    How am I supposed to test things if sandbox.itunes.apple.com is down?  What do I need to do differently to test IAPs?

    There is nothing wrong in terms of functionality. I did experience an intermittent loss of power on battery over the last week. I didn't make note of the exact time. I shouldn't say loss of power, but the machine would just go to sleep during use. I would click a key 10 seconds later and it would wake from sleep. Not sure if this would be related, but given: deny mach-lookup com.apple.PowerManagement.controle. it may be possible. Not sure. Besides that, no performance issues.

  • [BDE Sandbox] Issue connecting Informatica Developer to HDFS

    Hi Karol,      Try changing the hostname from sandbox.hortonworks.com to whatever host name you mapped to the VM IP address that you entered into your C:\Windows\System32\drivers\etc\hosts file on the machine you installed the Informatica BDE trial client.      Refer to step 3 on page 3 in the Quick Start Guide at https://community.informatica.com/mpresources/docs/IN_961_BigDataTrialSandboxforHortonworksInstallandConfig.pdf for more information on how to locate and map the VM IP address on the machine where you installed the Informatica BDE trial client. Thanks. Justin-

    Hello, I'm trying out Informatica BDE. I've downloaded sandbox VM and client.I can connect to domain and MRS with no problem, but when I test connection to HDFS I get following error:  Can anyone help me out here?I can't really do PoC without connecting to HDFS  Regards,Karol Ch.

  • SFLIGHT schema load into the SANDBOX issue

    Experts,
    I am following the technical guide to load the sflight schema into the sandbox env. In order to do that, I need to login into the hanaserver and unzip the zip file downloaded from https://sapmats-de.sapag.
    de/download/download.cgi?id=Z0UGTDG927WEEZDB9DXMYV6TSA9SZCLP3SV5N
    V6X9UU0XJ6SFA link.
    I received username and password to login into HANA studio, but unsure of credentials required to login into the server.
    Can someone let me know how to login into the HANA server if you had worked on the SANDBOX env before.
    Thanks in advance.
    Jero

    Hi Juergen
    I have having trouble loading the sflight schema. I was searching for some help and reached this article.
    YOu said that the sflight schema is already present but may be hidden. I am trying to follow your instruction and click on Window -> Preferences -> Administration Console -> Catalog  but nothing happens when i click on catalog. I also tried to search Sflight  from navigator.
    I am using KT  cloud it that makes any difference.
    your help would be much appriciated.
    Thanks
    muntazir

  • Endless portmap iteration (sandbox issue?)

    I use Wuala or online secure storage sharing. Wuala requires portmap to run. To achieve this it puts a plist (com.caleido.portmap.plist) in the /Library/LaunchDaemons folder. However, on my machine this causes portmap to get into an endless iteration because it cannot find an available port. This in turn prevents my NFS server to start (rpcinfo -p <hostname> only shows rpc to be running and none of the NFS daemons).
    The following sequence of events repeats itsself endlessly (from the console log):
    =====
    31/10/2009 10:10:58 sandboxd[107] portmap(2722) deny network-outbound /private/var/tmp/launchd/sock
    31/10/2009 10:10:58 portmap[2722] cannot bind udp: Address already in use
    31/10/2009 10:10:58 com.apple.launchd[1] (com.apple.portmap[2722]) Exited with exit code: 1
    31/10/2009 10:10:58 com.apple.launchd[1] (com.apple.portmap) Throttling respawn: Will start in 10 seconds
    =====
    If I look at my sandbox /usr/share/sandbox/portmap.sb rules, it states that network-outbound is allowed:
    =====
    (version 1)
    (debug deny)
    (import "bsd.sb")
    (allow process-exec (regex #"^/usr/sbin/portmap$"))
    (allow process-fork)
    (allow file-read-data file-read-metadata (regex
    #"^/etc"
    #"^/var"
    #"^/dev/urandom$"))
    (allow network-bind (local ip4))
    (allow network-inbound (local ip4 "*:111"))
    (allow network-outbound)
    (deny default)
    =====
    Any usggestions what could cause this behaviour and what I can do to remediateit?
    Thanks,
    Erik

    I use Wuala or online secure storage sharing. Wuala requires portmap to run. To achieve this it puts a plist (com.caleido.portmap.plist) in the /Library/LaunchDaemons folder. However, on my machine this causes portmap to get into an endless iteration because it cannot find an available port. This in turn prevents my NFS server to start (rpcinfo -p <hostname> only shows rpc to be running and none of the NFS daemons).
    The following sequence of events repeats itsself endlessly (from the console log):
    =====
    31/10/2009 10:10:58 sandboxd[107] portmap(2722) deny network-outbound /private/var/tmp/launchd/sock
    31/10/2009 10:10:58 portmap[2722] cannot bind udp: Address already in use
    31/10/2009 10:10:58 com.apple.launchd[1] (com.apple.portmap[2722]) Exited with exit code: 1
    31/10/2009 10:10:58 com.apple.launchd[1] (com.apple.portmap) Throttling respawn: Will start in 10 seconds
    =====
    If I look at my sandbox /usr/share/sandbox/portmap.sb rules, it states that network-outbound is allowed:
    =====
    (version 1)
    (debug deny)
    (import "bsd.sb")
    (allow process-exec (regex #"^/usr/sbin/portmap$"))
    (allow process-fork)
    (allow file-read-data file-read-metadata (regex
    #"^/etc"
    #"^/var"
    #"^/dev/urandom$"))
    (allow network-bind (local ip4))
    (allow network-inbound (local ip4 "*:111"))
    (allow network-outbound)
    (deny default)
    =====
    Any usggestions what could cause this behaviour and what I can do to remediateit?
    Thanks,
    Erik

  • Issue with NativeProcess sandboxing

    I'm not complete sure that this is a sandboxing issue, but it seems like it is. I'm only not sure because I don't understand why some things here are being excluded and some aren't.
    Basically I'm writing a companion app for some other software and am using REG.EXE on Windows to determine which software is installed or not.
    If from the command line I type:
    reg QUERY HKLM\SOFTWARE\MyKey
    I get back:
    HKEY_LOCAL_MACHINE\SOFTWARE\MyKey\Key1
    HKEY_LOCAL_MACHINE\SOFTWARE\MyKey\Key2
    HKEY_LOCAL_MACHINE\SOFTWARE\MyKey\Key3
    HKEY_LOCAL_MACHINE\SOFTWARE\MyKey\Key4
    In my app I'm using this code:
    var processInfo:NativeProcessStartupInfo = new NativeProcessStartupInfo();
    processInfo.executable = new File("C:\\Windows\\System32\\reg.exe");
    processInfo.arguments = new <String>["QUERY", "HKLM\\SOFTWARE\\MyKey"];
    var process:NativeProcess = new NativeProcess();
    process.addEventListener(ProgressEvent.STANDARD_OUTPUT_DATA, onOutputData);
    process.addEventListener(ProgressEvent.STANDARD_ERROR_DATA, onErrorData);
    process.addEventListener(NativeProcessExitEvent.EXIT, onExit);
    process.addEventListener(IOErrorEvent.STANDARD_OUTPUT_IO_ERROR, onIOError);
    process.addEventListener(IOErrorEvent.STANDARD_ERROR_IO_ERROR, onIOError);
    process.start(processInfo);
    Now, for whatever reason I'm only getting this output in my app
    HKEY_LOCAL_MACHINE\SOFTWARE\MyKey\Key3
    If I try to access Key1, Key2, Key4 I get an error that the key is invalid even though they are there. The only reason I would doubt that this is a sandbox issue is that I thought these values would all be stored in the same registry file.
    Anything that could help me solve this problem would be appreciated.

    It would be ideal if you could implement MIDI interface natively.

  • Loading a remote SWF via SWFLoader Issue

    I have a simple flex app which loads an external XML into an
    arrayCollection using HTTPService send method. This works fine as
    both a stand-alone, or when loaded into it's parent as a LOCAL file
    via the SWFLoader tag. However, when I place this child file onto a
    remote server and try to load it into the parent which resides on
    my desktop, the ArrayCollection default resultFormat of the send
    method triggers the following runtime error (listed below). I don't
    think it's a sandbox issue because when I change result format to
    e4x, it works fine remotely. I've been hitting a wall on this for
    days now... Any insight would be greatly appreciated and thanks to
    all in advance!!!
    PARENT SWF (resides on local desktop)
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    layout="vertical" initialize="initData()">
    <mx:Script>
    <![CDATA[
    public var baseURL:String;
    public function initSWF(swfURL:String):void {
    remote_swf.load(swfURL);
    public function initData():void
    baseURL = "
    http://blahblahblah";
    Security.allowDomain(baseURL);
    ]]>
    </mx:Script>
    <!-- WORKS when loading child swf LOCALLY -->
    <mx:Button label="Load LOCAL SWF APP"
    click="initSWF('remoteSWF.swf')"/>
    <!-- DOES NOT WORK when loading child swf REMOTELY -->
    <mx:Button label="Load REMOTE SWF APP" click="initSWF('
    http://blahblahblah/remoteSWF.swf')"/>
    <!-- LOADER -->
    <mx:SWFLoader height="100%" width="100%" id="remote_swf"
    autoLoad="false" visible="true" scaleContent="false"/>
    </mx:Application>
    CHILD SWF (resides on remote server)
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    layout="absolute" creationComplete="getXMLData()">
    <mx:HTTPService id="myTeams" url="
    http://blahblahblah/xml/myXML.xml"/>
    <mx:Script>
    <![CDATA[
    import mx.controls.Alert;
    import mx.rpc.events.ResultEvent;
    import mx.collections.ArrayCollection;
    public function getXMLData():void
    Alert.show(Security.sandboxType);
    myTeams.send();
    ]]>
    </mx:Script>
    <mx:Label text="THIS IS THE LOADED SWF WHICH HAS JUST
    PERFORMED A SEND ON HTTP SERVICE TO CREATE ARRAY
    COLLECTION"></mx:Label>
    </mx:Application>
    ------------ RUNTIME ERROR ---------------------------------
    ArgumentError: Error #1063: Argument count mismatch on
    Object/
    http://adobe.com/AS3/2006/builtin::hasOwnProperty().
    Expected 0, got 2.
    at mx.rpc.xml::SimpleXMLDecoder/decodeXML()
    at mx.rpc.xml::SimpleXMLDecoder/decodeXML()
    at mx.rpc.xml::SimpleXMLDecoder/decodeXML()
    at mx.rpc.http::HTTPService/
    http://www.adobe.com/2006/flex/mx/internal:rocessResult()
    at mx.rpc::AbstractInvoker/
    http://www.adobe.com/2006/flex/mx/internal::resultHandler()
    at mx.rpc::Responder/result()
    at mx.rpc::AsyncRequest/acknowledge()
    at :irectHTTPMessageResponder/completeHandler()
    at
    flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunctio
    n()
    at flash.events::EventDispatcher/dispatchEvent()
    at
    flash.net::URLLoader/flash.net:URLLoader:nComplete()

    After further investigations, it appears that the problem might be, due the fact that in the remote (loaded) swf, the following is null:
    var sm:ISystemManager = ISystemManager(SystemManagerGlobals.topLevelSystemManagers[0]);
    sm.swfBridgeGroup <----- equals null
    I tried creating the swfBridgeGroup in the local (loading) swf, but the loaded one still thinks it is null.
    Any ideas?

  • Security Issues while calling Web Service

    Hello,
    I have designed a flex client that calls .NET web service and
    displays the results in the data grid. The application executed
    properly when I launch it from the development (D:\FlexTest\bin),
    the one that I specified while creating Flex Project (FlexTest).
    However, if I copy the same files (or the whole folder) to another
    location on my laptop, I receive the following error.
    [RPC Fault faultString="Security error accessing url"
    faultCode="Channel.Security.Error" faultDetail="Unable to load
    WSDL. If currently online, please verify the URI and/or format of
    the WSDL (
    http://192.168.0.101/AjaxServiceInvoker2/AjaxServiceInvoker.asmx?wsdl)"
    at mx.rpc.soap::WSDLParser/::dispatchFault()
    at mx.rpc.soap::WSDLParser/
    http://www.adobe.com/2006/flex/mx/internal::httpFaultHandler()
    at
    flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at mx.rpc::AbstractInvoker/
    http://www.adobe.com/2006/flex/mx/internal::dispatchRpcEvent()
    at mx.rpc::AbstractInvoker/
    http://www.adobe.com/2006/flex/mx/internal::faultHandler()
    at mx.rpc::Responder/fault()
    at mx.rpc::AsyncRequest/fault()
    at ::DirectHTTPMessageResponder/securityErrorHandler()
    at
    flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at flash.net::URLLoader/flash.net:URLLoader::redirectEvent()
    I incur the same problem when I place the same file on my
    laptop's web-server. Can anyone tell why Flash Runtime could not
    find the wsdl file?
    Regards,
    Jehanzeb

    I believe this is a security sandbox issue. You will need a
    crossdomain.xml file on the server that is serving the webService.
    Check the docs, archives, and google for more detail.
    Tracy

  • SWF download issue

    Hi
    I am facing a very strange problem. I have created a flex
    application successfully. I have tested it on localhost as well as
    on intranet and it worked fine for both. But when i hosted it on
    the server, I can to know that the page embedding that swf file
    doesn't display, while swf file is still there. I can't figure out
    what is the real issue. Can someone help me out by giving
    suggestions?
    Regards
    Saqib Rasheed

    Security sandbox issue?
    Tracy

  • Coreaudiod sandbox deny AKAI EIE usb

    After installing  Mountain Lion, AKAI EIE Pro device stopped working (interface is not visible in Sound panel). System log points to sandbox issue
    e.g.
    sandboxd[517] ([282]): coreaudiod(282) deny file-write-create /private/var/empty/AkaiEIE.usbsettings.xml
    is there any workaround or driver needs to be "sandboxed" ?

    We've been talking about it here: http://community.akaipro.com/akai_professional/topics/drivers_for_eie_pro_and_mo untain_lion
    According to their twitter feed, they said the drivers will be out soon. However, they also tweeted:
    Akai_Pro
    It is expected today Apple will release Mountain Lion.  We have tested our products and will provide compatibility information shortly.
    7/25/12 4:29 AM
    when Moutain Lion came out. Guess they didn't get the dev preview.

  • After upgrade to CF9, making a change to a CFC blows up sandbox security and CF in general

    Since we've upgraded from CF8 to CF9 (with Updater 1), any change to the CFCs we use in a common directory cause the following error to be thrown:
    Security: The requested template has been denied access to C:\Jrun4\servers\cfusion\cfusion-ear\cfusion-war\WEB-INF\cfclasses\cfevents2ecfc116422055 2.class.
    The following is the internal exception message: access denied
    (java.io.FilePermission C:\Jrun4\servers\cfusion\cfusion-ear\cfusion-war\WEB-INF\cfclasses\cfevents2ecfc116422055 2.class read)
    Coldfusion cannot determine the line of the template that caused this error. This is often caused by an error in the exception handling subsystem.
    ... at this point any requests to any of our other CF sites (and sandboxes) on this server fail with an error similar to the above.  I need to restart the CF service and all is well again.  Also note my earlier thread http://forums.adobe.com/thread/663288 related to sandboxing issues in CF9.
    I've manually rebuilt all the sandboxes one by one, hoping to eliminate this problem, but it still persists.

    Stack trace below (IP address and path to site content edited).   I can also recreate the error by simply going into CF admin and editing a sandbox path and saving the settings, then hitting the web root from a browser.  Note the "1510154633" part of the class name changes on every hit.
    The web site you are accessing has experienced an unexpected error.
    Please contact the website administrator.
    The following information is meant for the website developer for debugging purposes.
    Error Occurred While Processing Request
    Security: The requested template has been denied access to C:\JRun4\servers\cfusion\cfusion-ear\cfusion-war\WEB-INF\cfclasses\cfapp2ecfc1510154633.c lass.
    The following is the internal exception message: access denied (java.io.FilePermission C:\JRun4\servers\cfusion\cfusion-ear\cfusion-war\WEB-INF\cfclasses\cfapp2ecfc1510154633.c lass read)
    ColdFusion cannot determine the line of the template that caused this error. This is often caused by an error in the exception handling subsystem.
    Resources:
        * Check the ColdFusion documentation to verify that you are using the correct syntax.
        * Search the Knowledge Base to find a solution to your problem.
    Browser       Mozilla/5.0 (Windows; U; Windows NT 5.2; en-US; rv:1.9.1.10) Gecko/20100504 Firefox/3.5.10 (.NET CLR 3.5.30729)
    Remote Address       1.2.3.4
    Referrer      
    Date/Time       30-Jun-10 06:31 PM
    Stack Trace
    java.security.AccessControlException: access denied (java.io.FilePermission C:\JRun4\servers\cfusion\cfusion-ear\cfusion-war\WEB-INF\cfclasses\cfapp2ecfc1510154633.c lass read) at cfApplication2ecfm1979253838.runPage(F:\MySites\Site1\Application.cfm:16)
    java.security.AccessControlException: access denied (java.io.FilePermission C:\JRun4\servers\cfusion\cfusion-ear\cfusion-war\WEB-INF\cfclasses\cfapp2ecfc1510154633.c lass read)
        at java.security.AccessControlContext.checkPermission(AccessControlContext.java:323)
        at java.security.AccessController.checkPermission(AccessController.java:546)
        at java.lang.SecurityManager.checkPermission(SecurityManager.java:532)
        at java.lang.SecurityManager.checkRead(SecurityManager.java:871)
        at java.io.FileInputStream.<init>(FileInputStream.java:100)
        at coldfusion.runtime.TemplateClassLoader.getClassBytes(TemplateClassLoader.java:257)
        at coldfusion.runtime.TemplateClassLoader.access$300(TemplateClassLoader.java:50)
        at coldfusion.runtime.TemplateClassLoader$TemplateCache$1.fetch(TemplateClassLoader.java:401 )
        at coldfusion.util.LruCache.get(LruCache.java:180)
        at coldfusion.runtime.TemplateClassLoader$TemplateCache.fetchSerial(TemplateClassLoader.java :362)
        at coldfusion.util.AbstractCache.fetch(AbstractCache.java:58)
        at coldfusion.util.SoftCache.get_statsOff(SoftCache.java:133)
        at coldfusion.util.SoftCache.get(SoftCache.java:81)
        at coldfusion.runtime.TemplateClassLoader.findClass(TemplateClassLoader.java:591)
        at coldfusion.cfc.ComponentProxyFactory.getProxy(ComponentProxyFactory.java:56)
        at coldfusion.runtime.CFPage.CreateObject(CFPage.java:4781)
        at coldfusion.runtime.CFPage.CreateObject(CFPage.java:4795)
        at cfApplication2ecfm1979253838.runPage(F:\MySites\Site1\Application.cfm:16)
        at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:231)
        at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:416)
        at coldfusion.filter.CfincludeFilter.invoke(CfincludeFilter.java:65)
        at coldfusion.filter.CfincludeFilter.include(CfincludeFilter.java:33)
        at coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:261)
        at coldfusion.filter.RequestMonitorFilter.invoke(RequestMonitorFilter.java:48)
        at coldfusion.filter.MonitoringFilter.invoke(MonitoringFilter.java:40)
        at coldfusion.filter.PathFilter.invoke(PathFilter.java:87)
        at coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:70)
        at coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistenceFilter.java:2 8)
        at coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:38)
        at coldfusion.filter.NoCacheFilter.invoke(NoCacheFilter.java:46)
        at coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:38)
        at coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22)
        at coldfusion.filter.CachingFilter.invoke(CachingFilter.java:53)
        at coldfusion.CfmServlet.service(CfmServlet.java:200)
        at coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:89)
        at jrun.servlet.FilterChain.doFilter(FilterChain.java:86)
        at coldfusion.monitor.event.MonitoringServletFilter.doFilter(MonitoringServletFilter.java:42 )
        at coldfusion.bootstrap.BootstrapFilter.doFilter(BootstrapFilter.java:46)
        at jrun.servlet.FilterChain.doFilter(FilterChain.java:94)
        at jrun.servlet.FilterChain.service(FilterChain.java:101)
        at jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:106)
        at jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)
        at jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:286)
        at jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:543)
        at jrun.servlet.jrpp.JRunProxyService.invokeRunnable(JRunProxyService.java:203)
        at jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:428)
        at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)

  • Unpredictable download issues using URLStream

    Hi, I have an application that uses URLStream in an AIR desktop application to download large files from Amazon S3.
    The problem is that on about 10% of the installs (around 1000 or so different computers) URLStream will fail with a stream error #2032. There does not seem to be any rhyme or reason to why these downloads are failing. If you take the URL request address AIR is making directly out of a program like fiddler and paste it into a browser it works fine so it is not an address issue. There does not appear to be any commonality between the systems that are having the problem. It is happening on different OS's (XP, Vista, Win 7, OSX) all with different firewalls (or no firewall) and different anti-virus programs (or no anti-virus). The only thing that seems to be consistent is that the installs that are experiencing this error only fail when requesting files over 5GB in size, all downloads under 5GB work fine for this 10% (all downloads of all sizes work for the other 90%).
    When the download fails it fails immediately, it is not timing out. It looks a security sandbox issue of some sort, like a cross domain issue, but this is an AIR app so cross domain issues should not apply and even if I do put a cross-domain file on the server it does not solve the problem. Any help would be GREATLY appreciated! Thanks.

    Hi,
    I am using Tortoise SVN 1.7.8 for my SVN repository.Data Modeler use SVN client 1.6 and it's not compatible with 1.7 client, so some problems could be as result of using Tortoise SVN 1.7 client together with Data Modeler
    I'll recommend the following directory structure:
    svnrep\trunk\warehouse\modelA
    svnrep\trunk\warehouse\modelZ
    svnrep\trunk\warehouse\system_types
    I was able to add quite a few other models to it all successfully because I never received a prompt to choose versioned folder for system typesYou won't get that question(prompt) if "system data types" folder is recognized as versioned - probably there is an influence by Tortoise SVN 1.7 client when it's not recognized as versioned.
    Otherwise you can set "system data types" folder to versioned one in preferences even before you start to deal with models and you'll never get the prompt for that folder.
    Philip

Maybe you are looking for

  • Ipod update error message says can't write or read to IUPOD

    i have itunes 7.0.1 and a 20gb ipod. i am trying to update/reload the ipod from my itunes library. my itunes library is 24gb..... i have reformatted the ipod to factory settings and deselected the podcast category and have failed at loading the ipod.

  • Canvio External Hard Drive does not appear in MY COMPUTER

    Sorry if the subject is in wrong section of the forum. I bought an External Hard Drive to use with my Windows 7 laptop. When connecting, sounds like a new device is connected, also appears listed in DEVICES & PRINTERS, but does not appear in MY COMPU

  • Recon account balance

    Hi, We have 5 Recon accounts for Vendor masters. now we want to see balances in local currency each recon account wise. When i execute the TC:S_ALR_87012082 it will show only 1 recon acct balance. Is it possible to show balances in local currency as

  • Perl script seems to hang

    I'm trying to get the perl scripts that launches our iTunesU page to work but I came to a stand still, quite literally. I go to our URL, iTunes launches, it selects the Music Store but nothing comes up), then it goes to our itunes.pl script and it si

  • Multiple forms in jsp

    Hello, I want to show/hide the forms based on the item selected in my drop down list. So bsaically my main form will have a drop down list and a default value selected and a small form below it with some controls in it specific to that selection. Whe