You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a complex data type called Map in my proto file. As of now, LabVIEW gRPC not supporting this DataType.
Instead, it creates key Value pairs in the Cluster Array. Because of this, when I receive a response in client UI (JavaScript). It is saying Type mismatch. Here I attached my Message with Map data Type.
Hi,
I have a complex data type called Map in my proto file. As of now, LabVIEW gRPC not supporting this DataType.
Instead, it creates key Value pairs in the Cluster Array. Because of this, when I receive a response in client UI (JavaScript). It is saying Type mismatch. Here I attached my Message with Map data Type.
**message ContextVariables{
message ContextVariableValue{
oneof ValueOneOf {
StringArray string_array = 1;
LongArray long_array = 2;
FloatArray float_array = 3;
BooleanArray boolean_array = 4;
ByteArray byte_array = 5;
DoubleArray double_array = 6;
LonglongArray longlong_array = 7;
}
}
map<string, ContextVariableValue> variables = 1;
}**
AB#2500456
The text was updated successfully, but these errors were encountered: