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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: redsss
  • Order by date
  1. redsss

    how to log variables from POST method

    Is it possible to have apache log the variables passed via a form POST method?
  2. redsss

    how to send input into shell command?

    Well for a simple script echo doesn't seem to work (this is on Linux, which doesnt include expect) #!/bin/sh echo in: read INPUT echo out: read OUTPUT echo you entered $INPUT and $OUTPUT echo "2\n4\n" doesnt work. but printf "2\n4\n" works. But printf doesnt work for the executable I need it...
  3. redsss

    how to send input into shell command?

    There is a command that prompts 4 times for user input, and at each prompt, I hit enter. how can I automate that in a script?
  4. redsss

    Why use XP firewall?

    Simple question: If my XP box has the cable modem connected through a router, is there any advantage to enabling the XP firewall? I understand XP's firewall only protects against incoming attacks, which are already protected by the router's NAT, correct?
  5. redsss

    How to test webservice with "out" params

    I wonder what I'm doing wrong? To experiment, I created another simple web service in VSNET 1.1, and created a simple ConvertTemperature webservice (which is the simple walkthrough in the help file). The WSDL screen enabled me to test it from there, then I simple added an extra string...
  6. redsss

    How to test webservice with "out" params

    Its a string type. The WSDL works if the parameter is a byval, which can only be used to pass a value TO the webservice, but this method is used to get a value FROM the webservice, hence the param is an "out" param of type string.
  7. redsss

    How to test webservice with "out" params

    I have a webservice with a method that uses "out" parameters to return data to the client. When a client calls up the WSDL for the webservice and clicks on the method, it says "The test form is only available for methods with primitive types or arrays of primitive types as parameters." Is...
  8. redsss

    how to pass param to method by ref?

    I am calling a webservice that will return multiple integer values, so I assume the best way to do so is pass the variables by ref, right? So I define my variables, and call the webservice... int foo; ret = mywebservice.mymethod( ref foo); But I get a compilation error: "use of...
  9. redsss

    Can I store mouse event handlers inside css class?

    I am using table header cells to hold hyperlinks and am including mouse attributes etc like so: <th class="subitem" onMouseover="this.className='subhover'" onMouseout="this.className='subitem'"> The subitem class contains a lot of attributes like colors, etc. Is there a way to store...
  10. redsss

    how to inherit attributes in CSS class?

    works for me - thanks!
  11. redsss

    how to inherit attributes in CSS class?

    I want to change a DHTML button when the mouse rolls over by changing the class, like so: <div class="normalclass" onMouseover="this.className='hoverclass'" onMouseout="this.className='normalclass'" >Testing</div> So my normal class has several attributes like .normalclass {...
  12. redsss

    how do you get infected?

    On the Kim Kommando show, Kim said that latest statistics reveal that the average computer (without firewall & virus protection) gets infected within 5 minutes after being connected to the internet. My understanding is that if you don't execute unknown executables (like email attachment), that...
  13. redsss

    Microsoft and American jobs

    How full of it can he get? "The whole idea of the H1-B visa thing is, don't let too many smart people come into the country" Yeah right! I sincerely hope capital hill doesn't buy into that BS. But its amazing what you can do with deep pockets.
  14. redsss

    Microsoft and American jobs

    Looks like Brother Bill is still busy trying to put American IT workers out of work. http://www.cnn.com/2005/TECH/biztech/04/27/gates.immigrants.ap/index.html
  15. redsss

    how to use dataset in webservice?

    I need to write a C# webservice containing methods that accept or return numerous parameters, and have heard that the best way to pass the parameters is to use a dataset object, but have yet to find a simple example as such. I would very much appreciate if anyone could provide a real simple...
  16. redsss

    where to find libraries?

    I know absolutely nothing about python but I found a cool python script which is a Gmail notifier for KDE under linux (at http://gmail-notify.sourceforge.net ) I want to run this on my knoppix liveCD, which is unfortunately missing some of the import libraries. Specifically, these are...
  17. redsss

    what the &quot;on exit&quot; binding?

    Thanks for your help. I realize this is not a perl forum and I don't know TCL althought its not the only language that binds to Tk, but I think I figured out the way to do this in perl: $mw->protocol('WM_DELETE_WINDOW' => sub { cleanup(); exit;} ); Look good?
  18. redsss

    what the &quot;on exit&quot; binding?

    Is there not just a simple way to declare an "onExit" callback function, using the bind method on the mainWindow?
  19. redsss

    what the &quot;on exit&quot; binding?

    I'm learning perl/tk programming - what tk binding can I use to call a function that does cleanup before closing the app when clicking on the X in the upper right? I guess this would be the equivalent of the VB unload method.
  20. redsss

    How to tell if port number is blocked by firewall

    I have a cable modem and belkin 4 port router. I just want to check to see which ports are blocked in my company firewall (outgoing or incoming).

Part and Inventory Search

Back
Top