Re: Multidimensionality in SOAPLite

Eric Amick <[email protected]> Mon, 14 Jul 2003 17:35:47 -0400
Newsgroups gmane.comp.windows.devel.soap.general
Organization Are you serious?
Message-ID <[email protected]>
On Mon, 14 Jul 2003 16:34:53 -0400, you wrote:

>Hi Eric,
>        I'm very rusty with Perl (did only the basics couple of years ago),
>so please excuse my ignorance and stupidity...however, here are all the code
>I have in the testing system:

>4. and the last version I have:
>
>#!perl -w
>  use SOAP::Lite;
>
>  @attributes= ("First Name", "Middle Name", "Last Name", "SSO Login ID",
>"Component Number", "Effective Start Date");
>  SOAP::Data->name('arg0' => \@attributes);
>  @restrictions= ("");
>  @app_name= ("Ultimus");
>
>  print SOAP::Lite
>    -> uri('myService')
>    -> proxy('http://localhost:8082/axis/services/')
>    -> getPersonData(\@attributes, \@restrictions, \@app_name)
>    -> result;
>
>which still doesn't work:

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.

-- 
Eric Amick
Columbia, MD