Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by grahama1970

  1. grahama1970

    Dollar Sign Newbie Confusion

    In the function below, there is a dollar sign in front of a javascript property. Why is a dollar sign needed in this case? Excerpt from below function: elem.$oldDisplay=curDisplay; In this case, no Javascript libraries (like Prototype) are being accessed. many thanks as I am still a...
  2. grahama1970

    Javascript Newbie: form question

    if that is it, I'm stunned :) anything else ? many thanks g
  3. grahama1970

    Javascript Newbie: form question

    I am very new to ajax and javascript :) I hacked together this 'working' example to dynamically spit out a movie embed into a div. The problem is that I have no idea what the 'gotchas' are when employing Ajax related solutions. The Question: Is there any more javascript related error...
  4. grahama1970

    Can netcat capture the actual url string ?

    I am trying to use netcat to capture a url string sent to port 8181. ; http://127.0.0.1:8181?cmd=some_cmd ; how can I capture the actual url string sent above ? I am using this method so two different applications on the SAME localhost computer can communicate ; many thanks g ; nc -l -p 8181 -v...
  5. grahama1970

    Can netstat filter specific ports ?

    many thanks for your replies :) I am trying to get two desktop applications to communicate with one another. I am using a BACKGROUND app to extend the abilities of the FOREGROUND APP ; The problem: My FOREGROUND app can only communicate to the outside world by sending ftp/http requests. My...
  6. grahama1970

    Can netstat filter specific ports ?

    one more question is it possible to use get the actual url too ? My application is sending the http request: http://127.0.0.1:8181?cmd=some_cmd using Netstat and your 'find' command: netstat -np TCP |findstr "8181 8182 8183" TCP 127.0.0.1:4729 127.0.0.1:8181 SYN_SENT is it possible to get...
  7. grahama1970

    Can netstat filter specific ports ?

    many many thanks I am very new to command line windows stuff.... and, this is exactly what I needed good karma to you :) g
  8. grahama1970

    Can netstat filter specific ports ?

    I want to filter out everything but TCP port 8181 netstat -np TCP 8181 5 obviously, this gives an error. Is there a way to do this? Or, is there another Windows command line utility that can do filter for specific ports many thanks g
  9. grahama1970

    tiny localhost webserver for inter-app communication

    Is it possible to setup a small <60k localhost web server to run for inter-app communication on Windows ? 1)I want one app to be able to send something like : http://127.0.0.1:8181?cmd=quit 2) the locahost web server is listening on port 8181. 3)once it receives something on port 8181, it...

Part and Inventory Search

Back
Top