Jump to content

Hi, With a jms receiver starter for example, I can use the sequencing key in advanced tab to sequence the process instances execution. Is the same possible with Rest or Soap web services using http transport? Thanks for your help. Regards


Franck -

Recommended Posts

Hi,

With a jms receiver starter for example, I can use the sequencing key in advanced tab to sequence the process instances execution.

Is the same possible with Rest or Soap web services using http transport?

 

Thanks for your help.

Regards

Link to comment
Share on other sites

Franck,

An HTTP receiver is Async by nature and responds to any request it's sent, whereas the JMS is able to process messages by leaving them in the messaging server until needed.

My only thought would be to have this as two steps ... An HTTP step that collects the message/data and places it into a JMS queue where you can use the sequencing key to determine the processing sequence.

HTH ... Andy

Link to comment
Share on other sites

I'm not sure what your use case is here ..

There are situations where you need to process events/messages in a set sequence. You can do this with messages in a couple of ways.

HTTP based requests, tend to be orderless, or if they have an order that order is implied (ie part of the data).

If you want a HTTP app to process the requests it gets in some form of sequence then you're going to have to build that into your application.

What the usecase/scenario ? And why are you thinking of HTTP services to perform sequenced processing ?

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...