Re: XMLRPCServer issues

2006-03-27 Thread looping
Fredrik Lundh wrote: > "looping" wrote: > > > > 2. You might want to transmit integers as strings rather than use the > > > XML-RPC integer type (which is limited to numbers between -2147483648 > > > and 2147483647). > > > > Is it a limit of XML-RPC RFC or a limit (probably with a good reason) > >

Re: XMLRPCServer issues

2006-03-27 Thread Fredrik Lundh
"looping" wrote: > > 2. You might want to transmit integers as strings rather than use the > > XML-RPC integer type (which is limited to numbers between -2147483648 > > and 2147483647). > > Is it a limit of XML-RPC RFC or a limit (probably with a good reason) > of the python xmlrpclib ? the speci

Re: XMLRPCServer issues

2006-03-27 Thread looping
Brian Quinlan wrote: > 1. Is there on option to get cx_Oracle to return string data as unicode > rather than strings objects? XML-RPC aside, dealing with unicode objects > might be better than dealing with encoded strings. I don't think cx_Oracle can return unicode string, so my code to convert s

Re: XMLRPCServer issues

2006-03-27 Thread Brian Quinlan
1. Is there on option to get cx_Oracle to return string data as unicode rather than strings objects? XML-RPC aside, dealing with unicode objects might be better than dealing with encoded strings. 2. You might want to transmit integers as strings rather than use the XML-RPC integer type (which i