本文整理汇总了Java中com.sun.xml.internal.ws.client.WSServiceDelegate类的典型用法代码示例。如果您正苦于以下问题:Java WSServiceDelegate类的具体用法?Java WSServiceDelegate怎么用?Java WSServiceDelegate使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
WSServiceDelegate类属于com.sun.xml.internal.ws.client包,在下文中一共展示了WSServiceDelegate类的11个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: createServiceDelegate
import com.sun.xml.internal.ws.client.WSServiceDelegate; //导入依赖的package包/类
public ServiceDelegate createServiceDelegate( URL wsdlDocumentLocation, QName serviceName, Class serviceClass,
WebServiceFeature ... features) {
for (WebServiceFeature feature : features) {
if (!(feature instanceof ServiceSharedFeatureMarker))
throw new WebServiceException("Doesn't support any Service specific features");
}
return new WSServiceDelegate(wsdlDocumentLocation, serviceName, serviceClass, features);
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:9,代码来源:ProviderImpl.java
示例2: SEIStub
import com.sun.xml.internal.ws.client.WSServiceDelegate; //导入依赖的package包/类
@Deprecated
public SEIStub(WSServiceDelegate owner, BindingImpl binding, SOAPSEIModel seiModel, Tube master, WSEndpointReference epr) {
super(owner, master, binding, seiModel.getPort(), seiModel.getPort().getAddress(), epr);
this.seiModel = seiModel;
this.soapVersion = binding.getSOAPVersion();
databinding = seiModel.getDatabinding();
initMethodHandlers();
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:9,代码来源:SEIStub.java
示例3: createServiceDelegate
import com.sun.xml.internal.ws.client.WSServiceDelegate; //导入依赖的package包/类
public ServiceDelegate createServiceDelegate( URL wsdlDocumentLocation, QName serviceName, Class serviceClass,
WebServiceFeature ... features) {
if (features.length > 0) {
throw new WebServiceException("Doesn't support any Service specific features");
}
return new WSServiceDelegate(wsdlDocumentLocation, serviceName, serviceClass);
}
开发者ID:alexkasko,项目名称:openjdk-icedtea7,代码行数:8,代码来源:ProviderImpl.java
示例4: SEIStub
import com.sun.xml.internal.ws.client.WSServiceDelegate; //导入依赖的package包/类
@Deprecated
public SEIStub(WSServiceDelegate owner, BindingImpl binding, SOAPSEIModel seiModel, Tube master, WSEndpointReference epr) {
super(owner, master, binding, seiModel.getPort(), seiModel.getPort().getAddress(), epr);
this.seiModel = seiModel;
this.soapVersion = binding.getSOAPVersion();
initMethodHandlers();
}
开发者ID:alexkasko,项目名称:openjdk-icedtea7,代码行数:8,代码来源:SEIStub.java
示例5: SOAPSourceDispatch
import com.sun.xml.internal.ws.client.WSServiceDelegate; //导入依赖的package包/类
@Deprecated
public SOAPSourceDispatch(QName port, Mode mode, WSServiceDelegate owner, Tube pipe, BindingImpl binding, WSEndpointReference epr) {
super(port, mode, owner, pipe, binding, epr);
assert !isXMLHttp(binding);
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:6,代码来源:SOAPSourceDispatch.java
示例6: SOAPMessageDispatch
import com.sun.xml.internal.ws.client.WSServiceDelegate; //导入依赖的package包/类
@Deprecated
public SOAPMessageDispatch(QName port, Service.Mode mode, WSServiceDelegate owner, Tube pipe, BindingImpl binding, WSEndpointReference epr) {
super(port, mode, owner, pipe, binding, epr);
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:5,代码来源:SOAPMessageDispatch.java
示例7: RESTSourceDispatch
import com.sun.xml.internal.ws.client.WSServiceDelegate; //导入依赖的package包/类
@Deprecated
public RESTSourceDispatch(QName port, Mode mode, WSServiceDelegate owner, Tube pipe, BindingImpl binding, WSEndpointReference epr) {
super(port, mode, owner, pipe, binding, epr);
assert isXMLHttp(binding);
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:6,代码来源:RESTSourceDispatch.java
示例8: MessageDispatch
import com.sun.xml.internal.ws.client.WSServiceDelegate; //导入依赖的package包/类
@Deprecated
public MessageDispatch(QName port, WSServiceDelegate service, Tube pipe, BindingImpl binding, WSEndpointReference epr) {
super(port, Mode.MESSAGE, service, pipe, binding, epr);
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:5,代码来源:MessageDispatch.java
示例9: JAXBDispatch
import com.sun.xml.internal.ws.client.WSServiceDelegate; //导入依赖的package包/类
@Deprecated
public JAXBDispatch(QName port, JAXBContext jc, Service.Mode mode, WSServiceDelegate service, Tube pipe, BindingImpl binding, WSEndpointReference epr) {
super(port, mode, service, pipe, binding, epr);
this.jaxbcontext = jc;
this.isContextSupported = BindingContextFactory.isContextSupported(jc);
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:7,代码来源:JAXBDispatch.java
示例10: PacketDispatch
import com.sun.xml.internal.ws.client.WSServiceDelegate; //导入依赖的package包/类
@Deprecated
public PacketDispatch(QName port, WSServiceDelegate owner, Tube pipe, BindingImpl binding, @Nullable WSEndpointReference epr) {
super(port, Mode.MESSAGE, owner, pipe, binding, epr);
isDeliverThrowableInPacket = calculateIsDeliverThrowableInPacket(binding);
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:6,代码来源:PacketDispatch.java
示例11: DataSourceDispatch
import com.sun.xml.internal.ws.client.WSServiceDelegate; //导入依赖的package包/类
@Deprecated
public DataSourceDispatch(QName port, Service.Mode mode, WSServiceDelegate service, Tube pipe, BindingImpl binding, WSEndpointReference epr) {
super(port, mode, service, pipe, binding, epr );
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:5,代码来源:DataSourceDispatch.java
注:本文中的com.sun.xml.internal.ws.client.WSServiceDelegate类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论