Questions tagged [servicetalk]

ServiceTalk is a JVM network application framework with APIs tailored to specific protocols (e.g. HTTP/1.x, HTTP/2.x, etc…​) and supports multiple programming paradigms.

It is built on Netty and is designed to provide most of the performance/scalability benefits of Netty for common networking protocols used in service to service communication. ServiceTalk provides server support and "smart client" like features such as client-side load balancing and service discovery integration.

See the ServiceTalk docs for more information.

If you have a question about using ServiceTalk, this is the tag you should use.

2 questions
1
vote
1 answer

ServiceTalk gRPC error code mapping for StreamingHttpServiceFilter

We have implemented StreamingHttpServiceFilter which performs authentication on each request. On unsuccessful authentication, we return 401 Unauthorized error by using following code: private StreamingHttpResponse createUnauthorizedResponse(final…
Pritish Shah
  • 611
  • 3
  • 11
  • 25
0
votes
1 answer

Using ServiceTalk from Apple (Netty) as a RESTful API with Jersey and Let's Encrypt HTTPS

So basically, I have made a RESTful API using ServiceTalk from Apple (Netty implementation) and Jersey and it works. Only through http though. I have seen that when I was making my React web page make a POST request through http, it would complain…
Fern
  • 93
  • 6
  • 16