Ticket #63 (closed Bug: Fixed)

Opened 5 years ago

Last modified 3 years ago

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

Changed 5 years ago by joachim

fixed in r1649, thanks for reporting

Changed 3 years ago by danielr

  • status changed from new to closed
Note: See TracTickets for help on using tickets.