| Server IP : 93.86.61.54 / Your IP : 216.73.216.60 Web Server : Apache/2.4.62 (Ubuntu) System : Linux rasin.ddns.net 6.8.0-124-generic #124~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Tue May 26 21:05:19 UTC x86_64 User : www-data ( 33) PHP Version : 8.4.22 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /usr/share/doc/libnet-dbus-perl/examples/ |
Upload File : |
#/usr/bin/perl
use warnings;
use strict;
use Net::DBus;
use Carp qw(cluck carp confess);
#$SIG{__WARN__} = sub { cluck $_[0] };
#$SIG{__DIE__} = sub { confess "[". $_[0] ."]"};
my $bus = Net::DBus->session();
my $service = $bus->get_service("org.designfu.SampleService");
my $object = $service->get_object("/SomeObject");
my $list = $object->HelloWorld("Hello from example-client.pl!");
print "[", join(", ", map { "'$_'" } @{$list}), "]\n";
my $tuple = $object->GetTuple();
print "(", join(", ", map { "'$_'" } @{$tuple}), ")\n";
my $dict = $object->GetDict();
print "{", join(", ", map { "'$_': '" . $dict->{$_} . "'"} keys %{$dict}), "}\n";
if (1) {
$object->name("John Doe");
$object->salary(100000);
# Email is readonly, so we expect this to fail
eval {
$object->email('john.doe@example.com');
};
print $object->name, " ", $object->email, "\n";
}