com.sun.xml.ws.wsdl.ActionBasedOperationFinder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of webservices-rt Show documentation
Show all versions of webservices-rt Show documentation
This module contains the Metro runtime code.
/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* Copyright (c) 1997-2017 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://oss.oracle.com/licenses/CDDL+GPL-1.1
* or 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 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.WSDLOperationMapping;
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.AddressingUtils;
import com.sun.xml.ws.api.message.Message;
import com.sun.xml.ws.api.message.MessageHeaders;
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("")) {
if (m.getOperation() != null) action = m.getOperation().getOperation().getInput().getAction();
// action = m.getInputAction();
}
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.getOperationQName(),action,payloadName));
}
uniqueOpSignatureMap.put(opSignature, wsdlOperationMapping(m));
actionMap.put(action,wsdlOperationMapping(m));
}
}
} else {
for (WSDLBoundOperation wsdlOp : wsdlModel.getBinding().getBindingOperations()) {
QName payloadName = wsdlOp.getRequestPayloadName();
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, wsdlOperationMapping(wsdlOp));
actionMap.put(action,wsdlOperationMapping(wsdlOp));
}
}
}
// /**
// *
// * @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 {
// return getWSDLOperationMapping(request).getWSDLBoundOperation().getName();
// }
public WSDLOperationMapping getWSDLOperationMapping(Packet request) throws DispatchException {
MessageHeaders hl = request.getMessage().getHeaders();
String action = AddressingUtils.getAction(hl, 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);
}
WSDLOperationMapping opMapping = uniqueOpSignatureMap.get(new ActionBasedOperationSignature(action, payloadName));
if (opMapping != null)
return opMapping;
//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
opMapping = actionMap.get(action);
if (opMapping != null)
return opMapping;
// invalid action header
Message result = Messages.create(action, av, binding.getSOAPVersion());
throw new DispatchException(result);
}
}