RE: :SMTP

2004-04-15 Thread Solli Moreria Honorio
You can use single quotes : ‘[EMAIL PROTECTED]’, or you must use back slash with double quotes : “[EMAIL PROTECTED]”.   Remember, when you use double quotes Perl  try to translate variables, and @ means array for Perl.   Solli -Original Message- From: [EMAIL PROTECTED] [mailt

Re: request: SOAP::Lite parameter passing question.

2004-04-15 Thread Randy W. Sims
Please do not post messages below the signature (A line containing only two dashes followed by a single space). Many MUAs treat the signature special. For example mine draws the text in a light grey that is difficult to read, and when responding it strips out the signature. Thank you, Randy. __

request: SOAP::Lite parameter passing question.

2004-04-15 Thread Michael 'topdog' Thompson
-- hi, i'm working with the soap::lite. i've got to interface with a c# web service that requires one parameter, but i'm getting nothing back. my code looks like the following: use SOAP::Lite; my $soapResponse = SOAP::Lite -> service('http://1.2.

Re: searching a file for keywords

2004-04-15 Thread Andy_Bach
You might do better to make an altenation: $keywords = join("|", @keywords); if ( $wholefile =~ /^\s*($keywords)\s*$/mo ) { # do you want 'i' ? rather than the loop. Worth a benchmark, but one search for multiple matches is probably faster than multiple searches for some sized files. You als

Re: searching a file for keywords

2004-04-15 Thread michael higgins
Craig Cardimon wrote: I'm searching a text file for keywords. These keywords are stored in an array. First, I read the file into a scalar variable. Then, I search for each keyword, cycling through the array in an outer foreach loop: foreach $keyword (@keywords) The keywords should be in all caps a

Re: accessing a site with a password/frames...

2004-04-15 Thread Mike Jackson
most sites use cookies to trace logins. you'll need to save any cookies that the site sends, and return them to the server with each request. some sites use a challenge/response authentication which basically involves the site returning a 403 error, and then your agent re-requests, sending the use

searching a file for keywords

2004-04-15 Thread Martin Leese
Craig Cardimon <[EMAIL PROTECTED]> wrote: I'm searching a text file for keywords. These keywords are stored in an array. First, I read the file into a scalar variable. Then, I search for each keyword, cycling through the array in an outer foreach loop: foreach $keyword (@keywords) The keywords