00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00018
00019 #if !defined(TESTSOAPCLIENT_H)
00020 #define TESTSOAPCLIENT_H
00021
00022 #ifndef _STRING_
00023 #include <string>
00024 #endif // _STRING_
00025
00026 #ifndef _MEMORY_
00027 #include <memory>
00028 #endif // _MEMORY_
00029
00030 class TestSOAPClient
00031 {
00032 public:
00033 TestSOAPClient();
00034 virtual ~TestSOAPClient();
00035
00036
00037
00038
00039
00040
00041 std::string Generic( std::string rpc );
00042
00043 void setEndPoint( const std::string& szEndPoint, long nPort );
00044
00045 private:
00046 struct SOAPMethodTable;
00047 std::auto_ptr<SOAPMethodTable> m_pMethodTable;
00048 };
00049
00050 #endif // !defined(TESTSOAPCLIENT_H)