Skip to main content
July 17, 2012
Question

Error #2032 after downloading FMS Developer on my Windows 7 machine

  • July 17, 2012
  • 1 reply
  • 1604 views

I am getting an Error #2032 after downloading the FMS Developer on my Windows 7 machine.  There was a message that said "All NetConnections Failed" and the Error #2032 appears when I try any of the streaming samples.

It seems that the install was not successful.  I uninstalled it and then ran the downloaded exe file again and the installed appears to run successfully (as it did the first time also).  But then I get the same problem when I am on the test page:  C:\Program Files\Adobe\Flash Media Server 4.5\webroot\index.html

Do you have any suggestions for me?

Thank you very much.

*** Correction ***

I do have success, but only when I click on the "RTMP Dynamic Streaming Sample - Single Bitrate".  The other theree samples all get the Error #2032 message.

I did include Apache as part of the installation...don't know what went wrong.  I can't seem to uninstall and start over.

    This topic has been closed for replies.

    1 reply

    Adobe Employee
    July 18, 2012

    Error 2032 comes when you try to access the content on cross-domain. You must have crossdomain.xml placed inside  webroot folder (Apache's document folder).

    A sample crossdomain.xml may look like this : however this allows connection from all domain and permits all policy.

    <?xml version="1.0"?>

    <!-- http://www.osmf.org/crossdomain.xml -->

    <!DOCTYPE cross-domain-policy SYSTEM "http://www.adobe.com/xml/dtds/cross-domain-policy.dtd">

    <cross-domain-policy>

    <allow-access-from domain="*" />

    <site-control permitted-cross-domain-policies="all"/>

    </cross-domain-policy>

    You may read more about writing more secure cross-domain policy files as per your requirements for your production system.

    Thanks