`
yongguang423
  • 浏览: 110564 次
  • 性别: Icon_minigender_1
  • 来自: 山东
社区版块
存档分类
最新评论

Axis Web Service开发之旅 (四) --复合类型数据的传

阅读更多

在实际的应用中,不仅需要使用WebService来传递简单类型的数据,有时也需要传递更复杂的数据,这些数据可以被称为复合类型的数据。数组与类(接口)是比较常用的复合类型。在Axis2中可以直接使用将WebService方法的参数或返回值类型声明成数组或类(接口)。但要注意,在定义数组类型时只能使用一维数组,如果想传递多维数组,可以使用分隔符进行分隔,如下面的代码所示:

String[] strArray = new String[]{ "自行车,飞机,火箭","中国,美国,德国", "超人,蜘蛛侠,钢铁侠" } ;

    上面的代码可以看作是一个3*3的二维数组。

    在传递类的对象实例时,除了直接将数组类型声明成相应的类或接口,也可以将对象实例进行序列化,也就是说,将一个对象实例转换成字节数组进行传递,然后接收方再进行反序列化,还原这个对象实例。

    下面的示例代码演示了如何传递数组与类(接口)类型的数据,并演示如何使用字节数组上传图像。本示例的客户端代码使用Java和C#编写。要完成这个例子需要如下几步:

    ComplexTypeService是一个WebService类,该类的代码如下:

import java.io.FileOutputStream;   
import data.DataForm;   
  
public class ComplexTypeService   
{   
    //  上传图像,imageByte参数表示上传图像文件的字节,   
    //  length参数表示图像文件的字节长度(该参数值可能小于imageByte的数组长度)   
    public boolean uploadImageWithByte(byte[] imageByte, int length)   
    {   
        FileOutputStream fos = null;   
        try  
        {   
            //  将上传的图像保存在D盘的test1.jpg文件中   
            fos = new FileOutputStream("d:\\test1.jpg");   
            //  开始写入图像文件的字节   
            fos.write(imageByte, 0, length);   
            fos.close();   
        }   
        catch (Exception e)   
        {   
            return false;   
        }   
        finally  
        {   
            if (fos != null)   
            {   
                try  
                {   
                    fos.close();   
                }   
                catch (Exception e)   
                {   
  
                }   
            }   
        }   
        return true;   
    }   
    //  返回一维字符串数组   
    public String[] getArray()   
    {   
        String[] strArray = new String[]{ "自行车", "飞机", "火箭" };   
        return strArray;   
    }    
    //  返回二维字符串数组   
    public String[] getMDArray()   
    {   
        String[] strArray = new String[]{ "自行车,飞机,火箭","中国,美国,德国", "超人,蜘蛛侠,钢铁侠" } ;   
        return strArray;   
    }   
    //  返回DataForm类的对象实例   
    public DataForm getDataForm()   
    {   
        return new DataForm();   
    }   
    //  将DataForm类的对象实例序列化,并返回序列化后的字节数组   
    public byte[] getDataFormBytes() throws Exception    
    {   
        java.io.ByteArrayOutputStream baos = new java.io.ByteArrayOutputStream();   
        java.io.ObjectOutputStream oos = new java.io.ObjectOutputStream(baos);   
        oos.writeObject(new DataForm());           
        return baos.toByteArray();   
    }       
}  
import java.io.FileOutputStream;
import data.DataForm;

public class ComplexTypeService
{
    //  上传图像,imageByte参数表示上传图像文件的字节,
    //  length参数表示图像文件的字节长度(该参数值可能小于imageByte的数组长度)
    public boolean uploadImageWithByte(byte[] imageByte, int length)
    {
        FileOutputStream fos = null;
        try
        {
            //  将上传的图像保存在D盘的test1.jpg文件中
            fos = new FileOutputStream("d:\\test1.jpg");
            //  开始写入图像文件的字节
            fos.write(imageByte, 0, length);
            fos.close();
        }
        catch (Exception e)
        {
            return false;
        }
        finally
        {
            if (fos != null)
            {
                try
                {
                    fos.close();
                }
                catch (Exception e)
                {

                }
            }
        }
        return true;
    }
    //  返回一维字符串数组
    public String[] getArray()
    {
        String[] strArray = new String[]{ "自行车", "飞机", "火箭" };
        return strArray;
    } 
    //  返回二维字符串数组
    public String[] getMDArray()
    {
        String[] strArray = new String[]{ "自行车,飞机,火箭","中国,美国,德国", "超人,蜘蛛侠,钢铁侠" } ;
        return strArray;
    }
    //  返回DataForm类的对象实例
    public DataForm getDataForm()
    {
        return new DataForm();
    }
    //  将DataForm类的对象实例序列化,并返回序列化后的字节数组
    public byte[] getDataFormBytes() throws Exception 
    {
        java.io.ByteArrayOutputStream baos = new java.io.ByteArrayOutputStream();
        java.io.ObjectOutputStream oos = new java.io.ObjectOutputStream(baos);
        oos.writeObject(new DataForm());        
        return baos.toByteArray();
    }    
}

   

DataForm是要返回的对象实例所对应的类,该类的实现代码如下:

 

package data;   
  
public class DataForm implements java.io.Serializable   
{   
    private String name = "bill";   
    private int age = 20;   
  
    public String getName()   
    {   
        return name;   
    }   
    public void setName(String name)   
    {   
        this.name = name;   
    }   
    public int getAge()   
    {   
        return age;   
    }   
    public void setAge(int age)   
    {   
        this.age = age;   
    }   
}  
package data;

public class DataForm implements java.io.Serializable
{
    private String name = "bill";
    private int age = 20;

    public String getName()
    {
        return name;
    }
    public void setName(String name)
    {
        this.name = name;
    }
    public int getAge()
    {
        return age;
    }
    public void setAge(int age)
    {
        this.age = age;
    }
}

   


由于本示例的WebService类使用了一个Java类(DataForm类),因此,在发布WebService之前,需要先将DataForm.class文件复制到<Tomcat安装目录>\webapps\axis2\WEB-INF\classes\data目录中,然后将ComplexTypeService.class文件复制到<Tomcat安装目录>\webapps\axis2\WEB-INF\pojo目录中,最后启动Tomcat(如果Tomcat已经启动,由于增加了一个DataForm类,因此,需要重新启动Tomcat)。

    在客户端仍然使用了RPC的调用方式,代码如下:

package client;   
  
import javax.xml.namespace.QName;   
import org.apache.axis2.addressing.EndpointReference;   
import org.apache.axis2.client.Options;   
import org.apache.axis2.rpc.client.RPCServiceClient;   
  
public class ComplexTypeRPCClient   
{   
  
    public static void main(String[] args) throws Exception   
    {   
        RPCServiceClient serviceClient = new RPCServiceClient();   
        Options options = serviceClient.getOptions();   
        EndpointReference targetEPR = new EndpointReference(   
                "http://localhost:8080/axis2/services/ComplexTypeService");   
        options.setTo(targetEPR);   
        // 下面的代码调用uploadImageWithByte方法上传图像文件   
        /////////////////////////////////////////   
        // 打开图像文件,确定图像文件的大小   
        java.io.File file = new java.io.File("f:\\images.jpg");   
        java.io.FileInputStream fis = new java.io.FileInputStream("f:\\images.jpg");   
        // 创建保存要上传的图像文件内容的字节数组   
        byte[] buffer = new byte[(int) file.length()];   
        // 将图像文件的内容读取buffer数组中   
        int n = fis.read(buffer);   
        System.out.println("文件长度:" + file.length());   
        Object[] opAddEntryArgs = new Object[]{ buffer, n };   
        Class[] classes = new Class[]{ Boolean.class };   
        QName opAddEntry = new QName("http://ws.apache.org/axis2","uploadImageWithByte");   
        fis.close();   
        // 开始上传图像文件,并输出uploadImageWithByte方法的返回传   
        System.out.println(serviceClient.invokeBlocking(opAddEntry,opAddEntryArgs, classes)[0]);   
        /////////////////////////////////////////   
           
        // 下面的代码调用了getArray方法,并返回一维String数组   
        /////////////////////////////////////////     
        opAddEntry = new QName("http://ws.apache.org/axis2", "getArray");   
        String[] strArray = (String[]) serviceClient.invokeBlocking(opAddEntry,    
                            new Object[]{}, new Class[]{String[].class })[0];   
        for (String s : strArray)   
            System.out.print(s + "  ");   
        System.out.println();   
        /////////////////////////////////////////    
           
  
        // 下面的代码调用了getMDArray方法,并返回一维String数组   
        /////////////////////////////////////////     
        opAddEntry = new QName("http://ws.apache.org/axis2", "getMDArray");   
        strArray = (String[]) serviceClient.invokeBlocking(opAddEntry, new Object[]{},    
                                                          new Class[]{String[].class})[0];   
        for (String s : strArray)   
        {   
            String[] array = s.split(",");   
            for(String ss: array)   
                System.out.print("<" + ss + "> ");   
            System.out.println();   
        }   
        System.out.println();   
        /////////////////////////////////////////    
  
        // 下面的代码调用了getDataForm方法,并返回DataForm对象实例   
        /////////////////////////////////////////     
        opAddEntry = new QName("http://ws.apache.org/axis2", "getDataForm");   
        data.DataForm df = (data.DataForm) serviceClient.invokeBlocking(opAddEntry, new Object[]{},   
                                                                  new Class[]{data.DataForm.class})[0];   
        System.out.println(df.getAge());   
        /////////////////////////////////////////   
           
        // 下面的代码调用了getDataFormBytes方法,并返回字节数组,最后将返回的字节数组反序列化后,转换成DataForm对象实例   
        /////////////////////////////////////////             
        opAddEntry = new QName("http://ws.apache.org/axis2", "getDataFormBytes");   
        buffer = (byte[]) serviceClient.invokeBlocking(opAddEntry, new Object[]{}, new Class[]{byte[].class})[0];   
        java.io.ObjectInputStream ois = new java.io.ObjectInputStream(   
                new java.io.ByteArrayInputStream(buffer));   
        df = (data.DataForm) ois.readObject();   
        System.out.println(df.getName());   
        //////////////////////////////////////////   
    }   
}  
package client;

import javax.xml.namespace.QName;
import org.apache.axis2.addressing.EndpointReference;
import org.apache.axis2.client.Options;
import org.apache.axis2.rpc.client.RPCServiceClient;

public class ComplexTypeRPCClient
{

    public static void main(String[] args) throws Exception
    {
        RPCServiceClient serviceClient = new RPCServiceClient();
        Options options = serviceClient.getOptions();
        EndpointReference targetEPR = new EndpointReference(
                "http://localhost:8080/axis2/services/ComplexTypeService");
        options.setTo(targetEPR);
        // 下面的代码调用uploadImageWithByte方法上传图像文件
        /////////////////////////////////////////
        // 打开图像文件,确定图像文件的大小
        java.io.File file = new java.io.File("f:\\images.jpg");
        java.io.FileInputStream fis = new java.io.FileInputStream("f:\\images.jpg");
        // 创建保存要上传的图像文件内容的字节数组
        byte[] buffer = new byte[(int) file.length()];
        // 将图像文件的内容读取buffer数组中
        int n = fis.read(buffer);
        System.out.println("文件长度:" + file.length());
        Object[] opAddEntryArgs = new Object[]{ buffer, n };
        Class[] classes = new Class[]{ Boolean.class };
        QName opAddEntry = new QName("http://ws.apache.org/axis2","uploadImageWithByte");
        fis.close();
        // 开始上传图像文件,并输出uploadImageWithByte方法的返回传
        System.out.println(serviceClient.invokeBlocking(opAddEntry,opAddEntryArgs, classes)[0]);
        /////////////////////////////////////////
        
        // 下面的代码调用了getArray方法,并返回一维String数组
        /////////////////////////////////////////  
        opAddEntry = new QName("http://ws.apache.org/axis2", "getArray");
        String[] strArray = (String[]) serviceClient.invokeBlocking(opAddEntry, 
                            new Object[]{}, new Class[]{String[].class })[0];
        for (String s : strArray)
            System.out.print(s + "  ");
        System.out.println();
        ///////////////////////////////////////// 
        

        // 下面的代码调用了getMDArray方法,并返回一维String数组
        /////////////////////////////////////////  
        opAddEntry = new QName("http://ws.apache.org/axis2", "getMDArray");
        strArray = (String[]) serviceClient.invokeBlocking(opAddEntry, new Object[]{}, 
                                                          new Class[]{String[].class})[0];
        for (String s : strArray)
        {
            String[] array = s.split(",");
            for(String ss: array)
                System.out.print("<" + ss + "> ");
            System.out.println();
        }
        System.out.println();
        ///////////////////////////////////////// 

        // 下面的代码调用了getDataForm方法,并返回DataForm对象实例
        /////////////////////////////////////////  
        opAddEntry = new QName("http://ws.apache.org/axis2", "getDataForm");
        data.DataForm df = (data.DataForm) serviceClient.invokeBlocking(opAddEntry, new Object[]{},
                                                                  new Class[]{data.DataForm.class})[0];
        System.out.println(df.getAge());
        /////////////////////////////////////////
        
        // 下面的代码调用了getDataFormBytes方法,并返回字节数组,最后将返回的字节数组反序列化后,转换成DataForm对象实例
        /////////////////////////////////////////          
        opAddEntry = new QName("http://ws.apache.org/axis2", "getDataFormBytes");
        buffer = (byte[]) serviceClient.invokeBlocking(opAddEntry, new Object[]{}, new Class[]{byte[].class})[0];
        java.io.ObjectInputStream ois = new java.io.ObjectInputStream(
                new java.io.ByteArrayInputStream(buffer));
        df = (data.DataForm) ois.readObject();
        System.out.println(df.getName());
        //////////////////////////////////////////
    }
}
 

 
     在Visual Studio中使用WebService就简单得多。假设引用WebService时的引用名为complexType,则下面的代码调用了uploadImageWithByte方法来上传图像文件。在Visual Studio引用WebService时,uploadImageWithByte方法多了两个out参数,在使用时要注意。

 

complexType.ComplexTypeService cts = new WSC.complexType.ComplexTypeService();   
System.IO.FileStream fs = new System.IO.FileStream(@"f:\images.jpg", System.IO.FileMode.Open);   
byte[] buffer = new byte[fs.Length];   
fs.Read(buffer, 0, (int)fs.Length);   
bool r;   
bool rs;   
cts.uploadImageWithByte( buffer, (int)fs.Length, true, out r, out rs);  
complexType.ComplexTypeService cts = new WSC.complexType.ComplexTypeService();
System.IO.FileStream fs = new System.IO.FileStream(@"f:\images.jpg", System.IO.FileMode.Open);
byte[] buffer = new byte[fs.Length];
fs.Read(buffer, 0, (int)fs.Length);
bool r;
bool rs;
cts.uploadImageWithByte( buffer, (int)fs.Length, true, out r, out rs);
 

 


在获得二维数组时,可以将数据加载到DataGridView或其他类似的控件中,代码如下:


String[] strArray = cts.getMDArray();   
for (int i = 0; i < strArray.Length; i++)   
{   
    //  用正则表达式将带分隔符的字符串转换成String数组   
    String[] columns = strArray[i].Split(',');   
    //  如果DataGridView的表头不存在,向DataGridView控件添加三个带表头的列   
    if (dataGridView1.Columns.Count == 0)   
        for (int j = 0; j < columns.Length; j++)   
            dataGridView1.Columns.Add("column" + (j + 1).ToString(), "列" + (j + 1).ToString());   
    //  添加行   
    dataGridView1.Rows.Add(1);   
    for(int j = 0; j < columns.Length; j++)   
    {   
        dataGridView1.Rows[i].Cells[j].Value = columns[j];                          
    }                   
}  
String[] strArray = cts.getMDArray();
for (int i = 0; i < strArray.Length; i++)
{
    //  用正则表达式将带分隔符的字符串转换成String数组
    String[] columns = strArray[i].Split(',');
    //  如果DataGridView的表头不存在,向DataGridView控件添加三个带表头的列
    if (dataGridView1.Columns.Count == 0)
        for (int j = 0; j < columns.Length; j++)
            dataGridView1.Columns.Add("column" + (j + 1).ToString(), "列" + (j + 1).ToString());
    //  添加行
    dataGridView1.Rows.Add(1);
    for(int j = 0; j < columns.Length; j++)
    {
        dataGridView1.Rows[i].Cells[j].Value = columns[j];                       
    }                
}
 

  
  

    要注意的是,由于.net和java序列化和反序列化的差异,通过序列化的方式传递对象实例只使用于客户端与服务端为同一种语言或技术的情况,如客户端和服务端都使用Java来编写。

    如果读者要上传大文件,应尽量使用FTP的方式来传递,而只通过WebService方法来传递文件名等信息。这样有助于提高传输效率。

 

本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/crazystone4/archive/2009/06/20/4285722.aspx

分享到:
评论

相关推荐

    axis2-eclipse-codegen-plugin-1.6.2和axis2-eclipse-service-plugin-1.6.2

    总结来说,"axis2-eclipse-codegen-plugin-1.6.2"和"axis2-eclipse-service-plugin-1.6.2"是针对Apache Axis2的Eclipse插件,旨在简化基于Axis2的Web服务开发。通过它们,开发者可以高效地生成和部署服务,同时享受...

    axis2-eclipse-codegen-plugin-1.6.2.zip和axis2-eclipse-service-plugin-1.6.2.zip

    标题中的"axis2-eclipse-codegen-plugin-1.6.2.zip"和"axis2-eclipse-service-plugin-1.6.2.zip"是两个与Apache Axis2相关的Eclipse插件,用于简化Web服务的开发过程。Apache Axis2是Java平台上一个成熟的Web服务...

    axis2-idea-plugin-1.7.9.zip_axis2_axis2-idea-plugin_idea导入axis2_

    plugin-1.7.9.zip_axis2_axis2-idea-plugin_idea导入axis2_"提到了几个关键元素,分别是"axis2"、"idea-plugin"和"idea导入axis2",这暗示了这个压缩包是用于在IntelliJ IDEA这款集成开发环境(IDE)中支持Axis2服务...

    axis2-eclipse-service-archiver-wizard.zip

    axis2-eclipse-service-archiver-wizard.zip

    Axis开发Web Service实例

    ### Axis开发Web Service实例详解 #### 一、概述 在探讨如何使用Apache Axis来开发Web Service之前,我们首先需要了解一些基本概念。 **Web Service**是一种标准的技术框架,用于实现不同平台之间的应用通信。它...

    axis2-eclipse-service-archiver-wizard和axis2-eclipse-codegen-wizard

    共四个文件,都是最先版的,希望可以帮助大家。axis2-eclipse-service-archiver-wizard和axis2-eclipse-codegen-wizard和axis2-1.6.1-bin和axis2-1.6.1-war

    axis2-eclipse-service与axis2-eclipse-codegen插件

    目前axis2最高版本是2.0以上的版本,但是eclipse和myeclipse都不支持,无奈只能使用低版本的插件1.6.3;经实验,可以安装成功;...axis2-eclipse-service-plugin-1.6.3.zip axis2-eclipse-codegen-plugin-1.6.3.zip

    axis2-eclipse-service-plugin-1.7.4.zip

    标题中的"axis2-eclipse-service-plugin-1.7.4.zip"指的是Axis2 Eclipse服务插件的1.7.4版本的归档文件,它是一个专门为Eclipse集成开发环境(IDE)设计的扩展。这个插件允许开发者在Eclipse中方便地创建、部署和...

    axis2-eclipse-service-plugin-1.5.4

    标题“axis2-eclipse-service-plugin-1.5.4”指的是Axis2 Eclipse Service Plugin的1.5.4版本。这是一个专门为Eclipse IDE设计的插件,用于帮助开发人员在Eclipse环境中创建、部署和管理基于Apache Axis2的Web服务。...

    axis.jar,axis-saaj-1.4.jar

    标题中的"axis.jar"和"axis-saaj-1.4.jar"是两个重要的Java库文件,它们在Web服务开发中扮演着核心角色。本文将详细介绍这两个库以及它们与Web服务的关系。 首先,让我们深入了解Axis。Axis是Apache软件基金会的一...

    用axis2开发web service

    【用Axis2开发Web Service】是本文的核心主题,轴心技术是Java开发Web服务的一种框架,相较于Axis1,其过程更为简洁。以下是关于使用Axis2开发Web Service的详细步骤和知识点: 1. **实验环境搭建**: - 首先确保...

    axis2-eclipse-codegen-plugin-1.6.2+axis2-eclipse-service-plugin-1.6.2

    总的来说,"axis2-eclipse-codegen-plugin-1.6.2+axis2-eclipse-service-plugin-1.6.2"的组合为Eclipse用户提供了一套完整的Web服务开发解决方案,从生成代码到部署服务,全程都在熟悉的开发环境中完成,极大地提升...

    Axis2与Eclipse整合开发的Web Service的服务端

    【标题】:Axis2与Eclipse整合开发的Web Service服务端详解 【描述】:本文将详细介绍如何在Eclipse环境中利用Axis2框架开发一个Web Service服务端,包括计算器服务CalculateService的实现步骤。 【标签】:Axis2,...

    axis web service例子

    Axis是Apache软件基金会开发的一个开源Java库,主要用于创建和使用Web服务。本文将深入讲解基于Java的Axis Web服务,以及如何通过一个实际案例来理解其工作原理。 1. Axis简介: Axis是Java平台上流行的Web服务...

    axis2-idea-plugin-1.7.8

    Axis2是Apache软件基金会开发的一个开放源代码Web服务框架,它提供了一种高效、灵活的方式来创建和部署Web服务。该插件的版本号1.7.8表明这可能是其稳定且功能丰富的迭代之一。 首先,让我们详细了解一下Axis2。...

    axis2-eclipse-service-archiver-wizard

    总结起来,“axis2-eclipse-service-archiver-wizard”是MyEclipse中用于Axis2服务开发的重要工具,它通过提供直观的向导界面,提高了开发效率,使得在Eclipse环境中构建和管理Axis2 Web服务变得更加容易。...

    axis2-1.8.0apache-cxf-3.4.4.rar

    Apache Axis2是Apache软件基金会开发的一个SOAP(简单对象访问协议)引擎,它是一个完整的Web服务框架。该框架提供了一种高效、灵活的方式来创建和部署Web服务。Axis2的核心功能包括: 1. **SOAP处理**:Axis2能够...

    AXIS Web Service入门及应用

    AXIS Web Service是一种基于Java的开源工具,用于创建和部署Web服务。它是Apache软件基金会的项目,主要用于简化SOAP(简单对象访问协议)处理,使得开发人员可以轻松地将Java类转换为Web服务或调用远程Web服务。在...

Global site tag (gtag.js) - Google Analytics