Task Assignment between two application

Certified Senior Developer

There are two applications Application A and Application B.

Application A has Group A and Application B has Group B.

First the task is assigned to Group A.

When a user from Group A completes the task then the task should be assigned to Group B which is in Application B.

How can we do that?

  Discussion posts and replies are publicly visible

Parents Reply
  • You'll have to be careful here not to create a circular dependency. If Application A calls a process in Application B and then Application B calls a process in Application A you'll have problems deploying those Applications to higher environments because each will have a dependency on the other.

    One way around this is to decouple the two and have them call each other via WebAPIs which are only resolved at run-time. So Application A will call a WebAPI exposed by Application B and that WebAPI can start the relevant process to create the required Task. And if you need to do the reverse then again use a WebAPI to do this.

Children
No Data