There's an example of how to implement a "Hello, World!" web service here.#!/usr/bin/perl use strict; use warnings; use XML::Parser::LiteCopy; my $p1 = XML::Parser::LiteCopy->new(); $p1->setHandlers( Char => sub { shift; print "@_\n" }, ); $p1->parse('<foo id="me">Hello</foo>');
In reply to Re: Hello word in Webservice
by Khen1950fx
in thread Hello word in Webservice
by Anonymous Monk
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |