Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

vend::soap::transport(3pm) [debian man page]

Vend::SOAP::Transport(3pm)				User Contributed Perl Documentation				Vend::SOAP::Transport(3pm)

NAME
SOAP::Transport::IO - Server side IO support for SOAP::Lite SYNOPSIS
use SOAP::Transport::IO; SOAP::Transport::IO::Server # you may specify as parameters for new(): # -> new( in => 'in_file_name' [, out => 'out_file_name'] ) # -> new( in => IN_HANDLE [, out => OUT_HANDLE] ) # -> new( in => *IN_HANDLE [, out => *OUT_HANDLE] ) # -> new( in => *IN_HANDLE [, out => *OUT_HANDLE] ) # -- OR -- # any combinations # -> new( in => *STDIN, out => 'out_file_name' ) # -> new( in => 'in_file_name', => *OUT_HANDLE ) # -- OR -- # use in() and/or out() methods # -> in( *STDIN ) -> out( *STDOUT ) # -- OR -- # use default (when nothing specified): # in => *STDIN, out => *STDOUT # don't forget, if you want to accept parameters from command line # *HANDLER will be understood literally, so this syntax won't work # and server will complain -> new(@ARGV) # specify path to My/Examples.pm here -> dispatch_to('/Your/Path/To/Deployed/Modules', 'Module::Name', 'Module::method') -> handle ; DESCRIPTION
COPYRIGHT
Copyright (C) 2000-2001 Paul Kulchenko. All rights reserved. This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. AUTHOR
Paul Kulchenko (paulclinger@yahoo.com) perl v5.14.2 2010-03-25 Vend::SOAP::Transport(3pm)

Check Out this Related Man Page

XMLRPC::Lite(3pm)					User Contributed Perl Documentation					 XMLRPC::Lite(3pm)

NAME
XMLRPC::Lite - client and server implementation of XML-RPC protocol SYNOPSIS
Client use XMLRPC::Lite; print XMLRPC::Lite -> proxy('http://betty.userland.com/RPC2') -> call('examples.getStateStruct', {state1 => 12, state2 => 28}) -> result; CGI server use XMLRPC::Transport::HTTP; my $server = XMLRPC::Transport::HTTP::CGI -> dispatch_to('methodName') -> handle ; Daemon server use XMLRPC::Transport::HTTP; my $daemon = XMLRPC::Transport::HTTP::Daemon -> new (LocalPort => 80) -> dispatch_to('methodName') ; print "Contact to XMLRPC server at ", $daemon->url, " "; $daemon->handle; DESCRIPTION
XMLRPC::Lite is a Perl modules which provides a simple nterface to the XML-RPC protocol both on client and server side. Based on SOAP::Lite module, it gives you access to all features and transports available in that module. See t/26-xmlrpc.t for client examples and examples/XMLRPC/* for server implementations. DEPENDENCIES
SOAP::Lite SEE ALSO
SOAP::Lite CREDITS
The XML-RPC standard is Copyright (c) 1998-2001, UserLand Software, Inc. See <http://www.xmlrpc.com> for more information about the XML- RPC specification. COPYRIGHT
Copyright (C) 2000-2001 Paul Kulchenko. All rights reserved. This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. AUTHOR
Paul Kulchenko (paulclinger@yahoo.com) perl v5.12.4 2011-08-18 XMLRPC::Lite(3pm)
Man Page

3 More Discussions You Might Find Interesting

1. Filesystems, Disks and Memory

I/O Error

Filesystem /u01 indicates I/O error when accessed. After doing some research I ran iostat -eE command with the following noticeable error: sd1 Soft Errors: 66 Hard Errors: 24 Transport Errors: 24 Vendor: FUJITSU Product: MAN3367M SUN36G Revision: 1502 Serial No: 00X59717 Size:... (3 Replies)
Discussion started by: BigSky
3 Replies

2. UNIX for Dummies Questions & Answers

STDIN and STDOUT

Hallo, i have a script like: if ;then echo "OK" else echo "ERROR $2 is missing" fi; if ;then touch $2 fi; if ;then cat $1 | grep xy > $2 (1 Reply)
Discussion started by: eightball
1 Replies

3. Shell Programming and Scripting

SOAP Client server program

Hi, I have taken the below code from Quick Start with SOAP - Perl.com and modified to my requirement.Server program runs without error.I have kept Demo.pm under /usr/local/apache2/cgi-bin directory.When I run the client program I am not getting any output.Whether the client program should be... (1 Reply)
Discussion started by: liyakathali
1 Replies