Hi,
One of my application is throwing following error:
noclassdeffounderror: org/apache/http/client/methods/httpurirequest
How to resolve this?
Thanks
Hi,
In your application you should download and add the httpclient jar file. After this problem should be solved.
If you are using the maven then add following dependency:
<dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> <version>4.5.3</version> </dependency>
Thanks