Rev 20640 | Blame | Compare with Previous | Last modification | View Log | RSS feed
/*** WayBillGenerationLocator.java** This file was auto-generated from WSDL* by the Apache Axis 1.4 Apr 22, 2006 (06:55:48 PDT) WSDL2Java emitter.*/package com.bluedart.stub;public class WayBillGenerationLocator extends org.apache.axis.client.Service implements com.bluedart.stub.WayBillGeneration {public WayBillGenerationLocator() {}public WayBillGenerationLocator(org.apache.axis.EngineConfiguration config) {super(config);}public WayBillGenerationLocator(java.lang.String wsdlLoc, javax.xml.namespace.QName sName) throws javax.xml.rpc.ServiceException {super(wsdlLoc, sName);}// Use to get a proxy class for WSHttpBinding_IWayBillGenerationprivate java.lang.String WSHttpBinding_IWayBillGeneration_address = "http://netconnect.bluedart.com/Ver1.7/ShippingAPI/WayBill/WayBillGeneration.svc";public java.lang.String getWSHttpBinding_IWayBillGenerationAddress() {return WSHttpBinding_IWayBillGeneration_address;}// The WSDD service name defaults to the port name.private java.lang.String WSHttpBinding_IWayBillGenerationWSDDServiceName = "WSHttpBinding_IWayBillGeneration";public java.lang.String getWSHttpBinding_IWayBillGenerationWSDDServiceName() {return WSHttpBinding_IWayBillGenerationWSDDServiceName;}public void setWSHttpBinding_IWayBillGenerationWSDDServiceName(java.lang.String name) {WSHttpBinding_IWayBillGenerationWSDDServiceName = name;}public com.bluedart.stub.IWayBillGeneration getWSHttpBinding_IWayBillGeneration() throws javax.xml.rpc.ServiceException {java.net.URL endpoint;try {endpoint = new java.net.URL(WSHttpBinding_IWayBillGeneration_address);}catch (java.net.MalformedURLException e) {throw new javax.xml.rpc.ServiceException(e);}return getWSHttpBinding_IWayBillGeneration(endpoint);}public com.bluedart.stub.IWayBillGeneration getWSHttpBinding_IWayBillGeneration(java.net.URL portAddress) throws javax.xml.rpc.ServiceException {try {com.bluedart.stub.WSHttpBinding_IWayBillGenerationStub _stub = new com.bluedart.stub.WSHttpBinding_IWayBillGenerationStub(portAddress, this);_stub.setPortName(getWSHttpBinding_IWayBillGenerationWSDDServiceName());return _stub;}catch (org.apache.axis.AxisFault e) {return null;}}public void setWSHttpBinding_IWayBillGenerationEndpointAddress(java.lang.String address) {WSHttpBinding_IWayBillGeneration_address = address;}// Use to get a proxy class for BasicHttpBinding_IWayBillGenerationprivate java.lang.String BasicHttpBinding_IWayBillGeneration_address = "http://netconnect.bluedart.com/Ver1.7/ShippingAPI/WayBill/WayBillGeneration.svc/Basic";public java.lang.String getBasicHttpBinding_IWayBillGenerationAddress() {return BasicHttpBinding_IWayBillGeneration_address;}// The WSDD service name defaults to the port name.private java.lang.String BasicHttpBinding_IWayBillGenerationWSDDServiceName = "BasicHttpBinding_IWayBillGeneration";public java.lang.String getBasicHttpBinding_IWayBillGenerationWSDDServiceName() {return BasicHttpBinding_IWayBillGenerationWSDDServiceName;}public void setBasicHttpBinding_IWayBillGenerationWSDDServiceName(java.lang.String name) {BasicHttpBinding_IWayBillGenerationWSDDServiceName = name;}public com.bluedart.stub.IWayBillGeneration getBasicHttpBinding_IWayBillGeneration() throws javax.xml.rpc.ServiceException {java.net.URL endpoint;try {endpoint = new java.net.URL(BasicHttpBinding_IWayBillGeneration_address);}catch (java.net.MalformedURLException e) {throw new javax.xml.rpc.ServiceException(e);}return getBasicHttpBinding_IWayBillGeneration(endpoint);}public com.bluedart.stub.IWayBillGeneration getBasicHttpBinding_IWayBillGeneration(java.net.URL portAddress) throws javax.xml.rpc.ServiceException {try {com.bluedart.stub.BasicHttpBinding_IWayBillGenerationStub _stub = new com.bluedart.stub.BasicHttpBinding_IWayBillGenerationStub(portAddress, this);_stub.setPortName(getBasicHttpBinding_IWayBillGenerationWSDDServiceName());return _stub;}catch (org.apache.axis.AxisFault e) {return null;}}public void setBasicHttpBinding_IWayBillGenerationEndpointAddress(java.lang.String address) {BasicHttpBinding_IWayBillGeneration_address = address;}/*** For the given interface, get the stub implementation.* If this service has no port for the given interface,* then ServiceException is thrown.* This service has multiple ports for a given interface;* the proxy implementation returned may be indeterminate.*/public java.rmi.Remote getPort(Class serviceEndpointInterface) throws javax.xml.rpc.ServiceException {try {if (com.bluedart.stub.IWayBillGeneration.class.isAssignableFrom(serviceEndpointInterface)) {com.bluedart.stub.WSHttpBinding_IWayBillGenerationStub _stub = new com.bluedart.stub.WSHttpBinding_IWayBillGenerationStub(new java.net.URL(WSHttpBinding_IWayBillGeneration_address), this);_stub.setPortName(getWSHttpBinding_IWayBillGenerationWSDDServiceName());return _stub;}if (com.bluedart.stub.IWayBillGeneration.class.isAssignableFrom(serviceEndpointInterface)) {com.bluedart.stub.BasicHttpBinding_IWayBillGenerationStub _stub = new com.bluedart.stub.BasicHttpBinding_IWayBillGenerationStub(new java.net.URL(BasicHttpBinding_IWayBillGeneration_address), this);_stub.setPortName(getBasicHttpBinding_IWayBillGenerationWSDDServiceName());return _stub;}}catch (java.lang.Throwable t) {throw new javax.xml.rpc.ServiceException(t);}throw new javax.xml.rpc.ServiceException("There is no stub implementation for the interface: " + (serviceEndpointInterface == null ? "null" : serviceEndpointInterface.getName()));}/*** For the given interface, get the stub implementation.* If this service has no port for the given interface,* then ServiceException is thrown.*/public java.rmi.Remote getPort(javax.xml.namespace.QName portName, Class serviceEndpointInterface) throws javax.xml.rpc.ServiceException {if (portName == null) {return getPort(serviceEndpointInterface);}java.lang.String inputPortName = portName.getLocalPart();if ("WSHttpBinding_IWayBillGeneration".equals(inputPortName)) {return getWSHttpBinding_IWayBillGeneration();}else if ("BasicHttpBinding_IWayBillGeneration".equals(inputPortName)) {return getBasicHttpBinding_IWayBillGeneration();}else {java.rmi.Remote _stub = getPort(serviceEndpointInterface);((org.apache.axis.client.Stub) _stub).setPortName(portName);return _stub;}}public javax.xml.namespace.QName getServiceName() {return new javax.xml.namespace.QName("http://tempuri.org/", "WayBillGeneration");}private java.util.HashSet ports = null;public java.util.Iterator getPorts() {if (ports == null) {ports = new java.util.HashSet();ports.add(new javax.xml.namespace.QName("http://tempuri.org/", "WSHttpBinding_IWayBillGeneration"));ports.add(new javax.xml.namespace.QName("http://tempuri.org/", "BasicHttpBinding_IWayBillGeneration"));}return ports.iterator();}/*** Set the endpoint address for the specified port name.*/public void setEndpointAddress(java.lang.String portName, java.lang.String address) throws javax.xml.rpc.ServiceException {if ("WSHttpBinding_IWayBillGeneration".equals(portName)) {setWSHttpBinding_IWayBillGenerationEndpointAddress(address);}elseif ("BasicHttpBinding_IWayBillGeneration".equals(portName)) {setBasicHttpBinding_IWayBillGenerationEndpointAddress(address);}else{ // Unknown Port Namethrow new javax.xml.rpc.ServiceException(" Cannot set Endpoint Address for Unknown Port" + portName);}}/*** Set the endpoint address for the specified port name.*/public void setEndpointAddress(javax.xml.namespace.QName portName, java.lang.String address) throws javax.xml.rpc.ServiceException {setEndpointAddress(portName.getLocalPart(), address);}}