1
vote
5answers
32 views
No Matching Function for Call to…
In my object ' handler '
I have the following code:
Product tempProduct; // temporary Product storage variable
LINE481 tempProduct.setHandler(this);
Within my Product.h:
#in …
0
votes
5answers
65 views
read() function in socket programming in c
I use this code for reading from socket :
int n ;
char buffer[256];
n = read(newsockfd, buffer, 255);
if (n < 0)
{
error("ERROR reading from socket");
}
i …
1
vote
3answers
61 views
Question on C++ Timers
I am currently working on a project that will act like a Online selling website such as Amazon, or Ebay in a very small scale. I was wondering if anyone could point me in the right …
0
votes
4answers
138 views
Error with parsing string and trying to find ‘\0’ character
I'm trying to get one side to send an error message to client, but client isn't able to parse it correctly.
My error is >>>>> in my parseString function, it lets index = 0 and the …
0
votes
0answers
14 views
Castor and sockets
I'm new to Castor and data binding in general. I'm working on an application that, in part, needs to take data off of a socket and unmarshall the data to make POJOs. Now, I've got …
1
vote
2answers
56 views
Question about send / recv
New to socket programming. Got a couple questions:
My program is really inconsistent with its output. Sometimes my client receives, sometimes it doesnt. I am also using the same i …
3
votes
1answer
73 views
Separate threads for socket input and output
I got assigned to work on some performance and random crashing issues of a multi-threaded java server. Even though threads and thread-safety are not really new topics for me, I fou …
4
votes
3answers
118 views
Non-blocking I/O versus using threads (How bad is context switching?)
We use sockets a lot in a program that I work on and we handle connections from up to about 100 machines simultaneously at times. We have a combination of non-blocking I/O in use …
0
votes
1answer
60 views
Trouble with Send and Recv
So I'm new to socket programming. For the past day, I have been trying to figure out a problem with my "Unregister".
So far, I can register a user. But when I unregister only one …
0
votes
2answers
69 views
Java SocketChannel Eating my bytes
Hi,
I created a SocketChannel to a remote server to send and receive messages on Tomcat. To receive messages from a remote computer, I used a thread dedicated to task (only this t …
0
votes
3answers
28 views
How can I talk to FTP server by implementing commands over SocketConnection
I am building an app which sends/recv large data to/from my remote FTP server. I want to implement FTP commands over SocketConnection. I have to first open the connection and then …
0
votes
10answers
221 views
Which programming language is more suitable for socket programming?
I will have a cloud computing class this semester, and one of the requirements about the course to know about socket programming.
First thing that I came up in my mind for this qu …
0
votes
2answers
64 views
Send file (image) through socket perl
Hi,
I am aware on how to send files through a socket in perl (server, client)... but I was wondering if anyone could explain or give me a reference on how to send image files thro …
3
votes
2answers
273 views
Successive calls to recvfrom() loses data?
I am working on a reliable file transfer program that uses UDP. (for a course in computer networking.)
My question is this - well, consider this scenario:
Sender has (for exampl …
0
votes
1answer
32 views
Flash socket server only works on local machine
Hi,
I have created a basic flash socket server in PHP, it all works fine on my local machine (both in the browser and in the flash sandbox) but as soon as I get another machine to …
