我已经按照soap ui模拟页面上的教程,根据在soap ui中创建的Groovy脚本返回动态xml响应。
示例响应存在于项目根目录中。即,在Groovy脚本返回响应的地方,脚本中的代码看起来像这样......
import com.eviware.soapui.support.GroovyUtils
import groovy.xml.XmlUtil
def groovyUtils = new GroovyUtils(context)
def xmlParser = new XmlParser()
def responseContent = xmlParser.parse(groovyUtils.projectPath + "/responses/get-veh-details-response-one.xml")
context.content = XmlUtil.serialize(responseContent)
我现在需要将mock导出为.war文件并将其部署到服务器。 soap ui是否允许我以某种方式包含我的" /responses/get-veh-details-response-one.xml"在战争中?