Tagged Questions

In computer networking, a port is an application-specific or process-specific software construct serving as a communications endpoint.

learn more… | top users | synonyms

40
votes
19answers
20k views

What is the difference between a port and a socket?

This was a question raised by one of the software engineers in my organisation. I'm interested in the broadest definition.
23
votes
5answers
481 views

Which functionality/feature in Scala only exists as a concession to the underlying platform and should be removed if targeting something else?

A while ago I read about Scala for LLVM and I kept wondering which things in the Scala language/specification/library) only exist to make the JVM happy or improve interop with Java. Considering that ...
17
votes
3answers
4k views

On localhost, how to pick a free port number?

I try to play with inter process communication and since I could not figure out how to use named pipes under Windows I thought I'll use network sockets. Everything happens locally, server is able to ...
17
votes
5answers
15k views

Sockets: Discover port availability using Java

How to programmatically find availability of a port in a given machine using java?i.e given a port number whther it is already being used .
16
votes
5answers
3k views

port an iOS (iPhone) app to mac?

Is there a preferred way to go about this? The app in question is not too large . . . single-player game that I wrote over the course of a couple of months. EDIT: I should add that I have no ...
15
votes
7answers
27k views

Port 80 is being used by SYSTEM (PID 4), what is that?

I am trying to use port 80 for my application server, but when I perform "netstat -aon" I get TCP 0.0.0.0:80 0.0.0.0:0 LISTENING 4 When I look up the process in task manager, it shows PID 4 is ...
13
votes
4answers
1k views

.Net Opposite of GraphicsPath.Widen()

I need the opposite of the GraphicsPath.Widen() method in .Net: public GraphicsPath Widen() The Widen() method does not accept a negative parameter, so I need the equivalent of an Inset method: ...
12
votes
6answers
12k views

Sending and receiving UDP packets between two programs on the same computer

Is it possible to get two separate programs to communicate on the same computer (one-way only) over UDP through localhost/127... by sharing the same port #? We're working on a student project in ...
10
votes
4answers
37k views

How to easy determine if a port is open on an Windows server?

I'm trying to install a site under an alternative port on a server, but the port may be closed by a firewall. Is there a way to ping out or in, on a specific port, to see if it is open?
9
votes
4answers
11k views

Alternatives For iOS Development Under Windows

I just got my new iPad and now I have two iOS devices, an iPod and an iPad. So I realized that iOS is a great OS to develop some stuff, but the problem is that I'm under Windows and I don't have any ...
8
votes
2answers
3k views

git remote add with other ssh port

in git, how I can add a remote origin when my host use a different ssh port? git remote add origin ssh://user@host/srv/git/example
8
votes
10answers
3k views

How to find an available port?

I want to start a server which listen to a port. I can specify port explicitly and it works. But I would like to find a port in an automatic way. In this respect I have two questions. In which range ...
8
votes
4answers
2k views

How do I convert my Git repository to Mercurial and bring along its tags

I am wanting to toy around with Mercurial a bit, so I am trying to convert one of my existing repositories over. I run the following command on my Mac: hg convert myrepos myrepos-hg The command ...
7
votes
3answers
951 views

How to get ip address and port number assigned by .net

I have 2 winforms, one acts as server (ie Winform:Server role) and another one as client (ie Winform: Client role). In my LAN setup, there are 6 PCs and these PCs connected to each other via a 8-port ...
7
votes
1answer
344 views

Porting a 100 Activities app to Fragments without dying

I have developed a huge app for a bank. This app gives the user the ability to perform a big bunch of operations through the phone (national & international transfers, securities, stock market ...
7
votes
3answers
3k views

Ruby - See if a port is open

I need a quick way to find out if a given port is open with Ruby. I currently am fiddling around with this: require 'socket' def is_port_open?(ip, port) begin TCPSocket.new(ip, port) rescue ...
6
votes
0answers
233 views

SVG Converting using ImageMagick doesn't apply a translation correctly

I am on a Mac using Mac OS X 10.5, and I am trying to use ImageMagick to convert an SVG file to a PNG. The problem is when I use it the rotated image doesn't show up in the correct position. ...
6
votes
3answers
185 views

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?
6
votes
4answers
3k views

How the localhost port number of .NET Development Server set?

I see that time to time localhost port number changes (http://localhost:1519/ ....). Basically how does it being set or chosen? And when does it change? Thanks!
6
votes
6answers
2k views

CherryPy Hello World error

When I am running CherryPy Hello World: import cherrypy class HelloWorld: def index(self): return "Hello world!" index.exposed = True cherrypy.config.update({'server.socket_port': ...
5
votes
0answers
214 views

TIdHTTP - session has expired message under Delphi XE

I am trying to port my code from Delphi 2007 to Delphi XE (no Update 1 yet). The problem which I have stumbled on is that under Delphi XE I am getting different response from server after sending ...
5
votes
2answers
362 views

When should I use std_logic_vector and when should I use other data types?

I'm new to VHDL and am having trouble figuring out which data types are appropriate to use where. If I understand correctly, for synthesis, all top level entity ports should be declared either ...
5
votes
1answer
748 views

How Fragments affect the Activity “single, focused thing that the user can do” principle?

As Android documentation states: "An activity is a single, focused thing that the user can do." However with Fragments we will be able to do many "things" within the same Activity as Reto Meier ...
5
votes
2answers
291 views

Swing to SWT conversion: which disadvantages?

We are considering to port our Swing applications to SWT/JFace to get a more native look and feel, more UI rendering speed and less bugs. Is there anybody who already has done such a port and wants ...
5
votes
1answer
2k views

Example code of libssh2 being used for port forwarding

I'm looking for an example of how to use libssh2 to setup ssh port forwarding. I've looked at the API, but there is very little in the way of documentation in the area of port forwarding. For ...
5
votes
5answers
16k views

check status of one port on remote host

I need a command line that can check the port status on a remote host. I tried ping xxx.xxx.xxx.xxx:161 but it doesn't recognize the "host". I thought it was a "good" answer until I did the same ...
5
votes
1answer
1k views

Windows batch script to print error message if port in use

I'm trying to write a batch script that errors if port 1099 is already in use. Unfortunately I have to write it in a DOS batch script (I cannot install anything). I know that I can print the PID of ...
5
votes
4answers
1k views

What are the best ways to determine what port an application is using?

This is an adapted version of a question from someone in my office. She's trying to determine how to tell what ports MSDE is running on for an application we have in the field. Answers to that ...
4
votes
2answers
98 views

What exactly is Port Listening

Does "Listening" a port means a continuous polling to that port or a discrete polling or an interrupt driven process. What exactly is going on in "Listening to a Port"?
4
votes
2answers
155 views

What is the best way to port a C++ library to C#?

I have a (header only) C++ library that I am looking to port to C#. It is a wrapper of the win api which I have made for a certain purpose. I want to port it to C# because I want to develop it further ...
4
votes
1answer
188 views

Check if port is open in ANT

Is it possible to check whether a port is open using ANT tasks? I need to execute flexunit task, but before I start this task I need to check if another flexunit task is not running and blocking the ...
4
votes
3answers
198 views

Finding tcp ports used by application

Alright, so I'm extending my company's flexlm vendor daemon to be a little bit more revealing to client applications. I need to be able to find out what port lmgrd is listening on before clients ...
4
votes
2answers
223 views

Reading COM (Serial Modem) in PHP

Reading COM (Serial Modem) in PHP I'd need a COM interface (Windows,COM2) to read with PHP. This Demo is going on. Reading is a problem, it's running sometimes. Is there an other way (no dio,no ...
4
votes
3answers
555 views

Listening to serial port on Delphi 7

I am trying to write a program which will listen to the serial input from Arduino board connected via usb, and sending output to serial port (COM4). But I don't know how to get input from serial port ...
4
votes
2answers
346 views

Script to find services & websites listening to port

I have some some websites and services installed on the machine. They are assigned the port numbers. Now each time i would like to install the new server i have to check the ports and see if the ...
4
votes
2answers
302 views

How can I tell if I sent a UDP packet to an open port?

I am making a C program in which I need to check for opened UDP ports on the destination computer. Because UDP is connectionless, I can't check the return value of connect() like I can with TCP. ...
4
votes
1answer
3k views

adb forward remote port to local machine

This is a query regarding the usage of adb on android. Is there a way to forward the remote port i.e. port on the android device/emulator to the local machine to which the device is connected? $ adb ...
4
votes
6answers
2k views

How can I use a 3G internet connection in my Android App?

I have made an App that can connect to a program that I am running on a server, but it only seems to work with WiFi. When I try to use 3G it doesn't make the connection. Is there something special ...
4
votes
5answers
459 views

Does porting count as derivative work?

If I were to port a GPL'ed library to a different language: Would it count as a derivate work and would I have to release my port with the same GPL? If the answer to the above question is yes, who ...
4
votes
2answers
2k views

can't install lxml (python 2.6.3, osx 10.6 snow leopard)

I try to: easy_install lxml and I get this error: File "build/bdist.macosx-10.3-fat/egg/setuptools/command/build_ext.py", line 85, in get_ext_filename KeyError: 'etree' any hints?
4
votes
3answers
4k views

Programatically create a web site in IIS using C# and set port number

We have been able to create a web site. We did this using the information in this link: http://msdn.microsoft.com/en-us/library/ms525598.aspx However, we would like to use a port number other that ...
4
votes
3answers
147 views

Do I need to register ports as “in-use” with ICANN?

The application I'm currently working on requires three ports to be opened. At the moment these are 5024 through 5026 but on reading around I discovered that these lie in the ICANN registered range ...
4
votes
4answers
640 views

Call C++ code from a C# application or port it?

I've recently been wrestling with an algorithm which was badly implemented (i.e. the developer was pulled off onto another project and failed to adequately document what he'd done) in C#. I've found ...
4
votes
4answers
1k views

Port GNU C++ programs to Visual C++

How do you port C++ programs with makefile made from GNU C++ in Linux to Visual C++?
4
votes
5answers
2k views

Client firewall blocks all ports but 80 and 443, need away to forward requets on port 443 to SSH or HTTPS

I am currently working at a client were they have locked down the network, except for ports 80 and 443. I need to connect to our server using SSH, but the same server also runs our website. We do not ...
4
votes
7answers
12k views

Which port we can use to run IIS other than 80?

IIS does not work when I start applications like Skype etc since they also uses the port 80. Which port can I use to run IIS other than 80? (8080 does not work)
4
votes
5answers
3k views

Technical Hurdles for Win32 rsync port

Despite primarily being a windows user, I am a huge fan of rsync. Now, I don't want to argue the virtues of rsync vs any other tool...this is not my point. The only way I've ever found of running ...
3
votes
1answer
148 views

Create firewall rule to open port per application programmatically in c#

I need to open specific port for my application. I have tried using INetFwAuthorizedApplication rule per application for all ports. fwMgr.LocalPolicy.CurrentProfile.AuthorizedApplications.Add(app) ...
3
votes
1answer
41 views

SQL Server 2008 R2 and Port 61303

I am running a database server and I was getting the infamous error 40 when trying to reach the server database from my client. I couldn't fix it until I opened the inbound port 61303 on the server. ...
3
votes
1answer
38 views

Obtaining standard port for arbitrary protocols in PHP

I'm looking for a function that will accept a string representing the scheme portion of a URL (e.g., "http", "https", "ftp", etc.) and return the standard port. It might be used like this: echo ...

1 2 3 4 5 16