<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Dimuthu's Blog &#187; wsf/perl</title>
	<atom:link href="http://www.dimuthu.org/catagory/wso2/wsfperl/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dimuthu.org</link>
	<description>Waiting for your comments</description>
	<lastBuildDate>Wed, 21 Dec 2011 05:39:28 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<image>
  <link>http://www.dimuthu.org</link>
  <url>http://www.dimuthu.org/favicon.ico</url>
  <title>Dimuthu's Blog</title>
</image>
		<item>
		<title>Perl XML Parsers And My Story</title>
		<link>http://www.dimuthu.org/blog/2008/07/28/perl-xml-parsers-and-my-story/</link>
		<comments>http://www.dimuthu.org/blog/2008/07/28/perl-xml-parsers-and-my-story/#comments</comments>
		<pubDate>Mon, 28 Jul 2008 16:50:27 +0000</pubDate>
		<dc:creator>dimuthu</dc:creator>
				<category><![CDATA[personal]]></category>
		<category><![CDATA[web services]]></category>
		<category><![CDATA[wsf/perl]]></category>
		<category><![CDATA[cgi]]></category>
		<category><![CDATA[libxml]]></category>
		<category><![CDATA[namespace]]></category>
		<category><![CDATA[perl]]></category>
		<category><![CDATA[twig]]></category>
		<category><![CDATA[xml]]></category>
		<category><![CDATA[xmlxpath]]></category>
		<category><![CDATA[xpath]]></category>

		<guid isPermaLink="false">http://www.dimuthu.org/?p=61</guid>
		<description><![CDATA[Last week I had an opportunity to write some CGI scripts in Perl. It is like going few years back in web development. And it gave me the answer why PHP become favorite over Perl among the web developers. It is not just PHP&#8217;s C-like friendly syntax, but also the ability to write inline script [...]]]></description>
			<content:encoded><![CDATA[<p>Last week I had an opportunity to write some CGI scripts in Perl. It is like going few years back in web development. And it gave me the answer why PHP become favorite over Perl among the web developers. It is not just PHP&#8217;s C-like friendly syntax, but also the ability to write inline script in html may have been a big factor.</p>
<p>In there we came across parsing following type of XML.</p>
<pre><span style="font-weight: bold; color: black;">&lt;ns1:person</span>
       xmlns:ns1=<span style="color: #ff0000;">"http://dimuthu.org/example/perl_xml/xsd"</span><span style="font-weight: bold; color: black;">&gt;</span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;ns1:name<span style="font-weight: bold; color: black;">&gt;</span></span></span>PQR XYZ<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;/ns1:name<span style="font-weight: bold; color: black;">&gt;</span></span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;ns1:age<span style="font-weight: bold; color: black;">&gt;</span></span></span>25<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;/ns1:age<span style="font-weight: bold; color: black;">&gt;</span></span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;/ns1:person<span style="font-weight: bold; color: black;">&gt;</span></span></span></pre>
<p>We started to use <a href="http://search.cpan.org/~mirod/XML-Twig-3.32/">XML::Twig</a>. And it is pretty straightforward. Here was our code.</p>
<pre><span style="font-weight: bold; color: #000000;">use</span> XML::<span style="color: #006600;">Twig</span>;

<span style="color: #b1b100;">my</span> <span style="color: #0000ff;">$xml_str</span> = &lt;&lt;E;
<span style="font-weight: bold; color: black;">&lt;ns1:person</span>
    xmlns:ns1=<span style="color: #ff0000;">"http://dimuthu.org/example/perl_xml/xsd"</span><span style="font-weight: bold; color: black;">&gt;</span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;ns1:name<span style="font-weight: bold; color: black;">&gt;</span></span></span>PQR XYZ<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;/ns1:name<span style="font-weight: bold; color: black;">&gt;</span></span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;ns1:age<span style="font-weight: bold; color: black;">&gt;</span></span></span>25<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;/ns1:age<span style="font-weight: bold; color: black;">&gt;</span></span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;/ns1:person<span style="font-weight: bold; color: black;">&gt;</span></span></span>
E

<span style="color: #b1b100;">my</span> <span style="color: #0000ff;">$xt</span> = XML::<span style="color: #006600;">Twig</span>-&gt;<span style="color: #006600;">new</span><span style="color: #66cc66;">(</span><span style="color: #66cc66;">)</span>;

<span style="color: #0000ff;">$xt</span>-&gt;<span style="color: #006600;">parse</span><span style="color: #66cc66;">(</span><span style="color: #0000ff;">$xml_str</span><span style="color: #66cc66;">)</span>;

<span style="color: #b1b100;">my</span> <span style="color: #0000ff;">$txt</span> = <span style="color: #0000ff;">$xt</span>-&gt;<span style="color: #006600;">root</span>-&gt;<span style="color: #006600;">findvalue</span><span style="color: #66cc66;">(</span>"//ns1:name"<span style="color: #66cc66;">)</span>;
<a href="http://perldoc.perl.org/functions/print.html"><span style="color: #000066;">print</span></a> <span style="color: #0000ff;">$txt</span>;</pre>
<p>OK. It was working.</p>
<p>Anyway in practice we found that this is not the only way we receive the xml. That is the namespace prefix can be different. When you write an XML to an XML schema you are free to have your own prefixes for the namespaces. And in fact in practice different people, programs and vendors uses different prefixes.</p>
<p>So our program should be able to parse following XML too. (see the namespace prefix is changed)</p>
<pre><span style="font-weight: bold; color: black;">&lt;ns0:person</span>
    xmlns:ns0=<span style="color: #ff0000;">"http://dimuthu.org/example/perl_xml/xsd"</span><span style="font-weight: bold; color: black;">&gt;</span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span></span><span style="font-weight: bold; color: black;">ns0</span><span style="color: #009900;"><span style="font-weight: bold; color: black;">:name<span style="font-weight: bold; color: black;">&gt;</span></span></span>PQR XYZ<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;/</span></span><span style="font-weight: bold; color: black;">ns0</span><span style="color: #009900;"><span style="font-weight: bold; color: black;">:name<span style="font-weight: bold; color: black;">&gt;</span></span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span></span><span style="font-weight: bold; color: black;">ns0</span><span style="color: #009900;"><span style="font-weight: bold; color: black;">:age<span style="font-weight: bold; color: black;">&gt;</span></span></span>25<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;/</span></span><span style="font-weight: bold; color: black;">ns0</span><span style="color: #009900;"><span style="font-weight: bold; color: black;">:age<span style="font-weight: bold; color: black;">&gt;</span></span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;/</span></span><span style="font-weight: bold; color: black;">ns0</span><span style="color: #009900;"><span style="font-weight: bold; color: black;">:person<span style="font-weight: bold; color: black;">&gt;</span></span></span></pre>
<p>And with the default namespace.</p>
<pre><span style="font-weight: bold; color: black;">&lt;person</span> xmlns=<span style="color: #ff0000;">"http://dimuthu.org/example/perl_xml/xsd"</span><span style="font-weight: bold; color: black;">&gt;</span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span></span><span style="color: #009900;"><span style="font-weight: bold; color: black;">name<span style="font-weight: bold; color: black;">&gt;</span></span></span>PQR XYZ<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;/</span></span><span style="color: #009900;"><span style="font-weight: bold; color: black;">name<span style="font-weight: bold; color: black;">&gt;</span></span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span></span><span style="color: #009900;"><span style="font-weight: bold; color: black;">age<span style="font-weight: bold; color: black;">&gt;</span></span></span>25<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;/</span></span><span style="color: #009900;"><span style="font-weight: bold; color: black;">age<span style="font-weight: bold; color: black;">&gt;</span></span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;/</span></span><span style="color: #009900;"><span style="font-weight: bold; color: black;">person<span style="font-weight: bold; color: black;">&gt;</span></span></span></pre>
<p>Both these occasions our code failed. And normally whenever there is an API to parse XPath, you can register namespaces. But XML::Twit there was no something like that. That made us to jump to use <a href="http://search.cpan.org/~pajas/XML-LibXML-1.66/">XML::LibXML</a>. It is apparently little complicated than the simple Twig API. But it did work. (Look later for the code using XML::LibXML)</p>
<p>The story is actually there is a way to register namespaces in Twit, in fact it is not in  XML::Twit, it is in the XML::Twit:XPath module which is hardly any documented. It just duplicate the Twit API adding some functionalities to deal with namespaces. Apparently not the most elegant way of designing an API. Anyway Here is the code that works written using XML::Twit:XPath.</p>
<pre><span style="font-weight: bold; color: #000000;">use</span> XML::<span style="color: #006600;">Twig</span>;
<span style="font-weight: bold; color: #000000;">use</span> XML::<span style="color: #006600;">Twig</span>::<span style="color: #006600;">XPath</span>;

<span style="color: #b1b100;">my</span> <span style="color: #0000ff;">$xml_str</span> = &lt;&lt;E;

<span style="font-weight: bold; color: black;">&lt;person</span> xmlns=<span style="color: #ff0000;">"http://dimuthu.org/example/perl_xml/xsd"</span><span style="font-weight: bold; color: black;">&gt;</span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span></span><span style="color: #009900;"><span style="font-weight: bold; color: black;">name<span style="font-weight: bold; color: black;">&gt;</span></span></span>PQR XYZ<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;/</span></span><span style="color: #009900;"><span style="font-weight: bold; color: black;">name<span style="font-weight: bold; color: black;">&gt;</span></span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span></span><span style="color: #009900;"><span style="font-weight: bold; color: black;">age<span style="font-weight: bold; color: black;">&gt;</span></span></span>25<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;/</span></span><span style="color: #009900;"><span style="font-weight: bold; color: black;">age<span style="font-weight: bold; color: black;">&gt;</span></span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;/</span></span><span style="color: #009900;"><span style="font-weight: bold; color: black;">person<span style="font-weight: bold; color: black;">&gt;</span></span></span>

E

<span style="color: #b1b100;">my</span> <span style="color: #0000ff;">$xtp</span> = XML::<span style="color: #006600;">Twig</span>::<span style="color: #006600;">XPath</span>-&gt;<span style="color: #006600;">new</span><span style="color: #66cc66;">(</span><span style="color: #66cc66;">)</span>;
<span style="color: #0000ff;">$xtp</span>-&gt;<span style="color: #006600;">parse</span><span style="color: #66cc66;">(</span><span style="color: #0000ff;">$xml_str</span><span style="color: #66cc66;">)</span>;

<span style="color: #0000ff;">$xtp</span>-&gt;<span style="color: #006600;">set_namespace</span><span style="color: #66cc66;">(</span>'ns',
       'http://dimuthu.org/example/perl_xml/xsd'<span style="color: #66cc66;">)</span>;

<span style="color: #b1b100;">my</span> <span style="color: #0000ff;">$txt</span> = <span style="color: #0000ff;">$xtp</span>-&gt;<span style="color: #006600;">root</span>-&gt;<span style="color: #006600;">findvalue</span><span style="color: #66cc66;">(</span>'//ns:name'<span style="color: #66cc66;">)</span>;
<a href="http://perldoc.perl.org/functions/print.html"><span style="color: #000066;">print</span></a> <span style="color: #0000ff;">$txt</span>;</pre>
<p>Note that I have register the namespace to the prefix &#8216;ns&#8217;, so in xpath quires I can use this prefix to refer namespaces.</p>
<p>Anyway Perl is not bad, it has dozens of modules to do the same thing. So just for the reference I will note down it here,</p>
<p>Using <a href="http://search.cpan.org/~msergeant/XML-XPath-1.13/XPath.pm">XML:XPath</a>,</p>
<pre><span style="font-weight: bold; color: #000000;">use</span> XML::<span style="color: #006600;">XPath</span>;
<span style="color: #b1b100;">my</span> <span style="color: #0000ff;">$xml_str</span> = &lt;&lt;E;

<span style="font-weight: bold; color: black;">&lt;person</span> xmlns=<span style="color: #ff0000;">"http://dimuthu.org/example/perl_xml/xsd"</span><span style="font-weight: bold; color: black;">&gt;</span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span></span><span style="color: #009900;"><span style="font-weight: bold; color: black;">name<span style="font-weight: bold; color: black;">&gt;</span></span></span>PQR XYZ<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;/</span></span><span style="color: #009900;"><span style="font-weight: bold; color: black;">name<span style="font-weight: bold; color: black;">&gt;</span></span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span></span><span style="color: #009900;"><span style="font-weight: bold; color: black;">age<span style="font-weight: bold; color: black;">&gt;</span></span></span>25<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;/</span></span><span style="color: #009900;"><span style="font-weight: bold; color: black;">age<span style="font-weight: bold; color: black;">&gt;</span></span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;/</span></span><span style="color: #009900;"><span style="font-weight: bold; color: black;">person<span style="font-weight: bold; color: black;">&gt;</span></span></span>

E

<span style="color: #b1b100;">my</span> <span style="color: #0000ff;">$xp</span> = XML::<span style="color: #006600;">XPath</span>-&gt;<span style="color: #006600;">new</span><span style="color: #66cc66;">(</span>xml =&gt; <span style="color: #0000ff;">$xml_str</span><span style="color: #66cc66;">)</span>;

<span style="color: #0000ff;">$xp</span>-&gt;<span style="color: #006600;">set_namespace</span><span style="color: #66cc66;">(</span>'ns',
       'http://dimuthu.org/example/perl_xml/xsd<span style="color: #66cc66;">')</span>;
<span style="color: #b1b100;">my</span> <span style="color: #0000ff;">$txt</span> = <span style="color: #0000ff;">$xp</span>-&gt;<span style="color: #006600;">findvalue</span><span style="color: #66cc66;">('</span>//ns:name'<span style="color: #66cc66;">)</span>; <span style="font-style: italic; color: #808080;"># get name </span>

<a href="http://perldoc.perl.org/functions/print.html"><span style="color: #000066;">print</span></a> <span style="color: #0000ff;">$txt</span>;</pre>
<p>Then Using <a href="http://search.cpan.org/~pajas/XML-LibXML-1.66/LibXML.pod">XML::LibXML</a>;</p>
<pre><span style="font-weight: bold; color: #000000;">use</span> XML::<span style="color: #006600;">LibXML</span>;

<span style="color: #b1b100;">my</span> <span style="color: #0000ff;">$xml_str</span> = &lt;&lt;E;

<span style="font-weight: bold; color: black;">&lt;person</span> xmlns=<span style="color: #ff0000;">"http://dimuthu.org/example/perl_xml/xsd"</span><span style="font-weight: bold; color: black;">&gt;</span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span></span><span style="color: #009900;"><span style="font-weight: bold; color: black;">name<span style="font-weight: bold; color: black;">&gt;</span></span></span>PQR XYZ<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;/</span></span><span style="color: #009900;"><span style="font-weight: bold; color: black;">name<span style="font-weight: bold; color: black;">&gt;</span></span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span></span><span style="color: #009900;"><span style="font-weight: bold; color: black;">age<span style="font-weight: bold; color: black;">&gt;</span></span></span>25<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;/</span></span><span style="color: #009900;"><span style="font-weight: bold; color: black;">age<span style="font-weight: bold; color: black;">&gt;</span></span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;/</span></span><span style="color: #009900;"><span style="font-weight: bold; color: black;">person<span style="font-weight: bold; color: black;">&gt;</span></span></span>

E

<span style="color: #b1b100;">my</span> <span style="color: #0000ff;">$xl</span>= XML::<span style="color: #006600;">LibXML</span>-&gt;<span style="color: #006600;">new</span><span style="color: #66cc66;">(</span><span style="color: #66cc66;">)</span>;

<span style="color: #0000ff;">$xml</span> = <span style="color: #0000ff;">$xl</span>-&gt;<span style="color: #006600;">parse_string</span><span style="color: #66cc66;">(</span><span style="color: #0000ff;">$xml_str</span><span style="color: #66cc66;">)</span>;

<span style="color: #b1b100;">my</span> <span style="color: #0000ff;">$xpc</span> = XML::<span style="color: #006600;">LibXML</span>::<span style="color: #006600;">XPathContext</span>-&gt;<span style="color: #006600;">new</span><span style="color: #66cc66;">(</span><span style="color: #0000ff;">$xml</span><span style="color: #66cc66;">)</span>;

<span style="color: #0000ff;">$xpc</span>-&gt;<span style="color: #006600;">registerNs</span><span style="color: #66cc66;">(</span>'ns',
        'http://dimuthu.org/example/perl_xml/xsd<span style="color: #66cc66;">')</span>;
<span style="color: #b1b100;">my</span> <span style="color: #0000ff;">$txt</span> = <span style="color: #0000ff;">$xpc</span>-&gt;<span style="color: #006600;">findvalue</span><span style="color: #66cc66;">(</span>'//ns:name'<span style="color: #66cc66;">)</span>; <span style="font-style: italic; color: #808080;"># get name </span>

<a href="http://perldoc.perl.org/functions/print.html"><span style="color: #000066;">print</span></a> <span style="color: #0000ff;">$txt</span>;</pre>
<p>So it is all for this post, And one reason I didn&#8217;t tell you earlier and so obvious why PHP is popular over Perl. Look at<a href="http://php.net/simplexml"> http://php.net/dom</a> or <a href="http://php.net/simplexml">http://php.net/simplexml.</a> It has a great documentation for every function to the every needle. Whenever Perl, Ruby thinking of going pass PHP, they have to consider this aspect too more seriously.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dimuthu.org/blog/2008/07/28/perl-xml-parsers-and-my-story/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing wsf/perl in Ubuntu</title>
		<link>http://www.dimuthu.org/blog/2008/07/19/installing-wsfperl-in-ubuntu/</link>
		<comments>http://www.dimuthu.org/blog/2008/07/19/installing-wsfperl-in-ubuntu/#comments</comments>
		<pubDate>Sat, 19 Jul 2008 15:18:51 +0000</pubDate>
		<dc:creator>dimuthu</dc:creator>
				<category><![CDATA[web services]]></category>
		<category><![CDATA[wsf/perl]]></category>
		<category><![CDATA[wso2]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[perl]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[wsf]]></category>

		<guid isPermaLink="false">http://www.dimuthu.org/?p=6</guid>
		<description><![CDATA[Today I got to install wso2 wsf/perl in my Ubuntu 8.04 OS. It was really straight forward.  Just follow the following steps and you are ready to do real web services in perl. Download wsf/perl 1.1 from cpan web site. http://search.cpan.org/CPAN/authors/id/C/CH/CHINTANA/WSO2-WSF-Perl-1.1.tar.gz Download wsf/c 1.3.0 from the oxygen tank. http://dist.wso2.org/products/wsf/c/1.3.0/wso2-wsf-c-src-1.3.0.tar.gz First extract the wsf/c packtar xvzf [...]]]></description>
			<content:encoded><![CDATA[<p>Today I got to install wso2 wsf/perl in my Ubuntu 8.04 OS. It was really straight forward.  Just follow the following steps and you are ready to do real web services in perl.</p>
<ol>
<li> Download wsf/perl 1.1 from cpan web site. <a title="Cpan WSF/Perl download site" href="http://search.cpan.org/CPAN/authors/id/C/CH/CHINTANA/WSO2-WSF-Perl-1.1.tar.gz">http://search.cpan.org/CPAN/authors/id/C/CH/CHINTANA/WSO2-WSF-Perl-1.1.tar.gz</a></li>
<li> Download wsf/c 1.3.0 from the oxygen tank. <a title="wsf/c download site" href="http://dist.wso2.org/products/wsf/c/1.3.0/wso2-wsf-c-src-1.3.0.tar.gz">http://dist.wso2.org/products/wsf/c/1.3.0/wso2-wsf-c-src-1.3.0.tar.gz</a></li>
<li> First extract the wsf/c pack<em>tar xvzf <a title="wsf/c download site" href="http://dist.wso2.org/products/wsf/c/1.3.0/wso2-wsf-c-src-1.3.0.tar.gz">wso2-wsf-c-src-1.3.0.tar.gz</a></em></li>
<li> Compile and install the wsf/c to a preferred directory (say /tmp/wsfc).<em>./configure &#8211;prefix=&#8217;/tmp/wsfc&#8217;</em><em>make</em><em>make install </em>(you may need super user privileges depending on where you select to install the package)</li>
<li> Install the following packages from apt respositories.perl, libperl-dev, liberror-perlYou can use the following command to install them<em>sudo apt-get install perl</em><em>sudo apt-get install libperl-dev</em>
<p><em>sudo apt-get install liberror-perl</em></li>
<li> Now extract the WSO2-WSF-Perl-1.1.tar.gz<em>tar xvzf WSO2-WSF-Perl-1.1.tar.gz</em></li>
<li> Set the WSFC_HOME environment variable to where you install wsf/c. (in our example it is /tmp/wsfc)export WSFC_HOME=/tmp/wsfc (Remember you have to do this every time you open a new shell, or else put this line in the ~/.bashrc file)</li>
<li> Inside the WSO2-WSF-Perl-1.1 directory run<em>perl Makefile.PL</em>Note: This may sometime complains about missiling libraries (actually for -laxis2_minizip, -laxis2_libxml2, -lhtpwcb). Anyway this will not be a problem for your installation.</li>
<li> Now the last step of your installation.<em>make</em><em>sudo make install </em>(Here you need to have super user priviledges)</li>
<li> Just go to the samples directory and run the echo_client.pl (You need to have a wsf/php server running to response these wsf/perl calls). Make sure it gives the expexted output.</li>
</ol>
<p>Currently WSF/Perl have only the web services client libraries. But it is rich with features like WS-Security, WS-Reliable Messaging, MTOM and many more.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dimuthu.org/blog/2008/07/19/installing-wsfperl-in-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

