Coorilis / Phoca / crossdomain.xml help please

Hello everyone,
     I am using Joomla with Phoca Gallery. It has cooliris embeded into it for a nice way to display your gallery. It states I need to put the crossdamain.xml file into the root directory. I have done this. I am using 1&1 Web hosting. I am using the code it tells me for the xml file I have upgraded to the latest versions on my website too. Any help would be great.
<?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="*.cooliris.com" secure="false" />
</cross-domain-policy>

Finally figured this out that it was due to a channel configuration issue. Within the remoting-config.xml file, the change made is shown below.
The one below was causing the issue and was looking for crossdomain.xml
    <default-channels>
        <channel ref="my-secure-amf"/>
        <channel ref="my-amf"/>
    </default-channels>
Changed the above to
    <default-channels>
        <channel ref="my-amf"/>
        <channel ref="my-secure-amf"/>
    </default-channels>
Thanks
Murugan.

Similar Messages

  • Web services and crossdomain.xml HELP

    Hello
    I am using the web services connector to consume a service it
    all works
    fine in flash however in the browser it fails
    I can see it trying to load crossdomain.xml at the domain of
    the WS
    provider this is despite my putting:
    System.security.loadPolicyFile("
    http://dev.chatham.site/crossdomain.xml");
    frankly I am at a loss as to how to make this work I have
    tried.
    var allowpath = "
    http://www.postcoderwebsoap.co.uk";
    System.security.allowDomain(allowpath);
    how the hell do you let the connector connect?
    any insight would be greatly apreciated
    Rich

    tjacobs01 wrote:
    Hi all,
    This is a follow-up to the question I posted and answered myself yesterday.
    I have created a web service that returns Hebrew words in a string format of an XML document. This all appears to be working fine at this point. The only problem is that when I'm debugging in NetBeans, certain hebrew characters/words (note: some characters / words work!) xerces gives me an invalid utf-8 string (byte 1 of 2) exception in the display of the SOAP response - not the response itself, but I think in whatever netbeans is doing to display it. Not sure i follow. Are you referring to the debugger screens where the IDE shows variables/stacks etc? If so, i would say not to worry too much. IDE's are not perfect.
    I have tried testing the strings I am returning by themselves - xerces can parse when I save them into a file and load. So it seems like the problem is just with the >SOAP response / with netBeans.
    I understand that returning XML within a SOAP container could then be screwing up the parsing. Any thoughts as to why certain words and not others? Is there any way to fix this, and perhaps more importantly - is it important to fix this?Did you test this in a production like environment? If so, i would say its just a minor annoyance.

  • AS2 and XML help please

    Hi, I found a previous post in this forum that does exactly
    what I would like to do, but since I am new to adobe flash I am
    missing some knowledge. I have the actionscript code and the xml
    file - what I need help with is the GUI. I open a new AS2 project
    and press F9 to insert the action code. What do I do next? Please
    help!
    I attach the previous actionscript code posted by another
    member.
    Best Regards Eva

    Hi, thanks for Your reply. Yes, I have the .xml file, what I
    need help with is the 'frame' that You display the picture in. Do I
    need to create a layer or scene? I guess that myContainer_mc in the
    code needs to be identified in this 'frame'. How do I go about
    doing this?
    Any help is most appriciated!
    Best Regards Eva

  • Export Recordest to XML help, please

    I'm trying to display my database info using Spry in CS4. In
    CS3 there was a utility called "Export Recordest to XML" that was
    part of the toolkit, but was also available as a registration
    incentive. Is this functionality now built into CS4?
    I guess what I' m really looking for is a tutorial on how to
    bring data in directly from the database to the webpage. I've seen
    the video of how to do it from a static HTML page, but that doesn't
    help here.
    I've also seen this page (
    http://labs.adobe.com/technologies/spry/samples/utils/query2xml.html)
    but it doesn't offer any practical info for how to actually
    implement this into a dreamweaver/spry page.
    What is frustrating (aside from my own lack of knowledge) is
    that one of the original raison d'être for Dreamweaver and its
    ancestors, was the creation of dynamic sites from databases by
    people who were somewhat programming challenged.
    Maybe it is all there and I'm just missing it, but I would
    truly appreciate any help.

    RiddleyWalker2 wrote:
    > I'm trying to display my database info using Spry in
    CS4. In CS3 there was a
    > utility called "Export Recordest to XML" that was part
    of the toolkit, but was
    > also available as a registration incentive. Is this
    functionality now built
    > into CS4?
    >
    > I guess what I' m really looking for is a tutorial on
    how to bring data in
    > directly from the database to the webpage. I've seen the
    video of how to do it
    > from a static HTML page, but that doesn't help here.
    >
    > I've also seen this page
    > (
    http://labs.adobe.com/technologies/spry/samples/utils/query2xml.html)
    but it
    > doesn't offer any practical info for how to actually
    implement this into a
    > dreamweaver/spry page.
    >
    > What is frustrating (aside from my own lack of
    knowledge) is that one of the
    > original raison d'?tre for Dreamweaver and its
    ancestors, was the creation of
    > dynamic sites from databases by people who were somewhat
    programming
    > challenged.
    >
    > Maybe it is all there and I'm just missing it, but I
    would truly appreciate
    > any help.
    Once you have your page that creates the xml, just use that
    link in spry
    as your datasource. Ignore the fact that it doesn't end in
    xml, that
    doesn't matter, as the output content type is xml, so it will
    be treated
    like xml.
    Dooza
    Posting Guidelines
    http://www.adobe.com/support/forums/guidelines.html
    How To Ask Smart Questions
    http://www.catb.org/esr/faqs/smart-questions.html

  • Some more xml help please

    create table "HDTEST"
    "ENTRY_DATE" VARCHAR2(50 BYTE),
    "ENTRY_NUMBER" VARCHAR2(50 BYTE),
    "ENTRY_DESCRIPTION" VARCHAR2(500 BYTE),
    "ENTRY_TYPE" VARCHAR2(50 BYTE),
    "OPEN_CLOSED" VARCHAR2(50 BYTE),
    "RECORD_UPDATE_DATE" VARCHAR2(50 BYTE)
    --drop table hdtest
    INSERT INTO HDTEST (ENTRY_DATE,ENTRY_NUMBER,ENTRY_DESCRIPTION,ENTRY_TYPE,OPEN_CLOSED,RECORD_UPDATE_DATE) VALUES ('01-JAN-12','123456','TEST DESC 1','TYPE1','OPEN','05-JAN-12');
    INSERT INTO HDTEST (ENTRY_DATE,ENTRY_NUMBER,ENTRY_DESCRIPTION,ENTRY_TYPE,OPEN_CLOSED,RECORD_UPDATE_DATE) VALUES ('01-JAN-12','123422','TEST DESC 2','TYPE2','CLOSED','08-JAN-12');
    INSERT INTO HDTEST (ENTRY_DATE,ENTRY_NUMBER,ENTRY_DESCRIPTION,ENTRY_TYPE,OPEN_CLOSED,RECORD_UPDATE_DATE) VALUES ('03-JAN-12','123433','TEST DESC 3','TYPE3','OPEN','06-JAN-12');
    INSERT INTO HDTEST (ENTRY_DATE,ENTRY_NUMBER,ENTRY_DESCRIPTION,ENTRY_TYPE,OPEN_CLOSED,RECORD_UPDATE_DATE) VALUES ('04-JAN-12','123444','TEST DESC 4','TYPE4','CLOSED','08-JAN-12');
    INSERT INTO HDTEST (ENTRY_DATE,ENTRY_NUMBER,ENTRY_DESCRIPTION,ENTRY_TYPE,OPEN_CLOSED,RECORD_UPDATE_DATE) VALUES ('01-JAN-12','123422','TEST DESC 2','TYPE2','CLOSED','04-JAN-12');
    --to generate xml
    select XMLSERIALIZE( content (
      xmlelement(
        "TESTING",
        XMLAttributes('XMLTEST' as "NAME",systimestamp as "UPDATED_DATE"),
        xmlelement(
          "PAGE",
          XMLAGG(
            xmlelement(
              "ENTRY_DATE",
              xmlattributes(entry_date  "DATE" ),
              xmlagg(
                xmlelement(
                  "ENTRY",
                  xmlattributes(ENTRY_NUMBER "NUMBER",ENTRY_DESCRIPTION DESCRIPTION,ENTRY_TYPE "TYPE",OPEN_CLOSED,RECORD_UPDATE_DATE)
    ) indent )
    as xml
    from HDTEST
    group by entry_date
    order by entry_date;
    --xml output
    <TESTING NAME="XMLTEST" UPDATED_DATE="2012-10-03T09:34:11.501941-04:00">
      <PAGE>
        <ENTRY_DATE DATE="01-JAN-12">
          <ENTRY NUMBER="123456" DESCRIPTION="TEST DESC 1" TYPE="TYPE1" OPEN_CLOSED="OPEN" RECORD_UPDATE_DATE="05-JAN-12"/>
          <ENTRY NUMBER="123422" DESCRIPTION="TEST DESC 2" TYPE="TYPE2" OPEN_CLOSED="CLOSED" RECORD_UPDATE_DATE="08-JAN-12"/>
        </ENTRY_DATE>
        <ENTRY_DATE DATE="03-JAN-12">
          <ENTRY NUMBER="123433" DESCRIPTION="TEST DESC 3" TYPE="TYPE3" OPEN_CLOSED="OPEN" RECORD_UPDATE_DATE="06-JAN-12"/>
        </ENTRY_DATE>
        <ENTRY_DATE DATE="04-JAN-12">
          <ENTRY NUMBER="123444" DESCRIPTION="TEST DESC 4" TYPE="TYPE4" OPEN_CLOSED="CLOSED" RECORD_UPDATE_DATE="08-JAN-12"/>
        </ENTRY_DATE>
      </PAGE>
    </TESTING>--im looking to have out put like this :
    <TESTING NAME="XMLTEST" UPDATED_DATE="2012-10-03T09:34:11.501941-04:00">
      <PAGE> <DATE="01-JAN-12">
        <OPENED_TODAY>
          <ENTRY NUMBER="123456" DESCRIPTION="TEST DESC 1" TYPE="TYPE1" OPEN_CLOSED="OPEN" RECORD_UPDATE_DATE="05-JAN-12"/>
          <ENTRY NUMBER="123422" DESCRIPTION="TEST DESC 2" TYPE="TYPE2" OPEN_CLOSED="CLOSED" RECORD_UPDATE_DATE="08-JAN-12"/>
           <ENTRY NUMBER="123422" DESCRIPTION="TEST DESC 2" TYPE="TYPE2" OPEN_CLOSED="CLOSED" RECORD_UPDATE_DATE="04-JAN-12"/>
        </OPENED_TODAY>
        <CLOSED>
         </CLOSED>
        </DATE>
        <DATE="03-JAN-12">
        <OPENED_TODAY>
          <ENTRY NUMBER="123433" DESCRIPTION="TEST DESC 3" TYPE="TYPE3" OPEN_CLOSED="OPEN" RECORD_UPDATE_DATE="06-JAN-12"/>
        </OPENED_TODAY>
        <CLOSED>
         </CLOSED>
        </DATE>
        <DATE="04-JAN-12">
        <OPENED_TODAY>
          <ENTRY NUMBER="123444" DESCRIPTION="TEST DESC 4" TYPE="TYPE4" OPEN_CLOSED="CLOSED" RECORD_UPDATE_DATE="08-JAN-12"/>
        </OPENED_TODAY>
        <CLOSED>
           <ENTRY NUMBER="123422" DESCRIPTION="TEST DESC 2" TYPE="TYPE2" OPEN_CLOSED="CLOSED" RECORD_UPDATE_DATE="04-JAN-12"/>
         </CLOSED>
        </DATE>
      </PAGE>
    </TESTING>1. <ENTRY_DATE DATE> changed to just <DATE>
    2. 2 new sections under each DATE called <OPENED_TODAY> and <CLOSED>
    everything should be listed under OPENED_TODAY that had an entry date of that day, but in the closed section, only records that have the OPEN_CLOSED = CLOSED and the RECORD_UPDATE_DATE = the date node
    hope i explained this right and hope someone can help.
    thanks again
    Edited by: BluShadow on 03-Oct-2012 15:17
    added {noformat}{noformat} tags for readability.  You should know how to do this by now.  See: {message:id=9360002}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    Here is an attempt to provide what you say you want, although your input and your output don't seem to match.select XMLSERIALIZE( content (
      xmlelement(
        "TESTING",
        XMLAttributes('XMLTEST' as "NAME",systimestamp as "UPDATED_DATE"),
        xmlelement(
          "PAGE",
          XMLAGG(
            xmlelement(
              "DATE",
              xmlattributes(entry_date  "val" ),
              xmlelement(
                "OPEN_TODAY",
                xmlagg( case when closed_flag = 0 then
                  xmlelement(
                    "ENTRY",
                    xmlattributes(ENTRY_NUMBER "NUMBER",ENTRY_DESCRIPTION DESCRIPTION,ENTRY_TYPE "TYPE",OPEN_CLOSED,RECORD_UPDATE_DATE)
                  ) end
              xmlelement(
                "CLOSED",
                xmlagg( case when closed_flag = 1 then
                  xmlelement(
                    "ENTRY",
                    xmlattributes(ENTRY_NUMBER "NUMBER",ENTRY_DESCRIPTION DESCRIPTION,ENTRY_TYPE "TYPE",OPEN_CLOSED,RECORD_UPDATE_DATE)
                  ) end
    ) indent )
    as xml
    from (
      select a.*,
      case when open_closed = 'CLOSED' and entry_date = RECORD_UPDATE_DATE then 1 else 0 end closed_flag
      from HDTEST a
    group by entry_date
    order by entry_date;

  • Xml help please.

    im trying to have xml file load swf into a loadMC
    cant figure this out
    so button name would be:
    <sub name="NAME" aW="0">
    this is where id like to reference xml to load an external
    swf file into a mc on stage<swf src="1.swf" w="450" h="253"
    />
    </sub>

    im trying to have xml file load swf into a loadMC
    cant figure this out
    so button name would be:
    <sub name="NAME" aW="0">
    this is where id like to reference xml to load an external
    swf file into a mc on stage<swf src="1.swf" w="450" h="253"
    />
    </sub>

  • Please HELP with CrossDomain.xml problem

    I'm using Flex2 with Java as the backend. On my local machine
    everything works fine. When I deployed the Java war file to the
    hosting server and moved the swf there as well I keep getting the
    following error "Security error accessing url"
    faultCode="Channel.Security.Error". After reading on this it says I
    need a crossdomain.xml file put at the root of my server.
    I have placed a crossdomain.xml file at the following areas.
    C:\Inetpub\wwwroot\crossdomain.xml
    C:\Inetpub\vhosts\mysite.com\crossdomain.xml
    C:\Inetpub\vhosts\mysite.com\httpdocs\crossdomain.xml
    C:\Program
    Files\SWsoft\Plesk\Additional\Tomcat\webapps\crossdomain.xml
    the following is in the crossdomain.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="*" to-ports="*" secure="true"
    />
    </cross-domain-policy>
    the war file is deployed here:
    C:\Program
    Files\SWsoft\Plesk\Additional\Tomcat\psa-webapps\mysite.com\testjava.war
    and the swf file is located here:
    C:\Inetpub\vhosts\mysite.com\httpdocs\test.swf
    I don't know what I'm missing. Please someone help me.

    daperk,
    You should post this to board "Smartphones, Nseries and Eseries Devices".

  • I want to display the number of Passed / failed tests in Testtand xml report , please help me

    Hi, I want to display the number of Passed / failed tests in Testtand xml report , please help me.
    My requirement is later i should be able to display these number of passed/failed test in report header too.
    Solved!
    Go to Solution.

    I have attached a sequence to give you an idea of how to get the Result count (I didn't check it's working ), I have used "SequenceFilePostResultListEntry" callback to calculate the Result Count,
    and the Result Count is passed to the "ModifyReportHeader" through File Globals,  where you can edit the XML file to show it in the Repot (follow the link in my previous post).
    Hope this helps
    AshwiN,
    Attachments:
    Get Result Count.seq ‏8 KB

  • XML Files - PLEASE help!!

    Hi guys!
    Am desperately seeking some help on an XML issue please!!
    Am just wondering if anyone knows any limitations of having large XML files within B2B applications. Everywhere I look seems to suggest that there's no limit on the size of an XML file - this is grand, but is anyone aware of a performance downgrade when dealing with large files? And if so, what is the maximum recommended file size before performance is affected. Are there any other issues upon which file size would have a negative impact? Sorry if this sounds like a bit of a silly question but am a newbie to the design implications of XML and am in bad need of assistance!
    thanks a mill for all your help
    cheers
    bronniebee

    Well no, there's no limit on the size of an XML file by the specification, but in practice you will find that you almost always have to load the XML file into memory. This means that the larger the file, (a) the longer it takes to load and (b) the more likely it is you will run out of memory. I have seen it suggested that 10 megabytes is a practical upper limit for the size of an XML file to be processed in this way, but of course that would be just a rough guideline. If you have files much larger than that, you will have to use a SAX parser (which processes the XML sequentially) if you want to be able to handle it.
    But if you are talking about B2B, then most of your XML files will be transaction packets, right? Probably you wouldn't have a purchase order that large, for example. And you will be processing them asynchronously, right? (Nobody sitting at the browser waiting for a response.) That simplifies things because you don't have response time as an overriding requirement.

  • Load XML in intranet ? urgent help please...

    Dear friends, I need urgent help: I have a CAYIN screen (which lets me display evetns, etc) and gives me the option of loading/displaying a FLASH (SWF) file, well, I need this SWF to load some XML data ("texto.xml") but  seems that when the CAYIN program which executes flash, does not allow the SWF to find the XML in the same folder...
    Then I tried many ways to load the XML file with no success till now. Some tries are :
    obj_xml.load("\\192.168.0.100\media\texto.xml")
    obj_xml.load("\media\texto.xml")
    obj_xml.load("texto.xml")
    obj_xml.load("../media/texto.xml")
    obj_xml.load("\\media\texto.xml")
    obj_xml.load("file:\\192.168.0.100\media\texto.xml")
    obj_xml.load("..\\192.168.0.100\media\texto.xml")
    I guess I am writting something wrong or forgetting something. Would anyone please help me ? because these files are in an internal server "192.168.0.100" (intranet).
    Urgent help please, thanks in advance,

    if the swf is in a directory with subdirectory media which contains texto.xml, use:
    obj_xml.load("media/texto.xml")

  • Newbie help please:  "Validation of XML file failed."

    Hopefully my question is short and easy.
    I'm a developer and haven't used FrameMaker before. However for unforeseen reasons, I've inherited our technical help documentation constructed in FrameMaker which I've never used. Unfortunately I'm under a very tight deadline and I'm attempting to update our already existing and fairly extensive application help files.
    However, I'm getting a "Validation of XML file failed" error for 90% of our .xml help docs. I opened our .book file in FrameMaker fairly easily, and can see all of our .xml files. However the variables already embedded in the documents aren't being recognized and seem to be causing the above error. I've located our variable definition files (xml) in the concepts folder, but FrameMaker doesn't seem to recognize them. Any suggestions on what I can check or how I can get FM to refer to the variable definitions? I'm working with a new installation of FM, is there some setup I overlooked?
    Many thanks,
    dana.

    Sheila and Rick,
    Thank you both so much for your offer of help. My apologies for not replying earlier. Other 'emergencies' and priorities at work took me in other directions. It turns out another solution has been found for the time being. But thank you again for your replies. They say a lot about this community and its support. :)
    Thanks again,
    dana.

  • Multiple plugtmp-1 plugtmp-2 etc. in local\temp folder stay , crossdomain.xml and other files containing visited websitenames created while private browsing

    OS = Windows 7
    When I visit a site like youtube whith private browsing enabled and with the add-on named "shockwave flash" in firefox add-on list installed and activate the flashplayer by going to a video the following files are created in the folder C:\Users\MyUserName\AppData\Local\Temp\plugtmp-1
    plugin-crossdomain.xml
    plugin-strings-nl_NL-vflLqJ7vu.xlb
    The contents of plugin-crossdomain contain both the "youtube.com" adress as "s.ytimg.com" and is as follows:
    <?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="s.ytimg.com"/> <allow-access-from domain="*.youtube.com"/> </cross-domain-policy>
    The contents of the other file I will spare you cause I think those are less common when I visit other sites but I certainly don't trust the file. The crossdomain.xml I see when I visit most other flashpayer sites as well.
    I've also noticed multiple plugin-crossdomain-1.xml and onwards in numbers, I just clicked a youtube video to test, got 6 of them in my temp plus a file named "plugin-read2" (no more NL file cause I changed my country, don't know how youtube knows where I'm from, but that's another subject, don't like that either). I just noticed one with a different code:
    <?xml version="1.0"?>
    -<cross-domain-policy> <allow-access-from domain="*"/> </cross-domain-policy>
    So I guess this one comprimises my browsing history a bit less since it doesn't contain a webadress. If these files are even meant to be deposited in my local\temp folder. The bigger problem occurs when they stay there even after using private browsing, after clearing history, after clearing internet temporary files, cache, whatever you can think of. Which they do in my case, got more than 50 plugtmp-# folders in the previous mentioned local\temp folder containing all website names I visited in the last months. There are a variety of files in them, mostly ASP and XML, some just say file. I have yet to witness such a duplicate folder creation since I started checking my temp (perhaps when firefox crashes? I'd say I've had about 50 crashes in recent months).
    I started checking my temp because of the following Microsoft Security Essential warnings I received on 23-4-12:
    Exploit:Java/CVE-2010-0840.HE
    containerfile:C:\Users\Username\AppData\Local\Temp\jar_cache2196625541034777730.tmp
    file:C:\Users\Username\AppData\Local\Temp\jar_cache2196625541034777730.tmp->pong/reversi.class
    and...
    Exploit:Java/CVE-2008-5353.ZT
    containerfile:C:\Users\Noname\AppData\Local\Temp\jar_cache1028270176376464057.tmp
    file:C:\Users\Noname\AppData\Local\Temp\jar_cache1028270176376464057.tmp->Testability.class
    Microsoft Security Essentials informed me that these files were quarantained and deleted but when going to my temp file they were still there, I deleted them manually and began the great quest of finding out what the multiple gigabytes of other files and folders were doing in that temp folder and not being deleted with the usual clearing options within firefox (and IE).
    Note that I have set my adobe flasplayer settings to the most private intense I could think of while doing these tests (don't allow data storage for all websites, disable peer-to peer stuff, don't remember exactly anymore, etc.). I found it highly suspicious that i needed to change these settings online on an adobe website, is that correct? When right-clicking a video only limited privacy options are available which is why I tried the website thing.
    After the inital discovery of the java exploit (which was discovered by MSE shortly after I installed and started my first scan with Malwarebytes, which in turn made me suspicious whether I had even downloaded the right malwarebytes, but no indication in the filename if I google it). Malwarebytes found nothing, MSE found nothing after it said it removed the files, yet it didn't remove them, manually scanning these jar_cache files with both malwarevytes and MSE resulted in nothing. Just to be sure, I deleted them anyways like I said earlier. No new jar_cache files have been created, no exploits detected since then. CCleaner has cleaned most of my temp folder, I did the rest, am blocking all cookies (except for now shortly), noscript add-on has been running a while on my firefox (V 3.6.26) to block most javascripts except from sites like youtube. I've had almost the same problem using similar manual solutions a couple of months ago, and a couple of months before that (clearing all the multiple tmp folders, removing or renaming jar_cache manually, running various antmalware software, full scan not finding a thing afterwards, installing extra add-ons to increase my security, this time it's BetterPrivacy which I found through a mozilla firefox https connection, I hope, which showed me nicely how adobe flash was still storing LSO's even after setting all storage settings to 0 kb and such on the adobe website, enabling private browsing in firefox crushed those little trolls, but still plugtmp trolls are being created, help me crush them please, they confuse me when I'm looking for a real threat but I still want to use flash, IE doesn't need those folders and files, or does it store them somewhere else?).
    I'm sorry for the long story and many questions, hope it doesn't scare you away from helping me fight this. I suspect it's people wanting to belong to the hackergroup Anonymous who are doing this to my system and repeating their tricks (or the virus is still there, but I've done many antivirus scans with different programs so no need to suggest that option to me, they don't find it or I run into it after a while again, so far, have not seen jar_cache show up). Obviously, you may focus on the questions pertaining firefox and plugtmp folders, but if you can help me with any information regarding those exploits I would be extremely grateful, I've read alot but there isn't much specific information for checking where it comes from when all the anti-virus scanners don't detect anything anymore and don't block it incoming. I also have downloaded and installed process monitor but it crashes when I try to run it. The first time I tried to run it it lasted the longest, now it crashes after a few seconds, I just saw the number of events run up to almost a million and lots of cpu usage. When it crashed everything returned back to normal, or at least that's what I'm supposed to think I guess. I'll follow up on that one on their forum, but you can tell me if the program is ligit or not (it has a microsoft digital signature, or the name micosoft is used in that signature).

    update:
    I haven't upgraded my firefox yet because of a "TVU Web Player" plugin that isn't supported in the new firefox and I'm using it occasionally, couldn't find an upgrade for it. Most of my other plugins are upgraded in the green (according to mozilla websitechecker):
    Java(TM) Platform SE 6 U31 (green)
    Shockwave for Director (green - from Adobe I think)
    Shockwave Flash (green - why do I even need 2 of these adobe add-ons? can I remove one? I removed everything else i could find except the reader i think, I found AdobeARM and Adobe Acrobat several versions, very confusing with names constantly switching around)
    Java Deployment Toolkit 6.0.310.5 (green, grrr, again a second java, why do they do this stuff, to annoy people who are plagued with java and flash exploits? make it more complicating?)
    Adobe Acrobat (green, great, it's still there, well I guess this is the reader then)
    TVU Web Player for FireFox (grey - mentioned it already)
    Silverlight Plug-In (yellow - hardly use it, I think, unless it's automatic without my knowing, perhaps I watched one stream with it once, I'd like to remove it, but just in case I need it, don't remember why I didn't update, perhaps a conflict, perhaps because I don't use it, or it didn't report a threat like java and doesn't create unwantend and history compromising temp files)
    Google Update (grey - can I remove? what will i lose? don't remember installing it, and if I didn't, why didn't firefox block it?)
    Veetle TV Core (grey)
    Veetle TV Player (grey - using this for watching streams on veetle.com, probably needs the Core, deleted the broadcaster that was there earlier, never chose to install that, can't firefox regulate that when installing different components? or did i just miss that option and assumed I needed when I was installing veetle add-on?)
    Well, that's the list i get when checking on your site, when i use my own browseroptions to check add-ons I get a slightly different and longer list including a few I have already turned off (which also doesn't seem very secure to me, what's the point in using your site then for anything other than updates?), here are the differences in MY list:
    I can see 2 versions of Java(TM) Platform SE 6 U31, (thanks firefox for not being able to copy-paste this)
    one "Classic Java plug-in for Netscape and Mozilla"
    the other is "next generation plug-in for Mozilla browsers".
    I think I'll just turn off the Netscape and Mozilla one, don't trust it, why would I need 2? There I did it, no crashes, screw java :P
    There's also a Mozilla Default plugin listed there, why does firefox list it there without any further information whether I need it or not or whether it really originates from Mozilla firefox? It doesn't even show up when I use your website plugin checker, so is there no easy way by watching this list for me to determin I can skip worrying about it?
    There's also some old ones that I recently deactivated still listed like windows live photo gallery, never remember adding that one either or needing it for anything and as usual, right-clicking and "visit homepage" is greyed out, just as it is for the many java crap add-ons I encountered so far.
    Doing a quick check, the only homepage I can visit is the veetle one. The rest are greyed out. I also have several "Java Console" in my extentions tab, I deactivated all but the one with the highest number. Still no Java Console visible though, even after going to start/search "java", clicking java file and changing the settings there to "show" console instead of "hide" (can't remember exact details).
    There's some other extentions from noscript, TVU webplayer again, ADblock Plus and now also BetterPrivacy (sidenote, a default.LSO remains after cleanup correct? How do I know that one isn't doing anything nasty if it's code has been changed or is being changed? To prevent other LSO's I need to use both private browsing and change all kinds of restrictions online for adobe flashplayer, can anyone say absurd!!! if you think you're infected and want to improve your security? Sorry that rant was against Adobe, but it's really against Anonymous, no offense).

  • Where to place crossdomain.xml in SAP ECC IDES?

    Hi,
    I have a flex application which uses webservices generated in SAP IDES system. This flex app is stored in portal server. Since the physical servers are involved, I get a security error message, which says, "Security error accessing url". I browsed through the net and found that, we have to place a crossdomain.xml file in the web root folder of the server from where we are fetching the data. In my case, it would be SAP IDES system.
    I wanted to know where do I place this xml file in IDES? What would be it's location and how can I generate a URL to access this xml file?
    Please let me know about this, if anyone has done this before.
    Appreciate your help.
    Thank you,
    Warm regards,
    Deepak

    Hi Durairaj,
    As mentioned in that thread, I created a BSP application in the server and loaded crossdomain.xml. It was accessible from the browser too.
    This is the xml code which is there in crossdomain:
    <?xml version="1.0" ?>
    <cross-domain-policy>
      <allow-access-from domain="*" />
      <site-control permitted-cross-domain-policies="all" />
      <allow-http-request-headers-from domain="*" headers="*" />
      </cross-domain-policy>
    But this did not solve my purpose
    I have my flex application in a server, servera.abc.com and I am using the webservices of another server, serverb.abc.com
    I uploaded the crossdomain.xml in serverb.abc.com, in the following path through a BSP application:
    http://serverb.abc.com:8000/sap/bc/bsp/sap/zroot/crossdomain.xml
    But I still get the 'security accessing url' message in flex. It doesn't load the wsdl.
    I'm also using this piece of code in initialize event of the application in flex:
                           private function initSecurity():void{
                        Security.allowDomain("*");
                        Security.loadPolicyFile("http://serverb.abc.com:8000/sap/bc/bsp/sap/zroot/crossdomain.xml");
                        Alert.show("crossdomain xml loaded....");
    Where am I going wrong here?

  • AS2 Crossdomain.xml and sendAndLoad

    I have a flash form with input text fields. I am sending the data to a 3rd party server. I can send the information via getURL but I want to send the data without opening a browser window so I am utilizing sendAndLoad. It works great locally but not through a browser (tested in IE and Firefox). I have verified that all the variables and urls are in the correct case, I have tried both Post and Get, I have tried network and local... Ugh! I am losing my hair on this one please help asap!!!
    Here is the file - click on the second image...
    http://www.axonmediagroup.com/adimag...directbuy.html
    Here is the code...
    on (release) {
    if (first_name.text.length == 0) {
    error.text = "** First Name Required **";
    } else if (last_name.text.length == 0) {
    error.text = "** Last Name Required **";
    } else if (address1.text.length == 0) {
    error.text = "** Address Required **";
    } else if (city.text.length == 0) {
    error.text = "** City Required **";
    } else if (state1.value == "") {
    error.text = "** State Required **";
    } else if (postal_code.text.length == 0) {
    error.text = "** Zip Required **";
    } else if (phone_home.text.length == 0) {
    error.text = "** Phone Required **";
    } else if (email.text.length == 0) {
    error.text = "** Email Required **";
    } else {
    System.security.loadPolicyFile('https://app.leadconduit.com/crossdomain.xml');
    var myloadVars:LoadVars = new LoadVars();
    myloadVars.RName = 'AxonMedia';
    myloadVars.AdReferenceID = '944E5433-F8B5-44FF-8085-E4A1D0D844E9';
    myloadVars.ReferenceID = '040E5D57-3A1A-412D-A1F4-B45BD48AE791';
    myloadVars.SUBID = 1;
    myloadVars.xxNodeId = '050l0tjhd';
    myloadVars.xxTest = 'true';
    myloadVars.Country = 'USA';
    myloadVars.first_name = first_name.text;
    myloadVars.last_name = last_name.text;
    myloadVars.SpouseName = SpouseName.text;
    myloadVars.address1 = address1.text;
    myloadVars.city = city.text;
    myloadVars.state1 = state1.selectedItem.label;
    myloadVars.postal_code = postal_code.text;
    myloadVars.phone_home = phone_home.text;
    myloadVars.email = email.text;
    trace(myloadVars);
    myloadVars.sendAndLoad("https://app.leadconduit.com/v2/PostLeadAction?",myloadVars,"POST");
    myloadVars.onLoad = function(success:Boolean) {
    if (success) {
    error.text = "Thank you for contacting us!";
    } else {
    error.text = "Error connecting to server.";
    Here is the code that works via browser...
    on (release) {
    if (first_name.text.length == 0) {
    error.text = "** First Name Required **";
    } else if (last_name.text.length == 0) {
    error.text = "** Last Name Required **";
    } else if (address1.text.length == 0) {
    error.text = "** Address Required **";
    } else if (city.text.length == 0) {
    error.text = "** City Required **";
    } else if (state1.value == "") {
    error.text = "** State Required **";
    } else if (postal_code.text.length == 0) {
    error.text = "** Zip Required **";
    } else if (phone_home.text.length == 0) {
    error.text = "** Phone Required **";
    } else if (email.text.length == 0) {
    error.text = "** Email Required **";
    } else {
    System.security.loadPolicyFile('crossdomain.xml');
    var RName = 'AxonMedia';
    var AdReferenceID = '944E5433-F8B5-44FF-8085-E4A1D0D844E9';
    var ReferenceID = '040E5D57-3A1A-412D-A1F4-B45BD48AE791';
    var TimeFrame = 0;
    var SUBID = 1;
    var xxNodeId = '050l0tjha';
    var xxTest = 'true';
    var Country = 'USA';
    var first_name = first_name.text;
    var last_name = last_name.text;
    var SpouseName = SpouseName.text;
    var address1 = address1.text;
    var city = city.text;
    var state1 = state1.selectedItem.label;
    var postal_code = postal_code.text;
    var phone_home = phone_home.text;
    var email = email.text;
    getURL("https://app.leadconduit.com/v2/PostLeadAction?", "_blank", "GET");
    error.text = "Thank you for your response!";
    }

    Sounds like the update for Flash 8 may help.

  • Problems Accessing Crossdomain.xml

    Ok, so ive been searching for a solution to my problem for 3 days now with no avail... hopefully someone here can help.
    Im building a website that i want to allow users to post jobs with or without an attached file...
    here is the site.... http://soengjobopp.dyndns.org/
    If you go to the POSTAJOB section at the bottom, fill in some test information, click attach to select a file from your machine, press and press submit you will see the error i get... ERROR 2049! (The file wont be attempted to upload until the form has valid data)
    I have a crossdomain policy on my root directory.....  http://soengjobopp.dyndns.org/crossdomain.xml
    Everything works fine when im testing it on my localhost, but when i try to upload from a machine elsewhere i get an error....
    Ive used Firebug(firefox plugin) to monitor the network when im at a client machine and it shows that the crossdomain.xml is trying to be downloaded from http://localhost/crossdomain.xml... i have no idea why... i allow administrators to download file from specific jobs and everything works fine... its just when i want to upload files i get an error... would anyone know why the site would try to get crossdomain.xml from its own local host and not from  http://soengjobopp.dyndns.org/crossdomain.xml ?
    Ive tried the "recompile with network monitor disabled" trick and i have the same problem.
    Ive also tried the Security.loadPolicyFile("http://soengjobopp.dyndns.org/crossdomain.xml ") and it still tries to get its policy file from localhost...
    If anyone could help it would be greatly apprecieated...
    Thanks!

    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.

Maybe you are looking for