Ticket #63 (closed Bug: Fixed)
IPendingServiceCall.isSuccess() always returns false.
| Reported by: | carlsz | Owned by: | joachim |
|---|---|---|---|
| Priority: | Major | Component: | App Server |
| Version: | Keywords: | ||
| Cc: |
Description
When examining the IPendingServiceCall in the following manner (in an IPendingServiceCallback implementation), the returned value from isSuccess is always false. The only workaround is to ignore the success bit on the call completely and to examine the result object instead.
public void resultReceived(IPendingServiceCall call) {
if (call.isSuccess()) {
// Do something with the results.
Object results = call.getResult();
}
}
Change History
Note: See
TracTickets for help on using
tickets.
