Re: Return more than one parameters

2005-11-22 Thread Developer Developer
You need to use holder classes.

Eg:- if you want to pass objects of type myclass back and forth in soap web services ( JAX RPC method) then here is what you need to do.

1. define holder class for myclass
2.alter your webservices to take holder class objectinstead of myclass class object as input. ( Note that from the client you will still pass the actual object, not the holder class object).



There are a lot of articles about it on the web. One such is the following - Pay attention to the naming conventionand package definition . 

http://www.developer.com/java/web/article.php/10935_2237251_2



On 11/22/05, Eric Chow [EMAIL PROTECTED] wrote:
hello,How can I use JAXRPC call to return more than one parameters ?I tried to use ParameterMode.INOUT
, but nothing return ?Any example ?Best regards,Eric


Return more than one parameters

2005-11-21 Thread Eric Chow
hello,

How can I use JAXRPC call to return more than one parameters ?


I tried to use ParameterMode.INOUT, but nothing return ?

Any example ?


Best regards,
Eric