Server Events Client - Getting rid of the automatically appended string at the end of the URI
问题 I am new to the Service Stack library and trying to use the Server Events Client. The server I'm working with has two URIs. One for receiving a connection token and one for listening for search requests using the token acquired in the previous call. I use a regular JsonServiceClient with digest authentication to get the token like so: public const string Baseurl = "http://serverIp:port"; var client = new JsonServiceClient(Baseurl) { UserName = "user", Password = "password",