Content
View differences
Updated by Jan Sandbrink over 12 years ago
When issuing POST or PUT-Requests I want to receive an error-code if my request is not accepted by the server.
### Scenarios
**Try to set a non-existent property**
<?xml version="1.0" encoding="UTF-8"?>
<planning_element>
<subject>This is okay</subject>
<non_existent_property>This will silently be dropped</non_existent_property>
</planning_element>
The above request will be accepted by the server, but it will silently drop the unknown attribute and return a successful status code.
<?xml version="1.0" encoding="UTF-8"?>
<planning_element>
<subject>This is okay</subject>
<non_existent_property>This will silently be dropped</non_existent_property>
</planning_element>
The above request will be accepted by the server, but it will silently drop the unknown attribute and return a successful status code.