connect function error : connect() giving error 10061/10060

C

chakriv

Hello,
I am having problem only with ie8 on windows XP sp3 and no problem with windows 7.
Problem description:
My telephony application when presses F9 key it will connect to LDAP server. After connecting to it if we search for the name it will list results along with their numbers. If we click on the number call will get established.
But at this point I am facing issue after clicking on number I am getting error 10060/10061.
I am facing this error only with ie8 with windows XP SP3. No issue with ie8 with windows 7.
I have used connect function in the following way:

rc = connect (sock_comm, (
struct sockaddr *)&addr_sock,sizeof(addr_sock))
if(rc == SOCKET_ERROR)
{
Print(
"4059CLIENT - connect to the socket failed - error:%d!
\n"
,WSAGetLastError())
free(szQueryString)
return -1
}
Can any body help me on this why it is getting failed only on ie8 with SP3. It is working with ie7 with SP3.
Regards,
Chakri V.


Continue reading...
 
Back
Top Bottom