Tagged Questions
0
votes
0answers
8 views
MacOS NKE kext: block established connection?
Is there a way to block/interrupt an existing TCP connection from a NKE (network kernel extension) in Mac OS X?
I have a socket filter registered that can prevent outbound/inbound connections from ...
0
votes
0answers
12 views
c# server stops accepting tcp connections after a while and sends TCP Dup ACK packets
I have a server written in c# running under mono on ubuntu. The daily number of client connections to the server is almost constant. The problem is that after some random time, the server stops ...
0
votes
0answers
26 views
How to build TCP socket connection between two PC from different LAN
Here is the problem:
I'm developing a C/S application, now two PCs are in the same room and the App is running fine. I have to move one PC to another room which is in a different LAN, i got trouble ...
0
votes
1answer
27 views
How to properly implement GUI in netty chat server side
i currently trying to create a chat service using netty.I took my references from some source code and i would like to implement a simple GUI where at the server side, a button "send" has to be ...
0
votes
1answer
57 views
Node.js Outgoing tcp connection limit (cannot make connections more than five)
I'm building a data transfer proxy server using node.js.
It pipes client's request to swift object storage server using http(s) REST API.
It works fine for the individual request but when the ...
1
vote
4answers
65 views
How to initiate direct connection between clients connected to a server
Suppose that I have a server and the clients are connected to the server. The server is accessible through a public ip.
I would like to "forward" the connection so that the clients would be directly ...
0
votes
0answers
21 views
Cannot Join Reliable Raw Session (ALLJOYN_JOINSESSION_REPLY_FAILED)
this question is related to alljoyn library for java - android
How could I debug ALLJOYN_JOINSESSION_REPLY_FAILED exception?
The issue occurs when I am trying to join a reliable raw session. The ...
0
votes
1answer
84 views
what is “T!” represent in socket connection?
i have open java socket for read serial data on localhost, but the when i try more times to read data then i get just two bytes which are T!. i don't know what this two characters represent ?? and ...
0
votes
1answer
84 views
force close TIME_WAIT connections by sending RST to dst and src?
The MySQL server had some few "Too many connections" warnings , and on the server there's a ton of unknown TIME_WAIT connection on my system like:
# netstat -npat
tcp 0 0 ...
0
votes
1answer
61 views
Does tcp/ip protocol explained when connection will time out or be refused?
While a tcp client is connecting to a tcp server, and at same time the Listening port at server side hasn't been established. At this time will the tcp client report connection refused exception or ...
-2
votes
1answer
66 views
How to avoid the max connection limit?
Dear StackOverflow members,
I was wondering, let's say with Whatsapp... you're continously connected to their servers.(Using TCP)
And assuming there's a max of 65535 connections/port, how do they ...
0
votes
1answer
103 views
Does TCP use another port for sending data?
I heard that for TCP connection, server will listen on 1 port, and use another port for sending data.
For example, web server listen on port 80. Whenever client connects to it, this server will use ...
0
votes
0answers
37 views
Some clients connecting to SSAS 2005 get error: No connection could be made because the target machine actively refused it 10.57.49.14:2383
Very important in the title are the words "some clients" (sigh)
Situation:
We have a server with a SQL Server 2005 (with SSIS, SSAS, SSRS) installed on it. A third party manages the server. We have ...
0
votes
0answers
55 views
Log all connection with low-level socket in iOS (Jailbroken)
I'm doing a little tweak that logs all connections from my jailbroken iPhone (with Theos). Too many apps open connections that I want to prevent. I have searched for solutions that can "intercept" ...
0
votes
0answers
197 views
Testing IPERF. Why UDP throughput decreases in the client side when you open a TCP connection?
I am testing my Wifi network with three nodes with the same specifications (Node 24,76 and 78)
*The maximum bandwidth of the wireless connection is around 12Mbps
This is my scenario and results ...
0
votes
1answer
752 views
web service client encounters a 'java.net.SocketException: Connection reset'
problem
We have a java ee app deployed on Weblogic server 10.3.1 which provides HTTP web service. Let's just call it 'server'. Another java app deployed on tomcat on another machine, which will make ...
0
votes
0answers
231 views
HTTP Connection Pooling
Service A calls into service B via HTTP. This happens frequently, and the size of transferred data is not very big. I discovered that re-using the same TCP connection to send multiple requests from A ...
0
votes
2answers
156 views
PHP Mysqli not closing TCP connections
I'm updating my scripts to move from ext/mysql to ext/mysqli. It's introduced some problems.
Under ext/mysqli, connections are not released when a script terminates.
The scripts are all run from the ...
0
votes
2answers
310 views
Accepting multiple clients in Java TCP
I want to accept multiple clients in java tcp program. So I used while loop to accept multiple clients. But the problem is I cannot connect the nodes with the server randomly. I used to connect the ...
1
vote
0answers
318 views
wget connection reset by peer
I try to access www.indeed.com from our web server by using wget but it raises "Connection reset by peer" error.
wget www.indeed.com
--2013-02-05 03:03:12-- (try: 3) http://www.indeed.com/
...
3
votes
1answer
181 views
java application tcp connection loss detect differs in windows 7?
I have a java application running on Windows XP and also on Windows 7.
This application has an open tcp connection to another computer.
Now comes the point: On an XP machine unpugging the network ...
0
votes
1answer
246 views
tcp client connection in php
I have a webservice which connects to a server and return result as xml or json. It is written in asp.net. I want to use the same in php.
using (TcpClient tcpClient = new TcpClient())
{
...
0
votes
0answers
35 views
Networks and file sending via TCP
I'm trying to send a file from one computer to another via TCP.
My server/reciever is directly connected to the internet (at least, that's what I suppose, I'm hiring this room and the internet is ...
0
votes
0answers
38 views
what can put linux process managing connection pool into bad state, so it restarts them continously? [closed]
I have an application with pool of connections to MySQL. At some point, in production, every 1-3 seconds some socket is closed. As a result my app restarts this connection.
This is pretty big pool ...
1
vote
0answers
465 views
TCP connection problems in Windows 8
I have a small DLL that hooks into the spooler on windows platforms. It hooks the StartDocPrinter function, with the result, that every time a print job hits the spooler my DLL is called. This DLL ...
-2
votes
2answers
72 views
TCP sockets and connections [closed]
Please correct me if i am wrong.
When server runs on a machine, one socket is created which binds itself to the port server is running on and this socket listens for incomming connection.
When ...
3
votes
2answers
249 views
How do I send a command to a single client instead of all of them?
I am writing a simple client/server chat program with Indy 10. My server (idtcpserver) sends a command to the client, and the client answers, but when more than one client is connected and the server ...
1
vote
2answers
69 views
Why do my sockets stop transfering?
Ok let me be clear. I'm using TCP and that should mean a connection shouldn't interrupt unless closed or due to network problems.
So here's my issue:
Utilizing my sockets works perfectly.
After 5 - ...
2
votes
2answers
758 views
Python: sending data between two computers via sockets
I am working on a script that would transmit the data between two distinct computers with access to the internet. I am using python's socket standard module. It works fine when I run both client and ...
-2
votes
1answer
70 views
logging all tcp connections
How to log tcp connections in java? I have some code which is calling various services using tcp (http or binary), I'd like to see on the console when something is being called (connection started). ...
3
votes
1answer
1k views
Netty Client to Server message
This is actually my first post on here and I have been trying to figure this out for some time but I am finally calling in the flag and going to try to get some help on this topic.
So I have a Client ...
3
votes
2answers
149 views
StreamWriter does throw exception underlying connection is broken?
I am using StreamWriter instantiated over a Tcpstream
like this
streamWriter = new StreamWriter(tcpClient.GetStream());
I am confused about the behavior of following calls with regards to ...
0
votes
0answers
79 views
Make Connection to a VPN without changing the System
Is it possible to make a C# app that connects to a VPN and puts the connections through it without changing the windows system the app is running on.
Kind of like using a VPN like a Proxy.
Let's say ...
0
votes
1answer
142 views
Connecting via TCP to a 3G mobile device
So basically I'm trying to achieve a TCP connection (ServerSocket, Socket) to a 3G mobile device running an ad-hoc service on Android (the client I'm using is an Android x86 desktop PC, but it could ...
-2
votes
2answers
214 views
Android Sockets - My code is working 2.3.6 but not in 4.x
I'm newbie on Android and Java programming and I'm stuck.
I was able to create a TCP/IP communication client (Over LAN) which sends text messages on a windows based web server. The code is working ...
0
votes
1answer
39 views
Http 1.1 connection and client port
Does the client remote port changes during an HTTP 1.1 connection exchange?
I am trying to figure out if I can programmaticaly uniquely identify a connection on the server using the request remote ...
1
vote
2answers
30 views
How do IM applications manage to let users transfer files between differrent LANs
I am working on a program related to network, and there's a situation that the client has to connect to a server which is inside a LAN.
As I know, when establishing a TCP connection, the port the ...
3
votes
1answer
220 views
android tcp connection by name
I am trying to open a TCP connection from my android app to a server running on a Roving Networks WiFly. The WiFly appears on my router as hostname WiFly with an ip address of 192.168.1.4
When I ...
0
votes
1answer
633 views
TCP both Client and Server on the same PC
I'm trying to implement a small tcp based application in C#. I'm new to TCP programming.
The app is really simple. It's a client/server scenario, which support max 2 clients. One client will be an ...
0
votes
3answers
1k views
How to send an OBJECT over TCP in java?
I'm writing a program to send an object from one class to another class. Here is a short sample example of my program to represent the problem. As you can see the object to send from server to client ...
-2
votes
2answers
147 views
PYTHON - MAX TCP CONNECTIONS? [duplicate]
Possible Duplicate:
What is the practical / hard limit on socket connections per server
When I hit about 480 TCP connections, it doesn't accept + connections.
Where it is the max of TCP ...
1
vote
1answer
54 views
Different HTTP hosts through the same TCP connection
Should an HTTP server expect to receive requests with different Host fields on the same TCP connection? Though it is contrary to intuition, RFC 2616 seems not explicitly forbiding a client to ...
1
vote
1answer
618 views
Concurrent connections on Azure Worker Role
I would like to know maximum no of concurrent connection allowed for a azure worker role listening on port 21,having one instance.
Scenario is:
I have one instance of worker role and port open on 21 ...
0
votes
1answer
162 views
boost tcp client fails to detect disconnection with server sometime
I am using boost::asio::tcp::socket to connect to a Server, and call
read_some() to receive binary data from Server, the following are codes:
len = sock->read_some(boost::asio::buffer(pBuf), ...
0
votes
1answer
821 views
Python Persistent TCP client
I need to connect to my server(not http) with a persistent connection, to speed up some things. Could I have an example of how to do this?
0
votes
0answers
60 views
Google Application Engine resets the TCP connection
We observe that the TCP connections are sometimes reset by Google Application Engine. The exact behavior is following:
TCP handshake is done (SYN, SYN/ACK, ACK)
Http POST is sent by client
Google ...
0
votes
1answer
137 views
Android server-initiated TCP connection
I am new to Android development and I would like to know if there is any way to establish a server-initiated tcp connection on an Android device.
What I'm trying to achieve is making an external ...
1
vote
1answer
292 views
TCP NAT-Traversal /- Punching with .NET
I write an application where it is essential to connect clients directly with each other and keep them connected. After doing some research using superior techniques (google) I found out that what I ...
0
votes
1answer
297 views
Android: Transferring TCP connection from 3G to WiFi
I'm creating an application for Android that uses TCP to download files. It's done, and working great, but I'm having a problem with people switching from a network to another while downloading files, ...
1
vote
2answers
386 views
TCP connections and Tomcat
I need to configure Tomcat 5.5 to receive direct TCP connections (instead of receiving HTTP connections).
The idea is to receive TCP connections from a client and store the information in a database.
...




