We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When I run the reflection command for the generated server using the following proto files, I am getting symbols not found error.
Proto content:
hello.proto:
syntax = "proto3"; package helloworld; import "testName.proto"; // The greeting service definition. service Greeter { // Sends a greeting rpc SayHello (HelloRequest) returns (HelloReply) {} } // The request message containing the user's name. message HelloRequest { testName.stateName startName = 1; } // The response message containing the greetings message HelloReply { string message = 1; }
testName.proto:
syntax = "proto3"; package testName; message stateName{ string name = 1; }
AB#2501573
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When I run the reflection command for the generated server using the following proto files, I am getting symbols not found error.
Proto content:
hello.proto:
testName.proto:
AB#2501573
The text was updated successfully, but these errors were encountered: