All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.smartbear.soapui.spring.boot.handler.def.SoapXMLResponseHandler Maven / Gradle / Ivy

There is a newer version: 1.0.3.RELEASE
Show newest version
 package com.smartbear.soapui.spring.boot.handler.def;

import com.eviware.soapui.impl.wsdl.WsdlOperation;
import com.eviware.soapui.model.iface.Response;
import com.eviware.soapui.support.SoapUIException;
import com.smartbear.soapui.spring.boot.handler.SoapResponseHandler;

/**
 * 请求响应处理:返回String对象
 * @author 		: vindell
 */
public class SoapXMLResponseHandler implements SoapResponseHandler {
 
	@Override
	public String handleResponse(WsdlOperation operationInst, Response response) throws SoapUIException {
		// 响应内容
		return response.getContentAsXml();
	}
}

 




© 2015 - 2025 Weber Informatics LLC | Privacy Policy