<?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: Crossdomain issue when using a secured service in ArcGIS API for Flex Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/crossdomain-issue-when-using-a-secured-service/m-p/451150#M10434</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;We had Reiman from ESRI Professional Services do the install for our server site and web adapter. This is the crossdomain file he put in place:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;[HTML]&amp;lt;?xml version="1.0" ?&amp;gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;cross-domain-policy&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;allow-access-from domain="*" secure="false"/&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;site-control permitted-cross-domain-policies="all"/&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;allow-http-request-headers-from domain="*" headers="*" secure="false"/&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;/cross-domain-policy&amp;gt;[/HTML]&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;It seems like it should work but isn't quite. The simplest solution for us I think is to just have IIS forward everyone to https.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 10 Feb 2014 11:51:51 GMT</pubDate>
    <dc:creator>ChrisMathers</dc:creator>
    <dc:date>2014-02-10T11:51:51Z</dc:date>
    <item>
      <title>Crossdomain issue when using a secured service</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/crossdomain-issue-when-using-a-secured-service/m-p/451147#M10431</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I have a basic crossdomain.xml in my wwwroot folder with my flex apps and everything is just dandy till I try to use an app with a service that requires a password. When I put in the password the service I get "Error #2048". I dont know why everything works with no security but fails with security. If I un-secure that service the app works without error. The chrome developer tools show an error with it tries to get the crossdomain.xml. Chrome can open the xml url. It doesnt matter if you put in the correct password, the error is the same.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Feb 2014 20:10:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/crossdomain-issue-when-using-a-secured-service/m-p/451147#M10431</guid>
      <dc:creator>ChrisMathers</dc:creator>
      <dc:date>2014-02-04T20:10:19Z</dc:date>
    </item>
    <item>
      <title>Re: Crossdomain issue when using a secured service</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/crossdomain-issue-when-using-a-secured-service/m-p/451148#M10432</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Turns out its an https issue. If I open the app as http, log in errors out. If I open the app as https, log in works.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Feb 2014 16:57:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/crossdomain-issue-when-using-a-secured-service/m-p/451148#M10432</guid>
      <dc:creator>ChrisMathers</dc:creator>
      <dc:date>2014-02-07T16:57:32Z</dc:date>
    </item>
    <item>
      <title>Re: Crossdomain issue when using a secured service</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/crossdomain-issue-when-using-a-secured-service/m-p/451149#M10433</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;It sounds like you might be missing a property in the crossdomain.xml file. Make sure secure="false" to allow http apps to access https content.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro"&gt;&amp;lt;allow-access-from domain="*" secure="false"/&amp;gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;SPAN&gt;See for example &lt;/SPAN&gt;&lt;A href="http://services.arcgisonline.com/crossdomain.xml"&gt;http://services.arcgisonline.com/crossdomain.xml&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Feb 2014 23:43:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/crossdomain-issue-when-using-a-secured-service/m-p/451149#M10433</guid>
      <dc:creator>BjornSvensson</dc:creator>
      <dc:date>2014-02-07T23:43:22Z</dc:date>
    </item>
    <item>
      <title>Re: Crossdomain issue when using a secured service</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/crossdomain-issue-when-using-a-secured-service/m-p/451150#M10434</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;We had Reiman from ESRI Professional Services do the install for our server site and web adapter. This is the crossdomain file he put in place:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;[HTML]&amp;lt;?xml version="1.0" ?&amp;gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;cross-domain-policy&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;allow-access-from domain="*" secure="false"/&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;site-control permitted-cross-domain-policies="all"/&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;allow-http-request-headers-from domain="*" headers="*" secure="false"/&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;/cross-domain-policy&amp;gt;[/HTML]&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;It seems like it should work but isn't quite. The simplest solution for us I think is to just have IIS forward everyone to https.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Feb 2014 11:51:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/crossdomain-issue-when-using-a-secured-service/m-p/451150#M10434</guid>
      <dc:creator>ChrisMathers</dc:creator>
      <dc:date>2014-02-10T11:51:51Z</dc:date>
    </item>
  </channel>
</rss>

