Hello @rahulmishra179
Could you share the SDK version?
Thanks in advance,
The com.sun.ws.rs.ext package, and RuntimeDelegateImpl, is contained in the jersey client jar. If you are using Maven add the dependency below to your pom.xml file
<dependency>
<groupId>org.glassfish.jersey.core</groupId>
<artifactId>jersey-client</artifactId>
<version>3.1.6</version>
</dependency>
If not using MAVEN ,please use the link below
https://mvnrepository.com/artifact/org.glassfish.jersey.core/jersey-client/3.1.6
Hello @Achille @mikemejcr
thank you for giving response
but still this issue is not resolved i am using
<dependency> <groupId>com.docusign</groupId> <artifactId>docusign-esign-java</artifactId> <version>3.18.0</version></dependency>
and i tried with the
<dependency>
<groupId>org.glassfish.jersey.core</groupId>
<artifactId>jersey-client</artifactId>
<version>3.1.6</version>
</dependency>
but still same issue is generating . could you please look into this .
Thanks is advance.
Hi @rahulmishra179
Replace the code
OAuth.OAuthToken token =apiClient.requestJWTUserToken(clientId,userId,scopes,rsaPrivateKey,expiresIn);
By:
OAuthToken token =apiClient.requestJWTUserToken(clientId,userId,scopes,rsaPrivateKey,expiresIn);
If the problem persist. Try to reference the class name in the code so that he class will be loaded when JVM find the class available in the classpath.
Example:
com.sun.ws.rs.ext.RuntimeDelegateImpl anInstance = null;
hello @Achille.Nisengwe
I integrated DocuSign java SDK in spring boot project . and its now working fine in my local but when we deploy it on dev server with the same jar its not working on dev server . it is giving error
error is: {}
java.lang.RuntimeException: java.lang.ClassNotFoundException: com.sun.ws.rs.ext.RuntimeDelegateImpl
what could be the issue on dev server i checked on firewall every URL is accessible and also deploy the same jar that present in my local . and the DocuSign integration key and all is same as local and in local its working fine .if possible can you please give the solution. Thanks in advance.
Hi @rahulmishra179,
What command did use the build the jar. Please share the content of the project pom.xml <build>...</build> element.