2 * JpredServiceLocator.java
4 * This file was auto-generated from WSDL
5 * by the Apache Axis 1.2RC2 Nov 16, 2004 (12:19:44 EST) WSDL2Java emitter.
10 public class JpredServiceLocator extends org.apache.axis.client.Service implements ext.vamsas.JpredService {
12 public JpredServiceLocator() {
16 public JpredServiceLocator(org.apache.axis.EngineConfiguration config) {
20 // Use to get a proxy class for jpred
21 private java.lang.String jpred_address = "http://www.compbio.dundee.ac.uk/JalviewWS/services/jpred";
23 public java.lang.String getjpredAddress() {
27 // The WSDD service name defaults to the port name.
28 private java.lang.String jpredWSDDServiceName = "jpred";
30 public java.lang.String getjpredWSDDServiceName() {
31 return jpredWSDDServiceName;
34 public void setjpredWSDDServiceName(java.lang.String name) {
35 jpredWSDDServiceName = name;
38 public ext.vamsas.Jpred getjpred() throws javax.xml.rpc.ServiceException {
39 java.net.URL endpoint;
41 endpoint = new java.net.URL(jpred_address);
43 catch (java.net.MalformedURLException e) {
44 throw new javax.xml.rpc.ServiceException(e);
46 return getjpred(endpoint);
49 public ext.vamsas.Jpred getjpred(java.net.URL portAddress) throws javax.xml.rpc.ServiceException {
51 ext.vamsas.JpredSoapBindingStub _stub = new ext.vamsas.JpredSoapBindingStub(portAddress, this);
52 _stub.setPortName(getjpredWSDDServiceName());
55 catch (org.apache.axis.AxisFault e) {
60 public void setjpredEndpointAddress(java.lang.String address) {
61 jpred_address = address;
65 * For the given interface, get the stub implementation.
66 * If this service has no port for the given interface,
67 * then ServiceException is thrown.
69 public java.rmi.Remote getPort(Class serviceEndpointInterface) throws javax.xml.rpc.ServiceException {
71 if (ext.vamsas.Jpred.class.isAssignableFrom(serviceEndpointInterface)) {
72 ext.vamsas.JpredSoapBindingStub _stub = new ext.vamsas.JpredSoapBindingStub(new java.net.URL(jpred_address), this);
73 _stub.setPortName(getjpredWSDDServiceName());
77 catch (java.lang.Throwable t) {
78 throw new javax.xml.rpc.ServiceException(t);
80 throw new javax.xml.rpc.ServiceException("There is no stub implementation for the interface: " + (serviceEndpointInterface == null ? "null" : serviceEndpointInterface.getName()));
84 * For the given interface, get the stub implementation.
85 * If this service has no port for the given interface,
86 * then ServiceException is thrown.
88 public java.rmi.Remote getPort(javax.xml.namespace.QName portName, Class serviceEndpointInterface) throws javax.xml.rpc.ServiceException {
89 if (portName == null) {
90 return getPort(serviceEndpointInterface);
92 java.lang.String inputPortName = portName.getLocalPart();
93 if ("jpred".equals(inputPortName)) {
97 java.rmi.Remote _stub = getPort(serviceEndpointInterface);
98 ((org.apache.axis.client.Stub) _stub).setPortName(portName);
103 public javax.xml.namespace.QName getServiceName() {
104 return new javax.xml.namespace.QName("vamsas", "jpredService");
107 private java.util.HashSet ports = null;
109 public java.util.Iterator getPorts() {
111 ports = new java.util.HashSet();
112 ports.add(new javax.xml.namespace.QName("vamsas", "jpred"));
114 return ports.iterator();
118 * Set the endpoint address for the specified port name.
120 public void setEndpointAddress(java.lang.String portName, java.lang.String address) throws javax.xml.rpc.ServiceException {
121 if ("jpred".equals(portName)) {
122 setjpredEndpointAddress(address);
124 else { // Unknown Port Name
125 throw new javax.xml.rpc.ServiceException(" Cannot set Endpoint Address for Unknown Port" + portName);
130 * Set the endpoint address for the specified port name.
132 public void setEndpointAddress(javax.xml.namespace.QName portName, java.lang.String address) throws javax.xml.rpc.ServiceException {
133 setEndpointAddress(portName.getLocalPart(), address);