本文整理汇总了Java中com.sun.xml.internal.ws.api.WSFeatureList类的典型用法代码示例。如果您正苦于以下问题:Java WSFeatureList类的具体用法?Java WSFeatureList怎么用?Java WSFeatureList使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
WSFeatureList类属于com.sun.xml.internal.ws.api包,在下文中一共展示了WSFeatureList类的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: create
import com.sun.xml.internal.ws.api.WSFeatureList; //导入依赖的package包/类
public static StreamSOAPCodec create(WSFeatureList features) {
SOAPVersion version = getSoapVersion(features);
if(version==null)
// this decoder is for SOAP, not for XML/HTTP
throw new IllegalArgumentException();
switch(version) {
case SOAP_11:
return new StreamSOAP11Codec(features);
case SOAP_12:
return new StreamSOAP12Codec(features);
default:
throw new AssertionError();
}
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:15,代码来源:StreamSOAPCodec.java
示例2: create
import com.sun.xml.internal.ws.api.WSFeatureList; //导入依赖的package包/类
public static Message create(final String ct, InputStream in, WSFeatureList f) {
Message data;
try {
in = StreamUtils.hasSomeData(in);
if (in == null) {
return Messages.createEmpty(SOAPVersion.SOAP_11);
}
if (ct != null) {
final ContentType contentType = new ContentType(ct);
final int contentTypeId = identifyContentType(contentType);
if ((contentTypeId & MIME_MULTIPART_FLAG) != 0) {
data = new XMLMultiPart(ct, in, f);
} else if ((contentTypeId & PLAIN_XML_FLAG) != 0) {
data = new XmlContent(ct, in, f);
} else {
data = new UnknownContent(ct, in);
}
} else {
// According to HTTP spec 7.2.1, if the media type remain
// unknown, treat as application/octet-stream
data = new UnknownContent("application/octet-stream", in);
}
} catch(Exception ex) {
throw new WebServiceException(ex);
}
return data;
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:29,代码来源:XMLMessage.java
示例3: XmlContent
import com.sun.xml.internal.ws.api.WSFeatureList; //导入依赖的package包/类
public XmlContent(String ct, InputStream in, WSFeatureList f) {
super(SOAPVersion.SOAP_11);
dataSource = new XmlDataSource(ct, in);
this.headerList = new HeaderList(SOAPVersion.SOAP_11);
// this.binding = binding;
features = f;
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:8,代码来源:XMLMessage.java
示例4: XMLMultiPart
import com.sun.xml.internal.ws.api.WSFeatureList; //导入依赖的package包/类
public XMLMultiPart(final String contentType, final InputStream is, WSFeatureList f) {
super(SOAPVersion.SOAP_11);
headerList = new HeaderList(SOAPVersion.SOAP_11);
dataSource = createDataSource(contentType, is);
this.feature = f.get(StreamingAttachmentFeature.class);
this.features = f;
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:8,代码来源:XMLMessage.java
示例5: MtomCodec
import com.sun.xml.internal.ws.api.WSFeatureList; //导入依赖的package包/类
MtomCodec(SOAPVersion version, StreamSOAPCodec codec, WSFeatureList features){
super(version, features);
this.codec = codec;
sf = features.get(SerializationFeature.class);
MTOMFeature mtom = features.get(MTOMFeature.class);
if(mtom == null)
this.mtomFeature = new MTOMFeature();
else
this.mtomFeature = mtom;
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:11,代码来源:MtomCodec.java
示例6: features
import com.sun.xml.internal.ws.api.WSFeatureList; //导入依赖的package包/类
@ManagedAttribute
@Description("Binding features")
public @NotNull WSFeatureList features() {
return endpoint.getBinding().getFeatures();
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:6,代码来源:MonitorRootService.java
示例7: isSecureXmlProcessingDisabled
import com.sun.xml.internal.ws.api.WSFeatureList; //导入依赖的package包/类
private static boolean isSecureXmlProcessingDisabled(WSFeatureList featureList) {
// TODO-Miran: would it be necessary to disable secure xml processing?
return false;
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:5,代码来源:EndpointFactory.java
示例8: StreamSOAP11Codec
import com.sun.xml.internal.ws.api.WSFeatureList; //导入依赖的package包/类
StreamSOAP11Codec(WSFeatureList features) {
super(features);
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:4,代码来源:StreamSOAP11Codec.java
示例9: StreamSOAPCodec
import com.sun.xml.internal.ws.api.WSFeatureList; //导入依赖的package包/类
StreamSOAPCodec(WSFeatureList features) {
this(getSoapVersion(features), features.get(SerializationFeature.class));
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:4,代码来源:StreamSOAPCodec.java
注:本文中的com.sun.xml.internal.ws.api.WSFeatureList类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论