Collections:
HTTP POST with XML Message
How to use HTTP protocol to post an XML message to a server?
✍: FYIcenter.com
You can follow this tutorial to post an XML message to a server with JMeter.
1. Create a Test Plan called Azure-Echo-API.jmx with the following HTTP Request in a Thread Group:
Protocol: http Server Name: echoapi.cloudapp.net Method: POST Path: /api Body Data: <?xml version="1.0"?> <TestRun xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://sqa.fyicenter.com"> <field name="ID">1</field> <field name="Name">First Run</field> <field name="Success">1</field> <field name="Reference" xsi:nil="true" /> </TestRun>
2. Add a "View Results Tree" listener to the test plan. And run it.
3. Open the "View Results Tree" listener, select the HTTP Request, and click on "Response Data". You see the same XML message returned back from the saver.
The picture below shows you the posted XML message returned
from a remote server:
Â
⇒ XML Assertion - XML Validation
⇠Working With XML Body Messages
⇑ Working With XML Body Messages
⇑⇑ Apache JMeter Tutorials
2018-03-18, 8416👍, 0💬
Popular Posts:
Where to find tutorials on UFT (Unified Functional Testing) tool? I want to know how to use UFT. Her...
How to set Content-Type to application/json? The server requires the Content-Type to be application/...
How to perform UUDecode (Unix-to-Unix Decode)? UUEncode is Unix-to-Unix encoding used on Unix system...
How to set Content-Type to application/json? The server requires the Content-Type to be application/...
How to generate date and time test values? Timestamp values are frequently needed in testing almost ...