Thread Fritzbox WLAN-Geräte auslesen via Soap
(1 answers)
Opened by Gustl at 2016-03-06 17:14
You have to ann an SOAP::Data like this:
Code (perl): (dl
)
1 2 3 4 for (my $i = 0; $i < $numberOfHosts; $i++ ) { my $host = $s->GetGenericAssociatedDeviceInfo(SOAP::Data->type('integer')->name('NewAssociatedDeviceIndex')->value($i))->result; print Dumper $host } Last edited: 2016-09-29 18:28:29 +0200 (CEST) |