<br>Hi,<br><br>When an exception occurs in a function, SimpleXMLRPCServer currently sends exception type and value back to the client (in &lt;faultString&gt;) . So the client sees some thing like:<br><br>&quot;&#39;&lt;type \&#39;
exceptions.ValueError\&#39;&gt;:invalid literal for int() with base 10&quot;<br><br>This string is constructed in _marshaled_dispatch() as &quot;&quot;%s:%s&quot; % (exc_type, exc_value)&quot;. How about adding the stack traceback to this string? I found it very useful to have the server side traceback in case of failures. I will come up with a patch if there is any interest. 
<br><br>Some thing similar has been done in case of internal server errors (in r57158).<br><br>Thanks,<br>Raghu<br><br><br><br>