This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

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
Priority: normal Keywords: patch

Created on 2006-06-01 03:28 by savardda, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
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) * (Python committer) Date: 2006-06-01 12:31
Logged In: YES 
user_id=849994

Thanks, fixed in rev. 46587.
History
Date User Action Args
2022-04-11 14:56:17adminsetgithub: 43443
2006-06-01 03:28:35savarddacreate