本文整理汇总了Java中com.sun.xml.internal.ws.model.wsdl.WSDLProperties类的典型用法代码示例。如果您正苦于以下问题:Java WSDLProperties类的具体用法?Java WSDLProperties怎么用?Java WSDLProperties使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
WSDLProperties类属于com.sun.xml.internal.ws.model.wsdl包,在下文中一共展示了WSDLProperties类的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: Stub
import com.sun.xml.internal.ws.model.wsdl.WSDLProperties; //导入依赖的package包/类
private Stub(WSServiceDelegate owner, @Nullable Tube master, @Nullable WSPortInfo portInfo, BindingImpl binding, @Nullable WSDLPort wsdlPort, EndpointAddress defaultEndPointAddress, @Nullable WSEndpointReference epr) {
this.owner = owner;
this.portInfo = portInfo;
this.wsdlPort = portInfo.getPort();
this.binding = binding;
addrVersion = binding.getAddressingVersion();
// if there is an EPR, EPR's address should be used for invocation instead of default address
if(epr != null)
this.requestContext.setEndPointAddressString(epr.getAddress());
else
this.requestContext.setEndpointAddress(defaultEndPointAddress);
this.engine = new Engine(toString(), owner.getExecutor());
this.endpointReference = epr;
wsdlProperties = (wsdlPort==null) ? null : new WSDLProperties(wsdlPort);
// ManagedObjectManager MUST be created before the pipeline
// is constructed.
managedObjectManager = new MonitorRootClient(this).createManagedObjectManager(this);
if(master != null)
this.tubes = new TubePool(master);
else
this.tubes = new TubePool(createPipeline(portInfo, binding));
// This needs to happen after createPipeline.
// TBD: Check if it needs to happen outside the Stub constructor.
managedObjectManager.resumeJMXRegistration();
}
开发者ID:alexkasko,项目名称:openjdk-icedtea7,代码行数:30,代码来源:Stub.java
注:本文中的com.sun.xml.internal.ws.model.wsdl.WSDLProperties类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论