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 Mike Lewis 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: *

  1. plotzer

    Fetching images from a URL

    Paul, Totally forgot about using wget. That is exactly what I needed. Thanks
  2. 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...
  3. plotzer

    Jakarta Commons Net - FTPClient Assistance

    Ignore this message. I figured out what I was doing wrong. Thanks
  4. 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...
  5. plotzer

    LWP, HTTPS and cookies

    I've still been unable to solve the cookie thing using perl. I've been attempting to use the HTTP::Cookies::Netscape module to accomplish this but the site I am trying to access still does not recognize cookies as being enabled. I've included my code below to see if anyone has any clues what I...
  6. 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...
  7. plotzer

    http versus https

    sedj, That works great! My problem now is that the site I am trying to access requires a cookies enabled browser to retrieve the page I want. Instead I get a warning page asking to enable cookies in my browser. Do you know of the top of your head if it is possible to duplicate browser...
  8. plotzer

    http versus https

    sedj, Thank you.. I was able to make the connection, though I now have another problem and was wondering if you could give a little guidance. Like I said, I was able to connect, but I was not able to retrieve the content of the page. I dont know alot about secure http or ssl, so I was...
  9. 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...
  10. plotzer

    Sorting Multidimensional arrays

    Toolkit, Thanks. This works nicely
  11. 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...
  12. plotzer

    mozilla and frames problem

    The line that causes the error is as follows: parent.TOCFrame.location.href="toc.htm"; The jsp page that I load into the frame is on the same server, but it is in the tomcat root directory and not in the same directory as the frameset. Thanks
  13. 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...
  14. plotzer

    Graphics Card/Desktop Settings

    You're right. I was able to gain access to the terminal and set the res for my user account to 32bit color, but I was still only able to get 256 colors in the terminal. But this hasnt solved the root of my problem. I have a windows (vb) based application that creates static jpeg images. When...
  15. plotzer

    Graphics Card/Desktop Settings

    Actually I am accessing via terminal services, so that may be the problem. My screen resolution is 1280 x 1024 so I would expect greater than 256 colors. So I should be able to alter the color/resolution on the server itself by directly logging into the box and setting the resolution there...
  16. 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...
  17. 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...
  18. plotzer

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

    Yes, I have verified the user has access. What is strange is that I've also uncommented the php_dbase.dll in the php.ini and it is in the same folder and it loads with no problem. I was wondering if it had something to do with the associated files needed to run the oracle extension.
  19. 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...
  20. plotzer

    IFRAME and Javascript Variables

    I think I've found a 'simple' solution to my own problem: parent.variablename seems to work for me. Let me know if there is a more elegant way than this as I am a DHTML/HTML newbie

Part and Inventory Search

Back
Top