gpt4 book ai didi

Python:向 protobuf 服务器发送请求

转载 作者:行者123 更新时间:2023-11-28 19:20:49 26 4
gpt4 key购买 nike

有人可以帮帮我吗?

我有一个 .proto 文件。

如何从客户端向套接字服务器发送和打印请求?如何回应客户?

简介:

option optimize_for = SPEED;
option java_package = "org.epicsquad.protofile.proto";

package protofile.proto;

enum CommandTypeEnum {

COMMAND_one = 0;
COMMAND_two = 1;
COMMAND_three = 2;

}

enum ResultTypeEnum {

RESULT_ONE = 0;
RESULT_TWO = 1;

message Result {

required uint32 result_one = 1;
optional string result_two = 2;

}

message Request {

optional string req1 = 1;
optional string req2 = 2;

}

message Response {

required string resp1 = 1;
required string resp2 = 2;

}

服务器:

import sys
sys.path.append('../../main')
import protobuf.socketrpc.server as server
server = server.SocketRpcServer(8090)
print 'Serving on port 8090'
server.run()

客户:

import sys
sys.path.append('../../main')
import protofile_pb2
from protobuf.socketrpc import RpcService
import logging
log = logging.getLogger(__name__)
logging.basicConfig(level=logging.DEBUG)
hostname = 'localhost'
port = 8090
request = protofile_pb2.Request()

我有一个 HelloWorld 示例,但那里通过服务发送请求。但是我的 .protofile 中没有服务消息。谢谢!!!

最佳答案

添加 option py_generic_services = true; 这行你的 .proto 文件。如果你不这样做,protoc 将不会生成你需要的 rpc stub

关于Python:向 protobuf 服务器发送请求,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25627641/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com