0

C ++メトロスタイルアプリを使用して、サイトからxmlファイルをダウンロードするためのhttp urlを接続する方法を知りたいです。

4

1 に答える 1

0

IXMLHTTPRequest2を使用できます。

// First create the interface objects required for this operation 
// as well as the callback that indicates request completion. 
// The dwStatus variable is also defined, and is later set with a 
// value indicating request completion.
DWORD dwStatus = 0;
ComPtr<IXMLHTTPRequest2> spXHR;
ComPtr<CXMLHttpRequest2Callback> spMyXhrCallback;
ComPtr<IXMLHTTPRequest2Callback> spXhrCallback;

// Create an object of the IID_IXMLHTTPRequest2 class.
CoCreateInstance(CLSID_FreeThreadedXMLHTTP60,
                 NULL,
                 CLSCTX_INPROC_SERVER,
                 IID_PPV_ARGS(&spXHR));

// Create and initialize IXMLHTTPRequest2Callback
MakeAndInitialize<CXMLHttpRequest2Callback>(&spMyXhrCallback);

spMyXhrCallback.As(&spXhrCallback);


// Prepare the GET request and send it to the server.
spXHR->Open(L"GET",       // Method.
   pcwszUrl,              // Url.
   spXhrCallback.Get(),   // Callback.
   NULL,                  // Username.
   NULL,                  // Password.
   NULL,                  // Proxy username.
   NULL);                 // Proxy password.

spXHR->Send(NULL, 0);


// Wait for the completion of the request.
spMyXhrCallback->WaitForComplete(&dwStatus);
于 2012-07-18T18:29:19.187 に答える