Hello. I’m a newcomer to Temporal, and I have some questions about your product’s capabilities. If I create a service that starts a workflow from a specific endpoint, and then this service receives requests from other endpoints, can I somehow execute those requests on the workflows created at the beginning (assuming there is a clear mapping from the request to the ID and runID of the initially created workflow)? I have tried to retrieve the existing running workflows by their ID and runID through the client and using WorkflowServiceStubs.blockingStub(), but it didn’t lead to any useful results. Thank you in advance for your response, and I apologize if this message seems naive.
You can get a workflow stub to an already running workflow:
MyWorkflow trip = client.newWorkflowStub(MyWorkflow.class, workflowId);
1 Like