I have two tasks which are triggered by a message start event and their output signals are connected to a parallel gateway. My process is getting stuck even if i process those two signals. I have tried various combinations, even if both the signals return true, the signal wont proceed further.
since both message events are start events, any of them is creating a new instance of a process, which is then waiting in parallel gateway forever, since second event is never triggered for same process instance.
I would suggest you eiter use one process instance started and waiting for those messages, or two separate processes which execute common logic through call activity.