Tagged Questions
0
votes
1answer
17 views
Socket using BufferedOutputStream/BufferedInputStream receives bogus data random
I have a client/server application that sends/receives data using BufferedOutputStream / BufferedInputStream . The protocol of communication is the following:
Send part :
first byte is the action ...
0
votes
1answer
31 views
play audio byte stream coming from android device using NAudio
For the test purpose I have implemented the c# code just to play a single segment of a buffer (by doing it in a while loop I can read the whole data coming from socket and play)
I used this three ...
0
votes
2answers
31 views
Android proxy using sockets
I'm trying to create a proxy in Android and I have to use sockets . I've read many tutorials and came up with following code. Unfortunately browser doesn't seem to get any data and after some time it ...
0
votes
2answers
55 views
android socket jelly bean
i want to ask some question for android socket. I create a sample app to send data to wifly module. But when i receive data from module i get socket timeout exception. Without setSoTimeout app freeze ...
0
votes
1answer
58 views
Stuttering Playback when playing a stream received via UDP socket
i want to send an audio stream from PC (C++ application, using FMOD-API to decode audio data and send via UDP Socket) to an android device. The communication already works and i can hear "sound" ...
0
votes
0answers
39 views
Reading Partial Messages in NetworkStream Async Read Callback
We have a C# application that is communicating with a device over TCP/IP using a relatively simple protocol consisting of a series of messages, which have a fixed-size header and a variable length ...
1
vote
1answer
42 views
How can I detect when a stream client is no longer available in PHP (eg network cable pulled out)
Is there any way (other than checking for ping responses) to detect when a client stream (I don't know if a stream would be any different from sockets) becomes unavailable (ie there is no longer any ...
1
vote
2answers
62 views
readline() doesn't read from socket
s = new Socket(InetAddress.getByName(address), port);
Thread.sleep(250);
DataOutputStream outToServer = new DataOutputStream(s.getOutputStream());
BufferedReader inFromServer = new ...
0
votes
1answer
31 views
What's the better way: 1 pipe and 1 socket, or 1 socket?
I have a server-program which processes audio-data and passes it thru to the audio-drivers.
The server-program copies the audio-data and puts the copy in a named FIFO in a seconds thread.
If there ...
2
votes
0answers
79 views
Streaming audio over a bluetooth socket
I need to stream audio over Windows sockets to a bluetooth headset.
I am able to make socket connection to the Bluetooth headset using RFCOMM and A2DP / Headset profile / Hands-free profile.
My ...
0
votes
1answer
30 views
get socket from Stream
i am using following code to open a stream that sends files to a FTP. what i would need is to get the socket out of this so that i can implement the second code posted here.
self.networkStream = ...
0
votes
3answers
55 views
When does a Stream EndRead Block the Callback
I am relatively new to using the Async pattern for stream reading and writing, and wondered if the answer to this question is so obvious it is not written anywhere explicitly:
When calling a ...
0
votes
2answers
171 views
Android - inputStream.read() - I can not read anything
I have a problem with read data from socket. I was trying solve my problem in different way and i think my code now is the simplest possible to test it. Android have a problem to read from socket and ...
0
votes
0answers
60 views
Redirecting persistent HTTP requests and responses using sockets
I wish to create a router of some sort to redirect HTTP requests from an HTTP client to a servlet (they preform a negotation process. More background: I wish to do an auth from windows to windows ...
0
votes
1answer
100 views
Java reusing socket
I have a socket connection over HTTP to a service. The service only supports HTTP/1.0 which by default closes the connection when a response is sent. There is a parameter added to this version of ...
0
votes
0answers
47 views
PHP Socket, not a valid stream resource
I know this has been asked before, but I just can't get it to work.
fgets() and feof() gives an error for not valid stream resource.
socket
$socket = fsockopen($settings['server'], ...
0
votes
2answers
90 views
Java : Hang when socket used second time
I have a client class and a server class. There is a client method which I use to call the server and my code hangs if I try use this method more than once during a jvm session.
Client code's main ...
0
votes
3answers
59 views
Is it possible to use multiple java ObjetOutputStream objects to write to a single java ObjectInputStream object?
I have a standard client/server setup.
The program I'd like to build acts a lot like a mail office(which is my Server). Multiple people (client with ObjectOutputStream) hand the office (server with ...
0
votes
3answers
99 views
Java help creating a new socket per connected user
I am creating a chat server and i can not get more than one connection established, i believe that this is due to there being only one socket. I have read that a thread is capable of handling more ...
0
votes
0answers
52 views
Receiving Empty Buffer in Socket Stream on Windows 8
I'm developing a Windows 8 App, but I'm really struggling with creating a TCP client app.
I have developed a C++ server app on Windows 7. However on Windows 8, I cannot use anymore TCP Client, they ...
0
votes
1answer
58 views
HttpURLConnection Closing IO Streams
I am new to Java and HttpURLConnection. Should I close the opened IO streams before dropping the connection. If I close the streams, should I need to drop the connection as well? Which is the proper ...
0
votes
0answers
79 views
.net socket doesn't catch tcp packet
I have a device who send to my computer some tcp packets. I can see this packets with a sniffer.
However, using .Net socket, there isn't connexion from this device.
The sniffer shows me this packet ...
1
vote
2answers
241 views
How to determine stream end in a asynchronous socket server
I’m trying to write a asynchronous socket in c#. I read a lot of msdn articles and found those two examples: server, client.
I understood the sample code an use this to implement my own async socket. ...
0
votes
1answer
36 views
Java sockets file sending
I am writing Client/Server using java sockets. There is my code:
SERVER:
public void sendFile(File file) {
BufferedOutputStreambufferedOutputStream = new ...
0
votes
1answer
123 views
FTP server hanging when transferring file over socket
I'm making a simple FTP server in java. I have everything working when I test it locally (running both the server and client on my own machine). When I run the server and client on two different ...
0
votes
1answer
47 views
Java sockets and file Streaming
I have a basic question on files ... It seems that I am stuck.
I am creating a server-client socket. The client sends a random number of integers to the server using an iterative way and the methods ...
0
votes
0answers
67 views
How to react to events while blocked by input java
I have Socket- Client application. The code below is supposed to allow client to both read replies from server and read input at the same time. The thing is- this code "works" while debugging in ...
0
votes
1answer
258 views
Java socket application sends additional bytes while trying to send file
My program is a typicall server-client application. The problem is, when I try to send a file, for some reason client socket recives more bytes than server socket sends. To make it more strange, those ...
1
vote
1answer
371 views
java.net.SocketException: Invalid argument
Error receiving connection: java.net.SocketException: Invalid argument
Exception in thread "Thread-698" java.lang.RuntimeException: Did not
establish input/output at
...
1
vote
2answers
163 views
Filter ASCII stream in Java
I want to write a class to be used in comunicaion between Java and C++
There are a lot of discussion about Java and C++ communication. Here I'm not requesting how to communicate, I konw an i know ...
1
vote
3answers
219 views
Using Antlr for parsing data from never-ending stream
Is Antlr suitable for parsing data from streams that don't have EOF right after the text to parse?
According to my observation, the lexer does not emit the current token until the first character of ...
0
votes
1answer
156 views
How to avoid connection refusing in a simple proxy server?
I want to write a simple http proxy server in Java using sockets. I wrote a test prototype composed of several tutorials which I had found in the internet. So long I have come with this:
import ...
0
votes
0answers
32 views
Socket connection aborted after sending a file [duplicate]
Possible Duplicate:
Socket connection appears aborted after sending a file
I encountered a quirky issue that, when A client finished sending a file away (my scenario is to another client ...
0
votes
1answer
99 views
how to collect data from a stream and write a response in node.js
I am new to node.js and to it's environment so I am having problems when I want to make a server that listens for incoming data from a socket.
The problem is I am having trouble working with streams ...
-1
votes
2answers
498 views
Java multi-threading client server
I'm having some problems, trying to make a client/server system in java, the next code belongs to the client...
public class ClientTCP {
final static int PORT = 65001;
Socket _socket;
...
0
votes
1answer
84 views
ASP.NET Web Api: Delegate after Request
I have a problem with streams and the web api.
I return the stream which is consumed by the web api. Currently, i put the socket into a pool after getting the stream. but this cause some errors.
...
0
votes
2answers
127 views
Nodejs: Set highWaterMark of socket object
is it possible to set the highWaterMark of a socket object after it was created:
var http = require('http');
var server = http.createServer();
server.on('upgrade', function(req, socket, head) {
...
3
votes
1answer
75 views
Client can't receive info from Server
I am trying to send file info from server to client, but can't receive the info on the client side. I think it's an error with streams but can't find it.
I debug the code and I see that the info is ...
1
vote
1answer
94 views
forward stream from machine to another java
I am new to socket programming in java and Android. I have three phones A, B, and C. With Wifi-Direct, A can only see B. B, in the middle, can see A and C. And C can only see B.
I want to send a file ...
1
vote
2answers
198 views
Some basic HTTP protocol questions (programming and theory)
Before you decide its a tl:dr (too long, didnt read) post try to read at least some, since Its a question broken down in a lot of small pieces. Some of which you can probably answer and help me.
...
1
vote
1answer
86 views
Trying to accept a socket connection, retrieve and process a message, and then write this message to the terminal
I need to write a program to retrieve and process a message through a socket. I have no trouble and understand the process of creating the socket, binding the socket, listening for the incoming ...
0
votes
2answers
242 views
Print Stream Information
im trying to print the information sent to port 2000 but all I get is “ System.Net.Sockets.NetworkStream” . is there a way to convert stream to a string? Or a way to just print the stream ...
1
vote
2answers
84 views
How can a “Connection reset” error be prevented when closing a client socket?
Forgive me if this is simple, as I'm fairly new to server/client coding and am trying to teach myself.
I've made a server and client which work fine and interact perfectly while both are running. ...
0
votes
1answer
302 views
Handle socket descriptors like file descriptor (fstream)? C++/Linux
By accident I found out that I can use read and write on socket descriptors. Can I somehow (ab)use the fstream mechanism to output data into the socket descriptor?
1
vote
1answer
94 views
Client-server socket communication
Problem
How to send UTF-8 data between the server and the client, if I can use on client only
inputStream.read()
?
Docs
Reads a single byte from this stream and returns it as an integer in
...
3
votes
4answers
891 views
Convert a uint16_t to char[2] to be sent over socket (unix)
I know that there are things out there roughly on this.. But my brains hurting and I can't find anything to make this work...
I am trying to send an 16 bit unsigned integer over a unix socket.. To do ...
1
vote
1answer
172 views
Buffering stream of strings from socket
I am working on a C# app that passes around strings between networked instances.
The code is currently using async sockets, and everything works great so far (localhost).
However, I am expecting ...
1
vote
1answer
244 views
ZeroMQ push/pull and nodejs read stream
I'm trying to read some file by opening read stream and send chunks of the file through ZMQ to another process to consume them. The stream is working like it should, however when I start the worker, ...
0
votes
2answers
74 views
why the server socket does not proceed?
my app for college work..
DOC to PDF
==
my server:
one thread per requisition
server = new ServerSocket(5000);
while (true) {
Socket cliente = server.accept();
...
1
vote
0answers
27 views
Channel.read returns -2
I'm using Java NIO to do socket operations. In the past when working with streams, the read call (where you are reading into a byte array, or in this case a ByteBuffer) returns the number of bytes ...



