Giter Club home page Giter Club logo

Comments (8)

ccf0411 avatar ccf0411 commented on May 23, 2024

mark一下

from wechatpay-apache-httpclient.

xy-peng avatar xy-peng commented on May 23, 2024

@SnailOfLife 能贴一下你设置RetryHandler部分的代码吗

from wechatpay-apache-httpclient.

ccf0411 avatar ccf0411 commented on May 23, 2024

@SnailOfLife 能贴一下你设置RetryHandler部分的代码吗

你好,我之前也遇到这个问题,业务场景是发生在,微信支付完成后,立马去做查询操作,此时微信如果在处理中,会返回IO异常,IO异常会自动被org.apache.http.impl.execchain的RetryExec捕获并做重试操作,但是由于第一遍请求时,org.apache.http.impl.execchain里的ProtocolExec中,将uri置空了,所以SignatureExec中,request.getURI().getHost().endsWith(".mch.weixin.qq.com")就会报空指针异常。

from wechatpay-apache-httpclient.

xy-peng avatar xy-peng commented on May 23, 2024

@ccf0411 你好,没太明白具体的场景,还需要你提供更详细的说明

业务场景是发生在,微信支付完成后,立马去做查询操作,此时微信如果在处理中,会返回IO异常

是异步接口?是哪个接口出现的?前面的“完成”是指请求已经发送并收到了微信支付的应答吗?

from wechatpay-apache-httpclient.

SnailOfLife avatar SnailOfLife commented on May 23, 2024

@ccf0411 你好,没太明白具体的场景,还需要你提供更详细的说明

业务场景是发生在,微信支付完成后,立马去做查询操作,此时微信如果在处理中,会返回IO异常

是异步接口?是哪个接口出现的?前面的“完成”是指请求已经发送并收到了微信支付的应答吗?

我是复用连接的时候,连接已失效导致抛出 NoHttpResponseException。这个时候通过httpclient重试机制时用到的。由于默认的重试机制问题,只有在get的时候遇到这个bug,也就是查询操作。

from wechatpay-apache-httpclient.

SnailOfLife avatar SnailOfLife commented on May 23, 2024

@SnailOfLife 能贴一下你设置RetryHandler部分的代码吗

httpClient = builder
.setKeepAliveStrategy(myStrategy)
.evictExpiredConnections()
.setRetryHandler(new MyStandardHttpRequestRetryHandler(3,false))
.setDefaultRequestConfig(defRequestConfig).build();

其中MyStandardHttpRequestRetryHandler 是模仿 StandardHttpRequestRetryHandler 添加 this.idempotentMethods.put("POST", Boolean.TRUE);
但是在正常情况下是复现不出来这个问题的。我调试的时候是将请求超时时间设置为1ms,并重写HttpRequestRetryHandler 中retryRequest 方法始终返回true。才复现了此问题。

线上是因为采用连接池管理复用连接。当选取一个使用过的连接时,有可能已断开抛出NoHttpResponseException 而导致重试的。这个问题只在新的微信分中遇到过。

from wechatpay-apache-httpclient.

xy-peng avatar xy-peng commented on May 23, 2024

String host = request.getURI().getHost();
if(host==null){
host = request.getTarget().toHostString();
}
if (host.endsWith(".mch.weixin.qq.com")) {
return executeWithSignature(route, request, context, execAware);
} else {
return mainExec.execute(route, request, context, execAware);
}

这样改是个办法。

我来重现下,尽快修复这里。确实是个隐患,非常感谢 @SnailOfLife @ccf0411 提供信息。

from wechatpay-apache-httpclient.

xelloss00x avatar xelloss00x commented on May 23, 2024

@xy-peng 请问下,bug修复了吗

from wechatpay-apache-httpclient.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.