You are viewing a plain text version of this content. The canonical link for it is here.
Posted to c-dev@axis.apache.org by Parthipan <lp...@gmail.com> on 2006/07/28 10:17:20 UTC

Re: Perl extension current status

This is a minor typo. But could it be fixed?

send_recieve should be send_receive

Thanks
~parthi


On 7/28/06, chanaka Wijesena <ch...@gmail.com> wrote:
> Hi all
>
>
> I have almost completed the perl extension for Axis2C. But there are few
> more thing to be done.
>
> They are
>
> 1.   It will send strings yet. I must do it for XML  in/out model
>
> 2.   Documentation must be written
>
>
>
> Here is a sample in perl...
>
>
>
> #!/usr/bin/perl
>
>
>
> use WS;
>
>
>
> $svc_client = SvcClient->new();
>
>
>
> %options = (
>
>             "to" =>
> "http://localhost:9090/axis2/services/echo",
>
>             "action" =>
> "http://ws.apache.org/axis2/c/samples/echoString",
>
>            );
>
>
>
> $svc_client->set_options(\%options);
>
>
>
> $svc_client->engage("addressing", "vx");
>
>
>
> $content = "<ns1:echoString
> xmlns:ns1=\"http://ws.apache.org/axis2/c/samples\"><text>echo5</text></ns1:echoString>";
>
>
>
> $response = $svc_client->send_recieve($content);
>
>
>
> print "$response\n"
>
>
>
>
>
>             We can see the response as "content". But this is a string. I
> will do it for XML in/out model. Rest of the things have been compled.
>
>   Best Rgs
> Chanaka
>


-- 
http://www.linux.lk/~lparth/

---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


Re: Perl extension current status

Posted by Parthipan <lp...@gmail.com>.
I

On 7/30/06, chanaka Wijesena <ch...@gmail.com> wrote:
>
> ohh I have made a mistake...
> I'll correct it as soon as possible
>

thanks.

> I think there will be more mistakes. Shall I send all the files before the
> submission or ...
> U will see the mistakes that i have made and couldn't see them yet..
>

Zero mistakes is not the objective at all. However, public interfaces
better be correct and stable. Or else a spell fix such as this can be
costly to the user depending on the stage it happens.

> Best Rgs
> Eran
>
> On 7/28/06, Parthipan <lp...@gmail.com> wrote:
> >
> This is a minor typo. But could it be fixed?
>
> send_recieve should be send_receive
>
> Thanks
> ~parthi
>
>
> On 7/28/06, chanaka Wijesena <ch...@gmail.com> wrote:
> > Hi all
> >
> >
> > I have almost completed the perl extension for Axis2C. But there are few
> > more thing to be done.
> >
> > They are
> >
> > 1.   It will send strings yet. I must do it for XML  in/out model
> >
> > 2.   Documentation must be written
> >
> >
> >
> > Here is a sample in perl...
> >
> >
> >
> > #!/usr/bin/perl
> >
> >
> >
> > use WS;
> >
> >
> >
> > $svc_client = SvcClient->new();
> >
> >
> >
> > %options = (
> >
> >             "to" =>
> > "http://localhost:9090/axis2/services/echo",
> >
> >             "action" =>
> > " http://ws.apache.org/axis2/c/samples/echoString",
> >
> >            );
> >
> >
> >
> > $svc_client->set_options(\%options);
> >
> >
> >
> > $svc_client->engage("addressing", "vx");
> >
> >
> >
> > $content = "<ns1:echoString
> >
> xmlns:ns1=\"http://ws.apache.org/axis2/c/samples\"><text>echo5</text></ns1:echoString>";
> >
> >
> >
> > $response = $svc_client->send_recieve($content);
> >
> >
> >
> > print "$response\n"
> >
> >
> >
> >
> >
> >             We can see the response as "content". But this is a string. I
> > will do it for XML in/out model. Rest of the things have been compled.
> >
> >   Best Rgs
> > Chanaka
> >
>
>
> --
> http://www.linux.lk/~lparth/
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail:
> axis-c-user-unsubscribe@ws.apache.org
> For additional commands, e-mail: axis-c-user-help@ws.apache.org
>
>
>


-- 
http://www.linux.lk/~lparth/

---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-user-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-user-help@ws.apache.org


Re: Perl extension current status

Posted by chanaka Wijesena <ch...@gmail.com>.
ohh I have made a mistake...
I'll correct it as soon as possible

I think there will be more mistakes. Shall I send all the files before the
submission or ...
U will see the mistakes that i have made and couldn't see them yet..

Best Rgs
Eran

On 7/28/06, Parthipan <lp...@gmail.com> wrote:
>
> This is a minor typo. But could it be fixed?
>
> send_recieve should be send_receive
>
> Thanks
> ~parthi
>
>
> On 7/28/06, chanaka Wijesena <ch...@gmail.com> wrote:
> > Hi all
> >
> >
> > I have almost completed the perl extension for Axis2C. But there are few
> > more thing to be done.
> >
> > They are
> >
> > 1.   It will send strings yet. I must do it for XML  in/out model
> >
> > 2.   Documentation must be written
> >
> >
> >
> > Here is a sample in perl...
> >
> >
> >
> > #!/usr/bin/perl
> >
> >
> >
> > use WS;
> >
> >
> >
> > $svc_client = SvcClient->new();
> >
> >
> >
> > %options = (
> >
> >             "to" =>
> > "http://localhost:9090/axis2/services/echo",
> >
> >             "action" =>
> > "http://ws.apache.org/axis2/c/samples/echoString",
> >
> >            );
> >
> >
> >
> > $svc_client->set_options(\%options);
> >
> >
> >
> > $svc_client->engage("addressing", "vx");
> >
> >
> >
> > $content = "<ns1:echoString
> > xmlns:ns1=\"http://ws.apache.org/axis2/c/samples\
> "><text>echo5</text></ns1:echoString>";
> >
> >
> >
> > $response = $svc_client->send_recieve($content);
> >
> >
> >
> > print "$response\n"
> >
> >
> >
> >
> >
> >             We can see the response as "content". But this is a string.
> I
> > will do it for XML in/out model. Rest of the things have been compled.
> >
> >   Best Rgs
> > Chanaka
> >
>
>
> --
> http://www.linux.lk/~lparth/
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: axis-c-user-unsubscribe@ws.apache.org
> For additional commands, e-mail: axis-c-user-help@ws.apache.org
>
>