You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@dubbo.apache.org by "aomsir (via GitHub)" <gi...@apache.org> on 2023/06/09 11:38:54 UTC

[GitHub] [dubbo-go] aomsir opened a new issue, #2337: How to connect Java Server

aomsir opened a new issue, #2337:
URL: https://github.com/apache/dubbo-go/issues/2337

   I use Java to start a Server,use dubbo3.2.0,use dubbo as network protocol,use prorbuf as serialization protocol,and this project is a demo,i only to test call of heterogeneous system. i should how to dubbo-go to code the client,how to code the main function and the dubbogo.yaml ?this is my proto file in java server
   ```proto
   syntax = "proto3";
   
   option java_multiple_files = true;   // 只生成一个HelloRequest
   option java_package = "com.aomsir.service";
   option java_outer_classname = "HelloServiceProto";
   
   message HelloRequest{
     string name = 1;
   }
   
   message HelloResponse{
     string result = 1;
   }
   
   service HelloService{
     rpc sayHello(HelloRequest) returns (HelloResponse);
   }
   ```
   


-- 
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: notifications-unsubscribe@dubbo.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@dubbo.apache.org
For additional commands, e-mail: notifications-help@dubbo.apache.org


[GitHub] [dubbo-go] aomsir commented on issue #2337: How to connect Java Server

Posted by "aomsir (via GitHub)" <gi...@apache.org>.
aomsir commented on issue #2337:
URL: https://github.com/apache/dubbo-go/issues/2337#issuecomment-1584489840

   or Cloud supply paragraph about how to use protobuf as serialization,I only find hessian and dubbo


-- 
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: notifications-unsubscribe@dubbo.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@dubbo.apache.org
For additional commands, e-mail: notifications-help@dubbo.apache.org


[GitHub] [dubbo-go] justxuewei commented on issue #2337: How to connect Java Server

Posted by "justxuewei (via GitHub)" <gi...@apache.org>.
justxuewei commented on issue #2337:
URL: https://github.com/apache/dubbo-go/issues/2337#issuecomment-1598914815

   Hi @aomsir, we are providing some examples on the https://github.com/apache/dubbo-go-samples. Please refer to https://github.com/apache/dubbo-go-samples/tree/master/rpc/triple/pb/dubbogo-java.


-- 
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: notifications-unsubscribe@dubbo.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@dubbo.apache.org
For additional commands, e-mail: notifications-help@dubbo.apache.org