RE: [flexcoders] POP3 by Socket

2006-08-29 Thread Ted Patrick












Thijs,

 

Flickr’s crossdomain.xml file has moved here:

 

http://api.flickr.com/crossdomain.xml

 

All API calls to Flickr should use this new domain as
well.

 

Cheers,

 

Ted Patrick

Flex Evangelist

Adobe Systems Incorporated

 

 

 

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Thijs Triemstra | Collab
Sent: Friday, August 25, 2006
11:34 AM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] POP3 by
Socket



 







The link
to flickr's crossdomain.xml seems to be broken..



 





Thijs





 





 





Op 25-aug-2006, om 20:20 heeft Ted Patrick het volgende geschreven:















I will get that added
ASAP. Great feedback.

Anyone else?

Ted Patrick
Flex Evangelist
Adobe Systems Incorporated


From: [EMAIL PROTECTED]ups.com
[mailto:[EMAIL PROTECTED]ups.com]
On Behalf Of Tracy Spratt
Sent: Friday, August 25, 2006 10:09 AM
To: [EMAIL PROTECTED]ups.com
Subject: RE: [flexcoders] POP3 by Socket

Ted, that is a handy site.
 
A suggestion:  An issue that is not obvious
to those who are not web/network administratiors is: "Where do I put the
crossdomain.xml
file".  While I bet this is discussed on more than one of the links
you provide, consider a quick paragraph on the subject, for additional
convenience.
 
The usual response: "In the root of the web
server" is not enough for non-experts.  Include an example path for,
say the default integrated Flex 1.5 install, one for a default Tomcat install,
and one for a default IIS install.
 
I figured mine out by putting a full access
crossdomain file in every possible folder until  my call worked, then
deleting them until I broke it again.  This showed me the right
place.  You see why I am not offering to provide the examples!
 
Tracy
 

From: [EMAIL PROTECTED]ups.com
[mailto:[EMAIL PROTECTED]ups.com]
On Behalf Of Ted Patrick
Sent: Friday, August 25, 2006 12:14 PM
To: [EMAIL PROTECTED]ups.com
Subject: RE: [flexcoders] POP3 by Socket
 
Rogerio,
 
http://www.crossdomainxml.org
 
http://www.crossdomainxml.org
 
With Socket operations you will need to have a
crossdomain.xml file on
the server you are connecting to, in this case the POP server! This particular
crossdomain.xml file
needs to permit access to use low/high ports for inbound connections. It is
identical to the process needed to support XMLSocket servers.
 
The use of crossdomain policy files prevents
Flash/Flex clients from abusing other peoples servers. As permission is
delegated to the server owner, they can decide what ports Flash Player can
connect to.
 
Example:
 
policy>
  from domain="*"
to-ports="507" />
  from domain="*.foo.com" to-ports="507,516" />
  from domain="*.bar.com" to-ports="516-523" />
  from domain="www.foo.com" to-ports="507,516-523" />
  from domain="www.bar.com" to-ports="*"
/>
policy>
 
 
I put together this small site on crossdomain
policy files. It doesn't have any glits and gives you the bare bones knowledge
on using crossdomain.
 
http://www.crossdomainxml.org
 
http://www.crossdomainxml.org
 
IFBIN on Flexcoders 
You just made my day!
Go IFBIN!
 
Cheers,
 
Ted Patrick
Flex Evangelist
Adobe Systems Incorporated
 
 
 
 
 
 
 
 
 

From: [EMAIL PROTECTED]ups.com
[mailto:[EMAIL PROTECTED]ups.com]
On Behalf Of Santo
Sent: Friday, August 25, 2006 6:46 AM
To: [EMAIL PROTECTED]ups.com
Subject: [flexcoders] POP3 by Socket
 
Bom dia pessoal,
Hi folks,

I want to know if anyone of you try make the POP3
by Socket example,
from IFBIN(Flex by Example), work with final
version of Flex 2.
Now that he´s free, I try to test something but it
just don´t work.
Don´t give me any errors. Seems to be a security
issue, like
crossdomain, but I can´t figure out the real
problem.

Thanks

Rogerio Gonzalez














 








__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___






RE: [flexcoders] POP3 by Socket

2006-08-28 Thread Ted Patrick












Rogerio,

 

The only way to access pop3.domain.com is to put a
crossdomain.xml policy file on that server. The domain sandbox was tightened given
a security hole in the Flash Player 7 generation.

 

Admins will usually support adding crossdomain.xml policy
files to servers for customers. Make sure the crossdomain.xml file is generic like
so:

 







   



 

Options:

 


 Get an admin to add the
 crossdomain.xml file to the pop3.domain.com server.
 Proxy the POP3 TCP Socket
 connection with a with a Socket server. 
 Apollo will support direct
 TCP Socket connections to a domain.


 

Ted Patrick

Flex Evangelist

Adobe Systems Incorporated

 

 

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Rogerio Gonzalez
Sent: Monday, August 28, 2006 9:57
AM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] POP3 by
Socket



 







Thanks Ted, 

There is anyu workaround for this?
See my problem: The hosting services here in Brazil do not provide access to the
subdomain files. That means, I have access only to the main root of the domain.


Thanks again


Rogerio






On 8/28/06, Ted Patrick
<[EMAIL PROTECTED]com> wrote:














Rogerio,

 

http://pop3.domain.com/crossdomain.xml

 

http:// domain.com/applicat ion.swf 

//Can talk to pop3.domain.com
if domain.com is listed in
crossdomain.xml

 

http://www.domain.com/application.swf


//Can talk to pop3.domain.com
if www.domain.com is listed
in crossdomain.xml

 

In http://pop3.domain.com/crossdomain.xml
you can use wildcards to denote all subdomains are supported like so: 
*.domain.com or simply * to allow any domain to talk to the server.

 

I think about crossdomain.xml like a
permission slip. For my SWF file to talk to pop3.domain.com,
pop3.domain.com must permit me to
access it. The server controls who can talk to it. The crossdomain.xml
file states this policy. 

 

The crossdomain.xml file can also be located
on any URL if your SWF files uses system.Security.loadPolicyFile(url)
method.





 

Ted Patrick

Flex Evangelist

Adobe Systems Incorporated

 

 

 













From:
[EMAIL PROTECTED] ups.com
[mailto:[EMAIL PROTECTED] ups.com] On Behalf Of Rogerio Gonzalez
Sent: Saturday, August 26, 2006
2:04 PM
To: [EMAIL PROTECTED]ups.com






Subject: Re:
[flexcoders] POP3 by Socket



 







Hi Folks,

I have one doubt yet:
When the pop3 server is pop3.domain.com
and I have only acess to the www.domain.com
or domain.com.
That means: I will have http://www.domain.com/crossdomain.xml
It will work when I try to connect to pop3.domain.com ?
Meaning, again, subdomains are valid for the crossdomain on the
"root" domain?

Regards!

Rogerio






On 8/25/06, Dirk
Eismann <[EMAIL PROTECTED]ramuschkat.de> wrote:











Don't have the correct syntax in front of me, but it
should also be noted that by calling System.loadPolicyFile(
http://www.foo.com/some/nested/folder/crossdomain.xml)
or somthing similar, Flash Player can load crossdomain files that do not live
in the "root" of the server. Also, by using loadPolicyFile() the
file does not even need to be named crossdomain.xml :)

Dirk.
















 





















 








__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___






Re: [flexcoders] POP3 by Socket

2006-08-28 Thread Rogerio Gonzalez



Thanks Ted, There is anyu workaround for this?See my problem: The hosting services here in Brazil do not provide access to the subdomain files. That means, I have access only to the main root of the domain.
Thanks againRogerioOn 8/28/06, Ted Patrick <[EMAIL PROTECTED]> wrote:













  













Rogerio,

 


http://pop3.domain.com/crossdomain.xml

 

http:// domain.com/applicat
ion.swf 

//Can talk to pop3.domain.com if 
domain.com is listed in
crossdomain.xml

 

http://www.domain.com/application.swf 


//Can talk to pop3.domain.com if 
www.domain.com is listed
in crossdomain.xml

 

In 
http://pop3.domain.com/crossdomain.xml
you can use wildcards to denote all subdomains are supported like so: 
*.domain.com or simply * to allow any domain to talk to the server.

 

I think about crossdomain.xml like a permission slip. For
my SWF file to talk to pop3.domain.com, pop3.domain.com must permit me to
access it. The server controls who can talk to it. The crossdomain.xml file
states this policy. 

 

The crossdomain.xml file can also be located on any URL if
your SWF files uses system.Security.loadPolicyFile(url) method.

 

Ted Patrick

Flex Evangelist

Adobe Systems Incorporated

 

 

 









From: [EMAIL PROTECTED]
ups.com [mailto:[EMAIL PROTECTED]
ups.com] On Behalf Of Rogerio Gonzalez
Sent: Saturday, August 26, 2006
2:04 PM
To: [EMAIL PROTECTED]ups.com

Subject: Re: [flexcoders] POP3 by
Socket



 







Hi Folks,

I have one doubt yet:
When the pop3 server is pop3.domain.com
and I have only acess to the www.domain.com
or domain.com.
That means: I will have http://www.domain.com/crossdomain.xml
It will work when I try to connect to pop3.domain.com
?
Meaning, again, subdomains are valid for the crossdomain on the
"root" domain?

Regards!

Rogerio







On 8/25/06, Dirk
Eismann <[EMAIL PROTECTED]>
wrote:












Don't have the correct syntax in front of me, but it
should also be noted that by calling System.loadPolicyFile(
http://www.foo.com/some/nested/folder/crossdomain.xml)
or somthing similar, Flash Player can load crossdomain files that do not live
in the "root" of the server. Also, by using loadPolicyFile() the
file does not even need to be named crossdomain.xml :)

Dirk.

















 










  















__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___



RE: [flexcoders] POP3 by Socket

2006-08-28 Thread Ted Patrick












Rogerio,

 

http://pop3.domain.com/crossdomain.xml

 

http:// domain.com/application.swf 

//Can talk to pop3.domain.com if domain.com is listed in
crossdomain.xml

 

http://www.domain.com/application.swf 

//Can talk to pop3.domain.com if www.domain.com is listed
in crossdomain.xml

 

In http://pop3.domain.com/crossdomain.xml
you can use wildcards to denote all subdomains are supported like so: 
*.domain.com or simply * to allow any domain to talk to the server.

 

I think about crossdomain.xml like a permission slip. For
my SWF file to talk to pop3.domain.com, pop3.domain.com must permit me to
access it. The server controls who can talk to it. The crossdomain.xml file
states this policy. 

 

The crossdomain.xml file can also be located on any URL if
your SWF files uses system.Security.loadPolicyFile(url) method.

 

Ted Patrick

Flex Evangelist

Adobe Systems Incorporated

 

 

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Rogerio Gonzalez
Sent: Saturday, August 26, 2006
2:04 PM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] POP3 by
Socket



 







Hi Folks,

I have one doubt yet:
When the pop3 server is pop3.domain.com
and I have only acess to the www.domain.com
or domain.com.
That means: I will have http://www.domain.com/crossdomain.xml
It will work when I try to connect to pop3.domain.com
?
Meaning, again, subdomains are valid for the crossdomain on the
"root" domain?

Regards!

Rogerio







On 8/25/06, Dirk
Eismann <[EMAIL PROTECTED]ramuschkat.de>
wrote:











Don't have the correct syntax in front of me, but it
should also be noted that by calling System.loadPolicyFile(
http://www.foo.com/some/nested/folder/crossdomain.xml)
or somthing similar, Flash Player can load crossdomain files that do not live
in the "root" of the server. Also, by using loadPolicyFile() the
file does not even need to be named crossdomain.xml :)

Dirk.
















 






__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___






Re: [flexcoders] POP3 by Socket

2006-08-26 Thread Rogerio Gonzalez



Hi Folks,I have one doubt yet:When the pop3 server is pop3.domain.com and I have only acess to the www.domain.com or 
domain.com.That means: I will have http://www.domain.com/crossdomain.xmlIt will work when I try to connect to pop3.domain.com
 ?Meaning, again, subdomains are valid for the crossdomain on the "root" domain?Regards!RogerioOn 8/25/06, Dirk Eismann
 <[EMAIL PROTECTED]> wrote:













  



Don't have the correct syntax in front of me, but it should also be noted that by calling System.loadPolicyFile(
http://www.foo.com/some/nested/folder/crossdomain.xml) or somthing similar, Flash Player can load crossdomain files that do not live in the "root" of the server. Also, by using loadPolicyFile() the file does not even need to be named 
crossdomain.xml :)
 
Dirk.

  














__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___



RE: [flexcoders] POP3 by Socket

2006-08-25 Thread Ted Patrick












Ok, good one too.

 

Ted Patrick

Flex Evangelist

Adobe Systems Incorporated

 

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Tom Lee
Sent: Friday, August 25, 2006
11:44 AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] POP3 by
Socket



 







Sometimes it's not obvious from debugging that the
lack of a crossdomain.xml
file is at issue. Perhaps you could list some common symptoms of malformed
or non-existent crossdomain.xml files?

-Original Message-
From: [EMAIL PROTECTED]ups.com
[mailto:[EMAIL PROTECTED]ups.com]
On
Behalf Of Ted Patrick
Sent: Friday, August 25, 2006 2:20 PM
To: [EMAIL PROTECTED]ups.com
Subject: RE: [flexcoders] POP3 by Socket

I will get that added ASAP. Great feedback.

Anyone else?

Ted Patrick
Flex Evangelist
Adobe Systems Incorporated


From: [EMAIL PROTECTED]ups.com
[mailto:[EMAIL PROTECTED]ups.com]
On
Behalf Of Tracy Spratt
Sent: Friday, August 25, 2006 10:09 AM
To: [EMAIL PROTECTED]ups.com
Subject: RE: [flexcoders] POP3 by Socket

Ted, that is a handy site.
 
A suggestion:  An issue that is not obvious to those who are not
web/network
administratiors is: "Where do I put the crossdomain.xml
file".  While I bet
this is discussed on more than one of the links you provide, consider a
quick paragraph on the subject, for additional convenience.
 
The usual response: "In the root of the web server" is not enough for
non-experts.  Include an example path for, say the default integrated Flex
1.5 install, one for a default Tomcat install, and one for a default IIS
install.
 
I figured mine out by putting a full access crossdomain file in every
possible folder until  my call worked, then deleting them until I broke it
again.  This showed me the right place.  You see why I am not
offering to
provide the examples!
 
Tracy
 

From: [EMAIL PROTECTED]ups.com
[mailto:[EMAIL PROTECTED]ups.com]
On
Behalf Of Ted Patrick
Sent: Friday, August 25, 2006 12:14 PM
To: [EMAIL PROTECTED]ups.com
Subject: RE: [flexcoders] POP3 by Socket
 
Rogerio,
 
http://www.crossdomainxml.org
 
http://www.crossdomainxml.org
 
With Socket operations you will need to have a crossdomain.xml file on the
server you are connecting to, in this case the POP server! This particular
crossdomain.xml file needs to permit access to use low/high ports for
inbound connections. It is identical to the process needed to support
XMLSocket servers.
 
The use of crossdomain policy files prevents Flash/Flex clients from abusing
other peoples servers. As permission is delegated to the server owner, they
can decide what ports Flash Player can connect to.
 
Example:
 
policy>
  from domain="*" to-ports="507"
/>
  from domain="*.foo.com"
to-ports="507,516" />
  from domain="*.bar.com"
to-ports="516-523" />
  from domain="www.foo.com"
to-ports="507,516-523" />
  from domain="www.bar.com"
to-ports="*" />
policy>
 
 
I put together this small site on crossdomain policy files. It doesn't have
any glits and gives you the bare bones knowledge on using crossdomain.
 
http://www.crossdomainxml.org
 
http://www.crossdomainxml.org
 
IFBIN on Flexcoders 
You just made my day!
Go IFBIN!
 
Cheers,
 
Ted Patrick
Flex Evangelist
Adobe Systems Incorporated
 
 
 
 
 
 
 
 
 

From: [EMAIL PROTECTED]ups.com
[mailto:[EMAIL PROTECTED]ups.com]
On
Behalf Of Santo
Sent: Friday, August 25, 2006 6:46 AM
To: [EMAIL PROTECTED]ups.com
Subject: [flexcoders] POP3 by Socket
 
Bom dia pessoal,
Hi folks,

I want to know if anyone of you try make the POP3 by Socket example,
from IFBIN(Flex by Example), work with final version of Flex 2.
Now that he´s free, I try to test something but it just don´t work.
Don´t give me any errors. Seems to be a security issue, like
crossdomain, but I can´t figure out the real problem.

Thanks

Rogerio Gonzalez


--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com

Yahoo! Groups Links






__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "

RE: [flexcoders] POP3 by Socket

2006-08-25 Thread Dirk Eismann
Don't have the correct syntax in front of me, but it should also be noted that 
by calling 
System.loadPolicyFile(http://www.foo.com/some/nested/folder/crossdomain.xml) or 
somthing similar, Flash Player can load crossdomain files that do not live in 
the "root" of the server. Also, by using loadPolicyFile() the file does not 
even need to be named crossdomain.xml :)
 
Dirk.


--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 
<>

RE: [flexcoders] POP3 by Socket

2006-08-25 Thread Ted Patrick












Adding that as well. Good one.

 

Ted Patrick

Flex Evangelist

Adobe Systems Incorporated

 

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Clint Modien
Sent: Friday, August 25, 2006
11:44 AM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] POP3 by
Socket



 







I would also include this article...

http://www.martijndevisser.com/blog/article/why-crossdomainxml-is-a-good-thing

It's gotta kewl flash slide show that explains it pretty well.





On 8/25/06, Ted
Patrick <[EMAIL PROTECTED]com
> wrote:











I will get that added ASAP. Great feedback.

Anyone else?







Ted Patrick
Flex Evangelist
Adobe Systems Incorporated







From: [EMAIL PROTECTED]ups.com [mailto: [EMAIL PROTECTED]ups.com]
On Behalf Of Tracy Spratt
Sent: Friday, August 25, 2006 10:09 AM
To: [EMAIL PROTECTED]ups.com






Subject: RE: [flexcoders] POP3 by Socket

Ted, that is a handy site.
 
A suggestion:  An issue that is not obvious to those who are
not web/network administratiors is: "Where do I put the crossdomain.xml
file".  While I bet this is discussed on more than one of the links
you provide, consider a quick paragraph on the subject, for additional
convenience. 
 
The usual response: "In the root of the web server" is
not enough for non-experts.  Include an example path for, say the default
integrated Flex 1.5 install, one for a default Tomcat install, and one for a
default IIS install. 
 
I figured mine out by putting a full access crossdomain file in
every possible folder until  my call worked, then deleting them until I
broke it again.  This showed me the right place.  You see why I am
not offering to provide the examples! 
 
Tracy
 

From: [EMAIL PROTECTED]ups.com [mailto: [EMAIL PROTECTED]ups.com]
On Behalf Of Ted Patrick
Sent: Friday, August 25, 2006 12:14 PM
To: [EMAIL PROTECTED]ups.com
Subject: RE: [flexcoders] POP3 by Socket
 
Rogerio,
 
http://www.crossdomainxml.org
 
http://www.crossdomainxml.org
 
With Socket operations you will need to have a crossdomain.xml
file on the server you are connecting to, in this case the POP server! This
particular crossdomain.xml file needs to permit access to use low/high
ports for inbound connections. It is identical to the process needed to support
XMLSocket servers. 
 
The use of crossdomain policy files prevents Flash/Flex clients
from abusing other peoples servers. As permission is delegated to the server
owner, they can decide what ports Flash Player can connect to.
 
Example:
 
policy>
  from domain="*"
to-ports="507" />
  from domain="*.foo.com"
to-ports="507,516" />
  from domain="*.bar.com"
to-ports="516-523" />
  from domain="www.foo.com"
to-ports="507,516-523" />
  from domain="www.bar.com" to-ports="*"
/>
policy>
 
 
I put together this small site on crossdomain policy files. It
doesn't have any glits and gives you the bare bones knowledge on using
crossdomain.
 
http://www.crossdomainxml.org
 
http://www.crossdomainxml.org
 
IFBIN on Flexcoders 
You just made my day!
Go IFBIN!
 
Cheers,
 
Ted Patrick
Flex Evangelist
Adobe Systems Incorporated
 
 
 
 
 
 
 
 
 

From: [EMAIL PROTECTED]ups.com [mailto: [EMAIL PROTECTED]ups.com]
On Behalf Of Santo
Sent: Friday, August 25, 2006 6:46 AM
To: [EMAIL PROTECTED]ups.com
Subject: [flexcoders] POP3 by Socket
 
Bom dia pessoal,
Hi folks,

I want to know if anyone of you try make the POP3 by Socket
example,
from IFBIN(Flex by Example), work with final version of Flex 2.
Now that he´s free, I try to test something but it just don´t
work.
Don´t give me any errors. Seems to be a security issue, like
crossdomain, but I can´t figure out the real problem.

Thanks

Rogerio Gonzalez


















 








__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___






Re: [flexcoders] POP3 by Socket

2006-08-25 Thread Clint Modien



I would also include this article...http://www.martijndevisser.com/blog/article/why-crossdomainxml-is-a-good-thing
It's gotta kewl flash slide show that explains it pretty well.On 8/25/06, Ted Patrick <[EMAIL PROTECTED]
> wrote:












  



I will get that added ASAP. Great feedback.

Anyone else?

Ted Patrick
Flex Evangelist
Adobe Systems Incorporated


From: flexcoders@yahoogroups.com [mailto:
flexcoders@yahoogroups.com] On Behalf Of Tracy Spratt
Sent: Friday, August 25, 2006 10:09 AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] POP3 by Socket

Ted, that is a handy site.
 
A suggestion:  An issue that is not obvious to those who are not web/network administratiors is: "Where do I put the crossdomain.xml file".  While I bet this is discussed on more than one of the links you provide, consider a quick paragraph on the subject, for additional convenience.

 
The usual response: "In the root of the web server" is not enough for non-experts.  Include an example path for, say the default integrated Flex 1.5 install, one for a default Tomcat install, and one for a default IIS install.

 
I figured mine out by putting a full access crossdomain file in every possible folder until  my call worked, then deleting them until I broke it again.  This showed me the right place.  You see why I am not offering to provide the examples!

 
Tracy
 

From: flexcoders@yahoogroups.com [mailto:
flexcoders@yahoogroups.com] On Behalf Of Ted Patrick
Sent: Friday, August 25, 2006 12:14 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] POP3 by Socket
 
Rogerio,
 
http://www.crossdomainxml.org
 
http://www.crossdomainxml.org
 
With Socket operations you will need to have a crossdomain.xml file on the server you are connecting to, in this case the POP server! This particular crossdomain.xml file needs to permit access to use low/high ports for inbound connections. It is identical to the process needed to support XMLSocket servers.

 
The use of crossdomain policy files prevents Flash/Flex clients from abusing other peoples servers. As permission is delegated to the server owner, they can decide what ports Flash Player can connect to.
 
Example:
 

  
  
  
  foo.com" to-ports="507,516-523" />
  bar.com" to-ports="*" />

 
 
I put together this small site on crossdomain policy files. It doesn't have any glits and gives you the bare bones knowledge on using crossdomain.
 
http://www.crossdomainxml.org
 
http://www.crossdomainxml.org
 
IFBIN on Flexcoders 
You just made my day!
Go IFBIN!
 
Cheers,
 
Ted Patrick
Flex Evangelist
Adobe Systems Incorporated
 
 
 
 
 
 
 
 
 

From: flexcoders@yahoogroups.com [mailto:
flexcoders@yahoogroups.com] On Behalf Of Santo
Sent: Friday, August 25, 2006 6:46 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] POP3 by Socket
 
Bom dia pessoal,
Hi folks,

I want to know if anyone of you try make the POP3 by Socket example,
from IFBIN(Flex by Example), work with final version of Flex 2.
Now that he´s free, I try to test something but it just don´t work.
Don´t give me any errors. Seems to be a security issue, like
crossdomain, but I can´t figure out the real problem.

Thanks

Rogerio Gonzalez
 

  















__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___



RE: [flexcoders] POP3 by Socket

2006-08-25 Thread Tom Lee
Sometimes it's not obvious from debugging that the lack of a crossdomain.xml
file is at issue.  Perhaps you could list some common symptoms of malformed
or non-existent crossdomain.xml files?

-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Ted Patrick
Sent: Friday, August 25, 2006 2:20 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] POP3 by Socket

I will get that added ASAP. Great feedback.

Anyone else?

Ted Patrick
Flex Evangelist
Adobe Systems Incorporated



From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Tracy Spratt
Sent: Friday, August 25, 2006 10:09 AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] POP3 by Socket

Ted, that is a handy site.
 
A suggestion:  An issue that is not obvious to those who are not web/network
administratiors is: "Where do I put the crossdomain.xml file".  While I bet
this is discussed on more than one of the links you provide, consider a
quick paragraph on the subject, for additional convenience.
 
The usual response: "In the root of the web server" is not enough for
non-experts.  Include an example path for, say the default integrated Flex
1.5 install, one for a default Tomcat install, and one for a default IIS
install.
 
I figured mine out by putting a full access crossdomain file in every
possible folder until  my call worked, then deleting them until I broke it
again.  This showed me the right place.  You see why I am not offering to
provide the examples!
 
Tracy
 

From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Ted Patrick
Sent: Friday, August 25, 2006 12:14 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] POP3 by Socket
 
Rogerio,
 
http://www.crossdomainxml.org
 
http://www.crossdomainxml.org
 
With Socket operations you will need to have a crossdomain.xml file on the
server you are connecting to, in this case the POP server! This particular
crossdomain.xml file needs to permit access to use low/high ports for
inbound connections. It is identical to the process needed to support
XMLSocket servers.
 
The use of crossdomain policy files prevents Flash/Flex clients from abusing
other peoples servers. As permission is delegated to the server owner, they
can decide what ports Flash Player can connect to.
 
Example:
 

  
  
  
  
  

 
 
I put together this small site on crossdomain policy files. It doesn't have
any glits and gives you the bare bones knowledge on using crossdomain.
 
http://www.crossdomainxml.org
 
http://www.crossdomainxml.org
 
IFBIN on Flexcoders 
You just made my day!
Go IFBIN!
 
Cheers,
 
Ted Patrick
Flex Evangelist
Adobe Systems Incorporated
 
 
 
 
 
 
 
 
 

From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Santo
Sent: Friday, August 25, 2006 6:46 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] POP3 by Socket
 
Bom dia pessoal,
Hi folks,

I want to know if anyone of you try make the POP3 by Socket example,
from IFBIN(Flex by Example), work with final version of Flex 2.
Now that he´s free, I try to test something but it just don´t work.
Don´t give me any errors. Seems to be a security issue, like
crossdomain, but I can´t figure out the real problem.

Thanks

Rogerio Gonzalez
 


--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links



 







--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




Re: [flexcoders] POP3 by Socket

2006-08-25 Thread Thijs Triemstra | Collab


The link to flickr's crossdomain.xml seems to be broken..ThijsOp 25-aug-2006, om 20:20 heeft Ted Patrick het volgende geschreven:I will get that added ASAP. Great feedback.Anyone else?Ted PatrickFlex EvangelistAdobe Systems IncorporatedFrom: [EMAIL PROTECTED]ups.com [mailto:[EMAIL PROTECTED]ups.com] On Behalf Of Tracy SprattSent: Friday, August 25, 2006 10:09 AMTo: [EMAIL PROTECTED]ups.comSubject: RE: [flexcoders] POP3 by SocketTed, that is a handy site. A suggestion:  An issue that is not obvious to those who are not web/network administratiors is: "Where do I put the crossdomain.xml file".  While I bet this is discussed on more than one of the links you provide, consider a quick paragraph on the subject, for additional convenience. The usual response: "In the root of the web server" is not enough for non-experts.  Include an example path for, say the default integrated Flex 1.5 install, one for a default Tomcat install, and one for a default IIS install. I figured mine out by putting a full access crossdomain file in every possible folder until  my call worked, then deleting them until I broke it again.  This showed me the right place.  You see why I am not offering to provide the examples! Tracy From: [EMAIL PROTECTED]ups.com [mailto:[EMAIL PROTECTED]ups.com] On Behalf Of Ted PatrickSent: Friday, August 25, 2006 12:14 PMTo: [EMAIL PROTECTED]ups.comSubject: RE: [flexcoders] POP3 by Socket Rogerio, http://www.crossdomainxml.org http://www.crossdomainxml.org With Socket operations you will need to have a crossdomain.xml file on the server you are connecting to, in this case the POP server! This particular crossdomain.xml file needs to permit access to use low/high ports for inbound connections. It is identical to the process needed to support XMLSocket servers. The use of crossdomain policy files prevents Flash/Flex clients from abusing other peoples servers. As permission is delegated to the server owner, they can decide what ports Flash Player can connect to. Example: policy>  from domain="*" to-ports="507" />  from domain="*.foo.com" to-ports="507,516" />  from domain="*.bar.com" to-ports="516-523" />  from domain="www.foo.com" to-ports="507,516-523" />  from domain="www.bar.com" to-ports="*" />policy>  I put together this small site on crossdomain policy files. It doesn't have any glits and gives you the bare bones knowledge on using crossdomain. http://www.crossdomainxml.org http://www.crossdomainxml.org IFBIN on Flexcoders You just made my day!Go IFBIN! Cheers, Ted PatrickFlex EvangelistAdobe Systems Incorporated From: [EMAIL PROTECTED]ups.com [mailto:[EMAIL PROTECTED]ups.com] On Behalf Of SantoSent: Friday, August 25, 2006 6:46 AMTo: [EMAIL PROTECTED]ups.comSubject: [flexcoders] POP3 by Socket Bom dia pessoal,Hi folks,I want to know if anyone of you try make the POP3 by Socket example,from IFBIN(Flex by Example), work with final version of Flex 2.Now that he´s free, I try to test something but it just don´t work.Don´t give me any errors. Seems to be a security issue, likecrossdomain, but I can´t figure out the real problem.ThanksRogerio Gonzalez
__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___


RE: [flexcoders] POP3 by Socket

2006-08-25 Thread Ted Patrick
I will get that added ASAP. Great feedback.

Anyone else?

Ted Patrick
Flex Evangelist
Adobe Systems Incorporated



From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tracy 
Spratt
Sent: Friday, August 25, 2006 10:09 AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] POP3 by Socket

Ted, that is a handy site.
 
A suggestion:  An issue that is not obvious to those who are not web/network 
administratiors is: "Where do I put the crossdomain.xml file".  While I bet 
this is discussed on more than one of the links you provide, consider a quick 
paragraph on the subject, for additional convenience.
 
The usual response: "In the root of the web server" is not enough for 
non-experts.  Include an example path for, say the default integrated Flex 1.5 
install, one for a default Tomcat install, and one for a default IIS install.
 
I figured mine out by putting a full access crossdomain file in every possible 
folder until  my call worked, then deleting them until I broke it again.  This 
showed me the right place.  You see why I am not offering to provide the 
examples!
 
Tracy
 

From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ted 
Patrick
Sent: Friday, August 25, 2006 12:14 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] POP3 by Socket
 
Rogerio,
 
http://www.crossdomainxml.org
 
http://www.crossdomainxml.org
 
With Socket operations you will need to have a crossdomain.xml file on the 
server you are connecting to, in this case the POP server! This particular 
crossdomain.xml file needs to permit access to use low/high ports for inbound 
connections. It is identical to the process needed to support XMLSocket servers.
 
The use of crossdomain policy files prevents Flash/Flex clients from abusing 
other peoples servers. As permission is delegated to the server owner, they can 
decide what ports Flash Player can connect to.
 
Example:
 

  
  
  
  
  

 
 
I put together this small site on crossdomain policy files. It doesn't have any 
glits and gives you the bare bones knowledge on using crossdomain.
 
http://www.crossdomainxml.org
 
http://www.crossdomainxml.org
 
IFBIN on Flexcoders 
You just made my day!
Go IFBIN!
 
Cheers,
 
Ted Patrick
Flex Evangelist
Adobe Systems Incorporated
 
 
 
 
 
 
 
 
 

From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Santo
Sent: Friday, August 25, 2006 6:46 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] POP3 by Socket
 
Bom dia pessoal,
Hi folks,

I want to know if anyone of you try make the POP3 by Socket example,
from IFBIN(Flex by Example), work with final version of Flex 2.
Now that he´s free, I try to test something but it just don´t work.
Don´t give me any errors. Seems to be a security issue, like
crossdomain, but I can´t figure out the real problem.

Thanks

Rogerio Gonzalez
 


--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





RE: [flexcoders] POP3 by Socket

2006-08-25 Thread Tracy Spratt












Ted, that is a handy site.

 

A suggestion:  An issue that is not
obvious to those who are not web/network administratiors is: “Where do I
put the crossdomain.xml file”.  While I bet this is discussed on more
than one of the links you provide, consider a quick paragraph on the subject,
for additional convenience.

 

The usual response: “In the root of
the web server” is not enough for non-experts.  Include an example path
for, say the default integrated Flex 1.5 install, one for a default Tomcat
install, and one for a default IIS install.

 

I figured mine out by putting a full
access crossdomain file in every possible folder until  my call worked, then
deleting them until I broke it again.  This showed me the right place.  You see
why I am not offering to provide the examples!

 

Tracy

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Ted Patrick
Sent: Friday, August 25, 2006
12:14 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] POP3 by
Socket



 









Rogerio,

 

http://www.crossdomainxml.org

 

http://www.crossdomainxml.org

 

With
Socket operations you will need to have a crossdomain.xml file on the
server you are connecting to, in this case the POP server! This particular
crossdomain.xml file needs to permit access to use low/high ports for
inbound connections. It is identical to the process needed to support XMLSocket
servers.

 

The use
of crossdomain policy files prevents Flash/Flex clients from abusing other
peoples servers. As permission is delegated to the server owner, they can
decide what ports Flash Player can connect to.

 

Example:

 

policy>

  from domain="*"
to-ports="507" />

  from
domain="*.foo.com" to-ports="507,516" />

  from
domain="*.bar.com" to-ports="516-523" />

  from
domain="www.foo.com" to-ports="507,516-523" />

  from
domain="www.bar.com" to-ports="*" />

policy>

 

 

I put
together this small site on crossdomain policy files. It doesn’t have any
glits and gives you the bare bones knowledge on using crossdomain.

 

http://www.crossdomainxml.org

 

http://www.crossdomainxml.org

 

IFBIN on
Flexcoders 

You just
made my day!

Go IFBIN!

 

Cheers,

 

Ted Patrick

Flex Evangelist

Adobe Systems Incorporated

 

 

 

 

 

 

 

 

 









From: [EMAIL PROTECTED]ups.com
[mailto:[EMAIL PROTECTED]ups.com]
On Behalf Of Santo
Sent: Friday, August 25, 2006 6:46
AM
To: [EMAIL PROTECTED]ups.com
Subject: [flexcoders] POP3 by
Socket





 







Bom
dia pessoal,
Hi folks,

I want to know if anyone of you try make the POP3 by Socket example,
from IFBIN(Flex by Example), work with final version of Flex 2.
Now that he´s free, I try to test something but it just don´t work.
Don´t give me any errors. Seems to be a security issue, like
crossdomain, but I can´t figure out the real problem.

Thanks

Rogerio Gonzalez














__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___






RE: [flexcoders] POP3 by Socket

2006-08-25 Thread Ted Patrick












Rogerio,

 

http://www.crossdomainxml.org

 

http://www.crossdomainxml.org

 

With Socket operations you will need to have a
crossdomain.xml file on the server you are connecting to, in this case the POP
server! This particular crossdomain.xml file needs to permit access to use low/high
ports for inbound connections. It is identical to the process needed to support
XMLSocket servers.

 

The use of crossdomain policy files prevents Flash/Flex
clients from abusing other peoples servers. As permission is delegated to the
server owner, they can decide what ports Flash Player can connect to.

 

Example:

 



 


 


 


  

 




 

 

I put together this small site on crossdomain policy
files. It doesn’t have any glits and gives you the bare bones knowledge
on using crossdomain.

 

http://www.crossdomainxml.org

 

http://www.crossdomainxml.org

 

IFBIN on Flexcoders 

You just made my day!

Go IFBIN!

 

Cheers,

 

Ted Patrick

Flex Evangelist

Adobe Systems Incorporated

 

 

 

 

 

 

 

 

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Santo
Sent: Friday, August 25, 2006 6:46
AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] POP3 by
Socket



 







Bom dia pessoal,
Hi folks,

I want to know if anyone of you try make the POP3 by Socket example,
from IFBIN(Flex by Example), work with final version of Flex 2.
Now that he´s free, I try to test something but it just don´t work.
Don´t give me any errors. Seems to be a security issue, like
crossdomain, but I can´t figure out the real problem.

Thanks

Rogerio Gonzalez






__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___