Re: [FlexJS] AMF support

2014-05-29 Thread pesgaio
Could anyone tell me if there's going to be a amf.js available in FlexJS? Thanks -- View this message in context: http://apache-flex-development.247.n4.nabble.com/FlexJS-AMF-support-tp36013p37883.html Sent from the Apache Flex Development mailing list archive at Nabble.com.

HTTPService Example

2014-06-02 Thread pesgaio
Does anyone have an HTTPService example, using POST? I'm having some dificulties sending data to an from the server. Thanks -- View this message in context: http://apache-flex-development.247.n4.nabble.com/HTTPService-Example-tp37930.html Sent from the Apache Flex Development mailing list

Re: HTTPService Example

2014-06-02 Thread pesgaio
Thak you, but I meant a FlexJS example. -- View this message in context: http://apache-flex-development.247.n4.nabble.com/FlexJS-HTTPService-Example-tp37930p37933.html Sent from the Apache Flex Development mailing list archive at Nabble.com.

RE: HTTPService Example

2014-06-05 Thread pesgaio
Hi, After debugging the JS code, found on the HTTPService.js class something that I think is not ok. The function org.apache.flex.net.HTTPService.prototype.send = function(value) expects an argument, but that is not send, and the value of the var "value" defaults to null. Around line 320 there's

FlexJS - JSONInputParser.parseItems()

2014-06-19 Thread pesgaio
Hi, On the JSONInputParser class, under the parseItems method we have the following code: return s.split('},'); Is it possible to use native JS JSON parse? Something like: try{ return JSON.parse(s); } catch (e) { return "Error wile parsing JSON data"; } I've change the JS after compiling the a