- 浏览: 341467 次
- 性别:
- 来自: 北京
文章分类
最新评论
-
zqb666kkk:
有示例代码吗
WebService CXF学习(高级篇3):WS-Security -
zhujiangtaobl0505:
楼主有源码没?发下,我邮箱465971531@qq.com,我 ...
WebService CXF学习(高级篇2):CXF+Spring+Hibernate -
ssy341:
http://localhost:8080/jforum/in ...
JForum安装详解 -
songzht:
看了上面的代码,这两个类型是怎么定义的?private Bas ...
JfreeChar结合struts2展示柱状图和饼状图(已解决乱码问题) -
Getwaysun:
持久化类中使用boolean定义某个字段后,报Null val ...
null不能赋值给int类型,Integer可以。
近期项目中需要用到webservice,接口提供方使用.net编写,返回的是自定义对象,对象中有图片。
接口描述文件如下
wsdl文件如下
调用过程
我在调用接口过程中碰到的难题是对返回对象的接受,返回对象是.net中定义的,在java中接受就需要进行序列化,序列化的问题搞了好几天没进展,最后实在没招了就还是使用啦
AXIS1.4的 wsdl2java 生成客户端,从生成的代码中找到了序列化返回对象的类,修改后直接引用。
返回对象在java中的定义(通过wsdl2java生成)
当时问什么不直接用wsdl2java生成客户端是因为生成的代码在当时还读不懂,没有可控性
所以选择了自己手写客户端,第一次学习使用webservice,有不足地方请大家指正,共同学习,共同前进。
接口描述文件如下
POST /FJJTMapService/Service.asmx HTTP/1.1 Host: 192.168.5.92 Content-Type: application/soap+xml; charset=utf-8 Content-Length: length <?xml version="1.0" encoding="utf-8"?> <soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope"> <soap12:Body> <ChartService xmlns="http://www.fzis.com.cn/"> <type>string</type> <width>int</width> <height>int</height> <imageType>string</imageType> <fieldnames>string</fieldnames> <fieldvalues>string</fieldvalues> <rgbcolors>string</rgbcolors> <chartType>string</chartType> <size>string</size> </ChartService> </soap12:Body> </soap12:Envelope> HTTP/1.1 200 OK Content-Type: application/soap+xml; charset=utf-8 Content-Length: length <?xml version="1.0" encoding="utf-8"?> <soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope"> <soap12:Body> <ChartServiceResponse xmlns="http://www.fzis.com.cn/"> <ChartServiceResult> <Xmax>double</Xmax> <Xmin>double</Xmin> <Ymax>double</Ymax> <Ymin>double</Ymin> <MapByte>base64Binary</MapByte> <ErrorMessage>string</ErrorMessage> </ChartServiceResult> </ChartServiceResponse> </soap12:Body> </soap12:Envelope>
wsdl文件如下
//返回对象 <s:complexType name="Map"> - <s:sequence> <s:element minOccurs="1" maxOccurs="1" name="Xmax" type="s:double" /> <s:element minOccurs="1" maxOccurs="1" name="Xmin" type="s:double" /> <s:element minOccurs="1" maxOccurs="1" name="Ymax" type="s:double" /> <s:element minOccurs="1" maxOccurs="1" name="Ymin" type="s:double" /> <s:element minOccurs="0" maxOccurs="1" name="MapByte" type="s:base64Binary" /> <s:element minOccurs="0" maxOccurs="1" name="ErrorMessage" type="s:string" /> </s:sequence> </s:complexType> //调用方法 - <s:element name="ChartService"> - <s:complexType> - <s:sequence> <s:element minOccurs="0" maxOccurs="1" name="type" type="s:string" /> <s:element minOccurs="1" maxOccurs="1" name="width" type="s:int" /> <s:element minOccurs="1" maxOccurs="1" name="height" type="s:int" /> <s:element minOccurs="0" maxOccurs="1" name="imageType" type="s:string" /> <s:element minOccurs="0" maxOccurs="1" name="fieldnames" type="s:string" /> <s:element minOccurs="0" maxOccurs="1" name="fieldvalues" type="s:string" /> <s:element minOccurs="0" maxOccurs="1" name="rgbcolors" type="s:string" /> <s:element minOccurs="0" maxOccurs="1" name="chartType" type="s:string" /> <s:element minOccurs="0" maxOccurs="1" name="size" type="s:string" /> </s:sequence> </s:complexType> </s:element> - <s:element name="ChartServiceResponse"> - <s:complexType> - <s:sequence> <s:element minOccurs="0" maxOccurs="1" name="ChartServiceResult" type="tns:Map" /> </s:sequence> </s:complexType> </s:element>
调用过程
try { // WebService URL String url = "http://192.168.5.92/FJJTMapService/Service.asmx"; String namespace = "http://www.fzis.com.cn/"; String method = "ChartService"; //创建调用服务 Service service = new Service(); Call call = (Call) service.createCall(); call.setTargetEndpointAddress(new java.net.URL(url)); call.setUseSOAPAction(true); call.setSOAPActionURI(namespace+method); //注册对象 QName qn=new QName(namespace, "Map"); call.registerTypeMapping(RouteThemeResult.class, qn, new org.apache.axis.encoding.ser. BeanSerializerFactory(RouteThemeResult.class, qn), new org.apache.axis.encoding.ser. BeanDeserializerFactory(RouteThemeResult.class, qn)); // 设置要调用的方法 call.setOperationName(new QName(namespace, method)); // 该方法需要的参数 call.addParameter(new QName(namespace,"type"),XMLType.XSD_STRING,ParameterMode.IN); call.addParameter(new QName(namespace,"width"),XMLType.XSD_INT,ParameterMode.IN); call.addParameter(new QName(namespace,"height"),XMLType.XSD_INT,ParameterMode.IN); call.addParameter(new QName(namespace,"imageType"),XMLType.XSD_STRING,ParameterMode.IN); call.addParameter(new QName(namespace,"fieldnames"),XMLType.XSD_STRING,ParameterMode.IN); call.addParameter(new QName(namespace,"fieldvalues"),XMLType.XSD_STRING,ParameterMode.IN); call.addParameter(new QName(namespace,"rgbcolors"),XMLType.XSD_STRING,ParameterMode.IN); call.addParameter(new QName(namespace,"chartType"),XMLType.XSD_STRING,ParameterMode.IN); call.addParameter(new QName(namespace,"size"),XMLType.XSD_STRING,ParameterMode.IN); // 方法的返回值类型 //call.setReturnType(XMLType.XSD_STRING); call.setReturnType(qn); //设置参数 String type = gisChartInfo.getLayername(); int width = gisChartInfo.getWidth(); int height = gisChartInfo.getHeight(); String imageType = gisChartInfo.getImageType(); String fieldnames = gisChartInfo.getFieldnames(); String fieldvalues = gisChartInfo.getFieldvalues(); String rgbcolors = gisChartInfo.getRgbcolors(); String chartType = gisChartInfo.getChartType(); String size = gisChartInfo.getSize(); Object[] parameters = null; parameters = new Object[]{type,width+"",height+"",imageType,fieldnames,fieldvalues,rgbcolors,chartType,size}; // 调用该方法 byte[] imageBytes ; RouteThemeResult result = new RouteThemeResult() ; Object obj = call.invoke(parameters); if(obj!=null){ System.out.println("ishere:"); if (obj instanceof java.rmi.RemoteException) { throw (java.rmi.RemoteException)obj; } else { try { result = (RouteThemeResult) obj; } catch (java.lang.Exception _exception) { result = (RouteThemeResult) org.apache.axis.utils.JavaUtils.convert(obj, RouteThemeResult.class); } } }
我在调用接口过程中碰到的难题是对返回对象的接受,返回对象是.net中定义的,在java中接受就需要进行序列化,序列化的问题搞了好几天没进展,最后实在没招了就还是使用啦
AXIS1.4的 wsdl2java 生成客户端,从生成的代码中找到了序列化返回对象的类,修改后直接引用。
返回对象在java中的定义(通过wsdl2java生成)
public class RouteThemeResult implements java.io.Serializable { private double xmax; private double xmin; private double ymax; private double ymin; private byte[] mapByte; private java.lang.String errorMessage; public RouteThemeResult() { } public RouteThemeResult( double xmax, double xmin, double ymax, double ymin, byte[] mapByte, java.lang.String errorMessage) { this.xmax = xmax; this.xmin = xmin; this.ymax = ymax; this.ymin = ymin; this.mapByte = mapByte; this.errorMessage = errorMessage; } /** * Gets the xmax value for this Map. * * @return xmax */ public double getXmax() { return xmax; } /** * Sets the xmax value for this Map. * * @param xmax */ public void setXmax(double xmax) { this.xmax = xmax; } /** * Gets the xmin value for this Map. * * @return xmin */ public double getXmin() { return xmin; } /** * Sets the xmin value for this Map. * * @param xmin */ public void setXmin(double xmin) { this.xmin = xmin; } /** * Gets the ymax value for this Map. * * @return ymax */ public double getYmax() { return ymax; } /** * Sets the ymax value for this Map. * * @param ymax */ public void setYmax(double ymax) { this.ymax = ymax; } /** * Gets the ymin value for this Map. * * @return ymin */ public double getYmin() { return ymin; } /** * Sets the ymin value for this Map. * * @param ymin */ public void setYmin(double ymin) { this.ymin = ymin; } /** * Gets the mapByte value for this Map. * * @return mapByte */ public byte[] getMapByte() { return mapByte; } /** * Sets the mapByte value for this Map. * * @param mapByte */ public void setMapByte(byte[] mapByte) { this.mapByte = mapByte; } /** * Gets the errorMessage value for this Map. * * @return errorMessage */ public java.lang.String getErrorMessage() { return errorMessage; } /** * Sets the errorMessage value for this Map. * * @param errorMessage */ public void setErrorMessage(java.lang.String errorMessage) { this.errorMessage = errorMessage; } private java.lang.Object __equalsCalc = null; public synchronized boolean equals(java.lang.Object obj) { if (!(obj instanceof RouteThemeResult)) return false; RouteThemeResult other = (RouteThemeResult) obj; if (obj == null) return false; if (this == obj) return true; if (__equalsCalc != null) { return (__equalsCalc == obj); } __equalsCalc = obj; boolean _equals; _equals = true && this.xmax == other.getXmax() && this.xmin == other.getXmin() && this.ymax == other.getYmax() && this.ymin == other.getYmin() && ((this.mapByte==null && other.getMapByte()==null) || (this.mapByte!=null && java.util.Arrays.equals(this.mapByte, other.getMapByte()))) && ((this.errorMessage==null && other.getErrorMessage()==null) || (this.errorMessage!=null && this.errorMessage.equals(other.getErrorMessage()))); __equalsCalc = null; return _equals; } private boolean __hashCodeCalc = false; public synchronized int hashCode() { if (__hashCodeCalc) { return 0; } __hashCodeCalc = true; int _hashCode = 1; _hashCode += new Double(getXmax()).hashCode(); _hashCode += new Double(getXmin()).hashCode(); _hashCode += new Double(getYmax()).hashCode(); _hashCode += new Double(getYmin()).hashCode(); if (getMapByte() != null) { for (int i=0; i<java.lang.reflect.Array.getLength(getMapByte()); i++) { java.lang.Object obj = java.lang.reflect.Array.get(getMapByte(), i); if (obj != null && !obj.getClass().isArray()) { _hashCode += obj.hashCode(); } } } if (getErrorMessage() != null) { _hashCode += getErrorMessage().hashCode(); } __hashCodeCalc = false; return _hashCode; } // Type metadata private static org.apache.axis.description.TypeDesc typeDesc = new org.apache.axis.description.TypeDesc(RouteThemeResult.class, true); static { typeDesc.setXmlType(new javax.xml.namespace.QName("http://www.fzis.com.cn/", "Map")); org.apache.axis.description.ElementDesc elemField = new org.apache.axis.description.ElementDesc(); elemField.setFieldName("xmax"); elemField.setXmlName(new javax.xml.namespace.QName("http://www.fzis.com.cn/", "Xmax")); elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "double")); elemField.setNillable(false); typeDesc.addFieldDesc(elemField); elemField = new org.apache.axis.description.ElementDesc(); elemField.setFieldName("xmin"); elemField.setXmlName(new javax.xml.namespace.QName("http://www.fzis.com.cn/", "Xmin")); elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "double")); elemField.setNillable(false); typeDesc.addFieldDesc(elemField); elemField = new org.apache.axis.description.ElementDesc(); elemField.setFieldName("ymax"); elemField.setXmlName(new javax.xml.namespace.QName("http://www.fzis.com.cn/", "Ymax")); elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "double")); elemField.setNillable(false); typeDesc.addFieldDesc(elemField); elemField = new org.apache.axis.description.ElementDesc(); elemField.setFieldName("ymin"); elemField.setXmlName(new javax.xml.namespace.QName("http://www.fzis.com.cn/", "Ymin")); elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "double")); elemField.setNillable(false); typeDesc.addFieldDesc(elemField); elemField = new org.apache.axis.description.ElementDesc(); elemField.setFieldName("mapByte"); elemField.setXmlName(new javax.xml.namespace.QName("http://www.fzis.com.cn/", "MapByte")); elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "base64Binary")); elemField.setMinOccurs(0); elemField.setNillable(false); typeDesc.addFieldDesc(elemField); elemField = new org.apache.axis.description.ElementDesc(); elemField.setFieldName("errorMessage"); elemField.setXmlName(new javax.xml.namespace.QName("http://www.fzis.com.cn/", "ErrorMessage")); elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string")); elemField.setMinOccurs(0); elemField.setNillable(false); typeDesc.addFieldDesc(elemField); } /** * Return type metadata object */ public static org.apache.axis.description.TypeDesc getTypeDesc() { return typeDesc; } /** * Get Custom Serializer */ public static org.apache.axis.encoding.Serializer getSerializer( java.lang.String mechType, java.lang.Class _javaType, javax.xml.namespace.QName _xmlType) { return new org.apache.axis.encoding.ser.BeanSerializer( _javaType, _xmlType, typeDesc); } /** * Get Custom Deserializer */ public static org.apache.axis.encoding.Deserializer getDeserializer( java.lang.String mechType, java.lang.Class _javaType, javax.xml.namespace.QName _xmlType) { return new org.apache.axis.encoding.ser.BeanDeserializer( _javaType, _xmlType, typeDesc); } }
当时问什么不直接用wsdl2java生成客户端是因为生成的代码在当时还读不懂,没有可控性
所以选择了自己手写客户端,第一次学习使用webservice,有不足地方请大家指正,共同学习,共同前进。
评论
2 楼
lianj_lee
2009-09-10
谢谢 在网上找了N久,没有看到一个像样的文章 都是抄过来抄过去的。
中国的程序员真是相当 “拉及”!
中国的程序员真是相当 “拉及”!
1 楼
lz726
2009-08-11
非常感谢。。。
发表评论
-
svnserver配置文件详解
2013-02-26 15:43 1398svnserve是SVN自带的一个轻型服务器,客户端通过使 ... -
启动tomcat报StandardServer.await: create[8005]
2013-02-19 11:15 1145启动tomcat报StandardServer. ... -
js读取excel
2012-09-26 17:26 2243项目需要用到将excel中的数据导入到页面的文本框中,但并不想 ... -
java里的split函数
2012-04-11 16:55 1005今天要用到split函数,对浮点数进行分割为子字符串,然后将结 ... -
sqlserver 2005 Network error IOException: Connection refused: connect
2010-07-12 11:29 1799打开程序 Microsoft SQL Server 服务器网络 ... -
Eclipse快捷键应用
2010-05-18 11:17 11381. 已知接口,查找实现类(已知实现类,查找接口) 光标 ... -
重置mysql5.1的root密码
2009-12-29 15:13 2130首先在 MySQL的安装目录下 新建一个pwdhf.txt, ... -
dom4j生成xml的编码问题
2008-11-11 15:55 1765文章引用:http://blog.csdn.net/redez ... -
null不能赋值给int类型,Integer可以。
2008-03-12 12:00 12590报错Null value was assigned to a ...
相关推荐
axis1_4 发布webservice 传递对象或返回对象(一)_benet6_新浪博客.mht
在本实例中,Java通过Apache Axis库调用.NET WebService,主要涉及以下步骤和知识点: 1. **Apache Axis库**:Apache Axis是Apache软件基金会开发的一个开源项目,它提供了Java到SOAP的绑定框架,允许Java开发者...
Apache Axis是一款开源的Web Service框架,它使得Java开发者能够方便地创建和调用Web Service。对于HTTPS的支持,Axis提供了相应的配置和工具。 调用HTTPS Web Service的步骤大致如下: 1. **添加依赖**:首先,你...
说明: 由于上传速度的问题例子面没有加包,请下载后自己将Axis 1.4的lib包放到你的工程里头就可以了。 当然可以调用任何 wsdl地址。只要是webservice 这里是比较流行的。 这里有2个测试地址。 (1)...
在示例代码中,使用了Axis1.4版本来调用.NET的Web服务。`Service`和`Call`对象分别代表服务接口和服务调用。`setTargetEndpointAddress`设置Web服务的URL,`setOperationName`指定要调用的方法,`addParameter`添加...
在示例中,使用了Axis1.x版本(具体为1.4)来调用.NET Web服务。首先,创建一个Service对象,并实例化Call对象。然后,设置目标端点地址(即Web服务的URL),操作名称(对应于Web服务方法),以及输入和输出参数。...
在 .Net 平台上调用 Axis 服务可能会遇到兼容性问题,需要关注数据类型转换、命名空间映射以及 SOAP 版本匹配等问题。 通过本指南,你将对 Axis WebService 开发有深入的理解,能够熟练地创建、发布和调试 Web...
### 使用AXIS开发WebService教程——如何发布自己的WebService #### 一、开发环境搭建与配置 在开始本教程之前,我们先来了解一下作者所使用的开发环境: - **JDK版本**:1.4.2 - **IDE**:MyEclipse 6.0 - **Web...
- **Apache Axis 1.4**:用于构建Web服务的开源框架。 **步骤1**:下载Apache Axis 1.4 您可以从官方网站http://ws.apache.org/axis/下载Axis 1.4的压缩包。 **步骤2**:部署Axis到Tomcat 1. 解压`axis-bin-1_4....
通过这种方式,客户端可以与服务端进行交互,调用"Hello"方法并打印返回结果。 总的来说,AXIS为Web服务的开发和部署提供了强大的工具集。即时发布简化了快速试验的过程,而定制发布则允许开发者根据项目需求实现...
【创建 Axis Webservice 教程】 本教程将详细介绍如何使用 AXIS 开发工具创建并发布 WebService。AXIS 是一个开源的 Java SOAP 工具包,它允许开发者轻松地创建、部署和使用 WebServices。在开始之前,确保你已经...
本文详细介绍了如何使用Axis 1.4版本搭建开发环境、配置Axis、发布WebService以及客户端调用的方法。通过对即时发布和定制发布的对比,可以更好地理解这两种发布方式的特点及其应用场景。希望本文能够帮助初学者快速...
- **Axis 1.4**: Axis是Apache提供的一款用于构建和调用WebService的强大工具,支持多种协议。 这些工具可以从指定网址下载: \[http://ufcsp.ufida.com.cn/xmglnet/kmp/add_show_list.asp?id=2660#hh\] 确保JDK...