Crossdomain.xml trying to Load from default Location

I'm loading data from a remote server, and I've specified a
custom location for my policy file using
System.security.loadPolicyFile( ); ... everything works, and loads
correctly... though I get an error in Firefox and Safari on mac
that its unable to load the file from the root of my Remote server.
In the status log, it shows calls to both my custom location,
and the default location - with the error being on the default
location. Is it possible to suppress the call to the default
location (looking for the file on the server root), so the error
doesn't appear?

Nice one, thanks for the tip kglad. After much studying and reading this weekend based off your reply, I got it
figured out this morning.
Cheers to you,
~Chip

Similar Messages

  • How to create and maintain a backup catalog, separate from default  location,  on and external HD

    How to create and maintain a backup catalog on a separate hd - separate from default location of the catalog?

    Simply copy the LR catalog backup file to another location. It’s quite small and only contains metadata e.g. your edit develop settings, keywords, captions, titles and camera exif data etc.
    The LR backup does not physically copy your image files. So make sure you have a separate system backup for your photo files and folders.

  • I cannot seem to load raw images into LR 2.5.  I've been using this for years.  I always load from memory card, but it gives me an unknown error message.  I tried to load from camera, hard drive, & external drive and still will not work.  I checked import

    I cannot seem to load raw images into LR 2.5.  I've been using this for years.  I always load from memory card, but it gives me an unknown error message.  I tried to load from camera, hard drive, & external drive and still will not work.  I checked import menu and nothing has changed.  I loaded the photos onto my tablet and images are fine, so do not feel it is the memory card.  Any thoughts?

    The error message probably said "unsupported or damaged"
    The T3 requires Lightroom 3.4.1 or later. You can either upgrade to a more current version of Lightroom (version 5.6 is the most recent) or you can use the free Adobe DNG Converter to convert the RAWs to DNG, which should import into Lightroom properly.

  • User trying to authenticate from invalid location

    Hi,
    I have reciently attmepted to upgrade our 5508 DMZ WLC to 7.6.100.0 from 7.2.x - we are using Cisco NAC Guest Server version 2.0.3 for web portal authentication.
    Upon completing the upgrade to the WLC guest users were not able to authenticate and I was seeing the following log message on the NAC server.
    _SYSTEM_ ( - 10.3.240.10) User trying to authenticate from invalid location: [email protected] 2709 05-Mar-2014 18:30:58
    I have seen CSCsq86376 but we are using the IP Address as the attribute.
    Has any one else run into this problem before or could perhaps point me in the right diretion of potential configuraiton to change/further trouble shooting?
    Thank you in advance.

    Hi,
    Any customer that has the calling-station-id attribute on their controller set to MAC address will not pass any authentications, change the attribute to use the IP address instead of the MAC address and then try.

  • Win-7 64bit: moving iTunes media folder from default location to D drive

    Dear all,
    I cannot move iTunes media folder from default location on C drive to D drive on win-7 64 bit.
    What I did was:
    - Under iTunes> Edit > Preferences > Advanced I choosed new location for iTunes media folder on D drive
    - Under iTunes > Library > Organize library > I choose consolidate fiels and then ok ( this should create a new library on new location )
    Next I delete iTunes media folder on C drive and hope that on re-start iTunes goes to new location on D drive and picks new file arrangement.
    But it does not happen - no matter what I do iTunes goes to its default location on C drive ....
    I called apple senior advisor - and she told me that it's kind of "my fault" I have windows7 installed on PC and because iTunes is Mac oriented they will not give me support... And referred me to Microsoft ... What a lousy support!. I paid for it $25!! What for?

    By the way, I followed instructions as per link http://support.apple.com/kb/ht1364 - it did not work either. Can anyone share their success stories ? My C drive is not big and my music library ~ 100gB - I really need to keep iTunes media files in another location ... not a default place under User Login

  • XML won't load from server, loads locally

    I can't seem to get my project to load my XML file when I
    place everything on the server. It works fine when i preview it
    using the Flash Player. But when it's loaded into an HTML page on
    the server I get nothing. I'm using jquery to dynamically insert
    the flash object into the page (In development
    here.). The flash object is
    actually several folders deeper than the page calling it, and the
    XML file is being referenced at the same level as the flash file
    itself. I also went through the trouble of putting a
    crossdomain.xml file on the server (plu.edu) but that didn't seem
    to fix anything.
    Here's my
    zipped
    project.
    Where am I doing wrong?
    Thanks.

    Thanks to everyone who responded to this post. For anyone
    else reading this post trying to get XML to load correctly, my
    problem was pertaining to the path of the XML file. To remedy this
    issue I set a default path that was relative to the .swf file. Then
    I used flashvars in the javascript to pass the location of the XML
    file. This allows me to preview my flex application locally and in
    a production environment when it's inserted into a page. I'll post
    my flex and javascript code for anyone interested. I'm using jquery
    and the flash plugin.
    Thanks.

  • Crossdomain.xml issue - Accessing SAP from adobe FLEX

    Hi All,
    We are in the process of trying to integrate 4 SAP bapis exposed as Web services from adobe flex.
    When we do so we are getting a "security error accessing URL"
    The URL of our flex application is:
    http://10.10.0.48:8081/water0305/iden.html
    The WSDL of the web service is:
    http://10.10.0.66:8001/sap/bc/srt/rfc/sap/ZKK_BAPI_EQMT_DETAIL?sap-client=800&wsdl=1.1
    We looked at various forums and we found that adding a crossdomain.xml file to the root directory
    (at the destination server) will resolve the issue.
    I did implement all those steps on the R/3 side to add a crossdomain.xml to an ABAP WAS.
    crossdomain.xml on WAS
    however i still get those errors(security error accessing URL).
    Below is the code i use to access the SAP web service
    <mx:WebService
    id="EqmtDetailWS" showBusyCursor="true" fault="Alert.show(event.fault.faultString)" >
    <mx:operation name="EqmtDetail" resultFormat="e4x" result="getEquip_result(event);" fault="getFault(event);">
    <mx:request>
    <Equipment></Equipment>
    </mx:request>
    </mx:operation>
    </mx:WebService>
    We are  displaying the SAP info on a map service provided by esri so we included the load operation here.
    <-Loading the wsdl->
    private
    function onExtentChange(event:ExtentEvent):void {
    EqmtDetailWS.wsdl=
    "http://10.10.0.66:8001/sap/bc/srt/rfc/sap/ZKK_BAPI_EQMT_DETAIL?sap-client=800&wsdl=1.1&sap-user=******&sap-password=****&sap-language=EN&~transaction=iw51";
    EqmtDetailWS.loadWSDL();
    <Displaying the info from SAP>
    private function getEquip_result(event:ResultEvent):void {
    equip_desc = event.result.Equitext.Equidescr;
    txtAreaEquipDetail.htmlText = txtAreaEquipDetail.htmlText + "Equi. Desc. : " + event.result.Equitext.Equidescr + "\n";
    var material:String=event.result.Equimaster.Material;
    SAPIDAliasEquipDesc =event.result.Equitext.Equidescr;
    material=material.substring(14,18);
    txtAreaEquipDetail.htmlText = txtAreaEquipDetail.htmlText + "Material : " + material + "\n";
    txtAreaEquipDetail.htmlText = txtAreaEquipDetail.htmlText + "Serial No : " + event.result.Equimaster.Serialno + "\n";
    var costcntr:String=event.result.Equilocation.Costcenter;
    costcntr=costcntr.substring(7,10);
    txtAreaEquipDetail.htmlText = txtAreaEquipDetail.htmlText + "Cost Center : " + costcntr + "\n";
    CustomerID = event.result.Equisales.Customer;
    This is how we load the policy file.
    Security.loadPolicyFile(
    http://10.10.0.66:8001/sap/bc/bsp/sap/zroot/crossdomain.xml);
    This works fine when we run it from the IDE but throws up an error when we deploy it on the server
    So are we missing something ?
    Is there anything else to be done to overcome the security issue ?
    Thanks in advance.
    Regards,
    Karthik.

    Hi Rich,
    I followed the steps in your video when our system was R/3 4.7 (WAS 6.20) and the test worked fine, i.e. accessing the crossdomain by typing http://server:port/crossdomain.xml.
    I followed the same steps with our new version (we're undergoing an upgrade) but I kept getting the error message:
    "BSP Exception: the BSP URL /crossdomain.xml Does Not Contain Any Application Entries".  Then I saw Ivan post suggesting implementing OSS Note 1260386.  I applied the Note but I got the same error message. 
    Then I ran function ICFBUFFER_INIT to make sure the buffer is cleared, cleared the cache in the browser and still got the same error message.
    Our system is ERP 6.0, NetWeaver 7.0, level 17 (BASIS Component is SAPKB70017).
    Please help.  Thank you.
    Achille.

  • Xml file not loading from different server

    Hi,
    I have a simple flash banner that is pulling a number from an xml file on a different server. When it gets to the frame where the number should be it just says "transferring data from eckul.com" and will not actually pull in the number. Unfortunately I can't put the files on the same servers. Any help would be much appreciated, below are the links and the xml code I'm using followed by the action script. Cheers
    http://www.sainters.net/newsletters/2010/flash_test_membership2.html
    http://www.eckul.com/number.xml
    <?xml version="1.0"?>
    <inventors>
        <person>
            <name>892</name>
            </inventors>
    function loadXML(loaded) {
    if (loaded) {
    _root.inventor = this.firstChild.childNodes[0].childNodes[0].firstChild.nodeValue;
    _root.comments = this.firstChild.childNodes[0].childNodes[1].firstChild.nodeValue;
    name_txt.text = _root.inventor;
    comment_txt.text = _root.comments;
    } else {
      trace("file not loaded!");
    xmlData = new XML();
    xmlData.ignoreWhite = true;
    xmlData.onLoad = loadXML;
    xmlData.load("http://www.eckul.com/number.xml");

    so, in frame 1 of your fla before you execute that cross-domain load method, use:
    System.security.loadPolicyFile("http:www.yourcrossdomain.com/subdirectoriesIfNeeded/crossd omain2.xml");
    where the following (crossdomain.xml) is in www.yourcrossdomain.com's root (IF you want to allow allow subdirectory policy files):
    <!DOCTYPE cross-domain-policy SYSTEM "http://www.adobe.com/xml/dtds/cross-domain-policy.dtd">
    <cross-domain-policy>
    <site-control permitted-cross-domain-policies="all"/>
    </cross-domain-policy>
    and in the subdirectory (and its descendents) that you want to allow access put crossdomain2.xml:
    <?xml version="1.0"?>
    <!DOCTYPE cross-domain-policy SYSTEM "http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd">
    <cross-domain-policy>
      <allow-access-from domain="www.thedomainthatstryingtoloadcrossdomaindata.com" />
    </cross-domain-policy>

  • Itunes library files do not move from default location on windows xp - help?

    The hard drive that holds "my documents" is too small to hold my itunes library.  I have followed the directions to move the library files and itunes copied the library files over automatically to the new internal hard drive.  I have confirmed this under the "advanced preferences" under preferences under the edit menu.  On restarting itunes, it re-creates a blank library file in the old default location and changed the folder back to the default one.  The current work around I have is to leave the library files in the old location and periodically move the content to the location I want to prevent the old hard drive from getting full.
    Any suggestions?
    Thanks!

    Go to I tunes store page, look to the far right and click on purchased.

  • IE load is OK, Problem with Firefox...tries to load from local drive

    My own website, in Firefox, opens fine when it is the Home (index.php) page OR a link from my homepage to a third party website. BUT, links from the home page to my other pages do not bring up images, possibly do not use the css (not sure), and try to load from the local drive. IE works with no problem whatsoever.
    I think it may be a problem with the .htaccess file, as deleting/renaming the file makes it worse in both Firefox & IE. Also, the function that is causing the problem is the Apache .htaccess function Mod_rewrite...which can redirect browsers, regardless of what is written in an html or php web page file.
    Turning off the redirect function in .htaccess is worse for Firefox, but (I believe) not for IE. This rewrite function is available with recent versions of Apached, but not older ones.
    Any help would be appreciated. This is starting to get really "old".

    Solved this:
    Turns out that we now require at least "List" permissions for "Everyone" for the root of the partition where the User profiles reside.
    This was not the case on our previous images.
    Hopes this helps someone else.

  • Error -00904 when trying to load from teradata into oracle

    Hi all,
    We are trying to bring some data from a teradata table into an oracle table. We have followed the correct naming conventions for all staging and target tables.
    We always seem to get this error:
    error -00904 invalid identifier
    I know it relates to a tablename issue. But we cannot seem to find any such errors.
    Does it matter the source tablename(in teradata) is pretty long?
    We are using IKM SQL control append for this.
    The same interface used to work when the source was a text file instead.
    We have tested the teradata connections from ODI, are able to see data in the model for the tables.
    Thanks.

    This is the error in operator:
    3707 : 42000 : com.teradata.jdbc.jdbc_4.util.JDBCException: [Teradata Database] [TeraJDBC 12.00.00.110] [Error 3707] [SQLState 42000] Syntax error, expected something like an 'UDFCALLNAME' keyword between '.' and the 'Dec' keyword.
    com.teradata.jdbc.jdbc_4.util.JDBCException: [Teradata Database] [TeraJDBC 12.00.00.110] [Error 3707] [SQLState 42000] Syntax error, expected something like an 'UDFCALLNAME' keyword between '.' and the 'Dec' keyword.
         at com.teradata.jdbc.jdbc_4.util.ErrorFactory.makeDatabaseSQLException(ErrorFactory.java:277)
         at com.teradata.jdbc.jdbc_4.statemachine.ReceiveInitSubState.action(ReceiveInitSubState.java:102)
         at com.teradata.jdbc.jdbc_4.statemachine.StatementReceiveState.subStateMachine(StatementReceiveState.java:285)
         at com.teradata.jdbc.jdbc_4.statemachine.StatementReceiveState.action(StatementReceiveState.java:176)
         at com.teradata.jdbc.jdbc_4.statemachine.StatementController.runBody(StatementController.java:108)
         at com.teradata.jdbc.jdbc_4.statemachine.StatementController.run(StatementController.java:99)
         at com.teradata.jdbc.jdbc_4.Statement.executeStatement(Statement.java:309)
         at com.teradata.jdbc.jdbc_4.Statement.prepareRequest(Statement.java:467)
         at com.teradata.jdbc.jdbc_4.PreparedStatement.<init>(PreparedStatement.java:53)
         at com.teradata.jdbc.jdbc_4.TDSession.createPreparedStatement(TDSession.java:506)
         at com.teradata.jdbc.jdbc_3.ifjdbc_4.TeraLocalPreparedStatement.<init>(TeraLocalPreparedStatement.java:84)
         at com.teradata.jdbc.jdbc_3.ifjdbc_4.TeraLocalConnection.prepareStatement(TeraLocalConnection.java:328)
         at com.teradata.jdbc.jdbc_3.ifjdbc_4.TeraLocalConnection.prepareStatement(TeraLocalConnection.java:149)
         at com.sunopsis.sql.SnpsQuery.a(SnpsQuery.java)
         at com.sunopsis.sql.SnpsQuery.a(SnpsQuery.java)
         at com.sunopsis.sql.SnpsQuery.updateExecStatement(SnpsQuery.java)
         at com.sunopsis.sql.SnpsQuery.executeQuery(SnpsQuery.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.execCollOrders(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTaskTrt(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSqlC.treatTaskTrt(SnpSessTaskSqlC.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTask(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessStep.treatSessStep(SnpSessStep.java)
         at com.sunopsis.dwg.dbobj.SnpSession.treatSession(SnpSession.java)
         at com.sunopsis.dwg.cmd.DwgCommandScenario.treatCommand(DwgCommandScenario.java)
         at com.sunopsis.dwg.cmd.DwgCommandBase.execute(DwgCommandBase.java)
         at com.sunopsis.dwg.cmd.e.k(e.java)
         at com.sunopsis.dwg.cmd.e.A(e.java)
         at com.sunopsis.dwg.DwgJv.treatCmd(DwgJv.java)
         at com.sunopsis.dwg.DwgJv.main(DwgJv.java)
         at oracle.odi.Agent.main(Agent.java)

  • Move Syncservices from default location.

    Hi, when I sync my iPhone on my corporate computer, the sync data fills up my allocated personal storage space. I want to move the sync location (syncservices folder) to another drive. Is this possible?
    Best regards,
    Martin Claesson

    Not sure what you've tried. Do you want to move the actual holiday music files? Or just temporarily add the holiday music to your main library?
    I just have it all in my main library, and all properly tagged with genre=Holiday. Then I have a smart playlist where Genre=Holiday. Now that I don't want to hear any of that stuff anymore, I went into the smart playlist for HOliday, and control-checkmarked it.
    Now, none of that stuff will play - it is unchecked, so will get skipped during playback and shuffle.

  • Safari often locks up when trying to load from a certain site

    Certain pages in my county government website cause safari to lock up. I pretty much have this problem only on the county website and only on certain pages. Happens regardless of pop-up blocker status or cookie acceptance. Any suggestions?

    Ok.... in that case, boot from your install disc. Run Disk Utility in case there are errors on the startup disk that need repairing.
    Insert your install disk and Restart, holding down the "C" key until grey Apple appears.
    Go to Installer menu and launch Disk Utility.
    (In Mac OS X 10.4 or later, you must select your language first from the installer menu)
    Select your HDD (manufacturer ID) in the left panel.
    Select First Aid in the Main panel.
    (Check S.M.A.R.T Status of HDD at the bottom of right panel. It should say: Verified)
    Click Repair Disk on the bottom right.
    If DU reports disk does not need repairs quit DU and restart.
    If DU reports errors Repair again and again until DU reports disk is repaired.
    When you are finished with DU, from the Menu Bar, select Utilities/Startup Manager.
    Select your start up disk and click Restart
    While you have the Disk Utility window open, look at the bottom of the window. Where you see Capacity and Available. *Make sure there is always 10% to 15% free disk space*

  • Load XML file from different location?

    Hi All,
    I've been going through an exercise by Karl Matthews to load XML data into an AIR App:
    http://www.adobe.com/devnet/air/flex/articles/xml_viewer_on_air.html
    but I would like to change where the XML file used in the project is retrieved from.
    Currently the XML file is loaded from here:
    <!-- Set up the HTTP service from where we get the source XML data -->
    <mx:HTTPService id="srcData" url="
    assets/UserGuide.xml" result="loadModelData(event)"
    />
    but I would like to load the XML file from one of these locations instead:
    File.userDirectory:
    File.documentsDirectory:
    Can someone please show me how I should change the above code to accomplish this, as my efforts to date have not been successful :-(
    I am using Flex Builder 3 and Air 1.5.
    Thanks heaps!
    Tim

    Hi Bhasker,
    Thank you for replying.
    I am not very good at all this coding, but I am assuming I should now be doing entering the following:
    =======================
    <?xml version="1.0" encoding="utf-8"?>
    <mx:WindowedApplication 
    xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical"width="
    800" height="660"xmlns:comp="
    *" xmlns:fmtComp="fmtComps.*"creationComplete="srcData.send()"
    paddingLeft="
    0" paddingRight="0" paddingTop="0" paddingBottom="0">
    <mx:Script>
    <![CDATA[
    import mx.utils.ObjectProxy; 
    import mx.rpc.events.ResultEvent; 
    Bindable] 
    private var userManualObj:ObjectProxy; 
    private function loadModelData(event:ResultEvent):void
    userManualObj=event.result.UserManual;
    private function readXMLContent(xmlFile:File,objContentView:Object):Array{
    var reportDir:File = File.userDirectory.resolvePath("assets"); 
    var xmlFile:File; 
    var fileStream:FileStream = new FileStream(); xmlFile = reportDir.resolvePath(
    "UserGuide.xml"); 
    if(xmlFile.exists && xmlFile.size > 0)// Checking if the impressions.xml file already exists and the file is not empty
    var stream:FileStream = new FileStream(); 
    var xml:XML = new XML();stream.open(xmlFile, FileMode.READ);
    xml = XML(stream.readUTFBytes(stream.bytesAvailable));
    stream.close();
    ]]>
    </mx:Script>
    <!-- Set up the HTTP service from where we get the source XML data<mx:HTTPService id="srcData"
    url="assets/UserGuide.xml"
    result="loadModelData(event)"/> -->
    <mx:VBox width="100%" horizontalAlign="left" height="100%" paddingBottom="
    0" paddingLeft="0" paddingRight="0" paddingTop="0">
    <mx:TabNavigator width="100%" height="100%"paddingBottom="
    0" paddingLeft="0" paddingRight="0" paddingTop="0">
    <mx:Repeater id="modelsRep" dataProvider="{userManualObj.Product.Model}">
    <mx:VBox label="{modelsRep.currentItem.Name}" width="100%" height="100%">
    <comp:ModelDesc model="{modelsRep.currentItem}"/>  
    </mx:VBox>
    </mx:Repeater>
    <mx:VBox label="Troubleshooting" width="100%" height="100%"paddingBottom="
    0" paddingLeft="0" paddingRight="0" paddingTop="0">
    <comp:Troubleshooting issues="{userManualObj.Product.Troubleshooting.Issue}" />
    </mx:VBox>
    </mx:TabNavigator>
    </mx:VBox></mx:WindowedApplication>
    =======================
    and create and "assets" folder in my user directory placing the XML file in there?
    However when I do all that, I get this error when I try to compile:
      Encountered errors or warnings while building project main.mxml.
        main.mxml: Function does not return a value.
    Any thoughts?
    Many thanks,
    Tim

  • Form are different when save an exist form as XML then load from XML

    Hi everyone,
    Who have experience that save an exist form as XML file then load from XML, some controls position, size and color different with the source form.
    I want to use the system wizard form style and I saved system form MRP Wizard as XML file, when I load form from XML, the form shows picture with different position, size, the rectangle control lost color and position also different with source form, because I want to get the line color in the form, the separate line implement using rectangle, please share your opinion how to save the form as XML more Accurate.
    Thanks in advance!
    Kathy

    Hi Kathy
    After loading a form over XML, we made the experince that in matrices link buttons will not appear everwehere they should. It's a tricky part and we made a work around by changing the columns order and then...the Link Buttons came up ok.
    regards
    Kurt

Maybe you are looking for

  • Delivery qty against schedule line

    Hi, I have specific requirement for a report where we need to determine the delivery qty against the schedule line qty for a sales order. In sales order in schedule line tab system shows the delivery qty. The field is VBEPD-VSMNG. VBEPD is a structur

  • X stopping problem

    when i try ctrl+alt+backspace to stop X, my screen goes black and then my monitor says there is no input. (like what happens when your monitor is on, but the computer isnt.) how do i fix this? so far i love arch linux, but this is my main problem

  • Is there any way I can download a Windows phone connector onto my iBook G4 with OS 10.5.8?

    I can't download Windows Phone Connector 7 to my iBook G4 because the download requires 10.6.6 and I have only 10.5.8. Is there anything I can do so that I can interface my iBook with my Windows 7 Smartphone? Thanks

  • Where is the directory of Skype wi-fi hotspots?

    I don't seem able to find the directory of Skype wi-fi hotspots. Can anyone point me to it? This information is needed not just by customers signed up for the service, but more generally, to evaluate the usability of the service in a pre-sales contex

  • Flash stage size problem

    Am using Flash Pro CS5 and although the documentation for Flash Player 10 at the link below http://helpx.adobe.com/flash-player/kb/size-limits-swf-bitmap-files.html says that the max is 4050 by 4050. We are trying to run a swf in a  monitor array of