SOAP XML via https

2007-02-02 Thread Chris O
Hey gurus! It's been a while since I've posted here. My latest task involves downloading faxes from myfax.com. I have a working PHP example (attached) that retrieves an XML list of inbound faxes and I need to convert this to Perl but I don't know where to start. Can someone recommend what

SOAP XML via https

2007-02-02 Thread Chris O
Hey gurus! It's been a while since I've posted here. My latest task involves downloading faxes from myfax.com. I have a working PHP example (attached) that retrieves an XML list of inbound faxes and I need to convert this to Perl but I don't know where to start. Can someone recommend what

RE: SOAP XML via https

2007-02-02 Thread Tobias Hoellrich
Chris - go ahead and install SOAP::Lite ('ppm install SOAP::Lite'), then head over to http://www.soaplite.com/ and read, read, read ;-) Just looking at the PHP code, I think it shouldn't take more than an hour to recreate the PHP-code in Perl. Hope this helps Tobias -Original

Re: win32::ole can't call method select on an undefined value

2007-02-02 Thread jagdish eashwar
Hi, I don't know if this is of much help, but your code is working for me after I include the usual incantations for loading WIN32::OLE at the top. jagdish eashwar ___ Perl-Win32-Users mailing list Perl-Win32-Users@listserv.ActiveState.com To

Name of IF style

2007-02-02 Thread 田口 浩
Hello, The code below is in the Camel book, and I like this style. Anyone knows the name of this style or there is no such a name? if(/^abc/) { $abc = 1 } elsif (/^def/) { $def = 1 } elsif (/^xyz/) { $xyz = 1 } else { $nothing = 1 }