webService 实战篇--客户端调用(1),拼多多+携程+蚂蚁金服技术面集合
作者:互联网
xmlns:xsd=“http://www.w3.org/2001/XMLSchema”>
wsdl:types
<schema elementFormDefault=“qualified” targetNamespace=“http://ws.gxlu.com.cn”
xmlns=“http://www.w3.org/2001/XMLSchema”>
</wsdl:types>
<wsdl:message name=“getGridResourceResponse”>
<wsdl:part element=“impl:getGridResourceResponse” name=“parameters”></wsdl:part>
</wsdl:message>
<wsdl:message name=“getGridResourceRequest”>
<wsdl:part element=“impl:getGridResource” name=“parameters”></wsdl:part>
</wsdl:message>
<wsdl:portType name=“GridWebService”>
<wsdl:operation name=“getGridResource”>
<wsdl:input message=“impl:getGridResourceRequest” name=“getGridResourceRequest”></wsdl:input>
<wsdl:output message=“impl:getGridResourceResponse” name=“getGridResourceResponse”></wsdl:output>
</wsdl:operation>
</wsdl:portType>
<wsdl:binding name=“GridWebServiceSoapBinding” type=“impl:GridWebService”>
<wsdlsoap:binding style=“document” transport=“http://schemas.xmlsoap.org/soap/http”/>
<wsdl:operation name=“getGridResource”>
<wsdlsoap:operation soapAction=""/>
<wsdl:input name=“getGridResourceRequest”>
<wsdlsoap:body use=“literal”/>
</wsdl:input>
<wsdl:output name=“getGridResourceResponse”>
<wsdlsoap:body use=“literal”/>
</wsdl:output>
</wsdl:operation>
</wsdl:binding>
<wsdl:service name=“GridWebServiceService”>
<wsdl:port binding=“impl:GridWebServiceSoapBinding” name=“GridWebService”>
<wsdlsoap:address location=“http://10.213.54.118:7000/BundleSmart/webservice/GridWebService”/>
</wsdl:port>
</wsdl:service>
</wsdl:definitions>
==========================================================================
如果右键没有发现webservice ,说明你的IDEA 没有webservice 插件,不用慌,装一个就可以了,也很简单。
ctrl+alt+s,勾选如下图两个就可以了。
右键项目webservice,如下图,会弹出框。
file:/D:/guanxian.wsdl 是我本地的wsdl 文件路径,如果网络互通,可以直接填写url.
com.guanxian.webserver 是我们自定义存放的包路径。
点击OK,就可以下载成功,如下图。
===================================================================
在这之前,先说一下需求以及接口的格式吧。
输出格式:
<?xml version="1.0" encoding="UTF-8"?>网格、经营部ID
1-网格、2-经营部
0-失败、1-成功
失败时反馈失败信息(例:该网格数据不存在、该经营部数据不存在。。。)
<gcll_line>
<gcll_name>专线名称</gcll_name>
<gcll_type>专线类型</gcll_type>
</gcll_line>
<gcll_line>
<gcll_name>专线名称</gcll_name>
<gcll_type>专线类型</gcll_type>
</gcll_line>
<gcll_site>
<gcll_name>站点名称</gcll_name>
</gcll_site>
<gcll_site>
<gcll_name>站点名称</gcll_name>
</gcll_site>
<gcll_customer>
<gcll_name>站点名称</gcll_name>
</gcll_customer>
<gcll_customer>
<gcll_name>站点名称</gcll_name>
</gcll_customer>
可以看到都是xml 格式的。我们这里请求的参数比较少,所以就直接拼接了。
private String queryFromEoms() throws Exception {
StringBuilder sb = new StringBuilder();
sb.append("<?xml version=\"1.0\" encoding=\"UTF-8\"?>")
.append("")
.append("")
.append("").append(grid).append("")
.append("").append(type).append("")
.append("")
.append("");
log.info("------requestxml-------"+sb.toString());
GridWebServiceSoapBindingStub stub =new GridWebServiceSoapBindingStub();
return stub.getGridResource(stub.toString());
}
========================================================================
但是返回给我们也是xml ,这里我们返回给前端xml的话就不好了,所以我们将xml 转成json 来返回。
com.alibaba
fastjson
1.2.67
dom4j
dom4j
1.6.1
public class XmlUtils {
public static JSONObject xml2Json(String xmlStr) throws Exception{
Document doc= DocumentHelper.parseText(xmlStr);
JSONObject json=new JSONObject();
dom4j2Json(doc.getRootElement(), json);
return json;
}
/**
-
xml转json
-
@param element
-
@param json
*/
public static void dom4j2Json(Element element, JSONObject json){
//如果是属性
for(Object o:element.attributes()){
Attribute attr=(Attribute)o;
if(!isEmpty(attr.getValue())){
json.put("@"+attr.getName(), attr.getValue());
}
}
List chdEl=element.elements();
if(chdEl.isEmpty()&&!isEmpty(element.getText())){//如果没有子元素,只有一个值
json.put(element.getName(), element.getText());
}
for(Element e:chdEl){//有子元素
if(!e.elements().isEmpty()){//子元素也有子元素
JSONObject chdjson=new JSONObject();
dom4j2Json(e,chdjson);
Object o=json.get(e.getName());
if(o!=null){
JSONArray jsona=null;
if(o instanceof JSONObject){//如果此元素已存在,则转为jsonArray
JSONObject jsono=(JSONObject)o;
json.remove(e.getName());
jsona=new JSONArray();
jsona.add(jsono);
jsona.add(chdjson);
}
if(o instanceof JSONArray){
jsona=(JSONArray)o;
jsona.add(chdjson);
}
json.put(e.getName(), jsona);
}else{
if(!chdjson.isEmpty()){
json.put(e.getName(), chdjson);
}
}
}else{//子元素没有子元素
for(Object o:element.attributes()){
Attribute attr=(Attribute)o;
if(!isEmpty(attr.getValue())){
json.put("@"+attr.getName(), attr.getValue());
}
}
if(!e.getText(
《一线大厂Java面试题解析+后端开发学习笔记+最新架构讲解视频+实战项目源码讲义》
【docs.qq.com/doc/DSmxTbFJ1cmN1R2dB】 完整内容开源分享
).isEmpty()){
json.put(e.getName(), e.getText());
}
}
标签:实战篇,webService,--,JSONObject,getName,element,json,append,attr 来源: https://blog.csdn.net/m0_64867588/article/details/121730048