-
I'm working with a VSCode GLSP implementation right now, and I want to use a request/response pair to send information from the GLSP server to the GLSP client during Here is my current client-side setup: client-handler.ts (client)
diagram-module.ts (client)
Here is my current server-side setup: server-handler.ts (server)
diagram-module.ts (server)
storage.ts
I'm wondering what about my setup is incorrect, or if there is a different way I'm supposed to be doing this. I'm not sure if I'm dispatching the request from the GLSP server properly, as this currently causes an error where
@tortmayr, I believe I saw you answer a question related to Actions, so perhaps you could shed some light here? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
IMO, it's fine to send request Action to cleint and get Response, actually, the RequestBoundsAction/ComputedBoundsAction do the same thing. |
Beta Was this translation helpful? Give feedback.
Yeah, I agree we should update the documentation to clarify this.