duffleit / xmlrpcnet

Automatically exported from code.google.com/p/xmlrpcnet
0 stars 0 forks source link

uint causes XmlRpcUnsupportedTypeException #60

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Define and use an interface with the following method:
[XmlRpcMethod]
void SetTimeout(uint milliseconds);

What is the expected output? What do you see instead?
XmlRpcUnsupportedTypeException

What version of the product are you using? On what operating system?
2.2.0

Please provide any additional information below:
I know uint is not in the XMLRPC spec, but it could perhaps be 
automatically cast down to an i4/int.

Original issue reported on code.google.com by paul.pea...@comcast.net on 18 Aug 2009 at 8:11

GoogleCodeExporter commented 9 years ago
An int stores a different range of values to a uint.

Original comment by ChasC...@gmail.com on 22 May 2010 at 3:52