All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.springframework.integration.ws.MarshallingWebServiceInboundGateway Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2002-2024 the original author or authors.
 *
 * Licensed 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
 *
 *      https://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.springframework.integration.ws;

import java.io.IOException;

import org.springframework.integration.support.AbstractIntegrationMessageBuilder;
import org.springframework.messaging.Message;
import org.springframework.oxm.Marshaller;
import org.springframework.oxm.Unmarshaller;
import org.springframework.util.Assert;
import org.springframework.ws.WebServiceMessage;
import org.springframework.ws.context.MessageContext;
import org.springframework.ws.support.MarshallingUtils;

/**
 * @author Mark Fisher
 * @author Oleg Zhurakousky
 * @author Gary Russell
 * @since 1.0.2
 */
public class MarshallingWebServiceInboundGateway extends AbstractWebServiceInboundGateway {

	private Marshaller marshaller;

	private Unmarshaller unmarshaller;

	/**
	 * Creates a new MarshallingWebServiceInboundGateway.
	 * The {@link Marshaller} and {@link Unmarshaller} must be injected using properties.
	 */
	public MarshallingWebServiceInboundGateway() {
	}

	/**
	 * Creates a new MarshallingWebServiceInboundGateway with the given marshaller.
	 * The Marshaller must also implement {@link Unmarshaller}, since it is used for both marshalling and
	 * unmarshalling.
	 * 

* Note that all {@link Marshaller} implementations in Spring-OXM also implement the {@link Unmarshaller} * interface, so you can safely use this constructor for any of those implementations. * * @param marshaller object used as marshaller and unmarshaller * @throws IllegalArgumentException when marshaller does not implement {@link Unmarshaller} * @see #MarshallingWebServiceInboundGateway(Marshaller, Unmarshaller) */ public MarshallingWebServiceInboundGateway(Marshaller marshaller) { Assert.notNull(marshaller, "'marshaller' must not be null"); Assert.isInstanceOf(Unmarshaller.class, marshaller, "When using this constructor the provided " + "Marshaller must also implement Unmarshaller"); this.marshaller = marshaller; this.unmarshaller = (Unmarshaller) marshaller; } /** * Creates a new MarshallingWebServiceInboundGateway with the given marshaller and unmarshaller. * * @param marshaller The marshaller. * @param unmarshaller The unmarshaller. */ public MarshallingWebServiceInboundGateway(Marshaller marshaller, Unmarshaller unmarshaller) { Assert.notNull(marshaller, "'marshaller' must not be null"); Assert.notNull(unmarshaller, "'unmarshaller' must not be null"); this.marshaller = marshaller; this.unmarshaller = unmarshaller; } public void setMarshaller(Marshaller marshaller) { Assert.notNull(marshaller, "'marshaller' must not be null"); this.marshaller = marshaller; } public void setUnmarshaller(Unmarshaller unmarshaller) { Assert.notNull(unmarshaller, "'unmarshaller' must not be null"); this.unmarshaller = unmarshaller; } @Override protected void onInit() { super.onInit(); Assert.notNull(this.marshaller, "This implementation requires Marshaller"); Assert.notNull(this.unmarshaller, "This implementation requires Unmarshaller"); } @Override protected void doInvoke(MessageContext messageContext) throws IOException { WebServiceMessage request = messageContext.getRequest(); Assert.notNull(request, "Invalid message context: request was null."); Object requestObject = MarshallingUtils.unmarshal(this.unmarshaller, request); AbstractIntegrationMessageBuilder builder = this.getMessageBuilderFactory().withPayload(requestObject); this.fromSoapHeaders(messageContext, builder); Message replyMessage = this.sendAndReceiveMessage(builder.build()); if (replyMessage != null) { WebServiceMessage response = messageContext.getResponse(); this.toSoapHeaders(response, replyMessage); MarshallingUtils.marshal(this.marshaller, replyMessage.getPayload(), response); } } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy