classification
Title: Fault in XMLRPC not always returned to client
Type: Stage:
Components: XML Versions: Python 2.4
process
Status: closed Resolution: accepted
Dependencies: Superseder:
Assigned To: Nosy List: georg.brandl, savardda (2)
Priority: normal Keywords patch

Created on 2006-06-01 03:28 by savardda, last changed 2006-06-01 12:31 by georg.brandl.

Files
File name Uploaded Description Edit Remove
SimpleXMLRPCServer.patch savardda, 2006-06-01 03:28 Patch for SimpleXMLRPCServer.py
Messages (2)
msg50403 - (view) Author: Daniel Savard (savardda) Date: 2006-06-01 03:28
In XMLRPC communication, if an error occurs while
decoding the stream, the Fault is not always returned
to the client as a Fault object.

This is a small mistake in the SimpleXMLRPCServer.py
file  where the decoding function is outside the
try/catch but should be inside.

A patch is included.  Very simple so revision should be
easy.

Thanks,
Daniel Savard
msg50404 - (view) Author: Georg Brandl (georg.brandl) Date: 2006-06-01 12:31
Logged In: YES 
user_id=849994

Thanks, fixed in rev. 46587.
History
Date User Action Args
2006-06-01 03:28:35savarddacreate