blob: c266d398e2fd03e4a7a700c2b17a1cf424855f3a [file] [log] [blame]
/*
* 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.axis2.jaxws.samples.client.ping;
import org.apache.axis2.jaxws.samples.ping.PingStringInput;
import javax.xml.namespace.QName;
import javax.xml.transform.Source;
import javax.xml.ws.BindingProvider;
import javax.xml.ws.Dispatch;
import javax.xml.ws.Service;
import java.net.URL;
public class PingServicePortProxy {
protected Descriptor _descriptor;
public class Descriptor {
private PingService _service = null;
private org.apache.axis2.jaxws.samples.client.ping.PingServicePortTypeClient _proxy = null;
private Dispatch<Source> _dispatch = null;
public Descriptor() {
_service = new PingService();
initCommon();
}
public Descriptor(URL wsdlLocation, QName serviceName) {
_service = new PingService(wsdlLocation, serviceName);
initCommon();
}
private void initCommon() {
_proxy = _service.getPingServicePort();
}
public org.apache.axis2.jaxws.samples.client.ping.PingServicePortTypeClient getProxy() {
return _proxy;
}
public Dispatch<Source> getDispatch() {
if (_dispatch == null) {
QName portQName = new QName("http://org/apache/axis2/jaxws/samples/ping/", "PingServicePort");
_dispatch = _service.createDispatch(portQName, Source.class, Service.Mode.PAYLOAD);
String proxyEndpointUrl = getEndpoint();
BindingProvider bp = (BindingProvider) _dispatch;
String dispatchEndpointUrl = (String) bp.getRequestContext().get(BindingProvider.ENDPOINT_ADDRESS_PROPERTY);
if (!dispatchEndpointUrl.equals(proxyEndpointUrl))
bp.getRequestContext().put(BindingProvider.ENDPOINT_ADDRESS_PROPERTY, proxyEndpointUrl);
}
return _dispatch;
}
public String getEndpoint() {
BindingProvider bp = (BindingProvider) _proxy;
return (String) bp.getRequestContext().get(BindingProvider.ENDPOINT_ADDRESS_PROPERTY);
}
public void setEndpoint(String endpointUrl) {
BindingProvider bp = (BindingProvider) _proxy;
bp.getRequestContext().put(BindingProvider.ENDPOINT_ADDRESS_PROPERTY, endpointUrl);
if (_dispatch != null) {
bp = (BindingProvider) _dispatch;
bp.getRequestContext().put(BindingProvider.ENDPOINT_ADDRESS_PROPERTY, endpointUrl);
}
}
}
public PingServicePortProxy() {
_descriptor = new Descriptor();
}
public PingServicePortProxy(URL wsdlLocation) {
_descriptor = new Descriptor(wsdlLocation, new QName("http://org/apache/axis2/jaxws/samples/ping/", "PingService"));
}
public PingServicePortProxy(URL wsdlLocation, QName serviceName) {
_descriptor = new Descriptor(wsdlLocation, serviceName);
}
public Descriptor _getDescriptor() {
return _descriptor;
}
public void pingOperation(PingStringInput parameter) {
_getDescriptor().getProxy().pingOperation(parameter);
}
}