This might be a trivial question.
I figured out how to do object remote-ing with blazeds. I can
call a method with out arguments no problem.
The question is how to write flex code to call a method with
arguments. :)
Mxmul code..
<mx:RemoteObject id="getApplicationsSrv"
destination="aReportService"
result="this.processResultsFromGetApplicationsSrv(event)"
fault="this.processFaultsFromGetApplicationsSrv(event)"
/>
Flex code..
this.getApplicationsSrv.getOperation("getApplications").send();
I need to invoke a java method that has one argument,
application id. I have not found a good article or documentation on
how to pass arguments.
Thanks in advance.