You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@flex.apache.org by Anton Bondarenko <di...@gmail.com> on 2016/07/21 20:49:03 UTC

socket

Hello. Cna anybody share with his socket experience.
For 2 days im trying to make sockets and no results
always 2031 ioerror and 2048 secureerror

added
Security.loadPolicyFile(url to crossdomain.xml);
Security.allowDomain("*");
Security.allowInsecureDomain(("*");

got secureerror from Security.allow with 3207 error but couldn understand
what about debug it means and what to do and when it works.

crossdomain.xml in the server root.
<?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="*" />
 <site-control permitted-cross-domain-policies="master-only"/>
</cross-domain-policy>

Thanks for any comments
-- 
//-------------------------
Best Regards,
Anton Bondarenko

Re: socket

Posted by Anton Bondarenko <di...@gmail.com>.
Thanks guys. It was very useful. Trying to make now.

2016-07-25 10:17 GMT+04:00 OmPrakash Muppirala <bi...@gmail.com>:

> For socket servers things are a bit different.   You will need to have the
> flash policy file served off of a socket server itself.
>
> Check this link
> http://www.adobe.com/devnet/flashplayer/articles/socket_policy_files.html
> I have used an open source policy server built for this.  You can follow
> the steps here:
> https://code.google.com/archive/p/flashpolicyd/wikis/Introduction.wiki
>
> The code to run is here:
> https://github.com/ripienaar/flashpolicyd
>
> Hope this helps.
>
> Thanks,
> Om
>
>
> On Jul 24, 2016 1:34 PM, "Nicholas Kwiatkowski" <
> nicholaskwiatkowski@gmail.com> wrote:
>
> > Is the crossdomain.xml on the same domain/ip as the IP you are trying to
> > connect to?
> >
> > Rarely do you need to do the Security.allowDomain() or
> > allowInsecureDomain() methods anymore.  The security policies are pretty
> > much now that you /need/ to be hosting the crossdomain file on the same
> > server, domain and ip (port can be different), otherwise you will run
> afowl
> > the security policy of not only the flash player, but the browser as
> well.
> >
> > -Nick
> >
> > On Thu, Jul 21, 2016 at 4:49 PM, Anton Bondarenko <di...@gmail.com>
> > wrote:
> >
> > > Hello. Cna anybody share with his socket experience.
> > > For 2 days im trying to make sockets and no results
> > > always 2031 ioerror and 2048 secureerror
> > >
> > > added
> > > Security.loadPolicyFile(url to crossdomain.xml);
> > > Security.allowDomain("*");
> > > Security.allowInsecureDomain(("*");
> > >
> > > got secureerror from Security.allow with 3207 error but couldn
> understand
> > > what about debug it means and what to do and when it works.
> > >
> > > crossdomain.xml in the server root.
> > > <?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="*" />
> > >  <site-control permitted-cross-domain-policies="master-only"/>
> > > </cross-domain-policy>
> > >
> > > Thanks for any comments
> > > --
> > > //-------------------------
> > > Best Regards,
> > > Anton Bondarenko
> > >
> >
>



-- 
//-------------------------
Best Regards,
Anton Bondarenko

Re: socket

Posted by OmPrakash Muppirala <bi...@gmail.com>.
For socket servers things are a bit different.   You will need to have the
flash policy file served off of a socket server itself.

Check this link
http://www.adobe.com/devnet/flashplayer/articles/socket_policy_files.html
I have used an open source policy server built for this.  You can follow
the steps here:
https://code.google.com/archive/p/flashpolicyd/wikis/Introduction.wiki

The code to run is here:
https://github.com/ripienaar/flashpolicyd

Hope this helps.

Thanks,
Om


On Jul 24, 2016 1:34 PM, "Nicholas Kwiatkowski" <
nicholaskwiatkowski@gmail.com> wrote:

> Is the crossdomain.xml on the same domain/ip as the IP you are trying to
> connect to?
>
> Rarely do you need to do the Security.allowDomain() or
> allowInsecureDomain() methods anymore.  The security policies are pretty
> much now that you /need/ to be hosting the crossdomain file on the same
> server, domain and ip (port can be different), otherwise you will run afowl
> the security policy of not only the flash player, but the browser as well.
>
> -Nick
>
> On Thu, Jul 21, 2016 at 4:49 PM, Anton Bondarenko <di...@gmail.com>
> wrote:
>
> > Hello. Cna anybody share with his socket experience.
> > For 2 days im trying to make sockets and no results
> > always 2031 ioerror and 2048 secureerror
> >
> > added
> > Security.loadPolicyFile(url to crossdomain.xml);
> > Security.allowDomain("*");
> > Security.allowInsecureDomain(("*");
> >
> > got secureerror from Security.allow with 3207 error but couldn understand
> > what about debug it means and what to do and when it works.
> >
> > crossdomain.xml in the server root.
> > <?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="*" />
> >  <site-control permitted-cross-domain-policies="master-only"/>
> > </cross-domain-policy>
> >
> > Thanks for any comments
> > --
> > //-------------------------
> > Best Regards,
> > Anton Bondarenko
> >
>

Re: socket

Posted by Nicholas Kwiatkowski <ni...@gmail.com>.
Is the crossdomain.xml on the same domain/ip as the IP you are trying to
connect to?

Rarely do you need to do the Security.allowDomain() or
allowInsecureDomain() methods anymore.  The security policies are pretty
much now that you /need/ to be hosting the crossdomain file on the same
server, domain and ip (port can be different), otherwise you will run afowl
the security policy of not only the flash player, but the browser as well.

-Nick

On Thu, Jul 21, 2016 at 4:49 PM, Anton Bondarenko <di...@gmail.com>
wrote:

> Hello. Cna anybody share with his socket experience.
> For 2 days im trying to make sockets and no results
> always 2031 ioerror and 2048 secureerror
>
> added
> Security.loadPolicyFile(url to crossdomain.xml);
> Security.allowDomain("*");
> Security.allowInsecureDomain(("*");
>
> got secureerror from Security.allow with 3207 error but couldn understand
> what about debug it means and what to do and when it works.
>
> crossdomain.xml in the server root.
> <?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="*" />
>  <site-control permitted-cross-domain-policies="master-only"/>
> </cross-domain-policy>
>
> Thanks for any comments
> --
> //-------------------------
> Best Regards,
> Anton Bondarenko
>