33 lines
498 B
C
33 lines
498 B
C
|
#pragma once
|
|||
|
#include <afxinet.h>
|
|||
|
#include <vector>
|
|||
|
using namespace std;
|
|||
|
|
|||
|
|
|||
|
class CHttpClient
|
|||
|
{
|
|||
|
public:
|
|||
|
CHttpClient();
|
|||
|
~CHttpClient(void);
|
|||
|
|
|||
|
|
|||
|
|
|||
|
//<2F>ص<EFBFBD>WMS
|
|||
|
CString WmsCallBack(CString strSender, CString strMsgType, CString strParam);
|
|||
|
CString FastCallBack(CString strUrl, CString strParam);
|
|||
|
CString AbnormalCallBack(CString strType, CString strParam);
|
|||
|
|
|||
|
CString GenericPost(CString strParam);
|
|||
|
|
|||
|
|
|||
|
|
|||
|
public:
|
|||
|
CString m_strIp;
|
|||
|
CString m_strUrl;
|
|||
|
int m_nPort;
|
|||
|
CInternetSession session;
|
|||
|
|
|||
|
|
|||
|
};
|
|||
|
|