Consuming stateful SOAP services into Mendix

0
Can someone please let me know if it is possible to consume stateful SOAP services(HTTP) into Mendix via microflows? The application in my case which is exposing the services works as below. Initially we have to login using a “Login” service. Maintain the same session and then call the necessary service to retrieve the data. Finally logout after the work is done using a specific “Logout” service.  
asked
1 answers
0

Yes, you can do that. You can call the login, retrieve and logout operations in microflows. You can save the result of the login call in the user’s session and use it in the retrieve and logout operations.

answered