| Author |
Calling multiple methods from RPC servlet
|
john andre
Greenhorn
Joined: May 16, 2010
Posts: 1
|
|
Hi all
I have a single remote service servlet which contains 2 methods A() and B() and I am successfully able to call A() from my client side code.
A() returns an Integer and also populates an ArrayList which is returned by B().
What I am trying to do is call A() which returns the integer and then get access to the array list from my client side code. Could someone suggest how this can be done?
Thanks for any suggestions...
|
 |
Devaka Cooray
Saloon Keeper
Joined: Jul 29, 2008
Posts: 2726
|
|
|
"not google", please check your private messages regarding an important administrative matter.
|
Author of ExamLab (Download) - the free mock exam kit for SCJP / OCPJP
Home Page -- Twitter Profile -- JavaRanch FAQ -- How to Ask a Question
|
 |
Maneesh Godbole
Saloon Keeper
Joined: Jul 26, 2007
Posts: 8562
|
|
From what information you have provided, I see two options.
A() returns and int. Do you use that int for anything? If no, then let A return the List
If yes, then you can always make a second call to B to get the list.
|
[Donate a pint, save a life!] [How to ask questions] [Onff-turn it on!]
|
 |
 |
|
|
subject: Calling multiple methods from RPC servlet
|
|
|