package org.tempuri; public class CSSDServiceSoapProxy implements org.tempuri.CSSDServiceSoap { private String _endpoint = null; private org.tempuri.CSSDServiceSoap cSSDServiceSoap = null; public CSSDServiceSoapProxy() { _initCSSDServiceSoapProxy(); } public CSSDServiceSoapProxy(String endpoint) { _endpoint = endpoint; _initCSSDServiceSoapProxy(); } private void _initCSSDServiceSoapProxy() { try { cSSDServiceSoap = (new org.tempuri.CSSDServiceLocator()).getCSSDServiceSoap(); if (cSSDServiceSoap != null) { if (_endpoint != null) ((javax.xml.rpc.Stub)cSSDServiceSoap)._setProperty("javax.xml.rpc.service.endpoint.address", _endpoint); else _endpoint = (String)((javax.xml.rpc.Stub)cSSDServiceSoap)._getProperty("javax.xml.rpc.service.endpoint.address"); } } catch (javax.xml.rpc.ServiceException serviceException) {} } public String getEndpoint() { return _endpoint; } public void setEndpoint(String endpoint) { _endpoint = endpoint; if (cSSDServiceSoap != null) ((javax.xml.rpc.Stub)cSSDServiceSoap)._setProperty("javax.xml.rpc.service.endpoint.address", _endpoint); } public org.tempuri.CSSDServiceSoap getCSSDServiceSoap() { if (cSSDServiceSoap == null) _initCSSDServiceSoapProxy(); return cSSDServiceSoap; } public java.lang.String hello1(java.lang.String input) throws java.rmi.RemoteException{ if (cSSDServiceSoap == null) _initCSSDServiceSoapProxy(); return cSSDServiceSoap.hello1(input); } public java.lang.String insertINIT(java.lang.String data) throws java.rmi.RemoteException{ if (cSSDServiceSoap == null) _initCSSDServiceSoapProxy(); return cSSDServiceSoap.insertINIT(data); } public java.lang.String saveAdj(java.lang.String data) throws java.rmi.RemoteException{ if (cSSDServiceSoap == null) _initCSSDServiceSoapProxy(); return cSSDServiceSoap.saveAdj(data); } }