本文整理汇总了Java中javax.xml.ws.soap.MTOMFeature.getThreshold方法的典型用法代码示例。如果您正苦于以下问题:Java MTOMFeature.getThreshold方法的具体用法?Java MTOMFeature.getThreshold怎么用?Java MTOMFeature.getThreshold使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类javax.xml.ws.soap.MTOMFeature
的用法示例。
在下文中一共展示了MTOMFeature.getThreshold方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: publish
import javax.xml.ws.soap.MTOMFeature; //导入方法依赖的package包/类
/**
* {@inheritDoc}
*/
public synchronized Endpoint publish(ServiceDomain domain, final SOAPBindingModel config, final String bindingId, final InboundHandler handler, WebServiceFeature... features) {
JBossWSEndpoint wsEndpoint = null;
try {
initialize(config);
Map<String,String> map = new HashMap<String, String>();
map.put("/" + config.getPort().getServiceName(), SEI);
Boolean addressingEnabled = false;
Boolean addressingRequired = false;
Boolean mtomEnabled = false;
Integer mtomThreshold = -1;
for (WebServiceFeature feature : features) {
if (feature instanceof AddressingFeature) {
AddressingFeature addrFeature = (AddressingFeature)feature;
addressingEnabled = addrFeature.isEnabled();
addressingRequired = addrFeature.isRequired();
LOGGER.info("Addressing [enabled = " + addrFeature.isEnabled() + ", required = " + addrFeature.isRequired() + "]");
} else if (feature instanceof MTOMFeature) {
MTOMFeature mtom = (MTOMFeature)feature;
mtomEnabled = mtom.isEnabled();
mtomThreshold = mtom.getThreshold();
LOGGER.info("MTOM [enabled = " + mtom.isEnabled() + ", threshold = " + mtom.getThreshold() + "]");
}
}
PortComponentMetaData portComponent = new PortComponentMetaData(config.getServiceName()
+ ":" + config.getPort().getServiceQName().getLocalPart()
+ ":" + config.getPort().getPortQName().getLocalPart(),
config.getPort().getPortQName(),
SEI, null, config.getPort().getServiceQName().getLocalPart(),
null, "/" + config.getPort().getServiceName(),
addressingEnabled, addressingRequired, "ALL", mtomEnabled, mtomThreshold,
false, config.getPort().getServiceQName(), null, null);
WebserviceDescriptionMetaData wsDescMetaData = new WebserviceDescriptionMetaData(config.getServiceName().getLocalPart(), getWsdlLocation(), null, new PortComponentMetaData[]{portComponent});
WebservicesMetaData wsMetadata = new WebservicesMetaData(null, new WebserviceDescriptionMetaData[]{wsDescMetaData});
wsEndpoint = new JBossWSEndpoint();
if (config.getContextPath() != null) {
wsEndpoint.publish(domain, getContextRoot(), map, wsMetadata, config, handler);
} else {
wsEndpoint.publish(domain, getContextPath(), map, wsMetadata, config, handler);
}
} catch (Exception e) {
throw new WebServicePublishException(e);
}
return wsEndpoint;
}
示例2: publish
import javax.xml.ws.soap.MTOMFeature; //导入方法依赖的package包/类
/**
* {@inheritDoc}
*/
public synchronized Endpoint publish(ServiceDomain domain, final SOAPBindingModel config, final String bindingId, final InboundHandler handler, WebServiceFeature... features) {
JBossWSEndpoint wsEndpoint = null;
try {
initialize(config);
Map<String,String> map = new HashMap<String, String>();
map.put("/" + config.getPort().getServiceName(), SEI);
Boolean addressingEnabled = false;
Boolean addressingRequired = false;
Boolean mtomEnabled = false;
Integer mtomThreshold = -1;
for (WebServiceFeature feature : features) {
if (feature instanceof AddressingFeature) {
AddressingFeature addrFeature = (AddressingFeature)feature;
addressingEnabled = addrFeature.isEnabled();
addressingRequired = addrFeature.isRequired();
LOGGER.info("Addressing [enabled = " + addressingEnabled + ", required = " + addressingRequired + "]");
} else if (feature instanceof MTOMFeature) {
MTOMFeature mtom = (MTOMFeature)feature;
mtomEnabled = mtom.isEnabled();
mtomThreshold = mtom.getThreshold();
LOGGER.info("MTOM [enabled = " + mtomEnabled + ", threshold = " + mtomThreshold + "]");
}
}
PortComponentMetaData portComponent = new PortComponentMetaData(config.getServiceName()
+ ":" + config.getPort().getServiceQName().getLocalPart()
+ ":" + config.getPort().getPortQName().getLocalPart(),
config.getPort().getPortQName(),
SEI, null, config.getPort().getServiceQName().getLocalPart(),
null, "/" + config.getPort().getServiceName(),
addressingEnabled, addressingRequired, "ALL", mtomEnabled, mtomThreshold,
false, config.getPort().getServiceQName(), null, null);
WebserviceDescriptionMetaData wsDescMetaData = new WebserviceDescriptionMetaData(config.getServiceName().getLocalPart(), getWsdlLocation(), null, new PortComponentMetaData[]{portComponent});
WebservicesMetaData wsMetadata = new WebservicesMetaData(null, new WebserviceDescriptionMetaData[]{wsDescMetaData});
wsEndpoint = new JBossWSEndpoint();
if (config.getContextPath() != null) {
wsEndpoint.publish(domain, getContextRoot(), map, wsMetadata, config, handler);
} else {
wsEndpoint.publish(domain, getContextPath(), map, wsMetadata, config, handler);
}
} catch (Exception e) {
throw new WebServicePublishException(e);
}
return wsEndpoint;
}
示例3: configure
import javax.xml.ws.soap.MTOMFeature; //导入方法依赖的package包/类
public void configure(MessageContext messageContext, BindingProvider provider) {
Binding bnd = (Binding) provider.getBinding();
MTOMFeature mtomFeature = (MTOMFeature) bnd.getFeature(MTOMFeature.ID);
Message requestMsg = messageContext.getMessage();
//Disable MTOM.
requestMsg.setMTOMEnabled(false);
if (mtomFeature == null) {
throw ExceptionFactory.
makeWebServiceException(Messages.getMessage("mtomFeatureErr"));
}
//Enable MTOM if specified.
if (mtomFeature.isEnabled()) {
int threshold = mtomFeature.getThreshold();
List<String> attachmentIDs = requestMsg.getAttachmentIDs();
// Enable MTOM
requestMsg.setMTOMEnabled(true);
if (threshold <= 0) {
if (log.isDebugEnabled()) {
log.debug("Enabling MTOM with no threshold.");
}
}else{
if(log.isDebugEnabled()){
log.debug("MTOM Threshold Value ="+threshold);
}
//set MTOM threshold value on message context.
//Once MTOM threshold is set on message context it will be
//read by SOAPMessageFormatter.writeTo() while writing the attachment
//SOAPMessageFormatter will further propogate the threshold value to
//Axiom.OMOutputFormat. JAXBAttachmentUnmarshaller will then make
//decision if the attachment should be inlined or optimized.
messageContext.setProperty(Constants.Configuration.MTOM_THRESHOLD, new Integer(threshold));
}
}
else {
if (log.isDebugEnabled()) {
log.debug("The MTOMFeature was found, but not enabled.");
}
}
}