Hello,
I am using s60 3rd edition emulator. I am developing a small HTTP GET/POST application on it.
I am not able to get the data from any internet site. The intranet sites of the company are accessible. I am trying to connect to internet using my company's standard proxy.
Here is the Code:
---------------------------------------------------------------
RStringF prxAddr = iSession.StringPool().OpenFStringL(KProxy);
CleanupClosePushL(prxAddr);
THTTPHdrVal prxUsage(iSession.StringPool().StringF(HTTP::EUseProxy,RHTTPSession::GetTable()));
iSession.ConnectionInfo().SetPropertyL(iSession.StringPool().StringF(HTTP::EProxyUsage,RHTTPSession::GetTable()),
prxUsage);
iSession.ConnectionInfo().SetPropertyL(iSession.StringPool().StringF(HTTP::EProxyAddress,RHTTPSession::GetTable()),
prxAddr);
CleanupStack::PopAndDestroy(); // prxAddr
-------------------------------------------------------------------
I am getting error 407. That says : IAS server requires authorization to fulfil request. Access to the web proxy filter is denied.
Can anybody tell what should I do?
Thanks in adv..




