Tagged Questions
0
votes
0answers
32 views
Android Client connect to C# Server
I am trying to make android app connects to c# app,
C# Server code:
TcpListener listener = new TcpListener(1234);
listener.Start();
Socket soc;
while (true)
{
...
1
vote
1answer
46 views
Safely Marking Begin/End Of Packet for TCP / UDP transmission
I am writing a client/server based application that works over local network, to exchange data between client and server, I have created a very simple NetworkCommand object that is converted to byte[] ...
1
vote
0answers
21 views
How to open a TCP connection from a WebMatrix 3 project?
I need to talk to an external server that only accepts TCP connections and doesn't support HTTP connections. I know the IP address and the port since the service is running on a Linux box I have in a ...
2
votes
0answers
31 views
How to make one Network Interface unreachable to a process in C#.net?
I can capture which processes are using which Network Interfaces through the help of Managed IP Helper. I don't know where I found it but it works as a real charm.
But do anyone know how to make ...
0
votes
1answer
42 views
C# Local Tcp Proxy
I'm doing a local proxy to which I redirect browsers on my system (mainly Chrome and Firefox).
So far I've managed to get it to work, but I'm having some trouble.
When I navigate (in the browser) to ...
1
vote
2answers
97 views
Why does this multithreaded multiconnection TCP server only accept one connection?
story behind all of this
I'm trying to write an open source RPG inventory server, usable for more than 1 RPG at once, and will make a game for it later on. My first version doesn't support a lot of ...
0
votes
0answers
24 views
C# Proxy Packet Sinff Without Hook
To sniff packets or make proxy in c# you will need a c++ dll thats hook the application send + recv functions or hook connect function to change the connection ip what i need is method to change ...
0
votes
1answer
23 views
Communication Module Automation Testing
I developed a communication protocol module between two machine in our product. It is an explicit
protocol and it was not possible to use standart protocol like WCF or WebServices
There are two ...
4
votes
2answers
87 views
How should I implement a distributed Remote Method Invocation system in .NET?
Original Post
How would I implement a distributed Remote Method Invocation system?
I'm trying to create something like the following:
Master Server to track individual "hosts".
Hosts can ...
0
votes
0answers
28 views
i cannot view the screenshot on client whn sent to server through tcp…can only view two lines of the actual screenshot
//Server side code
namespace WindowsFormsApplication10
{
public partial class Form1 : Form
{
TcpListener srv = new TcpListener(IPAddress.Any,8000);
TcpClient client;
...
1
vote
1answer
91 views
Sending and receiving plain text with TCP
I want to send this string through TCP connection:
TR220,2,A10000XX,3545.1743,5119.5794,001.0,1503,52:56:16,2012/09/13,0,0,0,0,0,V,000,0,0,0,,+989123456789,*
I am using this code to send the text:
...
0
votes
2answers
35 views
SqlServer wedged connection due to network drop
We have two directly related problems that can be reduced to a very simple piece of code.
Suppose machine 1 hosts the application, and machine 2 hosts the database, connected by ethernet via a hub.
We ...
0
votes
0answers
42 views
Using correct encoding when reading from TCP/Port
I'm reading a byte stream (byte[]) from a TCP/Port, and converting a subsection of the recieved array into a char[]
Assume that I am not familiar with the characteristics of the port, nor the ...
0
votes
1answer
167 views
XML serialization of objects through Sockets
My idea -> client server system, exchanges text messages (strings) through TCP sockets. I want the protocol between client and server to be based on XML. And because information between sockets is ...
0
votes
1answer
57 views
Hosting WCF services on port 5000. Connecting from another PC
Basically, I have a finished program that connects to a Console application which hosts multiple services . What I need to do is have my clients on one PC , and my host on another hosting all the ...
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 ...
0
votes
1answer
126 views
Are memory mapped files faster than IPC?
I was reading SQL Server Internals and Troubleshooting (Wrox) and it effectively says that Shared Memory is the default connection method, followed by TCP and then Named Pipes. What's curious though ...
0
votes
2answers
66 views
NetworkStream.Write hangs my sever app when one of my clients crashed
I have a clien-server .net app, those communicate via tcp. My server sends raw byte packets periodically to my clients.
It works great 99.9% of the time, but sometimes, when one of my clients crashes ...
0
votes
0answers
64 views
Convert byte[] to HttpWebResponse
I'm writing tcp worker on raw sockets, which simply exchanges http traffic with server. Using raw sockets is, unfortunately, obligatory.
So far on the output there is a byte[] array that looks this ...
1
vote
1answer
95 views
Is there a multithreaded TCP server socket in .NET?
Say we have 1k clients on one socket one port and we want to reply to some N of them in parallel (meaning have N threads writting to socket in parallel with out mutex that would also mean send packets ...
0
votes
2answers
343 views
Send text string via TCP?
I just read and tested code of this great article in order to understand TCP Client and Server.
Now I need to do (I hope) really simple thing I need to send some string from TCP Client To TCP Server.
...
-2
votes
1answer
67 views
Error in writing a multithreaded TCP client [closed]
namespace Client
{
public partial class frmClient : Form
{
public frmClient()
{
InitializeComponent();
}
public static Mutex MuTexLock = new ...
0
votes
1answer
26 views
Approaching TCP programming with .NET 4.0x
I need to talk to a Samsung cash register SPS 500 that understands custom TCP commands.
I've never done this before and am wondering where to get started using .NET 4.x, are there 3rd party tools ...
0
votes
2answers
252 views
How do I reuse a TCP endpoint address with .Net sockets
I have some client-server socket code that I want to be able to construct and (re)connect to periodically the same endpoint address: localhost:17999
Here is the server:
// Listen for a connection:
...
1
vote
1answer
87 views
.NET TCPClient Connection State
Background
I am communicating with a server (that I can't touch, of course) over a TCP connection. The application I am connecting to requires two connections. One as an "I ...
0
votes
2answers
294 views
Sending a string containing special characters through a TcpClient (byte[])
I'm trying to send a string containing special characters through a TcpClient (byte[]). Here's an example:
Client enters "amé" in a textbox
Client converts string to byte[] using a certain encoding ...
2
votes
1answer
211 views
Assync TCP Server code example analysis
I'm using the following code to create an assyncronous TCP server:
private void SetupServerSocket()
{
var myEndpoint = new IPEndPoint(IPAddress.Any, _port);
_serverSocket = new ...
4
votes
1answer
182 views
My .Net socket handler is missing packets
I’m writing some code in .Net/C# to communicate with some factory equipment over Ethernet. I first assign a handler:
_TCPConn.BeginReceive(
_StateObject.sBuffer, 0, ...
2
votes
2answers
699 views
Setting up a TCP/IP Client and Server to communicate over a network
I am trying to learn a little about socket programming and I have stumbled across TcpListener and TcpClient to use as I read they are slightly easier for beginners.
The basic jist of what I want to ...
1
vote
1answer
224 views
C# .Net Sockets Buffer Understanding
I'm trying to understand the use of a buffer in the socket scheme of things. Here is what I understand, and if someone could tell me if I'm correct or give feedback to where I might be ...
4
votes
3answers
406 views
Thrift TSimpleServer becomes unresponsive after several successful requests
I have a Thrift API served from a Java application running on Linux. I'm using a .NET client to connect to the API and execute operations.
The first few calls to the service work fine without errors, ...
0
votes
1answer
148 views
Should socket connection stay open and do they require admin rights?
I'm new to sockets and have a couple of questions on their usage in .NET. This is a consumer program so there won't be any scaling issues as the user runs the server and client.
1) Is it better to ...
-1
votes
3answers
186 views
Server communicate back to multiple different clients
So I got as an assignment to make a small chat function where multiple clients should be able to connect to a server and communicate with it, the server should then be able to choose whom it wants to ...
0
votes
1answer
75 views
Client-Client communication through a server
I'm trying to figure out how to do a very small chat program where I have a server and several clients, lets say 3, the server should be the middleman in all the communication and all message should ...
0
votes
2answers
412 views
TCP client/server with C# .Net
I am following this example of TCP client/server
www.codeproject.com/Articles/1415/Introduction-to-TCP-client-server-in-C
I am more familiar with WinForms than console application, so I decide to ...
0
votes
3answers
88 views
Determine how large a buffer should be
I am reading from a tcp stream - I have quried an FTP server with the "MLSD" command (retrieve file / directory information). Although since response size is variable (dependent on the amount of files ...
0
votes
0answers
226 views
BinaryFormatter Deserialize randomly hangs while deserializing a NetworkStream
I've tried to omit as much code as possible without obscuring the real problem areas. If anyone needs to see the full code, let me know.
So we have built a dead simple TCP application that mitigates ...
2
votes
1answer
78 views
Talk back to a device behind firewall over established connection - how?
A device behind firewall establishes and maintains a socket connection to my server. I talk back to the device over the established connection. What is this pattern called and where could I get more ...
1
vote
1answer
103 views
Can't get full response from TCP server
I'm trying to connect to the dict.org server with port 2628 and I can't get the full response from the server. Here is what the code looks like:
TcpClient client = new TcpClient("216.18.20.172", ...
1
vote
2answers
583 views
TcpListener/TcpClient stops processing data under certain circumstances
I have an issue where, depending on the startup order of two network devices, I seem to lose the ability to receive data on one end.
The setup is one small server written in C# (.NET 4.0) that ...
4
votes
1answer
292 views
Would a ThreadPool or a Task be the correct thing to use for a server?
I'm trying to convert some code from just creating a new thread to run a function to making it use a Thread Pool or even the Task Paralleling Library. I'm doing this since I know that despite the ...
0
votes
0answers
91 views
TCP override timeouts?
Short Version: I wrote .ReadTimeout = 10mins but the timeouts seem to be 30sec-1min. Can i override system/user timeouts or something?
I gave a client an app which connects to our servers. It appears ...
1
vote
1answer
180 views
How to handle TcpClient disconnect from TcpListener
I have a client using TcpClient and a server using TcpListener.
When the client disconnects from the server, how do i handle this?
And what if the program crashes, how do i handle the disconnect then?
...
0
votes
2answers
85 views
For each Tcp Connection i have to a server, how do i manage each individually?
Say i have a server that listens to a TCP Port (through TcpListener), and i have five different connections to that server (through TcpClient). How would i go about sending information through streams ...
3
votes
1answer
266 views
Listening on same port, different IP address, WCF + non-WCF app [closed]
I have an application binding on port IP1:80 of a machine with 5 virtual IP addresses (IP1-IP5)
I then try to bind a self-hosted WCF service to IP5:80 but get an AlreadyInUseException. I guess WCF is ...
-1
votes
1answer
195 views
I am getting NULL or 0 in between data read from TCP Socket, What's wrong in my code?
I have written TCP listener in C# with the help of following links
http://www.codeproject.com/csharp/BasicTcpServer.asp
http://msdn.microsoft.com/en-us/library/fx6588te.aspx
Basically it uses
...
0
votes
1answer
130 views
Clarifications required on .Net socket classes
I have several points regarding .NET socket implementation so I will state them sequentially:
My understanding is that an instance of a Socket has a buffer of a changeable size in its internal class ...
1
vote
1answer
246 views
Cannot send or receive messages via TCP
I keep getting:
A first chance exception of type 'System.Net.Sockets.SocketException'
occurred in System.dll System.Net.Sockets.SocketException
(0x80004005): No connection could be made ...
0
votes
0answers
57 views
.net UdpClient DontFragment throws NotSupportedException
Well after reading the specs for the UdpClient.DontFragment i don't understand why i get a NotSupportedException.
i run the following code:
udpClientV6 = new UdpClient(port, ...
2
votes
1answer
96 views
WCF consumed by Web Farm Server. Error: The socket connection was aborted
I have a WCF service deployed on ServerA. I am using tcp binding.
I also have a web farm which consists of ServerB and ServerC.
When I deploy my application which consumes the WCF service on any of ...




