[flexcoders] Not finding import mx.remoting.*;

2006-08-30 Thread Louie Penaflor










Hi,



 Im trying to do some php remoting from
flexbuilder and Im getting a Definition mx.remoting could not be found.
I have flash 8 installed do I have to tell flex the directory of the mx
libraries are? Thanks and I look forward to your replies.



Louie Penaflor

Web Software Developer

World Council of Credit Unions, Inc.

Ph: (608)231-7932



This
is a transmission fromWorld Council of Credit Unions, Inc.and
contains information that is confidential. If you are not the intended
addressee or authorized to receive for the addressee, then any disclosure,
copying, distribution, or use of the contents of this message is prohibited. If
you have received this transmission in error, please destroy it and notify the
sender immediately at the transmitting e-mail address. If you are the intended
recipient, please be advised that this e-mail transmission is not encrypted or
otherwise protected from potential misappropriation or misuse.World
Council of Credit Unions, Inc.expressly disclaims any and all liability
for harm resulting from the misappropriation, interception or misuse of the
information contained in this transmission.






__._,_.___





--
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] Not finding import mx.remoting.*;

2006-08-30 Thread Hasan Otuome






Hey Louie,

I don't believe that package exists. I've been using the attached file
in my AMFPHP projects. Maybe it can benefit you too. After dropping it
in your project root just add the following ActionScript to your app:

import
flash.net.Responder;
public var gateway:RemotingConnection;
public var response:Responder;

//basic query method
public function getData(service:String):void{
  response = new Responder(onResult, onFault); //success and
failure functions
  gateway = new
RemotingConnection("http://yourdomain.com/flashservices/gateway.php");
//connect to the gateway
  gateway.call(service, response); //call the service
}

//basic data modification method
public function updateData(service:String, params:Array):void{
  response = new Responder(onResult, onFault); //success and
failure functions
  gateway = new
RemotingConnection("http://yourdomain.com/flashservices/gateway.php");
//connect to the gateway
  gateway.call(service, response, params); //call the service
}

Then, just make those calls when necessary later on in your app. HTH...

P E A C E

Hasan
hasan.otuome.com
www.marxmedia.net
thesourcecode.org
Adobe Certified Professional (Flash MX2004 Developer) 


Louie Penaflor wrote:


  
  
  
  Hi,
  
   Im trying to
do some php remoting from
flexbuilder and Im getting a Definition mx.remoting could not be
found.
I have flash 8 installed do I have to tell flex the directory of the mx
libraries are? Thanks and I look forward to your replies.
  
  Louie Penaflor
  Web Software Developer
  World Council of Credit
Unions, Inc.
  Ph: (608)231-7932
  
  This
is a transmission fromWorld Council of Credit Unions, Inc.and
contains information that is confidential. If you are not the intended
addressee or authorized to receive for the addressee, then any
disclosure,
copying, distribution, or use of the contents of this message is
prohibited. If
you have received this transmission in error, please destroy it and
notify the
sender immediately at the transmitting e-mail address. If you are the
intended
recipient, please be advised that this e-mail transmission is not
encrypted or
otherwise protected from potential misappropriation or misuse.World
Council of Credit Unions, Inc.expressly disclaims any and all
liability
for harm resulting from the misappropriation, interception or misuse of
the
information contained in this transmission.
  
  
  


  

No virus found in this incoming message.
Checked by AVG Free Edition.
Version: 7.1.405 / Virus Database: 268.11.7 - Release Date: 8/29/2006
  



__._,_.___





--
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.



  






__,_._,___


package 
{
import flash.net.NetConnection;
import flash.net.ObjectEncoding;

public class RemotingConnection extends NetConnection
{
public function RemotingConnection( sURL:String )
{
objectEncoding = ObjectEncoding.AMF0;
if (sURL) connect( sURL );
}

public function AppendToGatewayUrl( s : String ) : void
{
//
}
}
}

RE: [flexcoders] Not finding import mx.remoting.*;

2006-08-30 Thread Louie Penaflor












Thanks for the help.



How can you pass paramaters for the
service?









From:
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Hasan Otuome
Sent: Wednesday, August 30, 2006
1:21 PM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Not
finding import mx.remoting.*;











Hey
Louie,

I don't believe that package exists. I've been using the attached file in my
AMFPHP projects. Maybe it can benefit you too. After dropping it in your
project root just add the following ActionScript to your app:

import
flash.net.Responder;
public var gateway:RemotingConnection;
public var response:Responder;

//basic query method
public function getData(service:String):void{
  response = new Responder(onResult,
onFault); //success and failure functions
  gateway = new RemotingConnection(MailScanner has detected a possible fraud
attempt from yourdomain.com claiming to be
http://yourdomain.com/flashservices/gateway.php);
//connect to the gateway
  gateway.call(service, response);
//call the service
}

//basic data modification method
public function updateData(service:String, params:Array):void{
  response = new Responder(onResult,
onFault); //success and failure functions
  gateway = new RemotingConnection(MailScanner has detected a possible fraud
attempt from yourdomain.com claiming to be
http://yourdomain.com/flashservices/gateway.php);
//connect to the gateway
  gateway.call(service, response,
params); //call the service
}

Then, just make those calls when necessary later on in your app. HTH...

P E A C E

Hasan
hasan.otuome.com
www.marxmedia.net
thesourcecode.org
Adobe Certified Professional (Flash MX2004 Developer) 


Louie Penaflor wrote: 







Hi,




Im trying to do some php remoting from flexbuilder and Im getting
a Definition mx.remoting could not be found. I have flash 8 installed do
I have to tell flex the directory of the mx libraries are? Thanks and I
look forward to your replies.



Louie
Penaflor

Web Software
Developer

World
Council of Credit Unions, Inc.

Ph:
(608)231-7932



This
is a transmission fromWorld Council of Credit Unions, Inc.and
contains information that is confidential. If you are not the intended
addressee or authorized to receive for the addressee, then any disclosure, copying,
distribution, or use of the contents of this message is prohibited. If you have
received this transmission in error, please destroy it and notify the sender
immediately at the transmitting e-mail address. If you are the intended
recipient, please be advised that this e-mail transmission is not encrypted or
otherwise protected from potential misappropriation or misuse.World
Council of Credit Unions, Inc.expressly disclaims any and all liability
for harm resulting from the misappropriation, interception or misuse of the
information contained in this transmission.











No virus found in this incoming message.Checked by AVG Free Edition.Version: 7.1.405 / Virus Database: 268.11.7 - Release Date: 8/29/2006 










__._,_.___





--
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] Not finding import mx.remoting.*;

2006-08-30 Thread Hasan Otuome






I just remembered I had some
basic AMFPHP/Flex 2 tutorials that you could check out. Here's (2) that
deal with the PHP side and the Flex side of things. Hopefully they can
be of help...

http://hasan.otuome.com/?vid=11
http://hasan.otuome.com/?vid=12

P E A C E

Hasan
hasan.otuome.com
www.marxmedia.net
thesourcecode.org
Adobe Certified Professional (Flash MX2004 Developer) 

Louie Penaflor wrote:

  
  
  
  
  
  
   Thanks for the help.  
  
   How can you pass paramaters for the
service?  
  
  
  
  



__._,_.___





--
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.



  






__,_._,___