Hide Forgot
Help Desk Ticket Reference: https://access.redhat.com/issue-tracker/?module=issues&action=view&tid=1148953&gid=1354 Workaround Description: There is no known workaround. project_key: SOA If you set your config like this: <action ... class="org.jboss.soa.esb.actions.soap.proxy.SOAPProxy"> ... <property name="http-client-properties"> <http-client-property name="http.method.retry-handler" value="com.foobar.MyRetryHandler"/> </property> or like this: <action ... class="org.jboss.soa.esb.actions.soap.proxy.SOAPProxy"> ... <property name="file" value="http-client.properties"/> http-client.properties: http.method.retry-handler=com.foobar.MyRetryHandler , your custom retry handler is not picked up. This is NOT a bug in SOAPProxy. The bug is in both POSTHttpMethodFactory and GETHttpMethodFactory, where in the setConfiguration(ConfigTree):void method, the http-client-properties that are available in the passed-in ConfigTree are not set into the HttpMethod's HttpMethodParams. What should happen is that ANY property that starts with "http.method." should be set into the HttpMethodParams.
Link: Added: This issue depends JBESB-3378
Link: Added: This issue is incorporated by SOA-2210
Link: Removed: This issue is incorporated by SOA-2210
Link: Added: This issue related SOA-2224
Link: Added: This issue depends JBESB-3468
According to Kevin, this is not a valid issue as reported. Even so, it's post ESB 4.9. Actual issues related to this are resolved and in 5.1 already.
To clarify, the suggested fix is not valid as it is not possible to propagate all 'http.method.' properties to the HttpMethodParams. The specific issue of configuring the retry handler has been addressed in JBESB-3378.
Temporarily reopening to update release note info.
https://issues.jboss.org/browse/JBESB-3378 There was a bug in both POSTHttpMethodFactory and GETHttpMethodFactory, in which the setConfiguration(ConfigTree):void method's http-client-properties were not set into the HttpMethod's HttpMethodParams. This meant that any custom retry handlers were ignored. This bug has now been rectified so that any property that starts with "http.method." is set into HttpMethodParams. As a result, custom retry handlers are now detected correctly.
Release Notes Docs Status: Added: Documented as Resolved Issue Writer: Added: dlesage
Temporarily reopening to fix release note.
Release Notes Text: Added: https://issues.jboss.org/browse/JBESB-3378 There was a bug in both POSTHttpMethodFactory and GETHttpMethodFactory, in which the setConfiguration(ConfigTree):void method's http-client-properties were not set into the HttpMethod's HttpMethodParams. This meant that any custom retry handlers were ignored. This bug has now been rectified so that any property that starts with "http.method." is set into HttpMethodParams. As a result, custom retry handlers are now detected correctly.