First commit (and working one) for an Issue #287 (XML-RPC server)

This commit is contained in:
Miroslav Stampar
2012-12-11 16:02:06 +01:00
parent b5884c7eda
commit b9f6fc5f4e
4 changed files with 66 additions and 9 deletions

View File

@@ -482,6 +482,9 @@ EVENTVALIDATION_REGEX = r'(?i)(?P<name>__EVENTVALIDATION[^"]*)[^>]+value="(?P<re
# Number of rows to generate inside the full union test for limited output (mustn't be too large to prevent payload length problems)
LIMITED_ROWS_TEST_NUMBER = 15
# Default TCP port used for XML-RPC server instance
XML_RPC_SERVER_PORT = 8776
# Regular expression for SOAP-like POST data
SOAP_RECOGNITION_REGEX = r"(?s)\A(<\?xml[^>]+>)?\s*<([^> ]+)( [^>]+)?>.+</\2.*>\s*\Z"