Adding support for generic XML POST data

This commit is contained in:
Miroslav Stampar
2012-10-04 18:44:12 +02:00
parent f71b937add
commit 098e446ca4
4 changed files with 7 additions and 5 deletions

View File

@@ -197,5 +197,6 @@ SQL_STATEMENTS = {
POST_HINT_CONTENT_TYPES = {
POST_HINT.JSON: "application/json",
POST_HINT.SOAP: "application/soap+xml"
POST_HINT.SOAP: "application/soap+xml",
POST_HINT.XML: "application/xml"
}