You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
server responde with tcp payload 15 03 03 00 02 02 32
but client expect an SETTINGS frame, so it send a GOAWAY[0], connection closed.
I noticed that 0x0303 looks like TLS version number TLS 1.2
When I'm using postman or grpcurl to test my grpc interface, all the things seems ok.
Is there any configuration I have missed?
update:
Response message looks like a tls handshake message ServerHello. So when client send a http/2 request, server was trying to establish a tls connection, and client see it as an error and terminate the connection. But how can I solve it?
update2:
it turns out java client send request in plaintext, so when server want to establish tls connection, it goes wrong. tcpdumpfile.zip
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Magic, SETTINGS[0], WINDOW_UPDATE[0]
15 03 03 00 02 02 32
SETTINGS
frame, so it send aGOAWAY[0]
, connection closed.I noticed that
0x0303
looks like TLS version number TLS 1.2When I'm using postman or grpcurl to test my grpc interface, all the things seems ok.
Is there any configuration I have missed?
update:
Response message looks like a tls handshake message
ServerHello
. So when client send a http/2 request, server was trying to establish a tls connection, and client see it as an error and terminate the connection. But how can I solve it?update2:
it turns out java client send request in plaintext, so when server want to establish tls connection, it goes wrong.
tcpdumpfile.zip
Beta Was this translation helpful? Give feedback.
All reactions