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

[GitHub] [dubbo] drama10096 opened a new issue, #12886: 原本dubbo2.7所在的java应用A,升级dubbo3.0.x以后,调用dubbo2.7版本java应用B,能调用成功,但是返回的对象为空对象(不是null,没有任何属性)

drama10096 opened a new issue, #12886:
URL: https://github.com/apache/dubbo/issues/12886

   <!-- If you need to report a security issue please visit https://github.com/apache/dubbo/security/policy -->
   
   - [ ] I have searched the [issues](https://github.com/apache/dubbo/issues) of this repository and believe that this is not a duplicate.
   
   ### Environment
   
   * Dubbo version: xxx
   * Operating System version: xxx
   * Java version: xxx
   
   ### Steps to reproduce this issue
   
   1. xxx
   2. xxx
   3. xxx
   
   Pls. provide [GitHub address] to reproduce this issue.
   
   ### Expected Behavior
   
   <!-- What do you expect from the above steps?-->
   
   ### Actual Behavior
   
   <!-- What actually happens? -->
   
   If there is an exception, please attach the exception trace:
   
   ```
   Just put your stack trace here!
   ```
   


-- 
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] drama10096 commented on issue #12886: 原本dubbo2.7所在的java应用A,升级dubbo3.0.x以后,调用dubbo2.7版本java应用B,能调用成功,但是返回的对象为空对象(不是null,没有任何属性)

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

   ![image](https://github.com/apache/dubbo/assets/37733059/897642e7-10dc-4b71-8636-796bbcd2ff64)
   
   ![image](https://github.com/apache/dubbo/assets/37733059/e042e25a-c122-4901-b24a-fd0fd73fecda)
   


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


Re: [I] 原本dubbo2.7所在的java应用A,升级dubbo3.0.x以后,调用dubbo2.7版本java应用B,能调用成功,但是返回的对象为空对象(不是null,没有任何属性) [dubbo]

Posted by "CrazyHZM (via GitHub)" <gi...@apache.org>.
CrazyHZM closed issue #12886: 原本dubbo2.7所在的java应用A,升级dubbo3.0.x以后,调用dubbo2.7版本java应用B,能调用成功,但是返回的对象为空对象(不是null,没有任何属性)
URL: https://github.com/apache/dubbo/issues/12886


-- 
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] drama10096 commented on issue #12886: 原本dubbo2.7所在的java应用A,升级dubbo3.0.x以后,调用dubbo2.7版本java应用B,能调用成功,但是返回的对象为空对象(不是null,没有任何属性)

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

   也没有任何报错,官网里说“往 3.0 版本的升级过程将会是完全透明的,用户无需做任何业务改造,升级 3.0.x 后的框架行为将保持与 2.x 版本完全一致。”,但是明显感觉“序列化方面”有不兼容


-- 
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] drama10096 commented on issue #12886: 原本dubbo2.7所在的java应用A,升级dubbo3.0.x以后,调用dubbo2.7版本java应用B,能调用成功,但是返回的对象为空对象(不是null,没有任何属性)

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

   今天定位出问题了,原因像是dubbo3.0.x,支持间接传递“dubbo调用上下文attaments参数”,导致后续逻辑误判,执行了额外的序列化策略


-- 
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] drama10096 commented on issue #12886: 原本dubbo2.7所在的java应用A,升级dubbo3.0.x以后,调用dubbo2.7版本java应用B,能调用成功,但是返回的对象为空对象(不是null,没有任何属性)

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

   22年上半年就发现了,那些什么“安全扫描,动不动扫描出dubbo有安全漏洞”,安全部门催促升级,升级了consumer侧的“返序列化结果”又为空


-- 
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 #12886: 原本dubbo2.7所在的java应用A,升级dubbo3.0.x以后,调用dubbo2.7版本java应用B,能调用成功,但是返回的对象为空对象(不是null,没有任何属性)

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

   可以提供一个可以复现的 demo 吗,另外看一下 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] drama10096 commented on issue #12886: 原本dubbo2.7所在的java应用A,升级dubbo3.0.x以后,调用dubbo2.7版本java应用B,能调用成功,但是返回的对象为空对象(不是null,没有任何属性)

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

   > 可以提供一个可以复现的 demo 吗,另外看一下 Dubbo 是否有对应的报错日志
   没有任何dubbo相关的报错,就是结果为空对象。
   
   场景描述:
   golang语言网关F应用通过“dubbo-go”组件,泛化invoke调用europa应用的dubbo rpc服务,然后europa应用又调用我这边aladdin应用的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] drama10096 commented on issue #12886: 原本dubbo2.7所在的java应用A,升级dubbo3.0.x以后,调用dubbo2.7版本java应用B,能调用成功,但是返回的对象为空对象(不是null,没有任何属性)

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

   还有一个情况是:如果直接走“我这边europa”,通过@GatMapping暴露一个http接口调用,就能正常返回数据,查询条件查询环境一模一样;


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