Giter VIP home page Giter VIP logo

Comments (2)

PaiGack avatar PaiGack commented on July 18, 2024 1

这里可以使用 x/net 中的 h2c 替代

from grpc-go.

arjan-bal avatar arjan-bal commented on July 18, 2024

Based on https://webconcepts.info/concepts/http-method/PRI:

HTTP Request Method: PRI
This method is never used by an actual client. This method will appear to be used when an HTTP/1.1 server or intermediary attempts to parse an HTTP/2 connection preface.

It looks like the http server from the standard library is trying to parse an http2 packet from a gRPC client as an http1.1 packet. The docstring of the gRPC ServeHttp method mentions the following:

The provided HTTP request must have arrived on an HTTP/2 connection. When using the Go standard library's server, practically this means that the Request must also have arrived over TLS.

It could mean that the postman client negotiated http1.1 with the go http server during the handshake, but then started using http2 for sending gRPC requests.

Can you use tls and see if the problem is resolved? When configuring the tls Config for the server, set the NextProtos field:

TLSConfig: &tls.Config{
    // Other configs.
    NextProtos: []string{"h2"}, // Only advertise HTTP/2 support
},

When the http connection is established after the TLS handshake, both server and client should be using http/2.

Example of configuring TLS:

  1. https://github.com/grpc/grpc-go/tree/master/examples/features/encryption
  2. https://github.com/grpc/grpc-go/tree/master/examples/route_guide
  3. Script that is used to generate the certs for examples: https://github.com/grpc/grpc-go/blob/master/testdata/x509/create.sh

from grpc-go.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.