org.apache.servicemix.jms.endpoints.JmsSoapConsumerMarshaler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of servicemix-jms Show documentation
Show all versions of servicemix-jms Show documentation
JBI compliant JMS binding component for reading and writing JMS messages using queues and topics.
The newest version!
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.servicemix.jms.endpoints;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.InputStream;
import java.io.OutputStream;
import java.io.Serializable;
import javax.jbi.component.ComponentContext;
import javax.jbi.messaging.Fault;
import javax.jbi.messaging.MessageExchange;
import javax.jbi.messaging.NormalizedMessage;
import javax.jms.Message;
import javax.jms.Session;
import javax.jms.TextMessage;
import javax.xml.namespace.QName;
import javax.xml.transform.Source;
import javax.xml.transform.dom.DOMSource;
import org.apache.servicemix.jbi.jaxp.SourceTransformer;
import org.apache.servicemix.soap.api.InterceptorChain;
import org.apache.servicemix.soap.api.InterceptorProvider.Phase;
import org.apache.servicemix.soap.api.Policy;
import org.apache.servicemix.soap.api.model.Binding;
import org.apache.servicemix.soap.bindings.soap.SoapFault;
import org.apache.servicemix.soap.bindings.soap.SoapVersion;
import org.apache.servicemix.soap.interceptors.jbi.JbiConstants;
public class JmsSoapConsumerMarshaler implements JmsConsumerMarshaler {
private Binding> binding;
private boolean useJbiWrapper = true;
private Policy[] policies;
private boolean rollbackOnError = true;
private SourceTransformer sourceTransformer = new SourceTransformer();
/**
* @return the binding
*/
public Binding> getBinding() {
return binding;
}
/**
* @param binding the binding to set
*/
public void setBinding(Binding> binding) {
this.binding = binding;
}
/**
* @return the policies
*/
public Policy[] getPolicies() {
return policies;
}
/**
* @param policies the policies to set
*/
public void setPolicies(Policy[] policies) {
this.policies = policies;
}
/**
* @return the useJbiWrapper
*/
public boolean isUseJbiWrapper() {
return useJbiWrapper;
}
/**
* @param useJbiWrapper the useJbiWrapper to set
*/
public void setUseJbiWrapper(boolean useJbiWrapper) {
this.useJbiWrapper = useJbiWrapper;
}
public boolean isRollbackOnError() {
return rollbackOnError;
}
/**
* @param rollbackOnError if exchange in errors should cause a rollback on the JMS side
*/
public void setRollbackOnError(boolean rollbackOnError) {
this.rollbackOnError = rollbackOnError;
}
public JmsContext createContext(Message message) throws Exception {
return new Context(message);
}
public MessageExchange createExchange(JmsContext jmsContext, ComponentContext jbiContext) throws Exception {
org.apache.servicemix.soap.api.Message msg = binding.createMessage();
((Context) jmsContext).msg = msg;
msg.put(ComponentContext.class, jbiContext);
msg.put(JbiConstants.USE_JBI_WRAPPER, useJbiWrapper);
msg.setContent(InputStream.class, new ByteArrayInputStream(((TextMessage) jmsContext.getMessage()).getText().getBytes()));
InterceptorChain phase = getChain(Phase.ServerIn);
phase.doIntercept(msg);
return msg.getContent(MessageExchange.class);
}
public Message createOut(MessageExchange exchange, NormalizedMessage outMsg, Session session, JmsContext context) throws Exception {
Source source = outMsg.getContent();
if (!(source instanceof DOMSource)) {
source = sourceTransformer.toDOMSource(source);
outMsg.setContent(source);
}
org.apache.servicemix.soap.api.Message in = ((Context) context).msg;
org.apache.servicemix.soap.api.Message msg = binding.createMessage(in);
ByteArrayOutputStream baos = new ByteArrayOutputStream();
msg.setContent(OutputStream.class, baos);
msg.setContent(MessageExchange.class, exchange);
msg.setContent(NormalizedMessage.class, outMsg);
msg.put(SoapVersion.class, in.get(SoapVersion.class));
msg.put(JbiConstants.USE_JBI_WRAPPER, useJbiWrapper);
InterceptorChain phase = getChain(Phase.ServerOut);
phase.doIntercept(msg);
return session.createTextMessage(baos.toString());
}
public Message createFault(MessageExchange exchange, Fault fault, Session session, JmsContext context) throws Exception {
org.apache.servicemix.soap.api.Message in = ((Context) context).msg;
org.apache.servicemix.soap.api.Message msg = binding.createMessage(in);
ByteArrayOutputStream baos = new ByteArrayOutputStream();
msg.setContent(OutputStream.class, baos);
msg.setContent(MessageExchange.class, exchange);
msg.setContent(NormalizedMessage.class, fault);
msg.put(SoapVersion.class, in.get(SoapVersion.class));
msg.put(JbiConstants.USE_JBI_WRAPPER, useJbiWrapper);
InterceptorChain phase = getChain(Phase.ServerOutFault);
QName code = (QName) fault.getProperty("org.apache.servicemix.soap.fault.code");
String reason = (String) fault.getProperty("org.apache.servicemix.soap.fault.reason");
SoapFault soapFault = new SoapFault(code, reason, null, null, fault.getContent());
msg.setContent(Exception.class, soapFault);
phase.doIntercept(msg);
return session.createTextMessage(baos.toString());
}
public Message createError(MessageExchange exchange, Exception error, Session session, JmsContext context) throws Exception {
if (rollbackOnError) {
throw error;
} else {
org.apache.servicemix.soap.api.Message in = ((Context) context).msg;
org.apache.servicemix.soap.api.Message msg = binding.createMessage(in);
ByteArrayOutputStream baos = new ByteArrayOutputStream();
msg.setContent(OutputStream.class, baos);
msg.setContent(MessageExchange.class, exchange);
msg.put(SoapVersion.class, in.get(SoapVersion.class));
msg.put(JbiConstants.USE_JBI_WRAPPER, useJbiWrapper);
InterceptorChain phase = getChain(Phase.ServerOutFault);
SoapFault soapFault;
if (error instanceof SoapFault) {
soapFault = (SoapFault) error;
} else {
soapFault = new SoapFault(error);
}
msg.setContent(Exception.class, soapFault);
phase.doIntercept(msg);
return session.createTextMessage(baos.toString());
}
}
protected InterceptorChain getChain(Phase phase) {
InterceptorChain chain = binding.getInterceptorChain(phase);
if (policies != null) {
for (int i = 0; i < policies.length; i++) {
chain.add(policies[i].getInterceptors(phase));
}
}
return chain;
}
protected static class Context implements JmsContext, Serializable {
Message message;
org.apache.servicemix.soap.api.Message msg;
Context(Message message) {
this.message = message;
}
public Message getMessage() {
return this.message;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy