I had no crossdomain.xml on the server :( Sorry for botherin you...
The advice of Sonja Duijvesteijn was perfect - thanks. Calling the address I have to replace the & with an & "http://news.myserver.com/index.php?id=1&type=100" After this I got an Domain-Security-Error. After placing an crossdomain.xml into the directory of the rss-feed, the flex-example got access to the php-url and is able to read my rss-feed. thanks, Markus --- In [email protected], "Bill Lane" <[EMAIL PROTECTED]> wrote: > > Have you considered passing the parameters to php using mx:request : > > <mx:HTTPService id="userRequest" url="http://localhost/flex/php/request.php" useProxy="false" method="POST"> > <mx:request xmlns=""> > <username>{username.text}</username><emailaddress>{emailaddress.text}</emailaddress> > </mx:request> > </mx:HTTPService> > > > This example came from : http://blogs.adobe.com/mikepotter/2006/02/flex_and_php_a_1.html > > The vaules can accessed in php with $_POST > i.e $_POST['username'] > > Bill Lane > > > >>> [EMAIL PROTECTED] 03/31/06 7:09 am >>> > As I wrote in my first post there occurs an error, when I try the url > with & like: > > url="http://news.smartcode.ch/index.php?id=1&type=100" > > Does anybody have the same problem? > > Markus > > --- In [email protected], "Sonja Duijvesteijn" > <treinmobiel@> wrote: > > > > You are working with xml, so the url gives an error: > > url="http://news.smartcode.ch/index.php?id=1&type=100" > > > > Replace the & with an & and you should be fine. > > > > Good luck, > > Sonja Duijvesteijn > > > > > > > > > > -- > 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 > > 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. > -- 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/

