1

Can Xtext LSP server by used as dls as a service? Where all files are stored on server (remote location) and handle multiple connections from different clients in the same time?

If yes any suggestions how to implement this will be very much appreciated.

4

1 回答 1

0

语言服务器协议的基本假设是客户端和服务器都可以访问同一组文件。因此,LSP 并不是为在真实的客户端-服务器场景中工作而设计的。向客户端提供文件必须使用单独的服务或作为 LSP 的扩展来实现。

如果您正在寻找 Web 客户端解决方案,可以查看Monaco editor。它可能是实现此类文件服务的良好基础。

于 2017-07-04T08:54:18.533 回答