00001 /************************************************************************ 00002 * EPP RTK C++ 00003 * Copyright (C) 2001 Global Name Registry 00004 * 00005 * This library is free software; you can redistribute it and/or modify it 00006 * under the terms of the GNU Lesser General Public License as published 00007 * by the Free Software Foundation; either version 2.1 of the License, or 00008 * (at your option) any later version. 00009 * 00010 * This library is distributed in the hope that it will be useful, but 00011 * WITHOUT ANY WARRANTY; without even the implied warranty of 00012 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00013 * Lesser General Public License for more details. 00014 * 00015 * You should have received a copy of the GNU Lesser General Public 00016 * License along with this library; if not, write to the Free Software 00017 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 00018 * 00019 * Contact information: epprtk@gnr.com 00020 * 00021 * EPP RTK 00022 * GNR Ltd. 00023 * 125 High Holborn 00024 * London WC1V 6QA 00025 * United Kingdom 00026 ************************************************************************/ 00027 00028 #ifndef __EPP_TRANSPORTCONN_H 00029 #define __EPP_TRANSPORTCONN_H 00030 00031 #include <string> 00032 #include "epp_TransportBase.h" 00033 00034 namespace epptransport { 00035 00036 class epp_TransportConn : public epp_TransportBase { 00037 protected: 00038 string m_serverName; 00039 unsigned long m_serverPort; 00040 00041 public: 00042 00043 epp_TransportConn() 00044 { 00045 m_serverName = "127.0.0.1"; 00046 m_serverPort = 3121; 00047 }; 00048 00049 virtual ~epp_TransportConn() {}; 00050 00051 virtual void writeToServer(const string & xml_string) = 0; 00052 virtual string readFromServer() = 0; 00053 00054 virtual void connect(const string & serverName, const unsigned long & serverPort) = 0; 00055 virtual void connect() = 0; 00056 virtual void disconnect() = 0; 00057 00058 // Deprecated, use getServerName instead 00059 virtual string getServerIP() 00060 { 00061 return m_serverName; 00062 }; 00063 00064 // Deprecated, use setServerName instead 00065 virtual void setServerIP(const string & serverIP) 00066 { 00067 m_serverName = serverIP; 00068 } 00069 00070 virtual unsigned long getServerPort() 00071 { 00072 return m_serverPort; 00073 }; 00074 00075 virtual void setServerPort(const unsigned long & serverPort) 00076 { 00077 m_serverPort = serverPort; 00078 } 00079 00080 virtual string getServerName() 00081 { 00082 return m_serverName; 00083 }; 00084 00085 virtual void setServerName(const string & serverName) 00086 { 00087 m_serverName = serverName; 00088 } 00089 00090 }; 00091 }; 00092 00093 #endif