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 wOOdy-Soft 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: plotzer
  • Content: Threads
  • Order by date
  1. plotzer

    Fetching images from a URL

    There are some tif images on a http server on our intranet that I would like to automatically copy to my server at 15 minute intervals. I was wondering what the best way to do this in perl would be. I've looked at a number of modules that grab data from websites, but I keep thinking there must...
  2. plotzer

    Jakarta Commons Net - FTPClient Assistance

    I am building a little app to generate a PNG image and then ftp it to another webserver. I am using the jakarta commons Net FTPClient for the ftp portion. I am able to send the file to the server, but the image cannot display because it "contains errors". Somehow in the transfer process the...
  3. plotzer

    LWP, HTTPS and cookies

    Hello, I am trying to pull some info from a HTTPS website. I am using LWP with the Crypt-SSLeay module for https support. I am able to connect to the site, but I am returned a page saying my browser is not cookie enabled and the page I want is not accessible. Is it possible to access such...
  4. plotzer

    http versus https

    I am trying to scrape some info from a website by submitting a URL. I've had success with this code before, but I am now attempting to run the same code against url that uses the https protocal rather than http. I understand that this is some sort of secure protocal. So, I am getting the...
  5. plotzer

    Sorting Multidimensional arrays

    I've been attempting to find a way to sort a multidensional array. It is a two dimensional array containing distances and city names. For example: String idArray[][]; idArray = new String[3][2]; with the following values: 10,name1 30,name2 4,name3 I want to sort the entire array based on...
  6. plotzer

    mozilla and frames problem

    I have a frames based application that is comprised mainly of html and javascript. I do have a tool in the application that loads a jsp page into one of the frames with some query results. This works fine except when I want to reload one of the html pages (using javascript) into that frame...
  7. plotzer

    Graphics Card/Desktop Settings

    I am doing some development work on a windows 2000 server that was configured by our sys admins. Prior to this configuration I had the sever in my cube running windows xp professional. The server has a matrox millennium (g550?) graphics card. Prior to the windows 2000 install, I was able to...
  8. plotzer

    W2K Scheduler Problems

    I am attempting to launch a windows application on a a windows 2000 Server using the scheduler and am having some difficulty. After I have created the task, the application does not launch. When I check in the task manager I can see the application name so I assumed it has started, but it...
  9. plotzer

    Connecting to oracle 9i with php on XP (iis)?

    Trying to get the php oracle extension up and running on a windows xp box using the 9i client and ms IIS as the webserver. when I load the phpinfo() page I get the following error at the bottom. Not sure if this is a permisions thing or if php_oci8.dll is incompatible with the 9i oracle client...
  10. plotzer

    IFRAME and Javascript Variables

    I have a simple html page with an iframe in it. I would like the html page loaded in the iframe to have access to javascript variables in the main html page. SInce the main page is not frame, I am not sure how to do this. I am not sure what the syntax in the iframe page would be for accessing...
  11. plotzer

    Perl, DBI and CRON

    I know there is an easy solution to this but I am not sure how to designate the path to my DBI module library within a perl file so the perl script can be run under cron. When the script dows run in cron I get an error that the oracle dbi library cannot be located. I assume this is because the...
  12. plotzer

    hidden form objects

    I am in the process of devloping an browser application that relies on using hidden form objects to pass parameters. I was wondering if anyone had an idea on what would be the best way to dynamically change these hidden objects with a mouse click on a button prior to a form submit. I was...
  13. plotzer

    Bizarre Win 2000 Install Problems -

    I am having problems installing windows 2000 on a brand new PC. Actually the processor and motherboard is new. I took the hard drive (80 GB) and cdrom from another computer. Before installing I used a western digital utility to erase the entire disk. I would assume this would erase the boot...
  14. plotzer

    Java Sing Problems - JFrame constructor/class not found

    Not sure why this happened. I've made no change to my computer, yet today I am unable to compile the following code, when I was able to do it the day before. The code is a sample program I downloaded, compiled and ran the day before. For some reason JFrame is not understood. Not sure if this...
  15. plotzer

    NET:FTP delete method

    I am trying to delete some files from an ftp directory using the delete method. I've create a list array of all the files in the directory and I'm trying to loop through all files and delete them. FOr some reason I am unable to do this. I actually hard coded one of the filenames into the method...
  16. plotzer

    Windows and Frames and URLs

    I've built a frameset that contains two frames. One frame is a local frame and the second is a link to page on another, external website. I am trying to execute a javascript function on the local frame that will give me the title of the remote page. I am unable to do this however. The...
  17. plotzer

    NET::FTP

    I am trying to assign a listing of files within an ftp directory to an array. When I try this, all get for the array is the following: C:\twc\perl>perl ftp_t.pl ARRAY(0x1c5a4d8) My code is as follows: use Net::FTP; $ftp = Net::FTP->new("rousest1", Debug => 0)|| die "Could not...

Part and Inventory Search

Back
Top