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

com.sun.xml.ws.wsdl.ActionBasedOperationFinder Maven / Gradle / Ivy

/*
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 *
 * Copyright (c) 1997-2010 Oracle and/or its affiliates. All rights reserved.
 *
 * The contents of this file are subject to the terms of either the GNU
 * General Public License Version 2 only ("GPL") or the Common Development
 * and Distribution License("CDDL") (collectively, the "License").  You
 * may not use this file except in compliance with the License.  You can
 * obtain a copy of the License at
 * https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html
 * or packager/legal/LICENSE.txt.  See the License for the specific
 * language governing permissions and limitations under the License.
 *
 * When distributing the software, include this License Header Notice in each
 * file and include the License file at packager/legal/LICENSE.txt.
 *
 * GPL Classpath Exception:
 * Oracle designates this particular file as subject to the "Classpath"
 * exception as provided by Oracle in the GPL Version 2 section of the License
 * file that accompanied this code.
 *
 * Modifications:
 * If applicable, add the following below the License Header, with the fields
 * enclosed by brackets [] replaced by your own identifying information:
 * "Portions Copyright [year] [name of copyright owner]"
 *
 * Contributor(s):
 * If you wish your version of this file to be governed by only the CDDL or
 * only the GPL Version 2, indicate your decision by adding "[Contributor]
 * elects to include this software in this distribution under the [CDDL or GPL
 * Version 2] license."  If you don't indicate a single choice of license, a
 * recipient has the option to distribute your version of this file under
 * either the CDDL, the GPL Version 2 or to extend the choice of license to
 * its licensees as provided above.  However, if you add GPL Version 2 code
 * and therefore, elected the GPL Version 2 license, then the option applies
 * only if the new code is made subject to such option by the copyright
 * holder.
 */

package com.sun.xml.ws.wsdl;

import com.sun.istack.NotNull;
import com.sun.istack.Nullable;
import com.sun.xml.ws.api.WSBinding;
import com.sun.xml.ws.api.model.SEIModel;
import com.sun.xml.ws.api.model.wsdl.WSDLPort;
import com.sun.xml.ws.api.model.wsdl.WSDLBoundOperation;
import com.sun.xml.ws.api.addressing.AddressingVersion;
import com.sun.xml.ws.api.message.HeaderList;
import com.sun.xml.ws.api.message.Message;
import com.sun.xml.ws.api.message.Messages;
import com.sun.xml.ws.api.message.Packet;
import com.sun.xml.ws.model.AbstractSEIModelImpl;
import com.sun.xml.ws.model.JavaMethodImpl;
import static com.sun.xml.ws.wsdl.PayloadQNameBasedOperationFinder.*;
import com.sun.xml.ws.resources.AddressingMessages;

import javax.xml.namespace.QName;
import java.util.HashMap;
import java.util.Map;
import java.util.logging.Logger;

/**
 * An {@link WSDLOperationFinder} implementation that uses
 * WS-Addressing Action Message Addressing Property, wsa:Action and SOAP Payload QName,
 * as the key for dispatching.
 * 

* This should be used only when AddressingFeature is enabled. * A map of all {@link ActionBasedOperationSignature}s in the port and the corresponding and the WSDL Operation QNames * is maintained. *

* * @author Rama Pulavarthi */ final class ActionBasedOperationFinder extends WSDLOperationFinder { private static final Logger LOGGER = Logger.getLogger(ActionBasedOperationFinder.class.getName()); private final Map uniqueOpSignatureMap; private final Map actionMap; private final @NotNull AddressingVersion av; public ActionBasedOperationFinder(WSDLPort wsdlModel, WSBinding binding, @Nullable SEIModel seiModel) { super(wsdlModel, binding, seiModel); assert binding.getAddressingVersion() != null; // this dispatcher can be only used when addressing is on. av = binding.getAddressingVersion(); uniqueOpSignatureMap = new HashMap(); actionMap = new HashMap(); if (seiModel != null) { for (JavaMethodImpl m : ((AbstractSEIModelImpl) seiModel).getJavaMethods()) { if(m.getMEP().isAsync) continue; String action = m.getInputAction(); QName payloadName = m.getRequestPayloadName(); if (payloadName == null) payloadName = EMPTY_PAYLOAD; //first look at annotations and then in wsdlmodel if (action == null || action.equals("")) { action = m.getOperation().getOperation().getInput().getAction(); } if (action != null) { ActionBasedOperationSignature opSignature = new ActionBasedOperationSignature(action, payloadName); if(uniqueOpSignatureMap.get(opSignature) != null) { LOGGER.warning(AddressingMessages.NON_UNIQUE_OPERATION_SIGNATURE( uniqueOpSignatureMap.get(opSignature),m.getOperation().getName(),action,payloadName)); } uniqueOpSignatureMap.put(opSignature, m.getOperation().getName()); actionMap.put(action,m.getOperation().getName()); } } } else { for (WSDLBoundOperation wsdlOp : wsdlModel.getBinding().getBindingOperations()) { QName payloadName = wsdlOp.getReqPayloadName(); if (payloadName == null) payloadName = EMPTY_PAYLOAD; String action = wsdlOp.getOperation().getInput().getAction(); ActionBasedOperationSignature opSignature = new ActionBasedOperationSignature( action, payloadName); if(uniqueOpSignatureMap.get(opSignature) != null) { LOGGER.warning(AddressingMessages.NON_UNIQUE_OPERATION_SIGNATURE( uniqueOpSignatureMap.get(opSignature),wsdlOp.getName(),action,payloadName)); } uniqueOpSignatureMap.put(opSignature, wsdlOp.getName()); actionMap.put(action,wsdlOp.getName()); } } } /** * * @param request Request Packet that is used to find the associated WSDLOperation * @return WSDL operation Qname. * return null if WS-Addressing is not engaged. * @throws DispatchException with WSA defined fault message when it cannot find an associated WSDL operation. * */ @Override public QName getWSDLOperationQName(Packet request) throws DispatchException { HeaderList hl = request.getMessage().getHeaders(); String action = hl.getAction(av, binding.getSOAPVersion()); if (action == null) // Addressing is not enagaged, return null to use other ways to dispatch. return null; Message message = request.getMessage(); QName payloadName; String localPart = message.getPayloadLocalPart(); if (localPart == null) { payloadName = EMPTY_PAYLOAD; } else { String nsUri = message.getPayloadNamespaceURI(); if (nsUri == null) nsUri = EMPTY_PAYLOAD_NSURI; payloadName = new QName(nsUri, localPart); } QName opName = uniqueOpSignatureMap.get(new ActionBasedOperationSignature(action, payloadName)); if (opName != null) return opName; //Seems like in Wstrust STS wsdls, the payload does not match what is specified in the wsdl leading to incorrect // wsdl operation resolution. Use just wsa:Action to dispatch as a last resort. //try just with wsa:Action opName = actionMap.get(action); if (opName != null) return opName; // invalid action header Message result = Messages.create(action, av, binding.getSOAPVersion()); throw new DispatchException(result); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy