[Python-Dev] 64-bit values in XML RPC: OverflowError: int exceeds XML-RPC limits

Tarek Ziadé ziade.tarek at gmail.com
Wed Jul 15 16:46:51 CEST 2009


On Wed, Jul 15, 2009 at 4:42 PM, Peter
Hanecak<peter.hanecak at alcatel-lucent.sk> wrote:
> Hello,
>
> thank you David and Benjamin for quick response.
>
> So my subsequent question is: What can help me solve the "writing" part?

Use strings.

Send str(0x7FFFFFFF) from the client for example , and get back your
number on server side with a long(number)  call.

That's what I do.


More information about the Python-Dev mailing list