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 TouchToneTommy 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: defdefdef
  • Content: Threads
  • Order by date
  1. defdefdef

    equivavent of getstore function with LWP::Useragent

    Hi, I use the function getstore($url,$file) of LWP::Simple. is somebody know the equivalent function with LWP::UserAgent and HTTP::Request (because I need to identify myself and I can't do it with LWP::Simple) ? thanks,
  2. defdefdef

    LWP::simple and user agent

    Hi, I'm using LWP::Simple Is there a way to change the USER AGENT ? (what is the default user agent ?) thanks;
  3. defdefdef

    login/password with LWP::Simple

    Hi, I need to parse a XML file which is in a protected folder. Is it possible to include my login/password in LWP::Simple ??? Thanks,
  4. defdefdef

    Perl XML parser

    Hi, I'm parsing a XML file with XML::XPath. with a command like : $data = $row->find('/Names/Name')->string_value; But how can I extract this data - 559 - in <Category ID="559" : <CategoriesList> <Category ID="559" UNCATID="45111601" Searchable="0" > <ParentCategory ID="558">...
  5. defdefdef

    problem installing a module

    Hi, I'm trying to install a unicode module called unicode::map8 but I have a warning : WARNING : PREREQUISITE unicode::map8 0 not found What does this mean ? and how can i avoid this ? Thanks
  6. defdefdef

    Russian characters in Perl

    Hi, I would like to convert and display a text with russian characters (Cyrillic) in ISO latin characters. How can I do this in Perl ?? Thanks.
  7. defdefdef

    html parser

    Hi, I would like to extract informations from a html page. For all the IMG tags of the page => alt and scr informations. How can i do this ??? Thanks,
  8. defdefdef

    PERL: download and save an image

    Hi, How could I download images (with the url) and save the files on my harddrive. Is it possible with LWP and filehandles ??? Best Regards Defer
  9. defdefdef

    PERL : save JPEG images

    Hi, I have a database (mysql) table of this type : ------------------------------------------------ code ## product ## URL_of_the_product_image ------------------------------------------------ ex : 124544 ## pen ## www.asiteweb.com/popo.JPEG...
  10. defdefdef

    PERL XML to SQL : Problem with Special characters

    Hi, I'm extracting data from XML to a MySQL database with XML::Xpath (PERL). It works fine now (thanks again for your help) but I'm loosing special characters in the process. French character 'é' becomes a 'é' in the associated database field. Ex: XML -> 'Mon trésor' ===> MySQL -> 'Mon...
  11. defdefdef

    PERL XML::XPath

    Hi, I'm using a script to extract data from a node of an XML document with (PERL) XML::XPath with a loop : ...... foreach my $row ($xp->findnodes('/Ensemble/item/Attributes')) { # extract from the XML my $code = $row->find('code')->string_value; my $title =...

Part and Inventory Search

Back
Top