SOAP::Lite
by KEITA Alhassane Abdel other posts by this author
Dec 4 2005 7:15AM messages near this date
view in the new Beta List Site
RE: :LibXML::RelaxNG
|
Re: SOAP::Lite
& XSLT Hello.
I've installed mod_perl under my computer. It's turns under apache (Windows 2000 such as O
S) without problems.
I want to install a saop server, so I've downloaded SOAP::Lite. But, I try samples their k
eep in their docummentations, it doesn't work. This is a sample :
---------------------------------------------------------------------------------
Client named "hybie.pl"
---------------------------------------------------------------------------------
use SOAP::Lite;
print SOAP::Lite
-> uri('http://localhost/Demo')
-> proxy('http://localhost/soap/hibye.cgi')
-> hi()
-> result;
---------------------------------------------------------------------------------
Client named "hybie.cgi" located at http://localhost/soap
---------------------------------------------------------------------------------
use SOAP::Transport::HTTP;
SOAP::Transport::HTTP::CGI
-> dispatch_to('Demo')
-> handle;
package Demo;
sub hi {
return "hello, world";
}
sub bye {
return "goodbye, cruel world";
}
---------------------------------------------------------------------------------
Apache config related to soap/ into httpd.conf
---------------------------------------------------------------------------------
Alias /soap/ "D:/PROGRA~1/EASYPH~1/soap/"
<Location /soap>
SetHandler perl-script
PerlHandler Apache::SOAP
</Location>
---------------------------------
Appel audio GRATUIT partout dans le monde avec le nouveau Yahoo! Messenger
T�l�chargez le ici !
Attachments:
unknown1
unknown2
unknown3
unknown4
Thread:
KEITA Alhassane Abdel
Randy Kobes
|