furuya
2006-10-13 12:34:02 UTC
My client pc have IExplore7 RC1.
example.
object: "zaimu/login.aspx?name=[japanese kana chars]&cd=000001"
m_hConnect = InternetConnect(
m_hSession,host,INTERNET_DEFAULT_HTTP_PORT,m_uid,m_pwd,INTERNET_SERVICE_HTTP,0,0);
m_hRequest = HttpOpenRequest(
m_hConnect,"GET",object,NULL,NULL,NULL,INTERNET_FLAG_KEEP_CONNECTION|INTERNET_FLAG_RELOAD,
0 );
HttpSendRequest( m_hRequest,"",0,NULL,0 );
I found that the japanese kana chars were garbled characters in server http
log file.
This problem do not happen in pc with IE6.
example.
object: "zaimu/login.aspx?name=[japanese kana chars]&cd=000001"
m_hConnect = InternetConnect(
m_hSession,host,INTERNET_DEFAULT_HTTP_PORT,m_uid,m_pwd,INTERNET_SERVICE_HTTP,0,0);
m_hRequest = HttpOpenRequest(
m_hConnect,"GET",object,NULL,NULL,NULL,INTERNET_FLAG_KEEP_CONNECTION|INTERNET_FLAG_RELOAD,
0 );
HttpSendRequest( m_hRequest,"",0,NULL,0 );
I found that the japanese kana chars were garbled characters in server http
log file.
This problem do not happen in pc with IE6.