Thread Perl-Modul für SOAP (7 answers)
Opened by Aendy at 2011-06-18 21:33

renee
 2011-06-19 14:36
#149754 #149754
User since
2003-08-04
14371 Artikel
ModeratorIn
[Homepage] [default_avatar]
Mach mal aus
Code (perl): (dl )
1
2
3
4
5
6
7
8
9
10
my $som = $soap->call(
    'CheckForSoftwareUpdates',
    SOAP::Data->name('InstalledSoftware')->value(
        \SOAP::Data->value([
            SOAP::Data->name('SoftwareName')->value('SampleSoftware1'),
            SOAP::Data->name('Version')->value('1.2.3'),
            SOAP::Data->name('OperatingSystem')->value('Windows_XP'),
            ])
        )
    );
das hier:
Code (perl): (dl )
1
2
3
4
5
6
7
8
9
10
my $som = $soap->call(
    'CheckForSoftwareUpdates',
    SOAP::Data->name(
        'InstalledSoftware' => \SOAP::Data->value(
             SOAP::Data->name('SoftwareName')->value('SampleSoftware1'),
             SOAP::Data->name('Version')->value('1.2.3'),
             SOAP::Data->name('OperatingSystem')->value('Windows_XP'),
        )
    )
);


(ungetestet)
OTRS-Erweiterungen (http://feature-addons.de/)
Frankfurt Perlmongers (http://frankfurt.pm/)
--

Unterlagen OTRS-Workshop 2012: http://otrs.perl-services.de/workshop.html
Perl-Entwicklung: http://perl-services.de/

View full thread Perl-Modul für SOAP