本文整理汇总了Java中javax.xml.ws.soap.AddressingFeature类的典型用法代码示例。如果您正苦于以下问题:Java AddressingFeature类的具体用法?Java AddressingFeature怎么用?Java AddressingFeature使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
AddressingFeature类属于javax.xml.ws.soap包,在下文中一共展示了AddressingFeature类的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: update
import javax.xml.ws.soap.AddressingFeature; //导入依赖的package包/类
/**
* Puts an addressing policy into the PolicyMap if the addressing feature was set.
*/
public Collection<PolicySubject> update(final PolicyMap policyMap, final SEIModel model, final WSBinding wsBinding)
throws PolicyException {
LOGGER.entering(policyMap, model, wsBinding);
Collection<PolicySubject> subjects = new ArrayList<PolicySubject>();
if (policyMap != null) {
final AddressingFeature addressingFeature = wsBinding.getFeature(AddressingFeature.class);
if (LOGGER.isLoggable(Level.FINEST)) {
LOGGER.finest("addressingFeature = " + addressingFeature);
}
if ((addressingFeature != null) && addressingFeature.isEnabled()) {
//add wsam:Addrressing assertion if not exists.
addWsamAddressing(subjects, policyMap, model, addressingFeature);
}
} // endif policy map not null
LOGGER.exiting(subjects);
return subjects;
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:22,代码来源:AddressingPolicyMapConfigurator.java
示例2: createDispatch
import javax.xml.ws.soap.AddressingFeature; //导入依赖的package包/类
public <T> Dispatch<T> createDispatch(QName portName, Class<T> aClass, Service.Mode mode, WebServiceFeatureList features) {
WSEndpointReference wsepr = null;
boolean isAddressingEnabled = false;
AddressingFeature af = features.get(AddressingFeature.class);
if (af == null) {
af = this.features.get(AddressingFeature.class);
}
if (af != null && af.isEnabled())
isAddressingEnabled = true;
MemberSubmissionAddressingFeature msa = features.get(MemberSubmissionAddressingFeature.class);
if (msa == null) {
msa = this.features.get(MemberSubmissionAddressingFeature.class);
}
if (msa != null && msa.isEnabled())
isAddressingEnabled = true;
if(isAddressingEnabled && wsdlService != null && wsdlService.get(portName) != null) {
wsepr = wsdlService.get(portName).getEPR();
}
return createDispatch(portName, wsepr, aClass, mode, features);
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:21,代码来源:WSServiceDelegate.java
示例3: testInvalidAddressingFeature
import javax.xml.ws.soap.AddressingFeature; //导入依赖的package包/类
public void testInvalidAddressingFeature() {
// Use the default feature config
AddressingFeature feature = new AddressingFeature();
Service svc = Service.create(new QName("http://test", "ProxyAddressingService"));
ProxyAddressingService proxy = svc.getPort(subEPR, ProxyAddressingService.class, feature);
assertNotNull(proxy);
try {
proxy.doSomething("12345");
fail("An exception should have been thrown");
}
catch (WebServiceException wse) {
//pass
}
catch (Exception e) {
fail("The wrong exception type was thrown.");
}
}
开发者ID:wso2,项目名称:wso2-axis2,代码行数:20,代码来源:ProxyAddressingFeatureTest.java
示例4: testInvalidAddressingFeature
import javax.xml.ws.soap.AddressingFeature; //导入依赖的package包/类
public void testInvalidAddressingFeature() {
// Use the default feature config
AddressingFeature feature = new AddressingFeature();
Service svc = Service.create(new QName("http://test", "TestService"));
svc.addPort(new QName("http://test", "TestPort"), SOAPBinding.SOAP11HTTP_BINDING, "http://localhost");
Dispatch<Source> d = svc.createDispatch(subEPR, Source.class, Service.Mode.PAYLOAD, feature);
try {
d.invoke(null);
fail("An exception should have been thrown");
}
catch (WebServiceException wse) {
//pass
}
catch (Exception e) {
fail("The wrong exception type was thrown.");
}
}
开发者ID:wso2,项目名称:wso2-axis2,代码行数:20,代码来源:DispatchAddressingFeatureTest.java
示例5: getAddressingVersion
import javax.xml.ws.soap.AddressingFeature; //导入依赖的package包/类
public AddressingVersion getAddressingVersion() {
AddressingVersion addressingVersion;
if (features.isEnabled(AddressingFeature.class))
addressingVersion = AddressingVersion.W3C;
else if (features.isEnabled(MemberSubmissionAddressingFeature.class))
addressingVersion = AddressingVersion.MEMBER;
else
addressingVersion = null;
return addressingVersion;
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:11,代码来源:BindingImpl.java
示例6: getResponseRequirement
import javax.xml.ws.soap.AddressingFeature; //导入依赖的package包/类
private WSDLBoundOperation.ANONYMOUS getResponseRequirement(@Nullable WSDLBoundOperation wbo) {
try {
if (af.getResponses() == AddressingFeature.Responses.ANONYMOUS) {
return WSDLBoundOperation.ANONYMOUS.required;
} else if (af.getResponses() == AddressingFeature.Responses.NON_ANONYMOUS) {
return WSDLBoundOperation.ANONYMOUS.prohibited;
}
} catch (NoSuchMethodError e) {
//Ignore error, defaut to optional
}
//wsaw wsdl binding case will have some value set on wbo
return wbo != null ? wbo.getAnonymous() : WSDLBoundOperation.ANONYMOUS.optional;
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:14,代码来源:W3CWsaServerTube.java
示例7: getTubeHelper
import javax.xml.ws.soap.AddressingFeature; //导入依赖的package包/类
protected WsaTubeHelper getTubeHelper() {
if(binding.isFeatureEnabled(AddressingFeature.class)) {
return new WsaTubeHelperImpl(wsdlPort, null, binding);
} else if(binding.isFeatureEnabled(MemberSubmissionAddressingFeature.class)) {
//seiModel is null as it is not needed.
return new com.sun.xml.internal.ws.addressing.v200408.WsaTubeHelperImpl(wsdlPort, null, binding);
} else {
// Addressing is not enabled, WsaTube should not be included in the pipeline
throw new WebServiceException(AddressingMessages.ADDRESSING_NOT_ENABLED(this.getClass().getSimpleName()));
}
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:12,代码来源:WsaTube.java
示例8: addWsamAddressing
import javax.xml.ws.soap.AddressingFeature; //导入依赖的package包/类
private void addWsamAddressing(Collection<PolicySubject> subjects, PolicyMap policyMap, SEIModel model, AddressingFeature addressingFeature)
throws PolicyException {
final QName bindingName = model.getBoundPortTypeName();
final WsdlBindingSubject wsdlSubject = WsdlBindingSubject.createBindingSubject(bindingName);
final Policy addressingPolicy = createWsamAddressingPolicy(bindingName, addressingFeature);
final PolicySubject addressingPolicySubject = new PolicySubject(wsdlSubject, addressingPolicy);
subjects.add(addressingPolicySubject);
if (LOGGER.isLoggable(Level.FINE)) {
LOGGER.fine("Added addressing policy with ID \"" + addressingPolicy.getIdOrName() + "\" to binding element \"" + bindingName + "\"");
}
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:12,代码来源:AddressingPolicyMapConfigurator.java
示例9: addressibleElement
import javax.xml.ws.soap.AddressingFeature; //导入依赖的package包/类
private boolean addressibleElement(XMLStreamReader reader, WSDLFeaturedObject binding) {
QName ua = reader.getName();
if (ua.equals(AddressingVersion.W3C.wsdlExtensionTag)) {
String required = reader.getAttributeValue(WSDLConstants.NS_WSDL, "required");
binding.addFeature(new AddressingFeature(true, Boolean.parseBoolean(required)));
XMLStreamReaderUtil.skipElement(reader);
return true; // UsingAddressing is consumed
}
return false;
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:12,代码来源:W3CAddressingWSDLParserExtension.java
示例10: start
import javax.xml.ws.soap.AddressingFeature; //导入依赖的package包/类
@Override
public void start(WSDLGenExtnContext ctxt) {
WSBinding binding = ctxt.getBinding();
TypedXmlWriter root = ctxt.getRoot();
enabled = binding.isFeatureEnabled(AddressingFeature.class);
if (!enabled)
return;
AddressingFeature ftr = binding.getFeature(AddressingFeature.class);
required = ftr.isRequired();
root._namespace(AddressingVersion.W3C.wsdlNsUri, AddressingVersion.W3C.getWsdlPrefix());
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:12,代码来源:W3CAddressingWSDLGeneratorExtension.java
注:本文中的javax.xml.ws.soap.AddressingFeature类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论