home *** CD-ROM | disk | FTP | other *** search
/ Computer Active 2010 August / CA08.iso / Multimedija / shufflr.air / ShufflrClient.swf / scripts / com / althea / client / shufflr / model / HelloWorldProxy.as < prev    next >
Encoding:
Text File  |  2010-06-23  |  1.0 KB  |  41 lines

  1. package com.althea.client.shufflr.model
  2. {
  3.    import mx.rpc.AsyncToken;
  4.    import mx.rpc.IResponder;
  5.    import mx.rpc.http.HTTPService;
  6.    import org.puremvc.as3.multicore.patterns.proxy.Proxy;
  7.    
  8.    public class HelloWorldProxy extends Proxy implements IResponder
  9.    {
  10.       public static const NAME:String = "HelloWorldProxy";
  11.       
  12.       private var service:HTTPService;
  13.       
  14.       private var username:String;
  15.       
  16.       public function HelloWorldProxy(param1:Object = null)
  17.       {
  18.          super(NAME,param1);
  19.          this.service = new HTTPService();
  20.          this.service.method = "GET";
  21.       }
  22.       
  23.       public function helloWorld() : void
  24.       {
  25.          this.service.url = NavMapProxy.serverUrl + "hello_world";
  26.          var _loc1_:AsyncToken = this.service.send(null);
  27.          _loc1_.dataType = "helloWorld";
  28.          _loc1_.addResponder(this);
  29.       }
  30.       
  31.       public function fault(param1:Object) : void
  32.       {
  33.       }
  34.       
  35.       public function result(param1:Object) : void
  36.       {
  37.       }
  38.    }
  39. }
  40.  
  41.