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 Chriss Miller 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: dphe
  • Content: Threads
  • Order by date
  1. dphe

    How to send a HTTP/1.0 request using LWP

    Hi, Wanted to send some HTTP/1.0 requests to a SAPI server for verification. When tried to use LWP module for the same, the request sent is an HTTP/1.1. Is there a way to send a request through LWP for HTTP/1.0 or will I have to use a different module? Thnkx.
  2. dphe

    Error running DBI module

    Hi, Can you please help me on this. Trying to run DBD::Sybase module. But then I get the following error while compiling the script: Can't locate loadable object for module DBI in @INC (@INC contains: ./libs /cm/tools/paks/perl-5.8.0/lib/perl5/5.8.0/i686-linux...
  3. dphe

    Using .pm file from the script directory.

    Have gotten really good responses from you guys.... thnkx. If I want to use a perl module for e.g., Parallel.pm from the scripting directory, but not from the default perl path, how will I go about it? :-)
  4. dphe

    Need help on getting html content from a webpage...

    I have been trying the following code.... #!bin/perl use IO::Socket; my $host = 'www.google.com'; my $port = 80; my $sock = new IO::Socket::INET( PeerAddr => $host, PeerPort => $port, Proto => 'tcp'); $sock or die "no socket :$!"; $H2 = "GET /index.html\r\n"; open(LOG1, "> web_resp.log")...
  5. dphe

    Problems in finding pattern.......

    Hi All, I have a pattern: "GET /channel_contents?channel_id=$chanid&app_id=$appid.$appversion&stic_id=43D469EC837A4804AB57FF3056947D04&ticket=&authenticator=&stic_ver=2.13.1.14 HTTP/1.0" 200 where in $chanid, $appid, $appversion etc are dynamic variables. Problem is that i'm not able to...

Part and Inventory Search

Back
Top