You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@dubbo.apache.org by "lucky-xin (via GitHub)" <gi...@apache.org> on 2023/03/31 09:57:25 UTC

[GitHub] [dubbo] lucky-xin opened a new issue, #11977: Triple 协议兼容gRPC吗

lucky-xin opened a new issue, #11977:
URL: https://github.com/apache/dubbo/issues/11977

   Triple 协议真的兼容gRPC吗?java实现服务提供者以Triple协议暴露,服务消费者为golang,通过gRPC连接不了服务提供者


-- 
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] lucky-xin commented on issue #11977: Triple 协议兼容gRPC吗

Posted by "lucky-xin (via GitHub)" <gi...@apache.org>.
lucky-xin commented on issue #11977:
URL: https://github.com/apache/dubbo/issues/11977#issuecomment-1493861202

   @EarthChen 


-- 
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] zhangbiaoyg commented on issue #11977: Triple 协议兼容gRPC吗

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

   嗨,这个问题有解决吗?我也是遇到了一模一样的问题,java 侧:dubbo 3.2.0 ,用triple 方式启动服务。 在Golang侧,直接用GRPC方式调用,也会报service not found
   ![image](https://github.com/apache/dubbo/assets/133645679/f112e3f1-c99d-460f-bf22-99dc903910fc)
   


-- 
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] zhangbiaoyg commented on issue #11977: Triple 协议兼容gRPC吗

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

   @lucky-xin @AlbumenJ 这个问题之前搞定没?学习一下。。


-- 
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] AlbumenJ commented on issue #11977: Triple 协议兼容gRPC吗

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

   ![image](https://user-images.githubusercontent.com/9292748/229752593-f0e356f0-bcf8-48d6-8927-d99326378687.png)
   
   https://github.com/lucky-xin/dubbo-triple-samples


-- 
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] EarthChen commented on issue #11977: Triple 协议兼容gRPC吗

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

   是兼容的,请问你报了什么错误呢?能否提供一个 demo 呢?


-- 
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] lucky-xin commented on issue #11977: Triple 协议兼容gRPC吗

Posted by "lucky-xin (via GitHub)" <gi...@apache.org>.
lucky-xin commented on issue #11977:
URL: https://github.com/apache/dubbo/issues/11977#issuecomment-1493863146

   @EarthChen protobuf schema`syntax = "proto3";
   
   option java_multiple_files = true;
   option java_package = "org.apache.dubbo.demo";
   option java_outer_classname = "DemoServiceProto";
   option objc_class_prefix = "DEMOSRV";
   
   package demoservice;
   
   // The demo service definition.
   service DemoService {
     rpc SayHello (HelloRequest) returns (HelloReply) {}
   }
   
   // The request message containing the user's name.
   message HelloRequest {
     string name = 1;
   }
   
   // The response message containing the greetings
   message HelloReply {
     string message = 1;
   }`


-- 
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] lucky-xin commented on issue #11977: Triple 协议兼容gRPC吗

Posted by "lucky-xin (via GitHub)" <gi...@apache.org>.
lucky-xin commented on issue #11977:
URL: https://github.com/apache/dubbo/issues/11977#issuecomment-1493934923

   > triple服务已经暴露了
   ![image](https://user-images.githubusercontent.com/13815910/229460113-10148d9b-b9ac-4ab6-8354-9addce5de679.png)
   但是go 调用失败报错信息为Service not found:demoservice.DemoService
   ![image](https://user-images.githubusercontent.com/13815910/229460995-638b11a3-697b-4393-bace-2bba4dfa2d81.png)
   
   > demo在这[https://github.com/lucky-xin/dubbo-triple-samples](url)
   
   > 麻烦帮忙看看,谢谢了 @EarthChen 


-- 
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