asynchronous and synchronous webservices

6
Does the Mendix-platform supports synchronous webservices? So that the microflows waits what the webservices answers.
asked
2 answers
6

Yes, web service calls in microflows are always synchronous. The microflow always waits for a response to the web service call, and only continues if the web service call completed successfully.

answered
0

Not that I'm aware of but there is a simple workaround: simply cut up the microflow and execute the bit that you want execute after repsonse of the webservice after of before commit of the object in which you store the webservice result

answered