Have you turned on debugging in the gateway? - Look in gateway.php, I had something the other day that bollixed my flash because I had disabled stuff, here is my working config:

if(PRODUCTION_SERVER)
   {
       //Disable profiling, remote tracing, and service browser
       $gateway->disableDebug();
/*
           Setting these stops the gateway working in Flash????
       */
//Disables the standalone player by filtering out its User-Agent string
       //$gateway->disableStandalonePlayer();
//Disable service description from Macromedia's service browser
     //$gateway->disableServiceDescription();

       //Disables remote tracing
     //$gateway->disableTrace();
}

Try to get hold of "Charles" the proxy debugger, it is really good for watching comms between Flash & the server and you can see all your NetDebug messages.

Have you tried using the AMFPHP service browser to call the commands to see what happens.

Are you calling a gateway on http://www.domain.com/gateway.php from http://domain.com/flash.swf

HTH

Glen

Dave Mennenoh wrote:
No clue here, this just started happening - it's been working. From Flash, when I try and call a AMFPHP service I get an error opening URL message - pointing to my gateway url. If I go to the gateway URL in FireFox I get the message: "amfphp and this gateway are installed correctly. You may now connect to this gateway from Flash." The function I am trying to call is a simple test at the moment, that does nothing but return true. Anyone know why calling the service would generate the url error, but going to the url works? This is the first time I've really ever had any problems with amfphp, and like I said it was working just a couple hours ago. I'm perplexed.

Dave -
Head Developer
http://www.blurredistinction.com
Adobe Community Expert
http://www.adobe.com/communities/experts/
_______________________________________________
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders



--

Glen Pike
01736 759321
www.glenpike.co.uk <http://www.glenpike.co.uk>
_______________________________________________
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Reply via email to