Tagged Questions
-2
votes
1answer
195 views
How to solve cross Thread Operation not valid in windows form? [duplicate]
I have been stuck here .....I am creating a chat server windows application,which will host and all client will register
let me explain my scenario,when i start a chat server.....I have used ...
0
votes
1answer
523 views
Sending TCP/IP request from website using local port
I want to create a web utility which will use a local port for sending a TCP/IP request.
Does it possible to use a client side port to send a TCP/IP request?
I know it is possible if we send a ...
0
votes
3answers
468 views
StreamReader with TcpClient returning incorrect strings
I am using TcpClient and NetworkStream to initiate a connection to a POP server for authentication. Bad practice, good for learning.
When I Telnet into the POP server, the response produced is ...
0
votes
1answer
529 views
Using ThreadPool.QueueUserWorkItem to open a TcpClient connection and read data in ASP.NET and SignalR
I've read a couple of posts on SignalR and thought for a fun test project that I could create a web application to poll my onkyo receiver for status and display the results in a browser. For an ...
1
vote
1answer
4k views
how to send and receive a tcp message to a specific IP/Port in .NET
I'm trying to send a message to a specific IP/Port and receive a reply in an ASP.net website, i tried the method describd at the following link but it didn't work for me as you can see :
...
2
votes
1answer
1k views
TCPClient seems to not maintain a keep-alive connection, why?
I have the following code using the TcpClient
byte[] encbuff = System.Text.Encoding.UTF8.GetBytes("username" + ":" + "password");
string follow = "track=soccer,twitter";
byte[] ...
3
votes
4answers
539 views
Is it expensive to do a WHOIS lookup using TcpClient.Connect() in C#?
A customer has asked that we do a dynamic whois lookup on the homepage of their ASP.NET site, based on the IP of the user accessing the site.
The implementation would be something like what's ...
4
votes
5answers
3k views
C# NetworkStream.Read oddity
Can anyone point out the flaw in this code? I'm retrieving some HTML with TcpClient. NetworkStream.Read() never seems to finish when talking to an IIS server. If I go use the Fiddler proxy instead, it ...