Re: Multiple services run immediately

2020-04-28 Thread Rohit Koushal
> > it is possible to use the result of service one. > > > > > > > > > > > > @Pawan: "Have you tried with mode="sync" instead of mode="async"? It > > > should run both services simultaneously." Do you mean that in m

AW: Multiple services run immediately

2020-04-27 Thread Ingo Wolfmayr
thanks to everyone. Best regards, Ingo -Ursprüngliche Nachricht- Von: Rishi Solanki Gesendet: Montag, 27. April 2020 23:06 An: ofbizuser Betreff: Re: Multiple services run immediately Ingo, What exactly you want to achieve, you want to run two independent services on ECA trigger and

Re: Multiple services run immediately

2020-04-27 Thread Rishi Solanki
gt; without waiting for the first to return the result? > > > > With case 1 - would it make a difference if I create a single eca service > > definition for each service to be called? Would they be called > > independently? > > > > Thanks a lot. > > Ingo > >

Re: Multiple services run immediately

2020-04-26 Thread Rohit Koushal
to return the result? > > > > With case 1 - would it make a difference if I create a single eca service > > definition for each service to be called? Would they be called > > independently? > > > > Thanks a lot. > > Ingo > > > > > > > >

Re: Multiple services run immediately

2020-04-26 Thread Ankush Upadhyay
ce > definition for each service to be called? Would they be called > independently? > > Thanks a lot. > Ingo > > > > -Ursprüngliche Nachricht- > Von: Suraj Khurana > Gesendet: Samstag, 25. April 2020 08:05 > An: ofbizuser > Betreff: Re: Multiple se

AW: Multiple services run immediately

2020-04-26 Thread Ingo Wolfmayr
eca service definition for each service to be called? Would they be called independently? Thanks a lot. Ingo -Ursprüngliche Nachricht- Von: Suraj Khurana Gesendet: Samstag, 25. April 2020 08:05 An: ofbizuser Betreff: Re: Multiple services run immediately Hello Ingo, Hope you

Re: Multiple services run immediately

2020-04-25 Thread Nameet Jain
Hi Ingo, To execute two or more independent processes immediately without waiting for each other to finish, use async mode. The example you shared will do the thing for you. Here JobPoller takes care of the services in "action". So if you add one more async service, it will execute independently.

Re: Multiple services run immediately

2020-04-24 Thread Pawan Verma
Hi Ingo, I hope you are well! Have you tried with mode="sync" instead of mode="async"? It should run both services simultaneously. runSyncIgnore is noting but calling service in sync mode without expecting the output of the service. If you wanna call services inline you can even try addCommitSe

Re: Multiple services run immediately

2020-04-24 Thread Suraj Khurana
Hello Ingo, Hope you are doing good. I am not sure about the environment you are currently trying to achieve this. IMO, there are two ways: - For improving performance, we can set up multiple OFBiz servers in parallel. Yes, we can set up two OFBiz servers, one calling sync service and another de

Multiple services run immediately

2020-04-24 Thread Ingo Wolfmayr
Hi everybody, I want to run two or more services immediately after another service has finished. For example printing creating/printing the invoice and starting the pick process should be done immediately after orderchange Invoicing and picking are two different processes that should be initi