Net::UPnP::ActionResponse man page on Fedora

Man page or keyword search:  
man Server   31170 pages
apropos Keyword Search (all sections)
Output format
Fedora logo
[printable version]

Net::UPnP::ActionRespoUser3Contributed Perl DocumeNet::UPnP::ActionResponse(3)

NAME
       Net::UPnP::ActionResponse - Perl extension for UPnP.

SYNOPSIS
	   use Net::UPnP::ControlPoint;

	   my $obj = Net::UPnP::ControlPoint->new();

	   @dev_list = $obj->search(st =>'upnp:rootdevice', mx => 3);

	   $devNum= 0;
	   foreach $dev (@dev_list) {
	       $device_type = $dev->getdevicetype();
	       if  ($device_type ne 'urn:schemas-upnp-org:device:MediaServer:1') {
		   next;
	       }
	       print "[$devNum] : " . $dev->getfriendlyname() . "\n";
	       unless ($dev->getservicebyname('urn:schemas-upnp-org:service:ContentDirectory:1')) {
		   next;
	       }
	       $condir_service = $dev->getservicebyname('urn:schemas-upnp-org:service:ContentDirectory:1');
	       unless (defined(condir_service)) {
		   next;
	       }
	       %action_in_arg = (
		       'ObjectID' => 0,
		       'BrowseFlag' => 'BrowseDirectChildren',
		       'Filter' => '*',
		       'StartingIndex' => 0,
		       'RequestedCount' => 0,
		       'SortCriteria' => '',
		   );
	       $action_res = $condir_service->postcontrol('Browse', \%action_in_arg);
	       unless ($action_res->getstatuscode() == 200) {
		       next;
	       }
	       $actrion_out_arg = $action_res->getargumentlist();
	       unless ($actrion_out_arg->{'Result'}) {
		   next;
	       }
	       $result = $actrion_out_arg->{'Result'};
	       while ($result =~ m/<dc:title>(.*?)<\/dc:title>/sgi) {
		   print "\t$1\n";
	       }
	       $devNum++;
	   }

DESCRIPTION
       The package is used a object of the action response.

METHODS
       getstatuscode - get the status code.
	       $status_code = $actionres->getstatuscode();

	   Get the status code of the SOAP response.

       getargumentlist - get the argument list.
	       \%argument_list = $actionres->getargumentlist();

	   Get the argument list of the SOAP response.

AUTHOR
       Satoshi Konno skonno@cybergarage.org

       CyberGarage http://www.cybergarage.org

COPYRIGHT AND LICENSE
       Copyright (C) 2005 by Satoshi Konno

       It may be used, redistributed, and/or modified under the terms of BSD
       License.

perl v5.14.0			  2009-07-27	  Net::UPnP::ActionResponse(3)
[top]

List of man pages available for Fedora

Copyright (c) for man pages and the logo by the respective OS vendor.

For those who want to learn more, the polarhome community provides shell access and support.

[legal] [privacy] [GNU] [policy] [cookies] [netiquette] [sponsors] [FAQ]
Tweet
Polarhome, production since 1999.
Member of Polarhome portal.
Based on Fawad Halim's script.
....................................................................
Vote for polarhome
Free Shell Accounts :: the biggest list on the net