`
tenn
  • 浏览: 573384 次
  • 性别: Icon_minigender_1
  • 来自: 苏州
文章分类
社区版块
存档分类
最新评论

使用Axis2传输附件(AXIS2 MTOM)--1

阅读更多

版权声明:原创作品,允许转载,转载时请务必以超链接形式标明文章 原始出处 、作者信息和本声明。否则将追究法律责任。http://zhangjunhd.51cto.com/113473/26960
本文介绍如何使用Axis2传递附件。<o:p></o:p>
author: ZJ <st1:chsdate w:st="on" isrocdate="False" year="2007" day="7" islunardate="False" month="5">07-5-7</st1:chsdate>
<o:p> </o:p>
1.工作环境
IDE: Eclipse <st1:chsdate w:st="on" isrocdate="False" year="1899" day="30" islunardate="False" month="12">3.1.2</st1:chsdate>
jdk: jdk<st1:chsdate w:st="on" isrocdate="False" year="1899" day="30" islunardate="False" month="12">1.5.0</st1:chsdate>_04
Tomcat: apache-tomcat-<st1:chsdate w:st="on" isrocdate="False" year="1899" day="30" islunardate="False" month="12">5.0.28</st1:chsdate>
AXIS2:1.0(war版本和bin版本)
<o:p> </o:p>
2.实现<o:p></o:p>
   Eclipse新建一个动态web工程,在WEB-INF\lib下加入axis2所需的jar包。
本例的是一个系统的用户上传下载图片格式文件的例子,每次上传出携带附件外,还包括文件名, 文件类型。此webservice实现的2个功能就是upload, download.
   AXIS2webservice发布的时候是打包成xxx.aar发布的,xxx.aar展开后的目录结构为
 --
    --META-INF
       services.xml
    --包含server端实现的class( 目录跟package是一样的结构)
<o:p> </o:p>
3.服务器端FileTransferServer.java<o:p></o:p>
package sample;<o:p></o:p>
<o:p> </o:p>
import org.apache.axiom.attachments.utils.IOUtils;<o:p></o:p>
import org.apache.axiom.om.OMAbstractFactory;<o:p></o:p>
import org.apache.axiom.om.OMElement;<o:p></o:p>
import org.apache.axiom.om.OMFactory;
import org.apache.axiom.om.OMNamespace;<o:p></o:p>
import org.apache.axiom.om.OMText;<o:p></o:p>
import org.apache.axis2.AxisFault;<o:p></o:p>
<o:p> </o:p>
import java.io.File;<o:p></o:p>
import java.io.FileOutputStream;
import java.io.InputStream;
<o:p> </o:p>
import java.util.Iterator;
<o:p> </o:p>
import javax.activation.DataHandler;
import javax.activation.FileDataSource;
<o:p> </o:p>
public class FileTransferServer {
       public static final String TMP_PATH = "D:/temp";
<o:p> </o:p>
       public OMElement upload(OMElement element) throws Exception {
              OMElement _fileContent = null;//文件内容
              OMElement _fileName = null;//文件名
              OMElement _fileType = null;//文件类型
              System.out.println("The element for upload: " + element);
              for (Iterator _iterator = element.getChildElements(); _iterator
                            .hasNext();) {
                     OMElement _ele = (OMElement) _iterator.next();
                     if (_ele.getLocalName().equalsIgnoreCase("fileContent")) {
                            _fileContent = _ele;
                     }
                     if (_ele.getLocalName().equalsIgnoreCase("fileName")) {
                            _fileName = _ele;
                     }
                     if (_ele.getLocalName().equalsIgnoreCase("fileType")) {
                            _fileType = _ele;
                     }
              }
<o:p> </o:p>
              if (_fileContent == null || _fileType == null) {
                     throw new AxisFault("Either Image or FileName is null");
              }
<o:p> </o:p>
              OMText binaryNode = (OMText) _fileContent.getFirstOMChild();
              String fileName = _fileName.getText();
              String fileType = _fileType.getText();
              String storeDir = TMP_PATH + "/" + "tempTest";
              File dir = new File(storeDir);
              if (!dir.exists()) {
                     dir.mkdir();
              }
              String filePath = storeDir + "/" + fileName + "." + fileType;
              File uploadFile = new File(filePath);
              if (uploadFile.exists()) {
                     filePath = storeDir + "/" + fileName + "(1)" + "." + fileType;
                     uploadFile = new File(filePath);
              }
<o:p> </o:p>
              // Extracting the data and saving
              DataHandler actualDH;
              actualDH = (DataHandler) binaryNode.getDataHandler();
<o:p> </o:p>
              FileOutputStream imageOutStream = new FileOutputStream(uploadFile);
              InputStream is = actualDH.getInputStream();
              imageOutStream.write(IOUtils.getStreamAsByteArray(is));
              // setting response
              OMFactory fac = OMAbstractFactory.getOMFactory();
              OMNamespace ns = fac.createOMNamespace("http://example.org/filedata",<o:p></o:p>
                            "fd");
              OMElement ele = fac.createOMElement("response", ns);
              ele.setText("true");
              return ele;
       }
<o:p> </o:p>
       public OMElement download(OMElement element) throws Exception {
              System.out.println("The element for download: " + element);
              OMElement _userName = null;
              OMElement _fileName = null;
              OMElement _fileType = null;
              for (Iterator _iterator = element.getChildElements(); _iterator
                            .hasNext();) {
                     OMElement _ele = (OMElement) _iterator.next();
                     if (_ele.getLocalName().equalsIgnoreCase("userName")) {
                            _userName = _ele;
                     }
                     if (_ele.getLocalName().equalsIgnoreCase("fileName")) {
                            _fileName = _ele;
                     }
                     if (_ele.getLocalName().equalsIgnoreCase("fileType")) {
                            _fileType = _ele;
                     }
              }
              String userName = _userName.getText();
              String fileName = _fileName.getText();
              String fileType = _fileType.getText();
              String filePath = TMP_PATH + "/" + userName + "/" + fileName + "."
                            + fileType;
              System.out.println("The filePath for download: " + filePath);
              FileDataSource dataSource = new FileDataSource(filePath);
              DataHandler expectedDH = new DataHandler(dataSource);
              OMFactory fac = OMAbstractFactory.getOMFactory();
              OMNamespace ns = fac.createOMNamespace("http://example.org/filedata",
                            "fd");
              OMText textData = fac.createOMText(expectedDH, true);
              OMElement ele = fac.createOMElement("response", ns);
              ele.addChild(textData);
              return ele;
       }
}
<o:p> </o:p>
4.services.xml<o:p></o:p>
<!---->
<service name="FileOperation"></service>
    <description></description>
        This is a sample Web Service with two operations,echo and ping.
   
    <parameter name="ServiceClass" locked="false"></parameter> sample.FileTransferServer
    <operation name="upload"></operation>
        <actionmapping></actionmapping>urn:upload
        <messagereceiver class="org.apache.axis2.receivers.RawXMLINOutMessageReceiver"></messagereceiver>
   
      <operation name="download"></operation>
        <actionmapping></actionmapping>urn:download
        <messagereceiver class="org.apache.axis2.receivers.RawXMLINOutMessageReceiver"></messagereceiver>
   
<o:p> </o:p>
将这两个文件打包并部署到Tomcat上(略)。
<o:p> </o:p>
5.测试<o:p></o:p>
FileTransferClient.java<o:p></o:p>
package sample;
<o:p> </o:p>
import java.io.File;
import java.io.FileOutputStream;
import java.io.InputStream;
<o:p> </o:p>
import javax.activation.DataHandler;
import javax.activation.FileDataSource;
<o:p> </o:p>
import org.apache.axiom.attachments.utils.IOUtils;
import org.apache.axiom.om.OMAbstractFactory;
import org.apache.axiom.om.OMElement;
import org.apache.axiom.om.OMFactory;
import org.apache.axiom.om.OMNamespace;<o:p></o:p>
import org.apache.axiom.om.OMText;<o:p></o:p>
import org.apache.axiom.soap.SOAP11Constants;<o:p></o:p>
import org.apache.axis2.AxisFault;<o:p></o:p>
import org.apache.axis2.Constants;<o:p></o:p>
import org.apache.axis2.addressing.EndpointReference;<o:p></o:p>
import org.apache.axis2.client.Options;<o:p></o:p>
import org.apache.axis2.client.ServiceClient;<o:p></o:p>
 <o:p></o:p>
public class FileTransferClient {
   private static EndpointReference targetEPR =
 new EndpointReference("http://127.0.0.1:8080/axis2/services/FileOperation");
  
   public static boolean upload(String fileName, File file, String fileType) {
     try {
      OMElement data = buildUploadEnvelope(fileName, file, fileType);
      Options options = buildOptions();
      ServiceClient sender = new ServiceClient();
      sender.setOptions(options);
      System.out.println("The data in method upload: "+data);
      OMElement ome = sender.sendReceive(data);
      System.out.println("Convert the data to element in method upload: "+ome);
      String b = ome.getText();
      return Boolean.parseBoolean(b);
     }
     catch(Exception e) {
       e.printStackTrace();
     }
     return false;
   }
  
   public static boolean download(String userName, String fileName, String fileType) {
     try {
       OMElement data = buildDownloadEnvelope(userName, fileName, fileType);
       Options options = buildOptions();
       ServiceClient sender = new ServiceClient();
       sender.setOptions(options);
       System.out.println("The data in method download: "+data);
       OMElement ome = sender.sendReceive(data);
       System.out.println("Convert the data to element in method download: "+ome);
       OMText binaryNode = (OMText) ome.getFirstOMChild();
       binaryNode.setOptimize(true); //必须加此句,否则会出现ContentID is null的异常!
       DataHandler actualDH = (DataHandler) binaryNode.getDataHandler();
       FileOutputStream imageOutStream = new FileOutputStream("D:/userTemp/xx.gif");
       InputStream is = actualDH.getInputStream();
       imageOutStream.write(IOUtils.getStreamAsByteArray(is));
       return true;
      }
      catch(Exception e) {
        e.printStackTrace();
      }
     return false;
   }
  
   private static OMElement buildUploadEnvelope(String fileName, File file, String fileType) {
     DataHandler expectedDH;
     OMFactory fac = OMAbstractFactory.getOMFactory();
     OMNamespace omNs = fac.createOMNamespace("http://example.org/filedata", "fd");<o:p></o:p>
     OMElement data = fac.createOMElement("upload", omNs);
     OMElement fileContent = fac.createOMElement("fileContent", omNs);
     FileDataSource dataSource = new FileDataSource(file);
     expectedDH = new DataHandler(dataSource);
     OMText textData = fac.createOMText(expectedDH, true);
     fileContent.addChild(textData);
     OMElement _fileName = fac.createOMElement("fileName", omNs);
     _fileName.setText(fileName);
     OMElement _fileType = fac.createOMElement("fileType", omNs);
     _fileType.setText(fileType);
     data.addChild(_fileName);
     data.addChild(_fileType);
     data.addChild(fileContent);
     return data;
分享到:
评论

相关推荐

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

    Axis2允许开发者以XML方式处理服务,提供了丰富的功能,包括事务管理、安全、MTOM(消息传输优化机制)和WS-ReliableMessaging等。 2. **Eclipse插件**:Eclipse是一个流行的开源集成开发环境(IDE),支持多种编程...

    axis2-1.6.1

    - 多协议支持:除了基本的SOAP 1.1和1.2,Axis2还支持REST、MTOM(Message Transmission Optimization Mechanism)和SwA(Soap with Attachments)等传输方式。 - 高效的消息处理:使用了基于内存的数据结构,Axis2...

    axis2-1.8.0apache-cxf-3.4.4.rar

    1. **SOAP处理**:Axis2能够处理各种SOAP消息,支持SOAP 1.1和1.2规范,包括处理附件(MTOM和SwA)和WS-Addressing等扩展。 2. **模块化架构**:Axis2采用模块化设计,允许开发者按需选择和组合功能,比如安全、...

    axis2-1.4.1-bin.zip axis2-1.4.1-war.zip

    1. **Apache Axis2**:Apache Axis2是Apache软件基金会的Web服务项目,它是第二代Axis的升级版,提供了更高效、更灵活的架构。它支持多种协议,包括SOAP 1.1、SOAP 1.2、REST、MTOM(Message Transmission ...

    (转)Axis2 附件传输

    【文件使用】"使用Axis2传输附件.txt" 该文本文件很可能包含了详细的代码示例,指导读者如何在实际项目中设置和使用Axis2的附件传输功能。它可能涵盖了服务端和客户端的代码实现,以及可能遇到的问题和解决策略。 ...

    axis2-kernel-1.3.jar--axis2-kernel-1.3.jar

    例如,通过添加AXIS2自带的MTOM(Message Transmission Optimization Mechanism)模块,可以优化大型二进制数据的传输。 3. **消息处理**:Axis2内核使用消息上下文(Message Context)对象来存储和传递消息状态。...

    Axis2-1.6.2-bin和Axis2-1.6.2-war

    1. **Axis2-1.6.2-bin** 这个版本的Axis2是一个二进制发行版,包含了运行和开发Web服务所需的所有库和工具。其主要内容包括: - **核心库**:轴心2的核心库文件,包含处理SOAP消息、服务部署和运行的核心组件。 -...

    axis2-1.7.5-bin.zip

    此外,Axis2支持MTOM(Message Transmission Optimization Mechanism)和SwA(Soap with Attachments),提高处理大型附件的效率。 8. **互操作性**:由于对Web服务标准的全面支持,Axis2与其他Web服务框架(如.NET...

    axis2-1.6.2-war.zip

    2. **MTOM/XOP**:支持Message Transmission Optimization Mechanism (MTOM) 和XOP (XML-binary Optimized Packaging),用于高效传输二进制数据。 3. **WS-Security**:集成了WS-Security规范,提供了安全的Web服务...

    web service 使用 axis2 框架使用的插件

    - **-axis2-mtom-plugin**:MTOM插件,用于优化大数据量传输,通过二进制流而不是XML编码数据,提高传输效率。 3. **使用流程**: - 首先,安装并配置Axis2环境,包括下载Axis2库,设置环境变量。 - 接着,使用...

    axis2-1.5.4-bin.zip + axis2-1.5.4-war.zip

    2. **可扩展模块**:预打包的模块,如MTOM(消息传输优化机制)和SWA(简单对象访问协议)支持,用于提高性能和效率。 3. **脚本语言支持**:Axis2可以与多种脚本语言(如JavaScript和Python)集成,这个包可能包含...

    axis.jar,axis-saaj-1.4.jar

    在Axis中,SAJ用于处理带有MIME附件的SOAP消息,例如在使用MTOM(Message Transmission Optimization Mechanism)时。 MTOM是一种优化技术,用于在SOAP消息中高效传输大数据量的二进制内容。当Web服务需要交换大...

    axis2-1.4.1

    Apache Axis2是Axis1的下一代,它提供了更好的性能和模块化架构,使得开发、部署和服务交互更加简便。 描述中的重复“axis2-1.4.1-bin.zip”可能表示该压缩包是Apache Axis2的可执行二进制版本,包含了运行和部署所...

    axis2c-src-1.6.0

    http://ws.apache.org/axis2/1_0/Axis2ArchitectureGuide.html for an overview on Axis2 architecture. Axis2/C supports both SOAP 1.1 and SOAP 1.2. The soap processing model is built on the AXIOM XML...

    axis2-1.7.7-bin.zip下载

    1. **核心库**:Axis2的核心库包含了一系列JAR文件,如`axis2-adb.jar`, `axis2-aar.jar`, `axis2-kernel.jar`等,这些库提供了处理SOAP消息、解析WSDL(Web Service Description Language)和执行Web服务操作的基础...

    axis 1.x与axis2.x开发

    总的来说,了解和掌握Axis1.x与Axis2.x的区别和使用方法,对于Java Web服务开发者来说至关重要。这不仅涉及到选择合适的框架,也关系到如何有效地部署、管理和优化Web服务。在实际工作中,应根据项目需求和团队的...

    axis2_demo实战 复杂对象传输 文件传输

    本实战案例将关注使用Axis2进行复杂对象传输以及文件传输,特别是如何通过Web服务来传递列表(List)、对象(Object)和文件。 首先,让我们深入理解`axis2 Demo`。Axis2 提供了一个强大的开发和部署环境,它支持多种...

    axis2-1.5.1-bin.zip

    6. **samples** 文件夹:提供示例服务和应用程序,帮助用户了解如何使用Axis2。 7. **README** 或其他文档:包含了安装指南、快速入门教程和其他重要信息。 Apache Axis2的核心知识点包括: - **Web服务协议支持**...

    axis2-1.4.1-bin

    例如,可以通过添加新的模块来支持WS-Security等安全标准,或者使用不同的MTOM(Message Transmission Optimization Mechanism)实现来提高大型二进制数据传输的效率。 总结起来,Apache Axis2是一个强大的Web服务...

    axis2-1.5.4-bin.zip,官网下载

    1. **axis2-1.5.4/bin**:这个目录包含可执行脚本,如启动和停止服务器的脚本,用于Windows和Unix/Linux系统的批处理文件或shell脚本。 2. **axis2-1.5.4/conf**:配置文件的存放地,包括axis2.xml,这是核心配置...

Global site tag (gtag.js) - Google Analytics