Hello there,
in another issue I already described this issue but since there were two seperate problems I will open this new one.
My .proto file looks something like this:
syntax = "proto3";
import "google/protobuf/wrappers.proto";
message Department {
google.protobuf.Int32Value department_id = 100;
google.protobuf.StringValue name = 200;
}
The message I want to send looks like this:
msg.payload = {
department_id: 12,
name: "Name"
}
When trying to encode this message through the encode node this error message appears:

A suggestion was to load the wrappers.proto file as a comma seperated path in the protofile node like shown below:
PROTO/my-proto-file.proto,google/protobuf/wrappers.proto
My folder structure looks like this from the root directory of node-red:
1. PROTO
- my-proto-file.proto
2. google
a. protobuf
- wrappers.proto
But I am still getting the same error message.
Hope someone can help with this.
Thanks in advance!
Till
Hello there,
in another issue I already described this issue but since there were two seperate problems I will open this new one.
My .proto file looks something like this:
The message I want to send looks like this:
When trying to encode this message through the encode node this error message appears:

A suggestion was to load the wrappers.proto file as a comma seperated path in the protofile node like shown below:
PROTO/my-proto-file.proto,google/protobuf/wrappers.protoMy folder structure looks like this from the root directory of node-red:
But I am still getting the same error message.
Hope someone can help with this.
Thanks in advance!
Till