Re: Multidimensionality in SOAPLite

Eric Amick <[email protected]> Mon, 14 Jul 2003 18:02:45 -0400
Newsgroups gmane.comp.windows.devel.soap.general
Organization Are you serious?
Message-ID <[email protected]>
On Mon, 14 Jul 2003 17:41:55 -0400, you wrote:

>I didn't explain it well enough, I guess.  I meant for you to try
>
>-> getPersonData(SOAP::Data->name(arg0 => \@attributes),
>SOAP::Data->name(arg1 => \@restrictions), SOAP::Data->name(arg2 =>
>\@app_name))
>
>If that doesn't work, try replacing "name" with "type" in the above
>line, but I seriously doubt that that will do it.

I'm glad it worked, but if you think that is ugly, you can try something
like

my $arg0 = SOAP::Data->name(arg0 => \@attributes);
my $arg1 = SOAP::Data->name(arg1 => \@restrictions);
my $arg2 = SOAP::Data->name(arg2 => \@app_name);

and then later

-> getPersonData($arg0, $arg1, $arg2)

-- 
Eric Amick
Columbia, MD