port

Need a free Application for network monitoring, traffic per port, and a weekly report

Hi all, I would like to know if there's an open source application that can: -Being open-source (obviously free, no cost at all) -Check which ports are being used and check the bandwith used by each of them. -Based on requirements above create a weekly report. With details of each prt per day and time specifications. I have read abou...

Listening for TCP and UDP requests on the same port

I am writing a Client/Server set of programs Depending on the operation requested by the client, I use make TCP or UDP request. Implementing the client side is straight-forward, since I can easily open connection with any protocol and send the request to the server-side. On the servers-side, on the other hand, I would like to listen b...

Java sockets: multiple client threads on same port on same machine?

I am new to Socket programming in Java and was trying to understand if the below code is not a wrong thing to do. My question is: Can I have multiple clients on each thread trying to connect to a server instance in the same program and expect the server to read and write data with isolation between clients" public class Client extends ...

Java: How to clear socket bindings

I am having a few issues with sockets within my Java SIP client. When I bind to an address and port, if something goes wrong I have to attempt to reconnect, usually after I've stopped and restarted the process. Problem with that is then the port is bound and I am forced to increment the local port. How can I remove the binding to the ...

Can't start Tomcat 6.0.26 after update to Debian Squeeze

Working Tomcat setup stopped working after dist-upgrade on Debian (to Squeeze). 8005 is the shutdown port but it is not occupied. Any ideas on what it may be? It's not quite self-speaking exception. This is log from catalina: org.apache.catalina.core.StandardServer await SEVERE: StandardServer.await: create[8005]: ...

When I specify port of SmtpClient, what exactly am I specifying?

I can specify a port number with SmtpClient object in ASP.NET, what I am wondering is, is that just the port .NET uses to send mail to the SMTP server? Or will that dictate what port for the SMTP server to use? Or is it that it MUST match the port configured for the SMTP server? ...

How do I use PORT ftp raw command in c#?

Hi, I am trying to make a FTP client in c#. I found a class that support basic FTP commands on http://msdn.microsoft.com/en-us/library/system.net.webrequestmethods.ftp_members.aspx. on the list, PORT command is missing. How do I use PORT command in c#? ...

Problem with sending out variable to serial port using api JAVA

We are developing a java program for school. But we are experiencing problems with sending out a variable created by 3 sliders. The idea is that we have 3 sliders. One slider for every color. Red green and blue. The variable has to have a value between 0 and 255. Everytime the value of the slider changes is has to send a variable for th...

How Do I Execute A Stored Procedure From A BizTalk SendPort?

Hello, I would like to call a stored procedure from a SendPort. I want to avoid an orchestration and instead, create a subscription to the message box based on the receive port and message type. I also need to use attributes from the received message xml as parameters for my stored procedure. My assumption is that I should use WCF-SQL ...

Creating a Multiwindowed Cocoa Program - Launching Procedure Suggestions?

I'm porting an application I developed in Visual Studio 2008 over to Cocoa. I'm currently doing a 'learn-as-you-go' approach to Cocoa, so I can experiment with different ideas and techniques in smaller, simpler projects and eventually combine them into one big application. My program logic is as follows (in a dumbed-down sense). Items...

Relation between port and IP address

My question is, if machine A have two IP address X,Y. Can it open port 80 twice,like X:80 and Y:80 ? Say,is port unique by machine or by IP? ...

Python Access Parallel Port

Hi, I've been trying to access the parallel port with pyParallel, which is in the same sourceforge as PySerial: http://sourceforge.net/projects/pyserial/files/ I'm getting a WidowsError: exception: priviledged instruciton. Has anyone used this module before? import parallel p = parallel.Parallel() Traceback (most recent call last): ...

how to change postgresql listening port in windows?

hi guys, How do i change the default listening port 5432 of postgresql to another number? Another question, What steps do i have do to allow remote r/w access to the database using python pyscopg2? ...

How to obtain ports that a process in listening on?

How do I get the ports that a process is listening on using python? The pid of the process is known. ...

Advice on coding Perl to work like PHP

I am first and foremost a perl coder, but like many, also code in PHP for client work, especially web apps. I am finding that I am duplicating a lot of my projects in the two languages, but using different paradigms (e.g. for handling cgi input and session data) or functions. What I would like to do is start to code my Perl in a way w...

Filezilla won't connect to my server!

Hey guys! I'm awful with computers! I'm trying to use Filezilla to connect to my server. When I do this, this is the message it give me verbatim: Protocol error: Unknown protocol identifier (0x50 0x50 0x48). Most likely connected to the wrong port. Connection to server closed. but it's not the wrong port!... what am I doing wrong? ...

Revert IP Lever port redirection

Hello, i would like to find a way, to revert ip level rooting i have done on a server of mine. A friend helped me with the following commands, to redirect traffic from 80 to 8080. Nevertheless, it needs to be rerun after server is restarted. Now i will go for standart apache2 configuration. How could i revert that ip redirection? The co...

can apache handle non-http messages

I have a apache webserver, and we need to develop a module in it (using mod_python or mod_wsgi). It will ofcourse handle the requests sent as http GET/POST. However, we would like this module to ALSO handle messages sent by another remote applications which are NOT http based. That is, the body of the those tcp packets may just be a j...

one port number for one directory

My current place of employment uses the MS stack, and when creating ASP sites, the server listens on a specific port number for each project ie localhost:1525 will point to one project and localhost:1526 will point to another. I can achieve something similar on the LAMP stack with setting the config files manually, but is there a way to...

Deploy .NET web service in a concrete port

I would like to deploy or publish my .NET based web service always at the same port. Can I do this directly in my code (programmatically talking)? Thanks. ...