Open banool opened 9 months ago
Hey Daniel, apologies for the late response. It's hard to tell what's going on just based on the code INVALID_ARGUMENT. Looking at grpc-web-transport.ts and grpc-web-format.ts, I don't see us raising this error code 🤔
I would add add breakpoints or log statements in @protobuf-ts/grpcweb-transport to verify that the error is indeed part of the server response.
If it is, the server is most likely raising the error because it received headers or a body that it does not accept. It is possible that our client understands a part of the gRPC-Web spec differently than tonic-web. Unfortunately, the spec is quite vague. Our client runs just fine against dotnet (there's an example in this repository), and I've also been using it against envoy without issues. But it's possible that tonic does something differently. So as a next step, I'd add breakpoints or log statements in the server.
I've got code that looks like this:
It is generated from this buf file:
When I run this, I get the following error:
Thing is, when I make the exact same request with grpcurl it works fine:
On the server side I'm using tonic-web, so grpc-web should be supported directly.
When the client connects, I can see that the server builds and sends the response, but then it says the client aborts the connection and disconnects. This leads me to believe something is wrong client side.
I've confirmed that the compression settings match, that it isn't related to auth, etc. I've even wiresharked the request packets and I think at least the core payload looks the same between grpcurl and the TS code. In any case, I feel like the issue is related to how the client builds the request or maybe handles the response, since the server seems to think the request is perfectly fine.
Creating a minimal repro is sort of complex since there are a lot of moving parts but I will do that later. For now though I wonder if there is some way to figure out why this error is happening. I've added server side logging and it doesn't seem like the server is rejecting the request, so I'm not sure why the code is INVALID_ARGUMENT. I've confirmed that the server and client are using code generated from the same protos. I've tried setting
grpc.keepalive_time_ms
andgrpc.max_send_message_length
and the like.Any ideas would be greatly appreciated, I've been sort of losing my marbles for the last 12 hours 😅