vote up 1 vote down star

I am using TCP/IP socket example i.e. "echoclient", and I am facing problems with writing and reading.

I am connecting to server socket but it shows null data. I don't know whether it is data conversion problem or any other issue.

flag
7  
Could you post some code, perhaps we can see where you went wrong. – Andre Miller May 29 at 10:09
2  
Are you saying the attempt to connect fails? ..or that the data you send doesn't arrive? – Jon Cage May 29 at 10:15
jon is right, your server might not be sending anything. what level of sockets are you writing? Socket, AsyncSocket? – baash05 Jun 17 at 6:12

3 Answers

vote up 1 vote down

Download Wireshark and see if it helps debug. It can peek all network traffic.

link|flag
vote up 0 vote down

In case if you are connecting via mobile, check with your GPRS/EDGE/3G service provider if they are not restricting arbitrary IPs ?

Also in case if you're connecting from Simulator on PC, check if you have Proxies over your network before internet ?

link|flag
vote up 0 vote down

It is always a good idea to use well tested libraries and implementation. Socket programming is c++ requires good understanding of OS if you want to write potable code. Try Ace Wrappers - http://www.cs.wustl.edu/~schmidt/ACE.html It provide well tested pattern based C++ implementation for distributed network programming.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.