Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
3answers
2k views

Ruby TCPServer sockets

Maybe I've gotten my sockets programming way mixed up, but shouldn't something like this work? srv = TCPServer.open(3333) client = srv.accept data = "" while (tmp = client.recv(10)) data += tmp ...
2
votes
1answer
147 views

How to make sure a TCP socket connects at creation time

I have a client application that sends TCP packets. Currently, my application does this: creates a socket, binds and sends the packets. struct sockaddr_in localaddress; localaddress.sin_port = ...
2
votes
1answer
183 views

stream closed (IOError) when closing Ruby TCPSocket client

I've got a Ruby TCPSocket client that works great except when I'm trying to close it. When I call the disconnect method in my code below, I get this error: ./smartlinc.rb:70:in `start_listen': stream ...
2
votes
3answers
449 views

How do I convert a 24-bit integer into a 3-byte array?

Hey Im totally out of my depth and my brain is starting to hurt.. :( I need to covert an integer so that it will fit in a 3 byte array.(is that a 24bit int?) and then back again to send/receive this ...
2
votes
3answers
1k views

Sending an xml message in parts through a TCP socket using Qt

We are writing a project where there is a client who generates xml requests, sends them to a server, who parses the request and returns the requested information in an xml string. The application ...
1
vote
2answers
61 views

Java Socket programming

I have two questions in java socket programming. this will be stand alone application and will be built only in J2SE. 1) Is it possible to read/write simultaneously via same port in my case since it ...
1
vote
2answers
59 views

Socket communication on a LAN environment

I have the following setup: The server will connect via Bluetooth to several devices that are sending a discrete signal. Then there will be n clients that can inquiry the server (via web services ...
1
vote
2answers
410 views

unable to send binary data over unix tcp socket

I'm trying to implement ftp commands GET and PUT thru a UNIX socket for file transfer using usual functions like fread(), fwrite(), send() and recv(). It works fine for text files, but fails for ...
1
vote
4answers
466 views

tcp client in vb.net not receiving the entire data response data from server

I have a small program which is a tcp client. I send a string from this client to a device over ethernet (it acts as the tcp server). As soon as the device recieves the input string it will respond ...
1
vote
4answers
325 views

socket programming in C#

i'am trying to do Socket programming in C# and now i need to understand that do we need array of sockets in Server-side in order to handle multiple clients or one socket in server-side is sufficient ...
1
vote
1answer
430 views

Ruby TCPSocket: Find out how much data is available

Is there a way to find out how many bytes of data is available on an TCPSocket in Ruby? I.e. how many bytes can be ready without blocking?
0
votes
0answers
33 views

Close a CFSocket socket (TCP) iphone application

I have a CFSocket socketTCP into my iPhone application. when i send in the background mode my application, I close the socket this way: -(void)CloseSocket { if ( cfSocket != nil ){ ...
0
votes
2answers
67 views

Ruby TCPSocket / HTTP request

I just started with TCPSockets. I am simply trying to get the google home page. This is my code: require 'socket' host = 'http://www.google.com' port = 80 s = TCPSocket.open host, port s.puts "GET ...
0
votes
2answers
96 views

tcp socket server to test html5websocket

Which is best tcp socket server to testing html5websocket? I developing a html5socket based client that will interact with tcp. So I want first a testing server. I am good in PHP but not in sockets ...
0
votes
0answers
78 views

QTcpSocket stays in ConnectingState in client side while server does receive pending connection

I'm writing a client-server application in which the client initiates a tcp conenction to the server. The thing is that the server receives the connection and I'm receiving a valid socket in ...
0
votes
1answer
33 views

iphone TCPSocket header files?

#import <sys/socket.h> #import <netinet/in.h> #import <arpa/inet.h> I have import the headers above,but setsockopt(CFSocketGetNative(TCPSocket), SOL_SOCKET, SO_REUSEADDR, (void ...
0
votes
0answers
104 views

Simple TCPSocket server in Ruby -> HTTP header issue

I'm benchmarking some simple HTTP server implementations in Ruby (no threads, threaded, fibers and eventmachine) but this simple piece of code fails using threads: #!/usr/bin/env ruby require ...
0
votes
0answers
41 views

How to robustly handle spotty connectivity over TCP sockets?

I'm building a client that talks to a remote server via a TCP socket. Occasionally, the client will pass a message to the server, or the server will pass a message to the client. This will run on ...
0
votes
2answers
208 views

SocketException Connection Reset

I created a server which accept TCP connection . After connected to socket it looping for reading data from input stream. Steps: I started my server. Start Client. Now I am closing client. Then ...
0
votes
1answer
148 views

getting the content from an html form POST using TCPSocket

using the 'gets' method repeatedly on a TCPSocket object, I receive the following output POST /targetPage.html HTTP/1.1 Host: 127.0.0.1:7125 ... ... ... Keep-Alive: 115 DNT: 1 Connection: keep-alive ...
0
votes
0answers
185 views

C# Socket Timeout Problem

I have a problem in Socket's using C#. I am connecting to the Server using Connect method and then I am polling every minute for data. But poll method returns true after 2 minutes even though I am ...
0
votes
4answers
295 views

Mangled Hex message via socket

I am trying to pass a hex message from a C server to a Java client. The communication works. But the hex value that I get on Java client seems to be appended with "ff". Why is this happening? At the ...
0
votes
2answers
374 views

Networking without blocking ui in Qt 4.7

I have a server to which multiple clients can connect to. The client is GUI while the server is command line. The client has several functions (such as connect and login) which, when sent to the ...
0
votes
1answer
213 views

ruby socket programming using credentials

HI folks, I'm trying to establish connection to a remote server using ruby socket connection TcpSocket. I started with TcpSocket.new(port,host) Now, How do I pass the credentials to it. The remote ...
0
votes
2answers
473 views

Send more than 32768 Bytes at once from one TCP-Socket to an other

Hey guys, I don't know if this question has been asked yet but imagine following situation: I have two TCP-Sockets (opened with NSSocketPort und listening with two NSFileHandle) and now I want to ...
0
votes
1answer
1k views

Ruby TCPSocket recv blocking and never returning

So, I have the following code: def LSCPHandler.send_message(message, hostname, port) s = TCPSocket.open(hostname, port) s.print message ret = s.recv(1024) s.close LSCPHandler.parse_error(ret) ...
0
votes
1answer
241 views

ruby socket question

i'm still kind of newbie to ruby, but i became used on using ruby sockets, cause i used the 'Socket' class many times, and so i having full control to my sockets and their options. the thing is i'm ...
0
votes
1answer
379 views

Ruby TCPSocket keeps losing connection

I have a client and server. I start up the server, and run the client, and the first time it works fine. The second time I run the client(without restarting the server), the client appears to hang. ...