[Flashcoders] Crossdomain for president

2007-03-03 Thread John Crosby
Mick - We are using the server-side solution currently, but in the situation
of  a distributed application or breeze pod, we'd like to be able to talk
directly to the Yahoo! service and not have to carry the burden of the
service proxy through our server. 

 

Jah - I would imagine when offering up a public API like the weather service
or del.ico.us the crossdomain would accept all domains. Am I incorrect in
that train of thought?

 

Thanks for the input!

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


[Flashcoders] Crossdomain for president

2007-03-02 Thread John Crosby
Howdy all,

 

Wouldn't it be nice if Yahoo starts adding crossdomain.xml files to their
public services such as weather and del.icio.us so that we RIA developers
could easily and natively write apps against them?

 

If you feel the same as me, put in your vote:

 

http://suggestions.yahoo.com/detail/?prop=ydn
http://suggestions.yahoo.com/detail/?prop=ydnfid=9622 fid=9622 

 

I thank you all for your support!

 

-  John

 

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


Re: [Flashcoders] Crossdomain for president

2007-03-02 Thread Jah

that would require them to know the domains that they are allowing,
which is somewhat impossible... no?

On 3/2/07, John Crosby [EMAIL PROTECTED] wrote:

Howdy all,



Wouldn't it be nice if Yahoo starts adding crossdomain.xml files to their
public services such as weather and del.icio.us so that we RIA developers
could easily and natively write apps against them?



If you feel the same as me, put in your vote:



http://suggestions.yahoo.com/detail/?prop=ydn
http://suggestions.yahoo.com/detail/?prop=ydnfid=9622 fid=9622



I thank you all for your support!



-  John



___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


Re: [Flashcoders] Crossdomain for president

2007-03-02 Thread Mick G

Have you thought about using the server-side proxy method? I've used this to
load Yahoo XML into flash modules.

http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=tn_16520




On 3/2/07, John Crosby [EMAIL PROTECTED] wrote:


Howdy all,



Wouldn't it be nice if Yahoo starts adding crossdomain.xml files to their
public services such as weather and del.icio.us so that we RIA developers
could easily and natively write apps against them?



If you feel the same as me, put in your vote:



http://suggestions.yahoo.com/detail/?prop=ydn
http://suggestions.yahoo.com/detail/?prop=ydnfid=9622 fid=9622



I thank you all for your support!



-  John



___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


Re: [Flashcoders] Crossdomain for president

2007-03-02 Thread Mick G

All you need is any server-side language (There are links on that page for
PHP, CFM, ASP and JSP)

All you do is create a file  eg. yahooxml.php
In this PHP file you put:

?php
$dataURL = http://www.yahoo.com/xmlfeed.xml;;
//note that this will not follow redirects
readfile($dataURL);
?


From your flash file on your domain (which is the same place as your SWF

that is trying to load the XML), you simply load the PHP file and flash will
see the location as being in the same domain as your SWF, but the PHP file
will load the XML from yahoo's server.

myXML.load(http://mywebsite.com/yahooxml.php;);


On 3/2/07, Jah [EMAIL PROTECTED] wrote:


that would require them to know the domains that they are allowing,
which is somewhat impossible... no?

On 3/2/07, John Crosby [EMAIL PROTECTED] wrote:
 Howdy all,



 Wouldn't it be nice if Yahoo starts adding crossdomain.xml files to
their
 public services such as weather and del.icio.us so that we RIA
developers
 could easily and natively write apps against them?



 If you feel the same as me, put in your vote:



 http://suggestions.yahoo.com/detail/?prop=ydn
 http://suggestions.yahoo.com/detail/?prop=ydnfid=9622 fid=9622



 I thank you all for your support!



 -  John



 ___
 Flashcoders@chattyfig.figleaf.com
 To change your subscription options or search the archive:
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

 Brought to you by Fig Leaf Software
 Premier Authorized Adobe Consulting and Training
 http://www.figleaf.com
 http://training.figleaf.com

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com