doulu8341 2017-12-24 17:28
浏览 122
已采纳

Go中基于HTTP的JSONRPC [重复]

This question already has an answer here:

How can I use JSON-RPC over HTTP based on this specification in Go?

Go provides JSON-RPC codec in net/rpc/jsonrpc but this codec use network connection as input so you cannot use it with go RPC HTTP handler. I attach sample code that uses TCP for JSON-RPC:

func main() {
    cal := new(Calculator)
    server := rpc.NewServer()
    server.Register(cal)
    listener, e := net.Listen("tcp", ":1234")
    if e != nil {
        log.Fatal("listen error:", e)
    }
    for {
        if conn, err := listener.Accept(); err != nil {
            log.Fatal("accept error: " + err.Error())
        } else {
            log.Printf("new connection established
")
            go server.ServeCodec(jsonrpc.NewServerCodec(conn))
        }
    }
}
</div>
  • 写回答

1条回答 默认 最新

  • ds3422222 2017-12-24 18:16
    关注

    The built-in RPC HTTP handler uses the gob codec on a hijacked HTTP connection. Here's how to do the same with the JSONRPC.

    Write an HTTP handler that runs the JSONRPC server with a hijacked connection.

    func serveJSONRPC(w http.ResponseWriter, req *http.Request) {
        if req.Method != "CONNECT" {
            http.Error(w, "method must be connect", 405)
            return
        }
        conn, _, err := w.(http.Hijacker).Hijack()
        if err != nil {
            http.Error(w, "internal server error", 500)
            return
        }
        defer conn.Close()
        io.WriteString(conn, "HTTP/1.0 Connected
    
    ")
        jsonrpc.ServeConn(conn)
    }
    

    Register this handler with the HTTP server. For example:

     http.HandleFunc("/rpcendpoint", serveJSONRPC)
    

    EDIT: OP has since updated question to make it clear that they want GET/POST instead of connect.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 微信公众号自制会员卡没有收款渠道啊
  • ¥15 stable diffusion
  • ¥100 Jenkins自动化部署—悬赏100元
  • ¥15 关于#python#的问题:求帮写python代码
  • ¥20 MATLAB画图图形出现上下震荡的线条
  • ¥15 关于#windows#的问题:怎么用WIN 11系统的电脑 克隆WIN NT3.51-4.0系统的硬盘
  • ¥15 perl MISA分析p3_in脚本出错
  • ¥15 k8s部署jupyterlab,jupyterlab保存不了文件
  • ¥15 ubuntu虚拟机打包apk错误
  • ¥199 rust编程架构设计的方案 有偿