How to use handleOutboundMimeMessageHeader method of com.consol.citrus.ws.message.converter.SoapMessageConverter class

Best Citrus code snippet using com.consol.citrus.ws.message.converter.SoapMessageConverter.handleOutboundMimeMessageHeader

Source:SoapMessageConverter.java Github

copy

Full Screen

...271 * @param name the header name.272 * @param value the header value.273 * @param handleMimeHeaders should handle mime headers.274 */275 private void handleOutboundMimeMessageHeader(final org.springframework.ws.soap.SoapMessage message,276 final String name,277 final Object value,278 final boolean handleMimeHeaders) {279 if (!handleMimeHeaders) {280 return;281 }282 if (message instanceof SaajSoapMessage) {283 final SaajSoapMessage soapMsg = (SaajSoapMessage) message;284 final MimeHeaders headers = soapMsg.getSaajMessage().getMimeHeaders();285 headers.setHeader(name, value.toString());286 } else if (message instanceof AxiomSoapMessage) {287 log.warn("Unable to set mime message header '" + name + "' on AxiomSoapMessage - unsupported");288 } else {289 log.warn("Unsupported SOAP message implementation - unable to set mime message header '" + name + "'");290 }291 }292 293 /**294 * Adds mime headers to constructed response message. This can be HTTP headers in case295 * of HTTP transport. Note: HTTP headers may have multiple values that are represented as 296 * comma delimited string value.297 * 298 * @param soapMessage the source SOAP message.299 * @param message the message build constructing the result message.300 */301 protected void handleInboundMimeHeaders(final org.springframework.ws.soap.SoapMessage soapMessage,302 final SoapMessage message) {303 final Map<String, String> mimeHeaders = new HashMap<String, String>();304 MimeHeaders messageMimeHeaders = null;305 306 // to get access to mime headers we need to get implementation specific here307 if (soapMessage instanceof SaajSoapMessage) {308 messageMimeHeaders = ((SaajSoapMessage)soapMessage).getSaajMessage().getMimeHeaders();309 } else if (soapMessage instanceof AxiomSoapMessage) {310 // we do not handle axiom message implementations as it is very difficult to get access to the mime headers there311 log.warn("Skip mime headers for AxiomSoapMessage - unsupported");312 } else {313 log.warn("Unsupported SOAP message implementation - skipping mime headers");314 }315 316 if (messageMimeHeaders != null) {317 final Iterator<?> mimeHeaderIterator = messageMimeHeaders.getAllHeaders();318 while (mimeHeaderIterator.hasNext()) {319 final MimeHeader mimeHeader = (MimeHeader)mimeHeaderIterator.next();320 // http headers can have multpile values so headers might occur several times in map321 if (mimeHeaders.containsKey(mimeHeader.getName())) {322 // header is already present, so concat values to a single comma delimited string323 String value = mimeHeaders.get(mimeHeader.getName());324 value += ", " + mimeHeader.getValue();325 mimeHeaders.put(mimeHeader.getName(), value);326 } else {327 mimeHeaders.put(mimeHeader.getName(), mimeHeader.getValue());328 }329 }330 331 for (final Entry<String, String> httpHeaderEntry : mimeHeaders.entrySet()) {332 message.setHeader(httpHeaderEntry.getKey(), httpHeaderEntry.getValue());333 }334 }335 }336 337 /**338 * Adds all message properties from web service message to message builder 339 * as normal header entries.340 * 341 * @param messageContext the web service request message context.342 * @param message the request message builder.343 */344 protected void handleInboundMessageProperties(final MessageContext messageContext,345 final SoapMessage message) {346 if (messageContext == null) { return; }347 348 final String[] propertyNames = messageContext.getPropertyNames();349 if (propertyNames != null) {350 for (final String propertyName : propertyNames) {351 message.setHeader(propertyName, messageContext.getProperty(propertyName));352 }353 }354 }355 356 /**357 * Adds attachments if present in soap web service message.358 * 359 * @param soapMessage the web service message.360 * @param message the response message builder.361 */362 protected void handleInboundAttachments(final org.springframework.ws.soap.SoapMessage soapMessage,363 final SoapMessage message) {364 final Iterator<Attachment> attachments = soapMessage.getAttachments();365 while (attachments.hasNext()) {366 final Attachment attachment = attachments.next();367 final SoapAttachment soapAttachment = SoapAttachment.from(attachment);368 if (log.isDebugEnabled()) {369 log.debug(String.format("SOAP message contains attachment with contentId '%s'", soapAttachment.getContentId()));370 }371 message.addAttachment(soapAttachment);372 }373 }374 private SoapMessage convertMessageToSoapMessage(final Message message) {375 final SoapMessage soapMessage;376 if (message instanceof SoapMessage) {377 soapMessage = (SoapMessage) message;378 } else {379 soapMessage = new SoapMessage(message);380 }381 return soapMessage;382 }383 private void copySoapHeaders(final WebServiceEndpointConfiguration endpointConfiguration,384 final org.springframework.ws.soap.SoapMessage soapRequest,385 final SoapMessage soapMessage) {386 for (final Entry<String, Object> headerEntry : soapMessage.getHeaders().entrySet()) {387 if (MessageHeaderUtils.isSpringInternalHeader(headerEntry.getKey())) {388 continue;389 }390 if (headerEntry.getKey().equalsIgnoreCase(SoapMessageHeaders.SOAP_ACTION)) {391 soapRequest.setSoapAction(headerEntry.getValue().toString());392 } else if (headerEntry.getKey().toLowerCase().startsWith(SoapMessageHeaders.HTTP_PREFIX)) {393 handleOutboundMimeMessageHeader(soapRequest,394 headerEntry.getKey().substring(SoapMessageHeaders.HTTP_PREFIX.length()),395 headerEntry.getValue(),396 endpointConfiguration.isHandleMimeHeaders());397 } else if (!headerEntry.getKey().startsWith(MessageHeaders.PREFIX)) {398 final SoapHeaderElement headerElement;399 if (QNameUtils.validateQName(headerEntry.getKey())) {400 headerElement = soapRequest.getSoapHeader().addHeaderElement(QNameUtils.parseQNameString(headerEntry.getKey()));401 } else {402 headerElement = soapRequest.getSoapHeader().addHeaderElement(new QName("", headerEntry.getKey(), ""));403 }404 headerElement.setText(headerEntry.getValue().toString());405 }406 }407 }...

Full Screen

Full Screen

handleOutboundMimeMessageHeader

Using AI Code Generation

copy

Full Screen

1package com.consol.citrus.ws.message.converter;2import com.consol.citrus.context.TestContext;3import com.consol.citrus.message.DefaultMessage;4import com.consol.citrus.message.Message;5import com.consol.citrus.message.MessageHeaderData;6import com.consol.citrus.message.MessageHeaders;7import com.consol.citrus.message.MessageType;8import com.consol.citrus.ws.message.SoapAttachment;9import com.consol.citrus.ws.message.SoapMessage;10import org.slf4j.Logger;11import org.slf4j.LoggerFactory;12import org.springframework.beans.factory.annotation.Autowired;13import org.springframework.oxm.Marshaller;14import org.springframework.oxm.Unmarshaller;15import org.springframework.oxm.XmlMappingException;16import org.springframework.util.CollectionUtils;17import org.springframework.util.StringUtils;18import org.springframework.ws.WebServiceMessage;19import org.springframework.ws.soap.SoapMessageFactory;20import org.springframework.ws.soap.SoapVersion;21import org.springframework.ws.soap.saaj.SaajSoapMessageFactory;22import org.springframework.ws.soap.saaj.SaajSoapMessageUtils;23import javax.xml.bind.*;24import javax.xml.namespace.QName;25import javax.xml.soap.*;26import javax.xml.transform.*;27import javax.xml.transform.dom.DOMResult;28import javax.xml.transform.dom.DOMSource;29import javax.xml.transform.stream.StreamResult;30import java.io.ByteArrayOutputStream;31import java.io.IOException;32import java.io.OutputStream;33import java.util.*;34public class SoapMessageConverter extends AbstractSoapMessageConverter {35 private static Logger log = LoggerFactory.getLogger(SoapMessageConverter.class);36 private Marshaller marshaller;37 private Unmarshaller unmarshaller;38 private JAXBContext jaxbContext;39 private SoapMessageFactory messageFactory = new SaajSoapMessageFactory();40 private MessageFactory saajMessageFactory;41 private TransformerFactory transformerFactory = TransformerFactory.newInstance();42 private Transformer transformer;43 private SoapMessageConverter messageConverter = new SoapMessageConverter();44 private SoapMessageConverter outboundMessageConverter = new SoapMessageConverter();

Full Screen

Full Screen

handleOutboundMimeMessageHeader

Using AI Code Generation

copy

Full Screen

1handleOutboundMimeMessageHeader("myHeader", "myValue")2handleOutboundMimeMessageHeader("myHeader", "myValue")3handleOutboundMimeMessageHeader("myHeader", "myValue")4handleOutboundMimeMessageHeader("myHeader", "myValue")5handleOutboundMimeMessageHeader("myHeader", "myValue")6handleOutboundMimeMessageHeader("myHeader", "myValue")7handleOutboundMimeMessageHeader("myHeader", "myValue")8handleOutboundMimeMessageHeader("myHeader", "myValue")9handleOutboundMimeMessageHeader("myHeader", "myValue")10handleOutboundMimeMessageHeader("myHeader", "myValue")

Full Screen

Full Screen

handleOutboundMimeMessageHeader

Using AI Code Generation

copy

Full Screen

1soapActionHeader = citrus.ws().soapActionHeader("urn:com.consol.citrus:mySoapAction")2soapActionHeader = citrus.ws().soapActionHeader("urn:com.consol.citrus:mySoapAction")3soapActionHeader = citrus.ws().soapActionHeader("urn:com.consol.citrus:mySoapAction")4soapActionHeader = citrus.ws().soapActionHeader("urn:com.consol.citrus:mySoapAction")5soapActionHeader = citrus.ws().soapActionHeader("urn:com.consol.citrus:mySoapAction")6soapActionHeader = citrus.ws().soapActionHeader("urn:com.consol.citrus:mySoapAction")7soapActionHeader = citrus.ws().soapActionHeader("urn:com.consol.citrus:mySoapAction")8soapActionHeader = citrus.ws().soapActionHeader("urn:com.consol.citrus:mySoapAction")9soapActionHeader = citrus.ws().soapActionHeader("urn:com.consol.citrus:mySoapAction")

Full Screen

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful