Topic Replies Freshness Views Users
Normal topic
Hi There, I am trying to create session token to access the eSignature in an iframe. I am using the following code to generate and send the document: DocumentPackage documentPackage = newPackageNamed( PackageName ) …
Normal topic

We are seeing this error:

Caused by: java.lang.NoSuchMethodError: com.silanis.esl.sdk.builder.CeremonyLayoutSettingsBuilder.withoutIFrame()Lcom/silanis/esl/sdk/builder/CeremonyLayoutSettingsBuilder;

Just…

Normal topic

Hi,

Is it possible to invite a sender throught JAVA SDK? If yes, how to do it?

Thanks,

Wendy

 

Normal topic
1. Is it possible to show user a custom popup after clicking on OPT-OUT button? I would like to display a popup window with a confirmation to the user, that he is discontinuing the esign ceremony process with OK and Cancel…
Normal topic
I have a custom consent form as the first document in the esign ceremony with OPT-OUT and ACCEPT buttons. I would like to know if there is a event notification that esignlive system sends out when User click on "Accept" button.
Normal topic
I would like to create my own "Accept" and "OPT-OUT" buttons with a custom message as popup to be displayed when user click on OPT-OUT or Accept button. I would like to know if there is any service available in EsignLive that I can call,…
Normal topic

Hi,

 

Is there a way to send an email to the signer when a package is ready to download which means that this package has been signed and status is COMPLETE without enable email.complete.

Thanks

Normal topic

Hi Team,

I need to update the name of the document, please help me in that.

Note: document has been already signed by 1 signer..

 

Thanks

Normal topic
Hi, Chinese is not working on package level. We have application and deployed the JAR file but Locale is not working for CHINESE. It is working for rest all Language. Dont know exact issue because it is Siebel Application and we can…
Normal topic
I'm experiencing an issue when I try to update a signature type from click-to-sign to capture, after a transaction is created. We have tried the modifySignature method using the Java SDK and it seems like this approach does not work. FYI,…
Normal topic
Hi, I am using document extraction with field to identify the signature position for a signer. If i have a pdf with 3 signatures with field names ExecutedBy_p{counter}, only the last signature is coming in place. Rest all are showing on…
Normal topic

Hi,

 

We are using JAVA SDK v11.47 , we are downloading the PDF using the below code that is there on your developer portal. 

Observations:

1.  The files that we download using the…

Normal topic
We have been working mainly with the UI, but are looking to get started with the Java SDK. Is there any documentation or tutorials available to help?
Normal topic
Is it possible to set different language for different signer within the same package Thanks
Normal topic

Hi,

3 separate packages A, B and C are created via Java SDK,  I'd like to know if OneSpan can associate these three packages together based on a unique id and treat these three packages like a…

Normal topic
Hi, I have noticed that there are a bunch of different error messages under the EslServerException. Where can I find a list of all these error messages with their corresponding error codes and error names. Example: com.silanis.esl.sdk…
Normal topic
Hi, I am trying to find my API Key that is mentioned in the following step by step guide. https://developer.esignlive.com/guides/quick-start/creating-and-sending-a-package-java/ The first few lines define your connection information for…
Normal topic

Hi all,

I am trying to implement SDK-11.33 to my current sprint boot application. But when I try to start the app I get the following issue: 

Caused by: java.lang.IllegalArgumentException: LoggerFactory is not a…

Normal topic

How do I move this logs from catalina.out to a different file? Also, are they logs generated by System.out.println?

Jul 22, 2021 9:36:33 AM com.silanis.esl.sdk.internal.Support logRequest

Jul 22, 2021 9:36:33 AM com…

Normal topic
Hi Team, Greetings for the day. I have a quick question regarding the logo customization (For Branding ceremony and for the webpage I visit after clicking on the link Go to Documents from the email I receive to download…
Normal topic

I am wondering if we are able to increase the first name and last name character length?  Right now, it's at 64 each but we actually had someone that had a longer name than the allowed characters.

Normal topic

Hello, what is the maximum number of characters allowed in the package name?  The JavaDoc for the method PackageBuilder.newPackageNamed() states:

@param name the package name @size(min="1", max="64")

Normal topic
What is the minimum Java version required for the Java SDK?
Normal topic
Hi, I am trying to embed the signing in my webpage using an iframe To generate the session…
Normal topic

We can verify when a signer signed all the documents as follow:

documentPackage.getDocuments().stream()
   .flatMap(d -> d.getSignatures().stream())
   .filter(s -> Objects.equals(s…