XML-RPC: best options for 64-bit ints?

XML-RPC, unfortunately, does not support 64-bit ints in the official standard. There seem to be several extensions that add this support.

Do any of them seem to be more popular or better supported? What extension are you using?

Answers to all welcome words.

+3
source share
2 answers

Well, there seems to be no big answer for this, so we are just doing an internal extension that says "integer types are unlimited."

In our python library, I comment on this check:

def dump_int(self, value, write):
    # in case ints are > 32 bits
    ## extension: ints can be arbitrarily sized
    ## if value > MAXINT or value < MININT:
    ##    raise OverflowError, "int exceeds XML-RPC limits"
+3
source

? "" , , - "" , ... XML-RPC-lib, , .

, , Strings.

( ) , , .

0

All Articles