Does this article of mine eventually help? https://dev.c-ware.de/confluence/display/PUBLIC/Fixing+the+mapping+of+null+values+for+numeric+types
Chris ________________________________________ Von: Mario Souza <mario.so...@vizexplorer.com> Gesendet: Mittwoch, 26. August 2015 22:48 An: users@flex.apache.org Betreff: Re: Blaze DS 4.7.1 You have a NaN value in Java if you're using the Double or Float http://docs.oracle.com/javase/1.5.0/docs/api/java/lang/Double.html#NaN http://docs.oracle.com/javase/1.5.0/docs/api/java/lang/Float.html#NaN I'm not sure but I think that BlazeDS serializes the AS3 Number.NaN to a Java Double type, then by reflection api, the BlazeDS can't find a method with this signature (String, Double) because your signature is a (String, Long). Change your method signature and make sure that you're sending the correct types from AS3. Regards. --- *Mario de Souza* UI Developer Website: www.vizexplorer.com Skype: vizexplorer-mariosouza M +6421 082 71135 <http://www.vizexplorer.com/> Level 3, 54-56 Cambridge Terrace PO Box 19204, Wellington 6149 *The information contained in this email may be private and/or confidential. It has been sent for the sole use of the intended recipient(s). If the reader of this message is not an intended recipient, you are hereby notified that any unauthorized review, use, disclosure, dissemination, distribution, or copying of this communication, or any of its contents, is strictly prohibited. If you have received this communication in error, please contact the sender by reply email and destroy all copies of the original message.* On 27 August 2015 at 04:03, Miguel Ferreira <miguel.cd.ferre...@hotmail.com> wrote: > zero and -1 have meaning in the business application. > The workaround is to pass a context object as argument. > > But, this kind of error dint exist before in the old version 3.2 of > BlazeDS. > I don't know why when is trying to call the remote function BlazeDS don't > find the correct signature. > I even try to have another method without the last parameter to verify the > behavior of it. > Maybe someone know how i can try to switch on the debugger of blazeDS. > Thanks for the help deepak. I am trying to see a general solution because > i have a lot of methods that use Long as an argument. > > Date: Wed, 26 Aug 2015 21:27:26 +0530 > > Subject: Re: Blaze DS 4.7.1 > > From: megharajdee...@gmail.com > > To: users@flex.apache.org > > > > Is there any purpose of passing NaN ? You may instead try to pass a > > specific number say 0 or -1 in case of NaN. > >