Commit 35a1119d authored by Cédric Le Ninivin's avatar Cédric Le Ninivin

erp5_api_style: Add Ugly code because customer dotnet sends strange characters before JSON

parent b61b2c5f
...@@ -4,6 +4,10 @@ from zExceptions import NotFound ...@@ -4,6 +4,10 @@ from zExceptions import NotFound
# an external script is need to extract content from body: REQUEST.get('BODY') # an external script is need to extract content from body: REQUEST.get('BODY')
mode = mode or context.REQUEST.form.get("mode", "get") mode = mode or context.REQUEST.form.get("mode", "get")
text_content = text_content or context.REQUEST.form.get("text_content", "") text_content = text_content or context.REQUEST.form.get("text_content", "")
# Ugly code because dotnet sends strange characters before JSON
while text_content and text_content[0] != "{":
text_content = text_content[1:]
document_id = document_id or context.REQUEST.form.get("document_id", "") document_id = document_id or context.REQUEST.form.get("document_id", "")
web_section_value = context.getWebSectionValue() web_section_value = context.getWebSectionValue()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment