Hi guy, I am using java to call a sub process (1). On sub process, it calls another process on async mode and wait for this async process finished. But it gets an exception
But it can work well if I trigger the start link (2) directly How can I overcome this problem? Thanks! asked 04.12.2019 at 05:58 nvcuong01 |
Once you sign in you will be able to subscribe for any updates here
By RSS:Markdown Basics
Tags:
Asked: 04.12.2019 at 05:58
Seen: 1,928 times
Last updated: 09.12.2019 at 02:19
Which ivy version? How do you call the sub process with java? and why do you need to do that?
I am using Ivy 7.0.11 and call sub process on plain java
SubProcessCall .withPath("Functional Processes/callServiceCheck") .withParam("signalDataCheck", signalDataCheck) .withParam("dossierId", dossierCobId) .call();
I would like to create a process like the example project "RichDialogDemos -> WaitForAsyncProcessDemo -> MainBusinessProcessStart". The reason because I want to run check service in the background and update UI after having the result. Thanks
Hm... this was never our intension to call a subprocess with java and to wait in this process. But I'm sure that this process can be build in an other way. e.g. wait in the java code. Can you send me this demo project?
Thank for your response. I just would like to make sure that ivy doesn't support this point. I already used plain java to do that. Unfortunately, I deleted that sub process and don't have time to build demo project again. Thank a lot for your support!