123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142 |
- /**
- * WSFaceFacadeSrvProxyServiceLocator.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.steerinfo.dil.wsdl;
- public class WSFaceFacadeSrvProxyServiceLocator extends org.apache.axis.client.Service implements com.steerinfo.dil.wsdl.WSFaceFacadeSrvProxyService {
- public WSFaceFacadeSrvProxyServiceLocator() {
- }
- public WSFaceFacadeSrvProxyServiceLocator(org.apache.axis.EngineConfiguration config) {
- super(config);
- }
- public WSFaceFacadeSrvProxyServiceLocator(String wsdlLoc, javax.xml.namespace.QName sName) throws javax.xml.rpc.ServiceException {
- super(wsdlLoc, sName);
- }
- // Use to get a proxy class for WSFaceFacade
- private String WSFaceFacade_address = "http://172.16.62.243:56898/ormrpc/services/WSFaceFacade";
- public String getWSFaceFacadeAddress() {
- return WSFaceFacade_address;
- }
- // The WSDD service name defaults to the port name.
- private String WSFaceFacadeWSDDServiceName = "WSFaceFacade";
- public String getWSFaceFacadeWSDDServiceName() {
- return WSFaceFacadeWSDDServiceName;
- }
- public void setWSFaceFacadeWSDDServiceName(String name) {
- WSFaceFacadeWSDDServiceName = name;
- }
- public com.steerinfo.dil.wsdl.WSFaceFacadeSrvProxy getWSFaceFacade() throws javax.xml.rpc.ServiceException {
- java.net.URL endpoint;
- try {
- endpoint = new java.net.URL(WSFaceFacade_address);
- }
- catch (java.net.MalformedURLException e) {
- throw new javax.xml.rpc.ServiceException(e);
- }
- return getWSFaceFacade(endpoint);
- }
- public com.steerinfo.dil.wsdl.WSFaceFacadeSrvProxy getWSFaceFacade(java.net.URL portAddress) throws javax.xml.rpc.ServiceException {
- try {
- com.steerinfo.dil.wsdl.WSFaceFacadeSoapBindingStub _stub = new com.steerinfo.dil.wsdl.WSFaceFacadeSoapBindingStub(portAddress, this);
- _stub.setPortName(getWSFaceFacadeWSDDServiceName());
- return _stub;
- }
- catch (org.apache.axis.AxisFault e) {
- return null;
- }
- }
- public void setWSFaceFacadeEndpointAddress(String address) {
- WSFaceFacade_address = address;
- }
- /**
- * 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(Class serviceEndpointInterface) throws javax.xml.rpc.ServiceException {
- try {
- if (com.steerinfo.dil.wsdl.WSFaceFacadeSrvProxy.class.isAssignableFrom(serviceEndpointInterface)) {
- com.steerinfo.dil.wsdl.WSFaceFacadeSoapBindingStub _stub = new com.steerinfo.dil.wsdl.WSFaceFacadeSoapBindingStub(new java.net.URL(WSFaceFacade_address), this);
- _stub.setPortName(getWSFaceFacadeWSDDServiceName());
- return _stub;
- }
- }
- catch (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);
- }
- String inputPortName = portName.getLocalPart();
- if ("WSFaceFacade".equals(inputPortName)) {
- return getWSFaceFacade();
- }
- 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://172.16.62.243:56898/ormrpc/services/WSFaceFacade", "WSFaceFacadeSrvProxyService");
- }
- 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://172.16.62.243:56898/ormrpc/services/WSFaceFacade", "WSFaceFacade"));
- }
- return ports.iterator();
- }
- /**
- * Set the endpoint address for the specified port name.
- */
- public void setEndpointAddress(String portName, String address) throws javax.xml.rpc.ServiceException {
-
- if ("WSFaceFacade".equals(portName)) {
- setWSFaceFacadeEndpointAddress(address);
- }
- else
- { // Unknown Port Name
- throw 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, String address) throws javax.xml.rpc.ServiceException {
- setEndpointAddress(portName.getLocalPart(), address);
- }
- }
|