xml-rpc and 64-bit ints?

2006-05-02 Thread Mark Harrison
I've got an API that deals with 64 bit int values. Is there any way of handling this smoothly? Right now I'm casting the values into and out of strings for the API. If not, are there any nice alternatives to XML-RPC that support this? Many TIA! Mark -- Mark Harrison Pixar Animation Studios

Re: xml-rpc and 64-bit ints?

2006-05-02 Thread Martin v. Löwis
Mark Harrison wrote: I've got an API that deals with 64 bit int values. Is there any way of handling this smoothly? Right now I'm casting the values into and out of strings for the API. In XML-RPC, everything is transmitted as a string, so I don't think that choice is really that bad -