kettle中的Webservice服务查询控件功能挺强大的,可以调用大多数的Webservice服务。但是最近遇到一个问题:如果传参是XML时,XML中的 <、>这样的符号kettle会识别不了,导致调接口失败。于是就想自己编写java代码去直接调用Webservice。
一、总体框架
二、java源码
import java.util.*;
import org.apache.axiom.om.*;
import org.apache.axiom.soap.*;
import org.apache.axis2.*;
import org.apache.axis2.addressing.*;
import org.apache.axis2.client.*;
import org.apache.axis2.transport.http.*;
import org.apache.axis2.transport.http.HttpTransportProperties.*;
private static EndpointReference targetEPR =
new EndpointReference("http://www.webxml.com.cn/WebServices/WeatherWebService.asmx?WSDL");
private static OMFactory fac = OMAbstractFactory.getOMFactory();
static OMNamespace omNs = fac.createOMNamespace("http://WebXml.com.cn/", "tns");
public boolean processRow(StepMetaInterface smi, StepDataInterface sdi) throws KettleException,AxisFault
{
if (first){
first = false;
}
Object[] r = getRow();
if (r == null) {
setOutputDone();
return false;
}
r = createOutputRow(r, data.outputRowMeta.size());
String theCityName = get(Fields.In, "theCityName").getString(r);
OMElement result=test(theCityName);
get(Fields.Out, "result_last").setValue(r,result);
putRow(data.outputRowMeta, r);
return true;
}
public static OMElement test(String theCityName) throws AxisFault{
ServiceClient sender = new ServiceClient();
/****************************Weather**************************************/
sender.setOptions(buildOptions("http://WebXml.com.cn/getWeatherbyCityName"));
OMElement result = sender.sendReceive(buildParam("getWeatherbyCityName",new String[]{"theCityName"},new String[]{theCityName}));
//根据城市或地区名称查询获得未来三天内天气情况、现在的天气实况、天气和生活指数
/**************************************************************************/
return result;
}
/**
* @see 调用webservice得到天气预报支持的城市
* @return
*/
public static OMElement buildParam(String method,String[] arg,String[] val) {
OMElement data = fac.createOMElement(method, omNs);
for(int i=0;i
三、结果
四、注意事项
用的方法是AXIS2,里面的jar包先拷到kettle中的lib文件夹。