package sample;
?
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;
import org.apache.axiom.om.OMText;
import org.apache.axis2.AxisFault;
?
import java.io.File;
import java.io.FileOutputStream;
import java.io.InputStream;
?
import java.util.Iterator;
?
import javax.activation.DataHandler;
import javax.activation.FileDataSource;
?
public class FileTransferServer {
?????? public static final String TMP_PATH = "D:/temp";
?
?????? 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;
???????????????????? }
????????????? }
?
????????????? if (_fileContent == null || _fileType == null) {
???????????????????? throw new AxisFault("Either Image or FileName is null");
????????????? }
?
????????????? 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);
????????????? }
?
????????????? // Extracting the data and saving
????????????? DataHandler actualDH;
????????????? actualDH = (DataHandler) binaryNode.getDataHandler();
?
????????????? 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",
??????????????????????????? "fd");
????????????? OMElement ele = fac.createOMElement("response", ns);
????????????? ele.setText("true");
????????????? return ele;
?????? }
?
?????? 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;
?????? }
}
|
相关推荐
Axis2允许开发者以XML方式处理服务,提供了丰富的功能,包括事务管理、安全、MTOM(消息传输优化机制)和WS-ReliableMessaging等。 2. **Eclipse插件**:Eclipse是一个流行的开源集成开发环境(IDE),支持多种编程...
- 多协议支持:除了基本的SOAP 1.1和1.2,Axis2还支持REST、MTOM(Message Transmission Optimization Mechanism)和SwA(Soap with Attachments)等传输方式。 - 高效的消息处理:使用了基于内存的数据结构,Axis2...
1. **Apache Axis2**:Apache Axis2是Apache软件基金会的Web服务项目,它是第二代Axis的升级版,提供了更高效、更灵活的架构。它支持多种协议,包括SOAP 1.1、SOAP 1.2、REST、MTOM(Message Transmission ...
1. **SOAP处理**:Axis2能够处理各种SOAP消息,支持SOAP 1.1和1.2规范,包括处理附件(MTOM和SwA)和WS-Addressing等扩展。 2. **模块化架构**:Axis2采用模块化设计,允许开发者按需选择和组合功能,比如安全、...
【文件使用】"使用Axis2传输附件.txt" 该文本文件很可能包含了详细的代码示例,指导读者如何在实际项目中设置和使用Axis2的附件传输功能。它可能涵盖了服务端和客户端的代码实现,以及可能遇到的问题和解决策略。 ...
例如,通过添加AXIS2自带的MTOM(Message Transmission Optimization Mechanism)模块,可以优化大型二进制数据的传输。 3. **消息处理**:Axis2内核使用消息上下文(Message Context)对象来存储和传递消息状态。...
1. **Axis2-1.6.2-bin** 这个版本的Axis2是一个二进制发行版,包含了运行和开发Web服务所需的所有库和工具。其主要内容包括: - **核心库**:轴心2的核心库文件,包含处理SOAP消息、服务部署和运行的核心组件。 -...
此外,Axis2支持MTOM(Message Transmission Optimization Mechanism)和SwA(Soap with Attachments),提高处理大型附件的效率。 8. **互操作性**:由于对Web服务标准的全面支持,Axis2与其他Web服务框架(如.NET...
2. **MTOM/XOP**:支持Message Transmission Optimization Mechanism (MTOM) 和XOP (XML-binary Optimized Packaging),用于高效传输二进制数据。 3. **WS-Security**:集成了WS-Security规范,提供了安全的Web服务...
- **-axis2-mtom-plugin**:MTOM插件,用于优化大数据量传输,通过二进制流而不是XML编码数据,提高传输效率。 3. **使用流程**: - 首先,安装并配置Axis2环境,包括下载Axis2库,设置环境变量。 - 接着,使用...
2. **可扩展模块**:预打包的模块,如MTOM(消息传输优化机制)和SWA(简单对象访问协议)支持,用于提高性能和效率。 3. **脚本语言支持**:Axis2可以与多种脚本语言(如JavaScript和Python)集成,这个包可能包含...
本实战案例将关注使用Axis2进行复杂对象传输以及文件传输,特别是如何通过Web服务来传递列表(List)、对象(Object)和文件。 首先,让我们深入理解`axis2 Demo`。Axis2 提供了一个强大的开发和部署环境,它支持多种...
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...
Apache Axis2是Axis1的下一代,它提供了更好的性能和模块化架构,使得开发、部署和服务交互更加简便。 描述中的重复“axis2-1.4.1-bin.zip”可能表示该压缩包是Apache Axis2的可执行二进制版本,包含了运行和部署所...
总的来说,了解和掌握Axis1.x与Axis2.x的区别和使用方法,对于Java Web服务开发者来说至关重要。这不仅涉及到选择合适的框架,也关系到如何有效地部署、管理和优化Web服务。在实际工作中,应根据项目需求和团队的...
1. **核心库**:Axis2的核心库包含了一系列JAR文件,如`axis2-adb.jar`, `axis2-aar.jar`, `axis2-kernel.jar`等,这些库提供了处理SOAP消息、解析WSDL(Web Service Description Language)和执行Web服务操作的基础...
在Axis中,SAJ用于处理带有MIME附件的SOAP消息,例如在使用MTOM(Message Transmission Optimization Mechanism)时。 MTOM是一种优化技术,用于在SOAP消息中高效传输大数据量的二进制内容。当Web服务需要交换大...
6. **samples** 文件夹:提供示例服务和应用程序,帮助用户了解如何使用Axis2。 7. **README** 或其他文档:包含了安装指南、快速入门教程和其他重要信息。 Apache Axis2的核心知识点包括: - **Web服务协议支持**...
例如,可以通过添加新的模块来支持WS-Security等安全标准,或者使用不同的MTOM(Message Transmission Optimization Mechanism)实现来提高大型二进制数据传输的效率。 总结起来,Apache Axis2是一个强大的Web服务...
1. **axis2-1.5.4/bin**:这个目录包含可执行脚本,如启动和停止服务器的脚本,用于Windows和Unix/Linux系统的批处理文件或shell脚本。 2. **axis2-1.5.4/conf**:配置文件的存放地,包括axis2.xml,这是核心配置...