Skip to content
This repository was archived by the owner on Feb 26, 2020. It is now read-only.

Commit 71ba4d2

Browse files
committed
Extended support for another sdk's
- Correction to suport new Apache Flex sdk; - Binaries compiled receive the name of you SDK.
1 parent 800d2b3 commit 71ba4d2

File tree

7 files changed

+2
-2
lines changed

7 files changed

+2
-2
lines changed

bin/as3rpclib-sdk3.6.0.16995A.swc

336 KB
Binary file not shown.

bin/as3rpclib-sdk4.1.0.16076A.swc

323 KB
Binary file not shown.

bin/as3rpclib-sdk4.5.1.21328A.swc

333 KB
Binary file not shown.

bin/as3rpclib-sdk4.6.0.23201B.swc

334 KB
Binary file not shown.
338 KB
Binary file not shown.

bin/as3rpclib.swc

-25.4 KB
Binary file not shown.

src/com/ak33m/rpc/jsonrpc/JSONRPCSerializer.as

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ package com.ak33m.rpc.jsonrpc
2525
*/
2626
public static function serialize( method : String , params : Array ) : String
2727
{
28-
return JSON.encode( { method:method , params:params , id:Math.random() * 1000 } );
28+
return com.adobe.serialization.json.JSON.encode( { method:method , params:params , id:Math.random() * 1000 } );
2929
}
3030

3131
/**
@@ -36,7 +36,7 @@ package com.ak33m.rpc.jsonrpc
3636
*/
3737
public static function deserialize( result : String ) : *
3838
{
39-
return JSON.decode( result );
39+
return com.adobe.serialization.json.JSON.decode( result );
4040
}
4141
}
4242
}

0 commit comments

Comments
 (0)