Level 1
Level 2
Sign in to Community
Learn more
Sign in to view all badges
Expand my Community achievements bar.
This conversation has been locked due to inactivity. Please create a new post.
Hello,
My application need to make a REST call to the external world.
I use Apache HttpClient to do. I expect that the call goes through proxy set in AEM, but it doesn't, it directly tries to fetch data.
I do not want to add explicit configuration for proxy in my application, it should just use default proxy set inAEM.
Any ideas how to do it?
Thanks,Abhijeet
Solved! Go to Solution.
Refer this -
HttpClient is not passing through proxy
Get the factory from OSGI itself rather than creating a custom instance of HTTPClient where you would need to read the OSGI properties on your own.
//Add the HTTP Client Builder Factory reference like below in your OSGI component.
@Reference
private HttpClientBuilderFactory httpFactory; //in your method then you can get the HTTP Client object.
HTTPClient client = httpFactory.newBuilder().build();
View solution in original post
Views
Likes
Replies