FileDocCategorySizeDatePackage
SiteSearchServiceLocator.javaAPI DocExample4114Tue Feb 24 00:10:08 GMT 2004com.develop.ss.axis

SiteSearchServiceLocator

public class SiteSearchServiceLocator extends org.apache.axis.client.Service implements com.develop.ss.axis.SiteSearchService
SiteSearchServiceLocator.java This file was auto-generated from WSDL by the Apache Axis WSDL2Java emitter.

Fields Summary
private final String
SiteSearchSoap_address
private String
SiteSearchSoapWSDDServiceName
private HashSet
ports
Constructors Summary
Methods Summary
public java.rmi.RemotegetPort(java.lang.Class serviceEndpointInterface)
For the given interface, get the stub implementation. If this service has no port for the given interface, then ServiceException is thrown.

        try {
            if (com.develop.ss.axis.SiteSearch.class.isAssignableFrom(serviceEndpointInterface)) {
                com.develop.ss.axis.SiteSearchSoapHttpStub _stub = new com.develop.ss.axis.SiteSearchSoapHttpStub(new java.net.URL(SiteSearchSoap_address), this);
                _stub.setPortName(getSiteSearchSoapWSDDServiceName());
                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()));
    
public java.rmi.RemotegetPort(javax.xml.namespace.QName portName, java.lang.Class serviceEndpointInterface)
For the given interface, get the stub implementation. If this service has no port for the given interface, then ServiceException is thrown.

        if (portName == null) {
            return getPort(serviceEndpointInterface);
        }
        String inputPortName = portName.getLocalPart();
        if ("SiteSearchSoap".equals(inputPortName)) {
            return getSiteSearchSoap();
        }
        else  {
            java.rmi.Remote _stub = getPort(serviceEndpointInterface);
            ((org.apache.axis.client.Stub) _stub).setPortName(portName);
            return _stub;
        }
    
public java.util.IteratorgetPorts()


       
        if (ports == null) {
            ports = new java.util.HashSet();
            ports.add(new javax.xml.namespace.QName("SiteSearchSoap"));
        }
        return ports.iterator();
    
public javax.xml.namespace.QNamegetServiceName()

        return new javax.xml.namespace.QName("http://www.halloway.net/SiteSearch", "SiteSearchService");
    
public com.develop.ss.axis.SiteSearchgetSiteSearchSoap()

       java.net.URL endpoint;
        try {
            endpoint = new java.net.URL(SiteSearchSoap_address);
        }
        catch (java.net.MalformedURLException e) {
            throw new javax.xml.rpc.ServiceException(e);
        }
        return getSiteSearchSoap(endpoint);
    
public com.develop.ss.axis.SiteSearchgetSiteSearchSoap(java.net.URL portAddress)

        try {
            com.develop.ss.axis.SiteSearchSoapHttpStub _stub = new com.develop.ss.axis.SiteSearchSoapHttpStub(portAddress, this);
            _stub.setPortName(getSiteSearchSoapWSDDServiceName());
            return _stub;
        }
        catch (org.apache.axis.AxisFault e) {
            return null;
        }
    
public java.lang.StringgetSiteSearchSoapAddress()


       
        return SiteSearchSoap_address;
    
public java.lang.StringgetSiteSearchSoapWSDDServiceName()


       
        return SiteSearchSoapWSDDServiceName;
    
public voidsetSiteSearchSoapWSDDServiceName(java.lang.String name)

        SiteSearchSoapWSDDServiceName = name;