⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 attachmentsbindingimpl.java

📁 Java有关XML编程需要用到axis 的源代码 把里面bin下的包导入相应的Java工程 进行使用
💻 JAVA
字号:
/** * AttachmentsBindingImpl.java * * This file was auto-generated from WSDL * by the Apache Axis WSDL2Java emitter. */package test.wsdl.interop4.groupG.dime.doc;import org.apache.axis.Message;import org.apache.axis.AxisEngine;import java.util.Collection;public class AttachmentsBindingImpl implements test.wsdl.interop4.groupG.dime.doc.AttachmentsPortType{    public org.apache.axis.attachments.OctetStream echoAttachment(org.apache.axis.attachments.OctetStream in) throws java.rmi.RemoteException {        return in;    }    public org.apache.axis.attachments.OctetStream[] echoAttachments(org.apache.axis.attachments.OctetStream[] item) throws java.rmi.RemoteException {        return item;    }    public byte[] echoAttachmentAsBase64(org.apache.axis.attachments.OctetStream in) throws java.rmi.RemoteException {        return in.getBytes();    }    public org.apache.axis.attachments.OctetStream echoBase64AsAttachment(byte[] in) throws java.rmi.RemoteException {        Message response = AxisEngine.getCurrentMessageContext().getResponseMessage();        response.getAttachmentsImpl().setSendType(org.apache.axis.attachments.Attachments.SEND_TYPE_DIME);        return new org.apache.axis.attachments.OctetStream(in);    }    public void echoUnrefAttachments() throws java.rmi.RemoteException {        org.apache.axis.Message reqMsg = AxisEngine.getCurrentMessageContext().getRequestMessage();        Collection attachments = reqMsg.getAttachmentsImpl().getAttachments();        org.apache.axis.Message respMsg = AxisEngine.getCurrentMessageContext().getResponseMessage();        respMsg.getAttachmentsImpl().setAttachmentParts(attachments);    }    public java.lang.String echoAttachmentAsString(java.lang.String in) throws java.rmi.RemoteException {        return in;    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -