在 jmeter 中发送 XML 请求
Issue sending XML request as in jmeter
我试图在 jmeter 中发送 xml 请求为 **<Calc><Info>**
.. 但我收到请求为 <;计算请求 > < ;信息 > 请帮忙
JMeter 应该“按原样”发送请求,您的应用程序可能就是这种情况 escaping of the XML special characters
演示:
一般来说,如果不看您的 HTTP Request sampler configuration, and request body/headers from the View Results Tree listener. It might be the case you didn't add the relevant Content-Type header using the HTTP Header Manager 就不可能得出全面的答案,因此您的应用程序不知道如何正确处理请求。
我试图在 jmeter 中发送 xml 请求为 **<Calc><Info>**
.. 但我收到请求为 <;计算请求 > < ;信息 > 请帮忙
JMeter 应该“按原样”发送请求,您的应用程序可能就是这种情况 escaping of the XML special characters
演示:
一般来说,如果不看您的 HTTP Request sampler configuration, and request body/headers from the View Results Tree listener. It might be the case you didn't add the relevant Content-Type header using the HTTP Header Manager 就不可能得出全面的答案,因此您的应用程序不知道如何正确处理请求。