We are using the latest Docker images of Business Central and KIE-server, and are interacting with the rules service client using KIE's REST API.
We created a set of rules in Business Central that, when fired, insert a "Response" fact.
We would like to be able to sent requests to KIE Server in a stateless manner; i.e. every time we send a request (typically composed of a chain the following chain of commands: insert-object -> fire-all-rules -> get-objects) to the server, no objects/facts from a previous requests should be returned by the get-objects command.
From what we understand, one way to go about this would be to create a new session for each request. How would one do that? Any other suggestions and/or references?