<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Deploying a crossdomain.xml file on an SAP NetWeaver Web AS (Java stack) in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/deploying-a-crossdomain-xml-file-on-an-sap-netweaver-web-as-java-stack/m-p/5765715#M1305647</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rui,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This document may not have been available when you asked this question, but for those searching for the answer I would suggest going to this link:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://learn.adobe.com/wiki/display/security/Application" target="test_blank"&gt;http://learn.adobe.com/wiki/display/security/Application&lt;/A&gt;&lt;EM&gt;Security&lt;/EM&gt;Library&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and view the Cross Domain Security document. (direct link is: [http://learn.adobe.com/wiki/download/attachments/64389123/Acrobat_CrossDomainSecurity.pdf?version=1]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In there are some instructions for deploying a cross domain XML file for a Netweaver Java AS. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My only question is by putting files in there, will it get overwritten when new support packs are deployed?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 03 Oct 2010 10:50:04 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-10-03T10:50:04Z</dc:date>
    <item>
      <title>Deploying a crossdomain.xml file on an SAP NetWeaver Web AS (Java stack)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/deploying-a-crossdomain-xml-file-on-an-sap-netweaver-web-as-java-stack/m-p/5765713#M1305645</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There are various posts on how to deploy a crossdomain.xml file on an ABAP Web AS. &lt;/P&gt;&lt;P&gt;Can anyone tell me how to add the crossdomain file to the root of my Netweaver Java-AS?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm using an Xcelsius dashboard accessing data on a MaxDB via the "XML data" connection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help would be appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards,&lt;/P&gt;&lt;P&gt;Rui Nogueira&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Jul 2009 11:48:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/deploying-a-crossdomain-xml-file-on-an-sap-netweaver-web-as-java-stack/m-p/5765713#M1305645</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-06T11:48:45Z</dc:date>
    </item>
    <item>
      <title>Re: Deploying a crossdomain.xml file on an SAP NetWeaver Web AS (Java stack)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/deploying-a-crossdomain-xml-file-on-an-sap-netweaver-web-as-java-stack/m-p/5765714#M1305646</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rui,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; It could be a Cross domain issue please refer the following blog&lt;/P&gt;&lt;P&gt;[http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/16393] &lt;B&gt;[original link is broken]&lt;/B&gt; &lt;B&gt;[original link is broken]&lt;/B&gt; &lt;B&gt;[original link is broken]&lt;/B&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are working on silverlight cross domain issue follow tis steps &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;after you coppy the report in the blog to the abap editor make the following changes replace the concatenate statement with following code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CONCATENATE'&amp;lt;?xml version="1.0" encoding="UTF-8" ?&amp;gt;'
           '&amp;lt;access-policy&amp;gt;'
           '&amp;lt;cross-domain-access&amp;gt;'
           '&amp;lt;policy&amp;gt;'
            '&amp;lt;allow-from http-request-headers="*"&amp;gt;'
            '&amp;lt;domain uri="*"/&amp;gt;'
            '&amp;lt;/allow-from&amp;gt;'
            '&amp;lt;grant-to&amp;gt;'
                '&amp;lt;resource path="/" include-subpaths="true"/&amp;gt;'
            '&amp;lt;/grant-to&amp;gt;'
        '&amp;lt;/policy&amp;gt;'
    '&amp;lt;/cross-domain-access&amp;gt;'
'&amp;lt;/access-policy&amp;gt;' into crossdomainxml_t SEPARATED BY SPACE.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;replace CALL METHOD CL_HTTP_SERVER=&amp;gt;SERVER_CACHE_UPLOAD   with below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;"-----------------------------------------------------------------------
"Upload to the ICM root directory
"-----------------------------------------------------------------------
CALL METHOD CL_HTTP_SERVER=&amp;gt;SERVER_CACHE_UPLOAD  
EXPORTING   
 URL = '/clientaccesspolicy.xml'    
RESPONSE = lr_cached_response    SCOPE    =
IHTTP_INV_GLOBAL    .&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 26 Jun 2010 12:25:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/deploying-a-crossdomain-xml-file-on-an-sap-netweaver-web-as-java-stack/m-p/5765714#M1305646</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-06-26T12:25:20Z</dc:date>
    </item>
    <item>
      <title>Re: Deploying a crossdomain.xml file on an SAP NetWeaver Web AS (Java stack)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/deploying-a-crossdomain-xml-file-on-an-sap-netweaver-web-as-java-stack/m-p/5765715#M1305647</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rui,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This document may not have been available when you asked this question, but for those searching for the answer I would suggest going to this link:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://learn.adobe.com/wiki/display/security/Application" target="test_blank"&gt;http://learn.adobe.com/wiki/display/security/Application&lt;/A&gt;&lt;EM&gt;Security&lt;/EM&gt;Library&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and view the Cross Domain Security document. (direct link is: [http://learn.adobe.com/wiki/download/attachments/64389123/Acrobat_CrossDomainSecurity.pdf?version=1]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In there are some instructions for deploying a cross domain XML file for a Netweaver Java AS. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My only question is by putting files in there, will it get overwritten when new support packs are deployed?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 03 Oct 2010 10:50:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/deploying-a-crossdomain-xml-file-on-an-sap-netweaver-web-as-java-stack/m-p/5765715#M1305647</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-10-03T10:50:04Z</dc:date>
    </item>
  </channel>
</rss>

