Listing 9

hSession = InternetConnect(hNet,  _T("renderv3.staging.mappoint.net"),
     INTERNET_DEFAULT_HTTP_PORT, _T("<username>"), _T("<password>"),
     INTERNET_SERVICE_HTTP, 0, 0);
if (hSession)
{
    GetMap(hSession, szLat, szLon);                     
    InternetCloseHandle(hSession);
}