Skip to content
Advertisement

Using google-http-client and google-http-client-apache-v2 behind a proxy produces NonRepeatableRequestException

I’m using google-http-client and google-http-client-apache-v2 libraries to make a POST request behind a proxy.

JavaScript

That request produces a NonRepeatableRequestException:

JavaScript

It seems like ApacheHttpRequest wraps ByteArrayContent that is repeatable (see JavaDoc) inside a ContentEntity that is non-repeatable.

enter image description here

Debuging execution inside google libraries, proxy is returning “407 Proxy Authentication Required”, then it tries to repeat the request (guess that including the credentials) and that exception arises because ContentEntity used by google library is non-repeatable.

Is there any way to avoid handshake with proxy including credentials in first request to avoid reuse of the entity?

Is there any way to tell google libraries that uses a repeatable entity?

Tryed with follwing library versions:

  • google-api-client-1.31.5
  • google-http-client-jackson2-1.39.2
  • google-oauth-client-1.31.5
  • google-http-client-apache-v2-1.39.2
  • google-http-client-1.39.2
  • httpclient-4.5.13
  • httpcore-4.4.14

Advertisement

Answer

Workaround I posted on github in case it helps someone:

As workaround what I’m trying is to wrap ApacheHttpTransport in CustomApacheHttpTransport, which delegate the result of methods to ApacheHttpTransport except for buildRequest method.

This buildRequest method in CustomApacheHttpTransport builds a custom request of type CustomApacheHttpRequest.

JavaScript

This custom request is like ApacheHttpRequest except for when it is executed it creates a custom entity, CustomContentEntity, which will be repeatable depending on whether the request content supports retries.

JavaScript

The key in CustomContentEntity is isRepeatable method wich do not returns always false as ContentEntity does.

JavaScript

Also I have to create CustomApacheHttpResponse as response for CustomApacheHttpRequest because ApacheHttpResponse is package-private (CustomApacheHttpResponse is exactly like ApacheHttpResponse).

User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement