KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > interop > wsifservice > InteropDocSvcLocator


1 /**
2  * InteropDocSvcLocator.java
3  *
4  * This file was auto-generated from WSDL
5  * by the Apache Axis WSDL2Java emitter.
6  */

7
8 package interop.wsifservice;
9
10 public class InteropDocSvcLocator extends org.apache.axis.client.Service implements interop.wsifservice.InteropDocSvc {
11
12     // Use to get a proxy class for interopDocPort
13
private final java.lang.String JavaDoc interopDocPort_address = "http://www.whitemesa.net/interopdoc";
14
15     public java.lang.String JavaDoc getinteropDocPortAddress() {
16         return interopDocPort_address;
17     }
18
19     // The WSDD service name defaults to the port name.
20
private java.lang.String JavaDoc interopDocPortWSDDServiceName = "interopDocPort";
21
22     public java.lang.String JavaDoc getinteropDocPortWSDDServiceName() {
23         return interopDocPortWSDDServiceName;
24     }
25
26     public void setinteropDocPortWSDDServiceName(java.lang.String JavaDoc name) {
27         interopDocPortWSDDServiceName = name;
28     }
29
30     public interop.wsifservice.Doc_TestPortType getinteropDocPort() throws javax.xml.rpc.ServiceException JavaDoc {
31        java.net.URL JavaDoc endpoint;
32         try {
33             endpoint = new java.net.URL JavaDoc(interopDocPort_address);
34         }
35         catch (java.net.MalformedURLException JavaDoc e) {
36             return null; // unlikely as URL was validated in WSDL2Java
37
}
38         return getinteropDocPort(endpoint);
39     }
40
41     public interop.wsifservice.Doc_TestPortType getinteropDocPort(java.net.URL JavaDoc portAddress) throws javax.xml.rpc.ServiceException JavaDoc {
42         try {
43             interop.wsifservice.Doc_Test_BindingStub _stub = new interop.wsifservice.Doc_Test_BindingStub(portAddress, this);
44             _stub.setPortName(getinteropDocPortWSDDServiceName());
45             return _stub;
46         }
47         catch (org.apache.axis.AxisFault e) {
48             return null;
49         }
50     }
51
52     /**
53      * For the given interface, get the stub implementation.
54      * If this service has no port for the given interface,
55      * then ServiceException is thrown.
56      */

57     public java.rmi.Remote JavaDoc getPort(Class JavaDoc serviceEndpointInterface) throws javax.xml.rpc.ServiceException JavaDoc {
58         try {
59             if (interop.wsifservice.Doc_TestPortType.class.isAssignableFrom(serviceEndpointInterface)) {
60                 interop.wsifservice.Doc_Test_BindingStub _stub = new interop.wsifservice.Doc_Test_BindingStub(new java.net.URL JavaDoc(interopDocPort_address), this);
61                 _stub.setPortName(getinteropDocPortWSDDServiceName());
62                 return _stub;
63             }
64         }
65         catch (java.lang.Throwable JavaDoc t) {
66             throw new javax.xml.rpc.ServiceException JavaDoc(t);
67         }
68         throw new javax.xml.rpc.ServiceException JavaDoc("There is no stub implementation for the interface: " + (serviceEndpointInterface == null ? "null" : serviceEndpointInterface.getName()));
69     }
70
71     /**
72      * For the given interface, get the stub implementation.
73      * If this service has no port for the given interface,
74      * then ServiceException is thrown.
75      */

76     public java.rmi.Remote JavaDoc getPort(javax.xml.namespace.QName JavaDoc portName, Class JavaDoc serviceEndpointInterface) throws javax.xml.rpc.ServiceException JavaDoc {
77         java.rmi.Remote JavaDoc _stub = getPort(serviceEndpointInterface);
78         ((org.apache.axis.client.Stub) _stub).setPortName(portName);
79         return _stub;
80     }
81
82     public javax.xml.namespace.QName JavaDoc getServiceName() {
83         return new javax.xml.namespace.QName JavaDoc("http://soapinterop.org/", "interopDocSvc");
84     }
85
86     private java.util.HashSet JavaDoc ports = null;
87
88     public java.util.Iterator JavaDoc getPorts() {
89         if (ports == null) {
90             ports = new java.util.HashSet JavaDoc();
91             ports.add(new javax.xml.namespace.QName JavaDoc("interopDocPort"));
92         }
93         return ports.iterator();
94     }
95
96 }
97
Popular Tags