TCPListener - Listen To Particular IP On Specific Port

May 26, 2009

How can I ask my tcpListener to listen to particular IP on specific port? I want my tcpListener to listen to the local IP of the machine. I can get the ipaddress of the pc using Dns.GetHostAddresses(). But, if pc have multiple ip's how can I know which ip address is correct? From tcpClient class I am connecting to the server. So, I know the server ip and so I want to specify ipaddress to my tcpListener class to listen on.

View 1 Replies


ADVERTISEMENT

RFC - Listen For Connecting Clients Using TcpListener?

Oct 8, 2011

I posted this code in another thread as an example of how to listen for connecting clients using TcpListener.it is a small part of a larger project, its all my own work,

Imports System.Net
Imports System.Net.Sockets
Public Class Server[code].....

View 2 Replies

Listen To A TCP Port

Apr 27, 2011

I have a program running on a machine on the local network that serves data on port 23. I'd like to be able to listen for data on this port, and add the data to a listbox when and if it comes in. Idealy this would run async. I sort of gotten this to work using the following: [code]

View 6 Replies

TcpListener.Start Does Not Open Port

Mar 2, 2010

I have a class that inherits from the TcpListener, this class Shadows the Start method just to call the base Start() and the base BeginAccept Tcp Client(). From time to time the method is called but the port is not opened (netstat does not show the port open).[code]The class that uses the ExtendedTcpListener implements the IDisposable pattern and inside the Dispose the ExtendedTcpListener.Stop is called.The stop text is not present at the logs when the problems happens.

View 4 Replies

Listen To A TCP Port Which Is Already Being Listened By Another App

May 19, 2011

I've a plugin which always listening to the port 6002, and i have an ASP.net application which sending messages to the same port and receiving the reply from the plugin on the same port,Sending is working fine, and the plugin sends a reply on the same port but i don't know how to catch this reply, when i try to listen to the same port using Tcplistener the start method throws this exception : Only one usage of each socket address (protocol/network address/port) is normally permitted,

View 4 Replies

VS 2010 - Listen For On Certain UDP Port

Aug 6, 2011

I am doing a little project before I get onto some more complicated stuff and I am trying to become more fimilar with ports. Basically the issue at hand is that I am not too sure how to listen for on a certian UDP port.

View 3 Replies

Make A Winsock Listen On A Particular Port?

Sep 12, 2009

This must be really obvious, but how do I make a winsock listen to a specific port (recieve data?)

View 2 Replies

Make An Application To Listen In On A UDP Port

Mar 29, 2012

I am trying to make an application to listen in on a UDP port - the issue is that there is something already there. Here is the scenario: On port 5060 is a SIP-based softphone, it is listening for incoming calls. The application I am writing is also listening on port 5060 to receive the packets (which will then be parsed to extract the caller ID and various other statistics)

[Code]...

View 3 Replies

Print To A Specific USB Port?

Dec 29, 2009

im a independent programmer and my most recent job has me doing somthing ive never had to work with before and i was hoping to get a few answers here or be pointed in the right direction

question 1

is there a way to print to a specific USB port in VB if so links to reading material or better yet code

question 2

is there a way to program to open and send and recieve information from a USB port lpt port and a serial port using VB

and if so can i again be directed to some reading material or better yet code

i understand these are not typical questions but they are a small part of a bigger whole that we are trying to implement while we look into using Vb as the language we will use

View 2 Replies

C# - Send And Receive A Tcp Message To A Specific IP/Port In .NET?

May 18, 2011

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 SocketException An attempt was made to access a socket in a way forbidden by its access permissions

View 1 Replies

Open The Specific Port Of A Windows Computer?

Jan 15, 2010

I tried to make a winsock program.But when i run, i have a SocketException "No connection could be made because the target machine actively refuse it."Any suggestions on what i should do? Im using 17477 port.By the way Im using my own computer to test it. So i have no idea why.How should I open this specific port in my own computer?

Is it possible that I could include it to could into my program so that i don't need to open the ports of each computer? Below is my code.

[Code]...

View 6 Replies

VS 2010 Check If A Specific Port Is Open?

Jul 13, 2010

I want to check if a specific TCP Port of an IP address is open.

How can I realise that?

View 12 Replies

TCP Protocols - Sending Command To Specific Port On Same Computer

Mar 10, 2011

I am working on writing a program that needs to send a command to a specific port on the same computer, I have that working fine. There is another piece of software running that is listening to that port for some commands (read on).
Dim myTcpClient As New TcpClient
myTcpClient.Connect("127.0.0.1", 61225)
Dim networkStream As NetworkStream = myTcpClient.GetStream()

However when I try to send a command I get no response...
Dim outStream As Byte() = System.Text.Encoding.ASCII.GetBytes("0x33")
networkStream.Write(outStream, 0, outStream.Length)
networkStream.Flush()

I have been given a list of protocols that I need to send to that port. What I have been told is that the size (in byes) is 1 and the value is "0x33" with no parameters. I am completely new to sockets and sending data through tcp.

View 7 Replies

Application That Opens A Session To A Specific IP Port / Writes To A Test File Everything It Receives

Feb 20, 2009

I've had a search through a number of extremely useful articles on the forums, however rather than reinvent the wheel I thought I would ask if anyone already had what I am looking for..A simply little VB app that opens a session to a specific IP port and then writes to a test file everything it receives. If the connection drops, simply re-stablish it and keep listening for text to write to the file.

View 1 Replies

Check If TcpListener Is Available?

Jan 24, 2010

I have this code to connect to my server:

client = New TcpClient(txtIP.Text, txtPort.Text)
client.GetStream.BeginRead(readBuffer, 0, BYTES_TO_READ, AddressOf DoRead, Nothing)
SendMessage("/CONNECT|" & Label25.Text)

How do I check if the TcpListener is available?

View 2 Replies

Tcplistener / Tcpclient Over LAN

Apr 22, 2012

I am creating an application that will be talking over the LAN (and eventually, WAN) which uses the Tcplistener and Tcpclient objects.Now, I have this working absolutely fine locally using the loopack address although when I change the IP of the listener to 0.0.0.0 (listening for all IPs) and the IP in the client application, to the IP of the server, it throws an exception when connecting. The client says something along the lines of the the server has rejected the incoming connection. So i disabled all firewalls temporarily but I still have the problem.I have ran netstat on the server which clearly shows that it is listening for an incoming connection on 0.0.0.0. [code]

View 5 Replies

Communications :: How To Check If TcpListener Is Available

Jan 24, 2010

I have this code to connect to my server:

client = New TcpClient(txtIP.Text, txtPort.Text)
client.GetStream.BeginRead(readBuffer, 0, BYTES_TO_READ, AddressOf DoRead, Nothing)
SendMessage("/CONNECT|" & Label25.Text)

[code].....

View 1 Replies

Free An Instance Of TcpListener?

Apr 26, 2011

How do I free an instance of TcpListener?

How, in VisualBasic, to I delete something from a 'new'?[code]...

View 1 Replies

Out Of Memory Exception With Tcplistener?

Oct 26, 2011

I have an application that listens for connections asynchronously. When a connection comes in, it spawns a new thread from the callback method. This works fine for up to about 13 simultaneous connections then it dies with an out of memory error. The threads that are spawned just do a CHAP handshake and authenticate then go in to a command loop where they sleep until a command comes in or a timeout occurs. I have pasted the code below. Sometimes it will not throw an error but the thread never gets spawned although the connection is accepted.

Code:

Imports System.Net.Sockets
Imports System.Threading
Public Class UpdateMonitor

[Code]....

View 2 Replies

TCPListener Website Server?

Aug 18, 2009

I have just created a website server with Visual Basic 2008. I want my server to have the famous "resume donwload" function... but i dont know how the HTMLHeader should look like when its resuming a download.

Here is how the header normaly looks:

HTMLHeader = _
"HTTP/1.0 200 OK" & ControlChars.CrLf & _
"Server: Website Server " & My.Application.Info.Version.ToString & ControlChars.CrLf & _
"Content-Length: " & GetFileSize & ControlChars.CrLf & _
"Content-Type: " & GetContentType(StringRequest) & _
ControlChars.CrLf & ControlChars.CrLf

View 5 Replies

TCP Listen On Any IP?

Mar 11, 2010

I am trying to make a TCP chat program, but instead of having people enter in the ip of the computer they wish to talk to everytime, i would like the program to be able to listen on all ip addresses, so that it will provide for a better user experience, and that i can have chat rooms with multiple people joining. I have the code working with entering in ips, however, when i use the IPAddress.any command it will not send messages.

View 3 Replies

C# - TcpListener: Detect A Client Disconnect?

Jul 29, 2009

How can I detect when a client disconnects from the TcpListener ?

Each of my clients is handled in a separate thread.

View 1 Replies

Closing A TCPlistener/client Connection?

Sep 13, 2009

Is it necessary to close the connection of a tcplistener or tcpclient after every message received, or is it possible to close it at a later time while it continues to receive data? Is there any major security issue with leaving it open and listening? I know trojans tend to open a listener and leave it open, will my program be detected as such? Its just a simple chat program....

View 1 Replies

Does Thread.Sleep Deactivates A TCPListener

May 5, 2012

[code]I send the Thread via Thread.Sleep to sleep mode when nothing happens here. Does this affect the TCPListener in his work somehow and what happens to an incomming connection while the Thread is in sleep-mode?

View 3 Replies

Handling Multiple Clients With TcpListener?

Jun 25, 2009

I have been programming a TcpListener Program and I have everything working right! So far... Except that when I have multiple clients connecting to my Server... I used a try catch statement to catch the error and it says that tcplistener doesn't allow multi connections... think creating a new thread for each connection sounds like the most reasonible answer but I can't grasp the concept of it...

Here is my frmMain:
Imports System.IO
Imports System.Net

[code].....

View 1 Replies

TCPListener And Server - Authentication Process?

Mar 11, 2010

I am creating a simple program. (soon to be vastly complex) that is connecting to a server, and sending an authentication code to connect. I got the connection part, but what keeps breaking up is the method of authenticating. I have the entire authentication process in a while loop, so that it will keep going until it receives the authentication reply from the server (an OK-002938, or what ever client number the server decides.

This is my client code for the event:
Private Sub CONNECTSERVER_DoWork(ByVal sender As System.Object, ByVal e As System.ComponentModel.DoWorkEventArgs) Handles CONNECTSERVER.DoWork
Try
If network_client.Connected = False Then
network_client.Client.Connect(My.Settings.service_address.ToString, My.Settings.service_port.ToString)
[Code] .....
The client side is flawless. But the server side, works, but it doesn't continue past storing the bytes into a container...

View 2 Replies

VS 2010 Can't Use Tcplistener With Windows Forms

Jan 28, 2011

I am working on a remote administration tool. But I have a problem, since the server connects to the client the client needs a tcplistener. But when the client starts too listen the program freezes and I can't do anything. The reason is that the tcplistener runs in a loop which freezes the form. What shall I do too fix the program?

View 1 Replies

VS 2010 Checking For An Error Before It Happens [TcpListener]

Aug 10, 2011

Basically, in my Tcp Library I'm working on, whenever the system is told to "Stop", the OnClientConnected() Routine fires off, which is only raised under two circumstances: When a Client connects (obviously) When the server is told to shutdown

Now, the first one is handled just fine. But the second one is not. In fact, it has caused me a great deal of headache because it keeps throwing exceptions on this line in particular:

Dim _tcpClient As System.Net.Sockets.TcpClient = _tcpListener.EndAcceptTcpClient(IR)

When I hover over while debugging, I can see a few members that reveal exception data I could utilize; but unfortunately those members are private and I don't want to utilize reflection unless I have to since it could slow down performance where there may not be a real reason to.

I have thought of writing in a Boolean check to see if the server received a shutdown signal and that would indicate that it's time to not accept anything, but I want to avoid that if possible.

Is there any way to see if the TcpListener is no longer accepting connections and has had .Stop() called without reverting to catching the ObjectDisposedException that is raised? (because the Socket that is "accepted" is actually a disposed one)

View 4 Replies

.NET: Listen For Keypresses?

Apr 17, 2012

I found the code linked below on on of Microsoft's websites for listening for keypresses, however I can't seem to ge thte code to respond?

View 5 Replies

Listen For The 'End Sub Event'?

May 26, 2009

This is my first post, so hopefully I'm asking it in the correct place.

Currently I have two subs where the first calls the second.

Sub Sub1()
'some code
Call Sub2(x)
End Sub
Sub Sub2()
'some code
End Sub

This means that Sub1 does not end until after Sub2 is complete.I need to have Sub2 run after Sub1 has ended. In my case Sub1 is triggered from an application event, so calling the two subs from another 'parent' sub would not work.Is there a way that I can listen for the 'End Sub Event' of a sub?I am currently working in VBA but will be heading to .net shortly so I'll take whatever flavour of code people can help with.

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved