在VC中WININET如何使用HTTP的POST方法

 SUMMARY
To properly simulate a Form submission using WinInet, you need to send a header that indicates the proper Content-Type. For Forms, the proper Content-Type header is: Content-Type: application/x-www-form-urlencoded
                 
MORE INFORMATION
     In many cases, the server does not respond appropriately if a Content-Type is not specified. For example, the Active Server Pages component of IIS 3.0 actually checks this header specifically for 'application/x-www-form- urlencoded' before adding form variables to the "Request.Form" object. This MIME/Content-Type indicates that the data of the request is a list of URL- encoded form variables. URL-encoding means that space character (ASCII 32) is encoded as ' ', special character such '!' encoded in hexadecemal form as '!'.

Here is a snippet of code that uses the MFC WinInet classes to simulate a Form POST request:

 

 

Without MFC, the same code translates to straight SDK calls as follows:

 

 

// close any valid internet-handles

我这里有一段程序,用来在一个对话框里显示出一次http     request的原始信息,不过使用Inet     API做的,希望能有帮助。  

 

 

 

 

==========================================

使用MFC示例如下:   
    首先设置m_strRequest请求字符串       eg."name=aaa&pass=bbb";               
                    m_strServerName     服务器名称或者IP       eg."www.yahoo.com"   
                    m_strObjectName     请求文件位置     eg.     "pub/aaa.asp"   
        请求的结果存放在m_strHtml中   

 

1、获得WebBrowser     Control的DWebBrowserEvents2::DocumentComplete事件   
    2、在DWebBrowserEvents2::DocumentComplete事件中根据IWebBrowser2::Document获得IHTMLDocument2   
    3、IHTMLDocument2::forms得到IHTMLElementCollection   
    4、在IHTMLElementCollection中根据name、tagName、ID得到指定的IHTMLElement   
    5、从IHTMLElement得到IHTMLFormElement   
    6、执行IHTMLFormElement::submit

  • 0
    点赞
  • 5
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
VC实现通过HTTPPOST方式上传文件,可以使用WinINet提供的API函数。下面是一个简单的示例代码: ```c++ #include <windows.h> #include <wininet.h> BOOL HttpPostFile(LPCTSTR lpszServer, LPCTSTR lpszObjectName, LPCTSTR lpszFilePath) { BOOL bResult = FALSE; HINTERNET hInternet = NULL; HINTERNET hConnect = NULL; HINTERNET hRequest = NULL; DWORD dwFileSize = 0; DWORD dwBytesRead = 0; DWORD dwBytesWritten = 0; BYTE* pBuffer = NULL; HANDLE hFile = INVALID_HANDLE_VALUE; // 打开本地文件 hFile = CreateFile(lpszFilePath, GENERIC_READ, FILE_SHARE_READ, NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL); if (hFile == INVALID_HANDLE_VALUE) { goto Exit; } // 获取本地文件大小 dwFileSize = GetFileSize(hFile, NULL); if (dwFileSize == INVALID_FILE_SIZE) { goto Exit; } // 分配缓冲区 pBuffer = new BYTE[dwFileSize]; if (pBuffer == NULL) { goto Exit; } // 读取本地文件到缓冲区 if (!ReadFile(hFile, pBuffer, dwFileSize, &dwBytesRead, NULL)) { goto Exit; } // 打开网络会话 hInternet = InternetOpen(TEXT("MyApp"), INTERNET_OPEN_TYPE_PRECONFIG, NULL, NULL, 0); if (hInternet == NULL) { goto Exit; } // 建立连接 hConnect = InternetConnect(hInternet, lpszServer, INTERNET_DEFAULT_HTTP_PORT, NULL, NULL, INTERNET_SERVICE_HTTP, 0, 0); if (hConnect == NULL) { goto Exit; } // 创建请求 hRequest = HttpOpenRequest(hConnect, TEXT("POST"), lpszObjectName, NULL, NULL, NULL, 0, 0); if (hRequest == NULL) { goto Exit; } // 发送请求头 if (!HttpSendRequest(hRequest, NULL, 0, NULL, 0)) { goto Exit; } // 发送请求体(即上传文件内容) if (!InternetWriteFile(hRequest, pBuffer, dwFileSize, &dwBytesWritten)) { goto Exit; } bResult = TRUE; Exit: if (hFile != INVALID_HANDLE_VALUE) { CloseHandle(hFile); } if (pBuffer != NULL) { delete[] pBuffer; } if (hRequest != NULL) { InternetCloseHandle(hRequest); } if (hConnect != NULL) { InternetCloseHandle(hConnect); } if (hInternet != NULL) { InternetCloseHandle(hInternet); } return bResult; } ``` 使用该函数上传文件的代码如下: ```c++ if (!HttpPostFile(TEXT("www.example.com"), TEXT("/upload"), TEXT("C:\\test.txt"))) { MessageBox(NULL, TEXT("上传文件失败!"), TEXT("Error"), MB_OK | MB_ICONERROR); } else { MessageBox(NULL, TEXT("上传文件成功!"), TEXT("Success"), MB_OK | MB_ICONINFORMATION); } ``` 其,第一个参数是服务器的域名或IP地址,第二个参数是上传文件的目标地址,第三个参数是本地文件的路径。
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值