Hi All,
I have two services, service A and service B. A is a Java service, which uses ‘Service.doThreadInvoke’ to invoke B. The main purpose of this design is to increase the response time of A since B is slow.
Question one. If service threads of the IS reach the limit, will B still be called by A? If not, will A throw an exception?
Question two. If there is an exception in B, how can I catch and handle it?
Can anyone help me? Thanks in advance.