FileDocCategorySizeDatePackage
AttachmentsBindingImpl.javaAPI DocApache Axis 1.41821Sat Apr 22 18:57:26 BST 2006test.wsdl.interop4.groupG.dime.rpc

AttachmentsBindingImpl

public class AttachmentsBindingImpl extends Object implements test.wsdl.interop4.groupG.dime.rpc.AttachmentsPortType
AttachmentsBindingImpl.java This file was auto-generated from WSDL by the Apache Axis WSDL2Java emitter.

Fields Summary
Constructors Summary
Methods Summary
public org.apache.axis.attachments.OctetStreamechoAttachment(org.apache.axis.attachments.OctetStream in)

        return in;
    
public byte[]echoAttachmentAsBase64(org.apache.axis.attachments.OctetStream in)

        return in.getBytes();
    
public java.lang.StringechoAttachmentAsString(java.lang.String in)

        return in;
    
public org.apache.axis.attachments.OctetStream[]echoAttachments(org.apache.axis.attachments.OctetStream[] in)

        return in;
    
public org.apache.axis.attachments.OctetStreamechoBase64AsAttachment(byte[] in)

        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 voidechoUnrefAttachments()

        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);