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 SkipVought 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: awolff01
  • Order by date
  1. awolff01

    Passing NT user/password to webserver for authentication.

    Hello, I have a VBA module which goes out to a website and queries for data. The website requires username and password; I currently hard code the username and password of the person using it (Which happens to be the same as when they log into the machine). The problem is that every 3 months...
  2. awolff01

    weeks in year calculation???

    Thanks for this detailed post. The script seems to be working. I am curious..if my start week is 29 then I need to have 29 if/then entries to convert the negative weeks into positive weeks right? Thats a pain but it does the trick...if I can overcome this I will post back. Thanks again. Alex-
  3. awolff01

    How to Get Calendar Week from Date.

    I need to determine what week of the year it is. For example..01/01/2004 is in week 1 01/31/2004 is in week 5. Does'nt look like Javascript has a pre-built function for this? Anybody know how to accomplish this? I was thinking perhaps determinining what day of the year it is (1-365) and...
  4. awolff01

    programmatically executing "OnClick" for a button.

    Hello, I have a button on my page...Based on what parameters are passed to the URL query string I would like to simulate a user clicking on that button to trigger another event. How can I do this programmtically? Tia Alex-
  5. awolff01

    Using location.search object.

    Hello, I would like to determine the query string of the current window. I was looking at some example in the Rhino book that used the following syntax: var qs = location.search.substring(1); alert(qs); When I use the above syntax in my script I do not see anything. But my url has alot of...
  6. awolff01

    Dealing with Interactive Unix Scripts.

    Hello, I need to web enable some unix scripts so our users can run them via a web page. All the scripts are written in ksh or sh and may invoke other unix scripts. (I do not want to rewrite all these scripts). What I am thinking of doing is writing a perl script (using CGI.pm) which will...
  7. awolff01

    Is it possible to release CPU while in javascript loop?

    Hello, I am wondering if there is a function that releases the CPU to do other stuff while my javascript program is executing within a loop? I guess what I am looking for is something similar to the "DoEvents" function in Visual Basic which releases the CPU to take care of other queued...
  8. awolff01

    How to parse XML in Javascript

    Hello, In javascript what objects, methods and functions exist for parsing XML formatted data as returned by an Htpp request? ANybody recommend a good book that shows some detail? Thank You. Alex-
  9. awolff01

    Parser.pm error

    I am getting the following error any help would be appreciated: "not well-formed at line 1, column 14, byte 14 at /opt/perl/lib/site_perl/5.6.1/PA-RISC1.1-thread-multi/XML/Parser.pm line 168. Looked at line 168 but nothing is apparent to me that is wrong. Anybody know what the error is...
  10. awolff01

    Specifying User and Password for HTTP::Request object.

    HTTP:Request::Common LWP::UserAgent XML::Simple. I am using the above modules to makes calls to a www server and parsing the return xml data. But the web server requires authentication how do I specify the username and password when making the Http Request? Thank You.
  11. awolff01

    Help cant find javax.servlet.*

    I just installed tomcat and J2SDK 1.4.2. I tried running a simple Hello World servlet using the packages javax.servlet.* javax.servlet.http I its giving me compile errors. I searched my system and it looks like those packages are installed on my Linux machine. How do I get these basic...
  12. awolff01

    Run time error: Unsupported Major Minor Version.

    Got the following error: Java Lang UnsupportedCLassVersionError: Unsupported Major.minor version 16448.64 Anybody what this error is trying to tell me? Thanks in advance.
  13. awolff01

    Compile Error: Class HelloServlet is public, should be declared in....

    I am getting the following error: HelloAsw.java:5: class HelloServlet is public, should be declared in a file naa public class HelloServlet extends HttpServlet { This is my code: import java.io.*; import javax.servlet.*; import javax.servlet.http.*; public class HelloServlet extends...
  14. awolff01

    Parsing XML input streams.

    Hello Folks. I need to interface with an application that responds in XML formatted document. I am new to Java. I need to create code that can post or get an http request and then parse the return XML document. What classes do I need to import in order to accomplish this? Thanks in advance!
  15. awolff01

    Javascript and Server

    Using javascript is it possible to execute commands on the server? I think the answer is "No", does the answer change to "Yes" if I use server side javascript? We are on HP-UX, Iplanet Enterprise. Thanks.
  16. awolff01

    configuring php and mysql

    Linux
  17. awolff01

    configuring php and mysql

    This is more of a configuration question than programming. PHP was pre-installed on my system with support for mysql. But I installed a new version of mysql (into a different directory, etc). What do I need to do to get php to work with the new version of mysql rather then the old? Please...
  18. awolff01

    On boot: filesystem with errors

    Hi Folks, My system was working fine..but now all of sudden whenever I reboot I get the following errors: Checking filesystems fsck 1.34 /dev/hda2 contains a filesystem with errors, check forced inode 1234455 has illegal blocks /dev/hda2: unexpected inconsistency fsck.ext2 /dev/hda2 failed...
  19. awolff01

    What's the best software archive?

    Hi, Looking for a good software archive for business apps (shopping carts, T&E apps, etc) written in perl? Stuff that is mostly GNU. Any help would be appreciated. Alex-
  20. awolff01

    Is this a valid crontab entry?

    Would this be a valid crontab entry? 05 00 * * * perl /var/log/myscript.pl argument1 specifically I want to know if this script would be executed as written or do I need a shell script with the command "perl /var.log/myscript.pl argument1" and then have my crontab entry point only...

Part and Inventory Search

Back
Top