nite_man has asked for the wisdom of the Perl Monks concerning the following question:

Dear brothers and sisters.

I'm a little bit confusion. I try to develope a Perl SOAP client to the SOAP server which implement on Java and I should call Java object method which has another Java object as one of arguments:

public JobInfo submitJob(int taskID, ParameterInfo[] parmInfo) { /* some code ... */ }
where ParameterInfo is some Java class.

My questions are: is it possible to call this method from Perl SOAP client and how can I implement a call of this method using SOAP::Lite?

Many thanks in advansed!

_ _ _ _ _ _
  M i c h a e l

Replies are listed 'Best First'.
Re: Perl SOAP client.
by Steve_p (Priest) on Sep 19, 2003 at 14:18 UTC

    is it possible to call this method from Perl SOAP client

    Yes, assuming your server is set up correctly.

    how can I implement a call of this method using SOAP::Lite?

    It could be implemented many different ways. I suggest checking out the documentation and SOAP::Lite cookbook at the SOAP::Lite website for all the ins and outs for this module.

      Excellent answer