i am getting KERN-EXEC 0 on the emulator,when using RWSPCOConn for WAP connection.
i have given my code below.Anyone pls help out to solve this issue.
regards,
Parthi
RWSPCOConn iWapConn;
RWAPServ iWapServ;
RWSPCOTrans trans;
TInt ret;
TBuf8<1024> data;
RWSPCOConn::TEvent event;
iWapConn.Open(iWapServ, _L8("203.177.42.214"), 9201, 0, EIP, EFalse);
CCapCodec* codec = CCapCodec::NewL();
codec->SetServerSDUSize(150000);
codec->SetClientSDUSize(150000);
if(iWapConn.Connect(_L8(""), codec) == KErrNone)
{
if(iWapConn.CreateTransaction(RWAPConn::EGet, _L("http://www.yahoo.com/index.html"), _L8(""), _L8(""), trans) == KErrNone)
{
do
{
ret = trans.GetData(data, RWSPCOTrans::EResultBody);
// returns access denied here!
}
while(ret == RWAPConn::EMoreData);
trans.Release();
}




