Package org.codehaus.xfire.service

Examples of org.codehaus.xfire.service.MessagePartInfo


            msg = context.getOutMessage();
        else
            msg = context.getInMessage();
       
        Object[] params = (Object[]) msg.getBody();
        MessagePartInfo part = (MessagePartInfo)
            context.getProperty(AegisBindingProvider.CURRENT_MESSAGE_PART);

        setValue(params[part.getIndex()], o);
       
        return o;
    }
View Full Code Here


              m.setSchema(getValidationSchema(context, jc));
            }
           
            if (isAbstract())
            {
                MessagePartInfo part = (MessagePartInfo)
                    context.getProperty(AegisBindingProvider.CURRENT_MESSAGE_PART);
                object = new JAXBElement(part.getName(), getTypeClass(), object);
            }
           
            XMLStreamWriter xsw = ((ElementWriter) writer).getXMLStreamWriter();
            OutputStream os = (OutputStream) context.getOutMessage().getProperty(Channel.OUTPUTSTREAM);
            if (os != null && !(xsw instanceof DOMStreamWriter))
View Full Code Here

                               msgInfo.getName().getLocalPart() + "Headers"));
        msg.setUndefined(false);

        for (Iterator itr = headers.iterator(); itr.hasNext();)
        {
            MessagePartInfo header = (MessagePartInfo) itr.next();

            Part part = builder.createPart(header);

            msg.addPart(part);
        }
View Full Code Here

TOP

Related Classes of org.codehaus.xfire.service.MessagePartInfo

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.