active questions tagged port - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T05:22:40Z http://stackoverflow.com/feeds/tag/port http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1675077/how-do-i-get-process-name-of-an-open-port-in-c 1 How do I get process name of an open port in C#? Abdul Khaliq 2009-11-04T16:41:19Z 2009-11-24T08:59:08Z <p>How do I get process name of an open port in C#?</p> http://stackoverflow.com/questions/1557594/cannot-log-in-to-server-after-ssh-port-change 0 Cannot log in to server after SSH port change [closed] zoopzoop 2009-10-13T00:03:43Z 2009-11-24T00:13:12Z <p>I followed step one of this guide to change the SSH port of my server: <a href="http://www.linux.com/archive/articles/61061" rel="nofollow">http://www.linux.com/archive/articles/61061</a></p> <p>Now, when I try to log in to it again by typing</p> <pre> ssh -p 1234 user@my-server </pre> <p>I get the message</p> <pre> Connection closed by xxx.xxx.xxx.xxx </pre> <p>xxx being the IP address of my server. Not using the -p option of using any other port results in the answer</p> <pre> ssh: connect to host my-server.com port xxx: Connection refused </pre> <p>How can I connect to it again? It's a Debian machine, in case that matters.</p> http://stackoverflow.com/questions/1769360/porting-code-from-linux-to-windows 0 Porting code from Linux to Windows Rayne 2009-11-20T09:34:51Z 2009-11-23T02:58:26Z <p>Hi all,</p> <p>I'm using Visual Studio .NET 2003, and I'm trying to port code I've written and compiled/run successfully in Linux GCC to Windows.</p> <p>I'm a newbie when using VS. I've created a new project, and added all the .c and .h files I have into the project by Project -> Add Existing Items, then chose all the .c and .h files.</p> <p>I'm not familiar with how exactly compilers and linkers etc work, but is there a difference between how VS and gcc compile/link #include files? My habit of programming in Linux has been to have one main.c file, and #include all other .h or .c files that I need. Then I would only compile the main.c file. But in VS, it seems as if the #include files are not "seen" by the program, because I'm getting errors that tell me certain structures or variables were not declared, even though they are in my user-defined header files.</p> <p>I'm also getting errors like DIR is an undeclared identifier. I've included , so why can't it recognize DIR?</p> <p>Thank you.</p> <p>Regards, Rayne</p> http://stackoverflow.com/questions/1760873/how-to-patch-j2se-so-java-datagram-getaddress-reports-senders-port 0 How to patch J2SE so Java Datagram.getAddress() reports sender's port trevbus 2009-11-19T04:28:32Z 2009-11-19T05:24:25Z <p>Sun's j2se implementation of the j2me Datagram appears to be a bit broken:</p> <p>javax.microedition.io.DatagramConnection dc = createDatagramConnection();</p> <p>javax.microedition.io.Datagram datagram = (javax.microedition.io.Datagram)datagramConnection.newDatagram( 1000 );</p> <p>datagram.reset(); datagram.setLength( 1000 ); datagramConnection.receive( datagram );</p> <p>datagram.getClass().toString().equals( "class com.sun.cldc.io.j2se.datagram.DatagramObject" );</p> <p>String fromString = datagram.getAddress();</p> <p>fromString.equals( "datagram://localhost:127.0.0.1" );</p> <p>I had expected "datagram://127.0.0.1:{PortNum}"</p> <p>The Datagram interface is sufficiently vague to allow the current behaviour. It was probably intentional because a client "typically" sends from a randomly assigned port and receives on the "well-known" port for whatever protocol. So there is "no need" to know what port the client sent from, maybe it would just lead to "confusion".</p> <p>However I would like my server know which port to send back to, esp when doing loopback, as the client and server cannot listen to the same port. My client sends and receives on the same UDP port. I would prefer to not have to hard-code and keep track of assigned ports.</p> <p>Here is Sun's source code.</p> <p><a href="http://read.pudn.com/downloads97/sourcecode/unix%5Flinux/399852/j2me%5Fcldc/api/src/com/sun/cldc/io/j2se/datagram/DatagramObject.java%5F%5F.htm" rel="nofollow">http://read.pudn.com/downloads97/sourcecode/unix%5Flinux/399852/j2me%5Fcldc/api/src/com/sun/cldc/io/j2se/datagram/DatagramObject.java%5F%5F.htm</a></p> <pre><code>public String getAddress() { InetAddress addr = dgram.getAddress(); if(addr == null) { return null; } else { return "datagram://" + addr.getHostName() + ":" + addr.getHostAddress(); } } </code></pre> <p>by contrast setAddress uses the expected format:</p> <pre><code>public void setAddress(String addr) throws IOException { if(!addr.startsWith("datagram://")) { throw new IllegalArgumentException("Invalid datagram address"+addr); } String address = addr.substring(11); try { host = Protocol.getAddress(address); port = Protocol.getPort(address); dgram.setAddress(InetAddress.getByName(host)); dgram.setPort(port); } catch(NumberFormatException x) { throw new IllegalArgumentException("Invalid datagram address"+addr); } catch(UnknownHostException x) { throw new IllegalArgumentException("Unknown host "+addr); } } </code></pre> <p>The result is that the procedure</p> <p>outgoingDatagram.setAddress( incomingDatagram.getAddress() );</p> <p>can't work.</p> <p>My question is, can I patch the j2se libraries so getAddress() reports the sending port?</p> http://stackoverflow.com/questions/1430141/port-80-is-being-used-by-system-pid-4-what-is-that 0 Port 80 is being used by SYSTEM (PID 4), what is that? GiH 2009-09-15T23:22:52Z 2009-11-19T03:42:35Z <p>I am trying to use port 80 for my application server, but when I perform "netstat -aon" I get</p> <p>TCP 0.0.0.0:80 0.0.0.0:0 LISTENING 4</p> <p>When I look up the process in task manager, it shows PID 4 is SYSTEM, thats it, not extension... nothing, just "SYSTEM". Whats going on here?</p> <p>I'm afraid to end this process, what do I do?</p> <p><hr /></p> <p><strong>UPDATE</strong>:</p> <p>I've solved this through a stackoverflow question. <a href="http://stackoverflow.com/questions/108387/apache-and-iis-side-by-side-both-listening-to-port-80-on-windows2003">Follow this link</a> to find the solution for how to get IIS to stop listening on port 80 for a specified IP address.</p> <p><hr /></p> http://stackoverflow.com/questions/1760701/c-discover-the-localendpoint-addressfamily-port-number 0 C# Discover the LocalEndPoint AddressFamily port number Matthew 2009-11-19T03:28:58Z 2009-11-19T03:36:33Z <p>When I establish a tcp connection to a server using the TcpClient class, is there any way to find out the source port of this connection? I am trying to implement the exec protocol and stderr port seems to always be source port + 1.</p> http://stackoverflow.com/questions/1757087/how-to-use-portmode-optimizedsinglereissuereceiver-in-an-interleave-microsoft-c 1 How to use PortMode.OptimizedSingleReissueReceiver in an Interleave? (Microsoft CCR) mdarsigny 2009-11-18T16:08:35Z 2009-11-18T16:08:35Z <p>Hi,</p> <p>I have read a post on the Microsoft CCR forum on reducing the overhead of calls to Port.Post() [ref.: <a href="http://social.msdn.microsoft.com/Forums/en-US/roboticsccr/thread/dff809b4-8e61-445d-96a1-80b2c87b7fc4/" rel="nofollow">PortElement Instantiation in the CCR</a>] and I was wondering if there is a similar way to bind a port to its receiver in order to use the port in OptimizedSingleReissueReceiver mode in an interleave arbiter?</p> <p>I have implemented the following code do use this PortMode on an Interleave:</p> <pre><code> // Creates the Receiver Receiver receiver = Arbiter.Receive(true, inputPort, inputPortHandler); // Change the port mode before binding the Receiver with the DispatcherQueue inputPort.Mode = PortMode.OptimizedSingleReissueReceiver; // Creates the Interleave ExclusiveReceiverGroup exclusiveReceiverGroup = new ExclusiveReceiverGroup(receiver); Interleave interleave = Arbiter.Interleave(new TeardownReceiverGroup(), exclusiveReceiverGroup, new ConcurrentReceiverGroup()); // Activate the Interleave Arbiter.Activate(dispatcherQueue, interleave); </code></pre> <p>At first, it seemed ok, however I still got NullReferenceException from time to time (this exception indicates that the port is not bound to a receiver yet).</p> <p>Does anyone know another way to use PortMode.OptimizedSingleReissueReceiver inside an Interleave?</p> http://stackoverflow.com/questions/1733965/cant-access-locally-hosted-project-via-the-internet 1 Can't access locally hosted project via the internet? Catfish 2009-11-14T11:11:27Z 2009-11-16T22:50:09Z <p>I'm currently developing a Java Servlet Project in Eclipse. The project is compiled via Tomcat 5.5 and hosted in <code>localhost:8080</code>(alternatively <code>127.0.0.1:8080</code> AND <code>192.168.1.10:8080</code> which also happens to be my local IP). The hosted project can be accessed on another computer via my Intranet(Local Network) at <code>192.168.1.10:8080</code>. It should be mentioned that my computer is behind a router, and, I've configured it to forward the port <code>18261</code> to <code>192.168.1.10:8080</code>. Yet, when I access the project via a web based proxy and enter: <code>{my IP Address}:18261</code> then, it gives a error message. </p> http://stackoverflow.com/questions/1741905/ado-local-ports 0 ADO local ports Keith Miller 2009-11-16T12:30:58Z 2009-11-16T12:30:58Z <p>We have an application that connects to a couple of hundred databases using ADO. Now I know that this may not be the best way of doing things (our customer base has expanded since the application was written) and we are re-writing the application to limit the number of connections. However in the meantime if I look at the ports used on the computer running this application I see that the local port being used for the connection is ranging from 2519 to 2726.</p> <p>I always thought that the local ports were up in the 32,768 range, not in the lower numbers. Using the low numbers is causing a conflict with some other server applications we are running.</p> <p>An example of the actual values I am seeing from out port monitor are:<br> Protocol: TCP<br> Local port: 2582<br> Local address: 10.1.1.103<br> Remote port: 1433<br> Remote Address: 10.1.1.108 </p> <p>So my questions are:</p> <p>Why is the low port number being used by ADO?<br> Is there any way to make it start at 32,768 or to stop it from using ports that are used by other servers?<br> We are also seeing a lot of connections to SQL in a Time Wait status. What determines when these are released?</p> <p>Many thanks, Keith</p> http://stackoverflow.com/questions/1739005/listen-to-a-port-that-is-in-use 0 Listen to a port that is in use [closed] ED 2009-11-15T22:02:25Z 2009-11-15T22:23:18Z <blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="http://stackoverflow.com/questions/1738155/get-connecting-ip-from-specified-ports-that-using-by-other-program">Get connecting IP from specified ports that using by other program.</a> </p> </blockquote> <p>If a port is used by a program, is there any way I can listen that port and get the connected IP on that port?</p> http://stackoverflow.com/questions/1731575/listenin-a-port-from-appplication-server 0 listenin a port from appplication server mbenturk 2009-11-13T20:06:48Z 2009-11-13T20:18:01Z <p>Hi all; First I have a JSF application that make some sort of searches from database, but on the other hand I have been listening port for this purpose also, I start a thread that listens that port in my application bean. From the port I listen for incoming request of these searches and send responses from this port. The situation is that my response time varies unexpectedly which I send/get from port, but from my web page my performance stay stable although they use same objects.</p> <p><em>My question is that can my web server obstruct my process which independently run from my web application ?</em></p> http://stackoverflow.com/questions/1439615/workaround-for-php-soap-request-failure-when-wsdl-defines-service-port-binding-as 0 Workaround for PHP SOAP request failure when wsdl defines service port binding as https and port 80? scooterhanson 2009-09-17T15:33:13Z 2009-11-09T01:33:01Z <p>I am consuming a SOAP web service using php5's soap extension. The service' wsdl was generated using Axis java2wsdl, and whatever options are used during generation result in the port binding url being listed as <strong>https</strong>://xxx.xxx.xxx.xxx**:80**</p> <p>If I download the wsdl to my server, remove the port 80 specification from the port binding location value, and reference the local file in my soapclient call it works fine.</p> <p>However, if I try to reference it remotely (or download it and reference it locally, as-is) the call fails with a soap fault.</p> <p>I have no input into the service side so I can't make them change their wsdl-generation process. So, unless there's a way to make the soapclient ignorant of the port, I'm stuck with using a locally modified copy of someone else' wsdl (which I'd rather not do).</p> <p>Any thoughts on how to make my soapclient ignore the port 80?</p> http://stackoverflow.com/questions/1694161/java-problem-unsatisfiedlinkerror 1 Java Problem "UnsatisfiedLinkError" Hans 2009-11-07T19:38:02Z 2009-11-07T21:30:19Z <p>I made a simple java program that sends bytes to the parallel port, which uses a .dll along with two other classes (pPort.java and ioPort.java) to accomplish it, and it works perfectly fine.</p> <p>However, I started making another program on NetBeans IDE which has a similar function. It compiles perfectly, but when I run it I get:</p> <pre><code>Exception in thread "AWT-EventQueue-0" java.lang.UnsatisfiedLinkError: parallelporttimer.ioPort.Out32(SS)V </code></pre> <p>From what I understand, it's failing to call the .dll file I put on System32. But I don't understand why, since the other program, which is basically the same but made manually without any IDE, runs fine. Do I have to specify something in NetBeans for this to work? Any help with this would be greatly appreciated.</p> http://stackoverflow.com/questions/1580750/example-code-of-libssh2-being-used-for-port-forwarding 0 Example code of libssh2 being used for port forwarding flxkid 2009-10-16T22:34:53Z 2009-11-04T14:27:36Z <p>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.</p> <p>For instance, using PuTTY plink, There is the remote port to listen on, but also the local port that traffic should be sent to. Is it the developers responsibility to do this part? Can an example be developed of this? Also, for the opposite, where a remote port is brought to a local port, do I use libssh2_channel_direct_tcpip_ex? What about an example of this? I really need to do this exact thing on a project right now. How hard would it be to develop a couple of samples of this? I'm willing to put up a bounty if need be to get a couple of working examples of this.</p> http://stackoverflow.com/questions/322510/moving-from-nusoap-to-php5-soap 3 Moving from NuSOAP to PHP5 SOAP Jørgen Emerslund 2008-11-26T23:20:43Z 2009-10-30T07:19:23Z <p>Hi,</p> <p>I have been working on a script with PHP4 that relies on NuSOAP. Now, I'm trying to move this to PHP5, and use the buildin support for SOAP there.</p> <pre><code>$wsdlPath = ""; // I have obviously set these variables to something meaningful, just hidden for the sake of security $apiPath = ""; $username = ""; $password = ""; // PHP5 style $client = new soapclient($wsdlPath, array('login'=&gt;username, 'password'=&gt; $password, 'soap_version'=&gt; SOAP_1_2, 'location'=&gt; $apiPath, 'trace'=&gt; 1)); // PHP4/NuSOAP style $client = new soapclient($wsdlPath, true); client-&gt;setEndpoint($apiPath); $client-&gt;setCredentials($username, $password); $client -&gt;loadWSD); </code></pre> <p>The PHP5-version throws the following exception stacktrace:</p> <pre><code>EXCEPTION=SoapFault exception: [WSDL] SOAP-ERROR: Parsing WSDL: Couldn't load from 'http://external-nbb.napi.norwegian.no.stage.osl.basefarm.net/api/napi1300?wsdl' in /home/eisebfog/public_html/database/norwegian.php:31 Stack trace: #0 /home/eisebfog/public_html/database/norwegian.php(31): SoapClient-&gt;SoapClient('http://external...', Array) #1 /home/eisebfog/public_html/database/index.php(53): require_once('/home/eisebfog/...') #2 {main} </code></pre> <p>Now, as the NuSOAP version does work, and the pure PHP5 doesn't - it doesn't take a brain surgeon to figure out I'm doing something wrong. I have access to the .htaccess file, and through phpinfo() I have made sure that I'm running NuSOAP properly and running PHP5 when I should, and PHP4/Nusoap when I should.</p> <p>Basically, I'm not very good with web services and soap - but if anyone has any ideas, i'd appreciate any input on what I'm doing wrong and how I can move to the native soap in PHP5. Btw, the reson I want this move in the first place is the assumed resource savings in native soap. I'd appreciate any links to benchmarks between these two solutions too.</p> http://stackoverflow.com/questions/1646527/is-porting-to-the-mac-worth-it -1 Is porting to the mac worth it? [closed] Colen 2009-10-29T21:00:11Z 2009-10-30T00:03:14Z <p>Hello,</p> <p>We're considering having Codeweavers "wrap" our windows applications so that they run on the mac and linux. Obviously we'd need to balance the cost outlay with increased revenue, to make the project worthwhile. The question is, how much of an increase in revenue can we expect by adding mac support?</p> <p>Thus, my question is - if you're a developer who has added support for OS X to your windows application, whether through codeweavers or any other means, did it pay off? Approximately how much did your sales increase? Was the end result worth the extra time and energy?</p> <p><strong>Edit</strong>: At least one answer has suggested that we build the application "properly" for OS X using the cocoa libraries, etc. Unfortunately, doing so would be commercial suicide for us. It would take us at least 6-12 months to do so, which would mean 6-12 months where we aren't innovating on the windows version, which is our bread and butter.</p> <p>I understand that mac users like to be picky about this sort of thing - but in this case, it's either a ported version of the application, or no application at all.</p> http://stackoverflow.com/questions/1630155/cloud-computing-usage-pattern-can-i-have-some-port-open-within-an-app-running-in 1 Cloud computing usage pattern. Can I have some port open within an app running in a cloud? Nikolay R 2009-10-27T11:20:56Z 2009-10-27T11:25:43Z <p>Hi!</p> <p>I'm developing a small web service which will partially rely on SMTP and FTP servers. I'm interested is it possible for me to create an app that will run within a cloud and still have some port open? I know I can forward request to a cloud after a request to port is made but is it possible to be handled by cloud from the beginning?</p> http://stackoverflow.com/questions/1620264/fms-port-problem 0 Fms port problem anat cohen 2009-10-25T07:34:01Z 2009-10-25T07:34:01Z <p>Hi, I have flash video player that is using fms server. when firewall is blocking port 1935(the default port) it takes about 30 second to the video to be played. i try to force port 80 by rtmp protocol and try to connect to rtmpt protocol and both failed. i checked the configuration file in fms and enabled port 80 and 1935 . The iis and fms are listenning both to port 80, and there is no conflict.</p> <p>i have no idea what else to check ? (maybe the syntax of forcing the port is wrong : rtmp://212.235.12.143/vod:80 or rtmp::80//212.235.12.143/vod or rtmp://212.235.12.143:80/vod?)</p> <p>thank in advance</p> http://stackoverflow.com/questions/1620230/fire-wall-fms-rtmpt-problem 1 fire wall fms rtmpt problem anat cohen 2009-10-25T07:10:58Z 2009-10-25T07:10:58Z <p>Hi, I have flash video player that is using fms server. when firewall is blocking port 1935(the default port) it takes about 30 second to the video to be played. i try to force port 80 by rtmp protocol and try to connect to rtmpt protocol and both failed. i checked the configuration file in fms and enabled port 80 and 1935 . The iis and fms are listenning both to port 80, and there is no conflict.</p> <p>i have no idea what else to check ? (maybe the syntax of forcing the port is wrong : rtmp://212.235.12.143/vod:80 or rtmp::80//212.235.12.143/vod or rtmp://212.235.12.143:80/vod?)</p> <p>thank in advance</p> http://stackoverflow.com/questions/1609127/c-serial-port-only-responding-once-using-write 1 C++ Serial Port Only Responding Once Using Write() Pfeffer 2009-10-22T18:30:42Z 2009-10-22T22:50:38Z <p>All the code below works. My device responds, C,7 is a reset. When I run this the second time it doesn't respond. If I manually turn my device off and on, then run this script again it works. But not if I press the button to run the script the second time.</p> <p>RS232: 57600,8,N,1</p> <p>Any ideas?? Is there any more information needed to solve this?</p> <p>*Also when I get this working I'm going to have to use the read() function to get the devices responses. Does anyone know the correct format I need to use, based on the below code? Sorry I'm new to C++...I'm more of a PHP guy.</p> <p>*I also don't know if 1024 is right, but it seems to work so eh...</p> <p>Thanks so much!</p> <pre><code>#include &lt;termios.h&gt; int fd; struct termios options; fd=open("/dev/tty.KeySerial1", O_RDWR | O_NOCTTY | O_NDELAY); fcntl(fd, F_SETFL, 0); tcgetattr(fd,&amp;options); options.c_ispeed=57600; options.c_ospeed=57600; options.c_cflag |= (CLOCAL | CREAD); options.c_lflag &amp;= ~(ICANON | ECHO | ECHOE | ISIG); options.c_cflag &amp;= ~CSTOPB; options.c_lflag &amp;= ~ECHO; options.c_oflag &amp;= ~ECHO; options.c_oflag &amp;= ~OPOST; options.c_cflag |= CS8; options.c_cflag |= CRTSCTS; options.c_cc[VMIN] = 0; options.c_cc[VTIME] =10; tcflush(fd, TCIFLUSH); tcsetattr(fd,TCSANOW,&amp;options); write(fd, "C,7\r\n", 1024); close(fd); </code></pre> http://stackoverflow.com/questions/1596401/c-serial-port-question 0 C++ Serial Port Question Pfeffer 2009-10-20T18:14:36Z 2009-10-21T20:59:12Z <p><strong>Problem</strong>: I have a hand held device that scans those graphic color barcodes on all packaging. There is a track device that I can use that will slide the device automatically. This track device functions by taking ascii code through a serial port. I need to get this thing to work in FileMaker on a Mac. So no terminal programs, etc...</p> <p><strong>What I've got so far</strong>: I bought a Keyspan USB/Serial adapter. Using a program called ZTerm I was successful in sending commands to the device. Example: "C,7^M^J"</p> <p>I was also able to do the same thing in Terminal using this command: screen /dev/tty.KeySerial1 57600 and then type in the same command above(but when I typed in I just hit Control-M and Control-J for the carriage return and line feed)</p> <p>Now I'm writing a plug-in for FileMaker(in C++ of course). I want to get what I did above happen in C++ so when I install that plug-in in FileMaker I can just call one of those functions and have the whole process take place right there.</p> <p>I'm able to connect to the device, but I can't talk to it. It is not responding to anything.</p> <p>I've tried connecting to the device(successfully) using these:</p> <pre><code>FILE *comport; if ((comport = fopen("/dev/tty.KeySerial1", "w")) == NULL){...} </code></pre> <p>and</p> <pre><code>int fd; fd = open("/dev/tty.KeySerial1", O_RDWR | O_NOCTTY | O_NDELAY); </code></pre> <p>This is what I've tried so far in way of talking to the device:</p> <pre><code>fputs ("C,7^M^J",comport); </code></pre> <p><em>or</em></p> <pre><code>fprintf(comport,"C,7^M^J"); </code></pre> <p><em>or</em></p> <pre><code>char buffer[] = { 'C' , ',' , '7' , '^' , 'M' , '^' , 'J' }; fwrite (buffer , 1 , sizeof(buffer) , comport ); </code></pre> <p><em>or</em></p> <pre><code>fwrite('C,7^M^J', 1, 1, comport); </code></pre> <p><strong>Questions</strong>: When I connected to the device from Terminal and using ZTerm, I was able to set my baud rate of 57600. I think that may be why it isn't responding here. But I don't know how to do it here.... Does any one know how to do that? I tried this, but it didn't work:</p> <pre><code>comport-&gt;BaudRate = 57600; </code></pre> <p>There are a lot of class solutions out there but they all call these include files like termios.h and stdio.h. I don't have these and, for whatever reason, I can't find them to download. I've downloaded a few examples but there are like 20 files in them and they're all calling other files I can't find(like the ones listed above). Do I need to find these and if so where? I just don't know enough about C++ Is there a website where I can download libraries??</p> <p>Another solution might be to put those terminal commands in C++. Is there a way to do that?</p> <p>So this has been driving me crazy. I'm not a C++ guy, I only know basic programming concepts. Is anyone out there a C++ expert? I ideally I'd like this to just work using functions I already have, like those fwrite, fputs stuff. Thanks!</p> http://stackoverflow.com/questions/1512530/cant-install-lxml-python-2-6-3-osx-10-6-snow-leopard 2 can't install lxml (python 2.6.3, osx 10.6 snow leopard) jbastos 2009-10-03T01:33:26Z 2009-10-19T22:14:39Z <p>I try to: </p> <blockquote> <p>easy_install lxml</p> </blockquote> <p>and I get this error:</p> <blockquote> <p>File "build/bdist.macosx-10.3-fat/egg/setuptools/command/build_ext.py", line 85, in get_ext_filename KeyError: 'etree'</p> </blockquote> <p>any hints?</p> http://stackoverflow.com/questions/1576970/how-the-localhost-port-number-of-net-development-server-set 4 How the localhost port number of .NET Development Server set? pencilcake 2009-10-16T09:02:37Z 2009-10-16T09:07:13Z <p>Guys,</p> <p>I see that time to time localhost port number changes (<a href="http://localhost:1519/" rel="nofollow">http://localhost:1519/</a> ....).</p> <p>Basically how does it being set or chosen? And when does it change?</p> <p>Thanks!</p> http://stackoverflow.com/questions/1030995/how-to-develope-a-virtual-com-port-c 0 How to develope a Virtual com port c++ baash05 2009-06-23T06:51:33Z 2009-10-13T10:00:04Z <p>I have been told to develop a virtual com port so an app the company has can read off com "comCompanyNameV1".. I tried to pick apart com0com, but it seem so incomplete I'm finding I have to kludge around large parts of it and I have yet to get anything to come close to compiling. Mostly because the tools that are outlined to use to build aren't available anymore. </p> <p>Can anyone point me in a direction to allow me to create a virtual com port that? I really don't want to have to spend a month trying to figure out how to do it from scratch. </p> <p>Oh.. if some knows how to get it done in languages other than c++ I'm good with that too. </p> <p><hr /></p> <p>I forgot to mention. The actual hardware might be attached to com1 but I still have to have the app read on the custom named com. It's a third party app and we've got no idea why they picked a strange named com, but they did. </p> http://stackoverflow.com/questions/1120453/how-do-i-abort-ccr-threads-tasks 1 How do I abort CCR threads\tasks? SpaceghostAli 2009-07-13T16:13:30Z 2009-10-06T14:32:21Z <p>I want to implement a timeout on the execution of tasks in a project that uses the CCR. Basically when I post an item to a Port or enqueue a Task to a DispatcherQueue I want to be able to abort the task or the thread that its running on if it takes longer than some configured time. How can I do this?</p> http://stackoverflow.com/questions/1517658/how-do-i-make-localhost3000-available-world-wide-with-my-ip-adress 1 How do I make localhost:3000 available world-wide with my IP adress? Gabriel Bianconi 2009-10-04T23:07:34Z 2009-10-05T03:34:24Z <p>Hello.</p> <p>I have a Ruby on Rails application running on localhost:3000. I would like to make it available world-wide, using x.x.x.x:3000 (my IP address).</p> <p>I'm on Windows XP SP3.</p> <p>Thank you.</p> http://stackoverflow.com/questions/1516972/udp-socket-port-allocation-failure 0 UDP socket port allocation failure dev sunday 2009-10-04T17:48:46Z 2009-10-04T21:40:11Z <p>Hi</p> <p>I am creating a winsock UDP program. code i am using is shown below.</p> <p>I am always getting port assignment error.</p> <p>I am not able to understand why port always allocated is zero. If some can help me with this....</p> <pre><code>void UDPecho(const char *, const char *); void errexit(const char *, ...); #define LINELEN 128 #define WSVERS MAKEWORD(2, 0) void main(int argc, char *argv[]) { char *host = "localhost"; char *service = "echo"; WSADATA wsadata; switch (argc) { case 1: host = "localhost"; break; case 3: service = argv[2]; /* FALL THROUGH */ case 2: host = argv[1]; break; default: fprintf(stderr, "usage: UDPecho [host [port]]\n"); exit(1); } if (WSAStartup(WSVERS, &amp;wsadata)) errexit("WSAStartup failed\n"); UDPecho(host, service); WSACleanup(); exit(0); } void UDPecho(const char *host, const char *service) { char buf[LINELEN+1]; SOCKET s; int nchars; struct hostent *phe; struct servent *pse; struct protoent *ppe; struct sockaddr_in sin, my_sin; int type, status, client_port, size; char *transport = "udp"; memset(&amp;sin, 0, sizeof(sin)); sin.sin_family = AF_INET; /* Map service name to port number */ if ( pse = getservbyname(service, transport) ) sin.sin_port = pse-&gt;s_port; else if ( (sin.sin_port = htons((u_short)atoi(service)))== 0) errexit("can't get \"%s\" service entry\n", service); /* Map host name to IP address, allowing for dotted decimal */ if ( phe = gethostbyname(host) ) memcpy(&amp;sin.sin_addr, phe-&gt;h_addr, phe-&gt;h_length); else if ( (sin.sin_addr.s_addr = inet_addr(host)) == INADDR_NONE) errexit("can't get \"%s\" host entry\n", host); printf("Our target server is at address %s\n", inet_ntoa(sin.sin_addr)); printf("The size of an FD set is %d\n", sizeof(FD_SET)); /* Map protocol name to protocol number */ if ( (ppe = getprotobyname(transport)) == 0) errexit("can't get \"%s\" protocol entry\n", transport); /* Use protocol to choose a socket type */ if (strcmp(transport, "udp") == 0) type = SOCK_DGRAM; else type = SOCK_STREAM; /* Allocate a socket */ s = socket(PF_INET, type, ppe-&gt;p_proto); if (s == INVALID_SOCKET) errexit("can't create socket: %d\n", GetLastError()); size = sizeof(sin); memset(&amp;my_sin, 0, sizeof(sin)); getsockname (s, (struct sockaddr *) &amp;my_sin, &amp;size); client_port = ntohs(my_sin.sin_port); if (client_port != 0) printf ("We are using port %2d\n", client_port); else { printf("No port assigned yet\n"); } } void errexit(const char *format, ...) { va_list args; va_start(args, format); vfprintf(stderr, format, args); va_end(args); WSACleanup(); exit(1); } </code></pre> http://stackoverflow.com/questions/1494026/wcf-port-routing 0 WCF port routing C james 2009-09-29T17:51:29Z 2009-09-30T03:37:06Z <p>I have NAT which received incoming WCF requests and changes port number before it hands off to the host however, this is causing problem is there anyway to turn this off or fix?</p> <p>ex) wcf.service.com:80 -> NAT -> wcf.service.2522 !error</p> <p>Thank you.</p> http://stackoverflow.com/questions/653838/sending-data-through-com-port-in-windows-mobile-compact-framework 0 Sending data through Com port in windows mobile (compact framework) 2009-03-17T11:30:49Z 2009-09-27T22:00:01Z <p>I need to have a virtual com port created so that when the device(windows mobile) usb port is connected to Tracking box serial port has the lead put into it a com port is added to the device. I want to sends the data via the com port using gprs to a specified address and port number that we set in the tracking box</p> http://stackoverflow.com/questions/846948/dynamic-port 0 Dynamic port mani-vee 2009-05-11T06:30:02Z 2009-09-26T12:54:06Z <p>Doesn’t the dynamic ports keep changing? If yes, wont these ports change and communication stop? Please advice.</p>