当前位置: 首页>>代码示例>>Java>>正文


Java SOAPBindingCodec类代码示例

本文整理汇总了Java中com.sun.xml.internal.ws.encoding.SOAPBindingCodec的典型用法代码示例。如果您正苦于以下问题:Java SOAPBindingCodec类的具体用法?Java SOAPBindingCodec怎么用?Java SOAPBindingCodec使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


SOAPBindingCodec类属于com.sun.xml.internal.ws.encoding包,在下文中一共展示了SOAPBindingCodec类的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: writeTo

import com.sun.xml.internal.ws.encoding.SOAPBindingCodec; //导入依赖的package包/类
public void writeTo(XMLStreamWriter sw) throws XMLStreamException {
    try {
        // Get the encoding of the writer
        String encoding = XMLStreamWriterUtil.getEncoding(sw);

        // Get output stream and use JAXB UTF-8 writer
        OutputStream os = bridge.supportOutputStream() ? XMLStreamWriterUtil.getOutputStream(sw) : null;
        if (os != null && encoding != null && encoding.equalsIgnoreCase(SOAPBindingCodec.UTF8_ENCODING)) {
            bridge.marshal(jaxbObject, os, sw.getNamespaceContext(), null);
        } else {
            bridge.marshal(jaxbObject,sw, null);
        }
    } catch (JAXBException e) {
        throw new XMLStreamException2(e);
    }
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:17,代码来源:JAXBHeader.java

示例2: writePayloadTo

import com.sun.xml.internal.ws.encoding.SOAPBindingCodec; //导入依赖的package包/类
@Override
public void writePayloadTo(XMLStreamWriter sw) throws XMLStreamException {
    try {
        // MtomCodec sets its own AttachmentMarshaller
        AttachmentMarshaller am = (sw instanceof MtomStreamWriter)
                ? ((MtomStreamWriter)sw).getAttachmentMarshaller()
                : new AttachmentMarshallerImpl(attachmentSet);

        // Get the encoding of the writer
        String encoding = XMLStreamWriterUtil.getEncoding(sw);

        // Get output stream and use JAXB UTF-8 writer
        OutputStream os = bridge.supportOutputStream() ? XMLStreamWriterUtil.getOutputStream(sw) : null;
        if (rawContext != null) {
            Marshaller m = rawContext.createMarshaller();
            m.setProperty("jaxb.fragment", Boolean.TRUE);
            m.setAttachmentMarshaller(am);
            if (os != null) {
                m.marshal(jaxbObject, os);
            } else {
                m.marshal(jaxbObject, sw);
            }
        } else {
            if (os != null && encoding != null && encoding.equalsIgnoreCase(SOAPBindingCodec.UTF8_ENCODING)) {
                bridge.marshal(jaxbObject, os, sw.getNamespaceContext(), am);
            } else {
                bridge.marshal(jaxbObject, sw, am);
            }
        }
        //cleanup() is not needed since JAXB doesn't keep ref to AttachmentMarshaller
        //am.cleanup();
    } catch (JAXBException e) {
        // bug 6449684, spec 4.3.4
        throw new WebServiceException(e);
    }
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:37,代码来源:JAXBMessage.java

示例3: writeTo

import com.sun.xml.internal.ws.encoding.SOAPBindingCodec; //导入依赖的package包/类
@Override
@SuppressWarnings("unchecked")
public void writeTo(XMLStreamWriter sw) throws XMLStreamException {
    try {
        // MtomCodec sets its own AttachmentMarshaller
        AttachmentMarshaller am = (sw instanceof MtomStreamWriter)
                ? ((MtomStreamWriter) sw).getAttachmentMarshaller()
                : new AttachmentMarshallerImpl(attachmentSet);

        // Get the encoding of the writer
        String encoding = XMLStreamWriterUtil.getEncoding(sw);

        // Get output stream and use JAXB UTF-8 writer
        OutputStream os = bridge.supportOutputStream() ? XMLStreamWriterUtil.getOutputStream(sw) : null;
        if (rawContext != null) {
            Marshaller m = rawContext.createMarshaller();
            m.setProperty("jaxb.fragment", Boolean.FALSE);
            m.setAttachmentMarshaller(am);
            if (os != null) {
                m.marshal(jaxbObject, os);
            } else {
                m.marshal(jaxbObject, sw);
            }

        } else {

            if (os != null && encoding != null && encoding.equalsIgnoreCase(SOAPBindingCodec.UTF8_ENCODING)) {
                bridge.marshal(jaxbObject, os, sw.getNamespaceContext(), am);
            } else {
                bridge.marshal(jaxbObject, sw, am);
            }
        }
        //cleanup() is not needed since JAXB doesn't keep ref to AttachmentMarshaller
    } catch (JAXBException e) {
        // bug 6449684, spec 4.3.4
        throw new WebServiceException(e);
    }
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:39,代码来源:JAXBDispatchMessage.java

示例4: createEncoder

import com.sun.xml.internal.ws.encoding.SOAPBindingCodec; //导入依赖的package包/类
public @NotNull @Override Codec createEncoder(WSBinding binding) {
    return new SOAPBindingCodec(binding.getFeatures());
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:4,代码来源:BindingID.java

示例5: doCreate

import com.sun.xml.internal.ws.encoding.SOAPBindingCodec; //导入依赖的package包/类
@Override
public XMLStreamWriter doCreate(OutputStream out) {
    return doCreate(out, SOAPBindingCodec.UTF8_ENCODING);
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:5,代码来源:XMLStreamWriterFactory.java

示例6: createEncoder

import com.sun.xml.internal.ws.encoding.SOAPBindingCodec; //导入依赖的package包/类
public @NotNull Codec createEncoder(WSBinding binding) {
    return new SOAPBindingCodec(binding);
}
 
开发者ID:alexkasko,项目名称:openjdk-icedtea7,代码行数:4,代码来源:BindingID.java


注:本文中的com.sun.xml.internal.ws.encoding.SOAPBindingCodec类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。