Alanxtl commented on issue #3496:
URL: https://github.com/apache/dubbo-go/issues/3496#issuecomment-5002537032
> I want to try this issue. Does the server-side response also need to be
encoded according to the serialization type of the request?
现在request和response的idl定义里面都有 `serializeType`
这个idl定义不要改 要不就不兼容了
```
message TripleRequestWrapper {
// hessian4
// json
string serializeType = 1;
repeated bytes args = 2;
repeated string argTypes = 3;
}
message TripleResponseWrapper {
string serializeType = 1;
bytes data = 2;
string type = 3;
}
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]