在使用soapui测试webservice接口的时候如果需要传入xml格式的参数
这么写是不对的,会报错org.dom4j.DocumentException: Error on line 1 of document : 文件提前结束。 Nested exception: 文件提前结束。后台接收不到数据
正确写法:
加上转义字符<![CDATA[]]>和头文件<?xml version="1.0" encoding="UTF-8"?>: