ohair@286: /* mkos@408: * Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved. ohair@286: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. ohair@286: * ohair@286: * This code is free software; you can redistribute it and/or modify it ohair@286: * under the terms of the GNU General Public License version 2 only, as ohair@286: * published by the Free Software Foundation. Oracle designates this ohair@286: * particular file as subject to the "Classpath" exception as provided ohair@286: * by Oracle in the LICENSE file that accompanied this code. ohair@286: * ohair@286: * This code is distributed in the hope that it will be useful, but WITHOUT ohair@286: * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or ohair@286: * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License ohair@286: * version 2 for more details (a copy is included in the LICENSE file that ohair@286: * accompanied this code). ohair@286: * ohair@286: * You should have received a copy of the GNU General Public License version ohair@286: * 2 along with this work; if not, write to the Free Software Foundation, ohair@286: * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. ohair@286: * ohair@286: * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA ohair@286: * or visit www.oracle.com if you need additional information or have any ohair@286: * questions. ohair@286: */ ohair@286: ohair@286: package com.sun.xml.internal.ws.client; ohair@286: ohair@286: import com.sun.istack.internal.NotNull; ohair@286: import com.sun.istack.internal.Nullable; ohair@286: import com.sun.xml.internal.ws.api.BindingID; ohair@286: import com.sun.xml.internal.ws.api.EndpointAddress; ohair@286: import com.sun.xml.internal.ws.api.WSService; ohair@286: import com.sun.xml.internal.ws.api.policy.PolicyResolverFactory; ohair@286: import com.sun.xml.internal.ws.api.policy.PolicyResolver; ohair@286: import com.sun.xml.internal.ws.api.client.WSPortInfo; ohair@286: import com.sun.xml.internal.ws.api.model.wsdl.WSDLPort; ohair@286: import com.sun.xml.internal.ws.binding.BindingImpl; ohair@286: import com.sun.xml.internal.ws.binding.WebServiceFeatureList; ohair@286: import com.sun.xml.internal.ws.policy.PolicyMap; ohair@286: import com.sun.xml.internal.ws.policy.jaxws.PolicyUtil; ohair@286: ohair@286: import javax.xml.namespace.QName; ohair@286: import javax.xml.ws.WebServiceFeature; ohair@286: ohair@286: /** ohair@286: * Information about a port. ohair@286: *

ohair@286: * This object is owned by {@link WSServiceDelegate} to keep track of a port, ohair@286: * since a port maybe added dynamically. ohair@286: * ohair@286: * @author JAXWS Development Team ohair@286: */ ohair@286: public class PortInfo implements WSPortInfo { ohair@286: private final @NotNull WSServiceDelegate owner; ohair@286: ohair@286: public final @NotNull QName portName; ohair@286: public final @NotNull EndpointAddress targetEndpoint; ohair@286: public final @NotNull BindingID bindingId; ohair@286: ohair@286: public final @NotNull PolicyMap policyMap; ohair@286: /** ohair@286: * If a port is known statically to a WSDL, {@link PortInfo} may ohair@286: * have the corresponding WSDL model. This would occur when the ohair@286: * service was created with the WSDL location and the port is defined ohair@286: * in the WSDL. ohair@286: *

ohair@286: * If this is a {@link SEIPortInfo}, then this is always non-null. ohair@286: */ ohair@286: public final @Nullable WSDLPort portModel; ohair@286: ohair@286: public PortInfo(WSServiceDelegate owner, EndpointAddress targetEndpoint, QName name, BindingID bindingId) { ohair@286: this.owner = owner; ohair@286: this.targetEndpoint = targetEndpoint; ohair@286: this.portName = name; ohair@286: this.bindingId = bindingId; ohair@286: this.portModel = getPortModel(owner, name); ohair@286: this.policyMap = createPolicyMap(); ohair@286: ohair@286: } ohair@286: ohair@286: public PortInfo(@NotNull WSServiceDelegate owner, @NotNull WSDLPort port) { ohair@286: this.owner = owner; ohair@286: this.targetEndpoint = port.getAddress(); ohair@286: this.portName = port.getName(); ohair@286: this.bindingId = port.getBinding().getBindingId(); ohair@286: this.portModel = port; ohair@286: this.policyMap = createPolicyMap(); ohair@286: } ohair@286: ohair@286: public PolicyMap getPolicyMap() { ohair@286: return policyMap; ohair@286: } ohair@286: ohair@286: public PolicyMap createPolicyMap() { ohair@286: PolicyMap map; ohair@286: if(portModel != null) { mkos@408: map = portModel.getOwner().getParent().getPolicyMap(); ohair@286: } else { ohair@286: map = PolicyResolverFactory.create().resolve(new PolicyResolver.ClientContext(null,owner.getContainer())); ohair@286: } ohair@286: //still map is null, create a empty map ohair@286: if(map == null) ohair@286: map = PolicyMap.createPolicyMap(null); ohair@286: return map; ohair@286: } ohair@286: /** ohair@286: * Creates {@link BindingImpl} for this {@link PortInfo}. ohair@286: * ohair@286: * @param webServiceFeatures ohair@286: * User-specified features. ohair@286: * @param portInterface ohair@286: * Null if this is for dispatch. Otherwise the interface the proxy is going to implement ohair@286: * @return ohair@286: * The initialized BindingImpl ohair@286: */ ohair@286: public BindingImpl createBinding(WebServiceFeature[] webServiceFeatures, Class portInterface) { ohair@286: return createBinding(new WebServiceFeatureList(webServiceFeatures), portInterface, null); ohair@286: } ohair@286: ohair@286: public BindingImpl createBinding(WebServiceFeatureList webServiceFeatures, Class portInterface, ohair@286: BindingImpl existingBinding) { ohair@286: if (existingBinding != null) { ohair@286: webServiceFeatures.addAll(existingBinding.getFeatures()); ohair@286: } ohair@286: ohair@286: Iterable configFeatures; ohair@286: //TODO incase of Dispatch, provide a way to User for complete control of the message processing by giving ohair@286: // ability to turn off the WSDL/Policy based features and its associated tubes. ohair@286: ohair@286: //Even in case of Dispatch, merge all features configured via WSDL/Policy or deployment configuration ohair@286: if (portModel != null) { ohair@286: // could have merged features from this.policyMap, but some features are set in WSDLModel which are not there in PolicyMap ohair@286: // for ex: wsdl extn., and since the policyMap features are merged into WSDLModel anyway during postFinished(), ohair@286: // So, using here WsdlModel for merging is right. ohair@286: ohair@286: // merge features from WSDL ohair@286: configFeatures = portModel.getFeatures(); ohair@286: } else { ohair@286: configFeatures = PolicyUtil.getPortScopedFeatures(policyMap, owner.getServiceName(),portName); ohair@286: } ohair@286: webServiceFeatures.mergeFeatures(configFeatures, false); ohair@286: ohair@286: // merge features from interceptor ohair@286: webServiceFeatures.mergeFeatures(owner.serviceInterceptor.preCreateBinding(this, portInterface, webServiceFeatures), false); ohair@286: ohair@286: BindingImpl bindingImpl = BindingImpl.create(bindingId, webServiceFeatures.toArray()); ohair@286: owner.getHandlerConfigurator().configureHandlers(this,bindingImpl); ohair@286: return bindingImpl; ohair@286: } ohair@286: ohair@286: //This method is used for Dispatch client only ohair@286: private WSDLPort getPortModel(WSServiceDelegate owner, QName portName) { ohair@286: ohair@286: if (owner.getWsdlService() != null){ mkos@408: Iterable ports = owner.getWsdlService().getPorts(); mkos@408: for (WSDLPort port : ports){ ohair@286: if (port.getName().equals(portName)) ohair@286: return port; ohair@286: } ohair@286: } ohair@286: return null; ohair@286: } ohair@286: ohair@286: // ohair@286: // implementation of API PortInfo interface ohair@286: // ohair@286: ohair@286: @Nullable ohair@286: public WSDLPort getPort() { ohair@286: return portModel; ohair@286: } ohair@286: ohair@286: @NotNull ohair@286: public WSService getOwner() { ohair@286: return owner; ohair@286: } ohair@286: ohair@286: @NotNull ohair@286: public BindingID getBindingId() { ohair@286: return bindingId; ohair@286: } ohair@286: ohair@286: @NotNull ohair@286: public EndpointAddress getEndpointAddress() { ohair@286: return targetEndpoint; ohair@286: } ohair@286: ohair@286: /** ohair@286: * @deprecated ohair@286: * Only meant to be used via {@link javax.xml.ws.handler.PortInfo}. ohair@286: * Use {@link WSServiceDelegate#getServiceName()}. ohair@286: */ ohair@286: public QName getServiceName() { ohair@286: return owner.getServiceName(); ohair@286: } ohair@286: ohair@286: /** ohair@286: * Only meant to be used via {@link javax.xml.ws.handler.PortInfo}. ohair@286: * Use {@link #portName}. ohair@286: */ ohair@286: public QName getPortName() { ohair@286: return portName; ohair@286: } ohair@286: ohair@286: /** ohair@286: * @deprecated ohair@286: * Only meant to be used via {@link javax.xml.ws.handler.PortInfo}. ohair@286: * Use {@link #bindingId}. ohair@286: */ ohair@286: public String getBindingID() { ohair@286: return bindingId.toString(); ohair@286: } ohair@286: }