Account


Earned badges

Achievement: Latest Unlocked

Topic Started

Topics
Hi There, I am working on creating a package with a document that has an Id assigned to it: .withDocument( newDocumentWithName( "Second Document" ) .fromFile( "src/main/Resources/document
Hi There, In our application, we generate a certificate for the end user when they complete the transaction and we want that certificate to be automatically signed for the user without any interactio
Hi There, I am trying to create session token to access the eSignature in an iframe.
Hi There, I am using the example provided on this page : https://developer.esignlive.com/guides/quick-start/check-package-status-and-download-documents-java/ In this example, there's a line to chec
Hi There, In the integration that I'm doing, I will collect user's data on the Portal that I'm building and by using that data, I will generate a PDF and on that PDF I want to get the user's signatur

Replies Created

Reply to: Multiple Signers on Different Documents under single package

0 votes
Hi Michael, What if I want them to be signer by user with same email but different name? In our application, we generate two insurance certificates, and they are underwritten by different companies, and I want them to be digitally signer automatically before delivering it two user. For achieving this, I tried adding another email as sender in my sandbox account and made that the second signer and when I do that, the certificate 1 is automatically signed by signer 1, which is from the email of my Owner account, but the it doesn't Certificate 2 doesn't get signed with signer 2, which is another sender I added to my account. I have completed the registration process for the sender, but it still doesn't work. So, instead of doing that, I tried creating two sender with same email (as shown in code below) but both are signed by signer 1 (which I beleive is due to same email?). What can I do for achieving the functionality I want?
DocumentPackage documentPackage = PackageBuilder.NewPackageNamed("Test Package")
                                                        .WithSigner(SignerBuilder.NewSignerWithEmail("[email protected]")
                                                                  .WithFirstName("John")
                                                                  .WithLastName("Doe")
                                                                  .WithCustomId("Signer1"))
                                                        .WithSigner(SignerBuilder.NewSignerWithEmail("[email protected]")
                                                                  .WithFirstName("Jane")
                                                                  .WithLastName("Doe")
                                                                  .WithCustomId("Signer2"))
                                                        .WithDocument(DocumentBuilder.NewDocumentNamed("sampleAgreement")
                                                                    .FromStream(fs, DocumentType.PDF)
                                                                    .WithSignature(SignatureBuilder
                                                                                .SignatureFor("[email protected]")
                                                                                   .OnPage(0)
                                                                                   .AtPosition(175, 165))
                                                                     )
                                                         .WithDocument(DocumentBuilder.NewDocumentNamed("sampleAgreement")
                                                                    .FromStream(fs2, DocumentType.PDF)
                                                                    .WithSignature(SignatureBuilder
                                                                                .SignatureFor("[email protected]")
                                                                                   .OnPage(0)
                                                                                   .AtPosition(175, 165))
                                                                     )
                                                        .Build();
            PackageId packageId = eslClient.CreateAndSendPackage(documentPackage);
            
            eslClient.SignDocuments(packageId);
Thanks, Gurvinder

Reply to: Multiple Signers on Different Documents under single package

0 votes
Hi Michael, I tried adding one more sender to my account but document for that sender didn't get signed automatically in my sandbox account. What I did was following : 1. In admin account, in senders I invited my other account 2. Registered for that account with the email I got. 3. In the signer 2, added that email as sender and added that email in signatureFor. The 1st document with main admin account gets signed but second doesn't. This is in the sandbox account. Did I miss anything? Thanks, Gurvinder

Reply to: Performance improvement

0 votes
Hi Haris, I can do something like: Create different packages for each document, run them on different threads (each thread has its own ESL client). This makes the task to be completed in about 4~5 seconds. It is fine by us for each document to have it's own package but I was wondering if I can do something combine those two packages?

Subscriptions

Topics Replies Freshness Views Users
Hi There, I am working on creating a package with a document that has an Id assigned to it: .withDocument( newDocumentWithName( "Second Document" ) .fromFile( "src/main/Resources/document
1 7 years 2 months ago 17
Profile picture for user harishaidary
Hi There, In our application, we generate a certificate for the end user when they complete the transaction and we want that certificate to be automatically signed for the user without any interactio
7 2 years 11 months ago 234
Profile picture for user Duo_Liang
Profile picture for user mwilliams
Hi There, I am trying to create session token to access the eSignature in an iframe.
1 7 years 2 months ago 29
Profile picture for user harishaidary
Hi There, I am using the example provided on this page : https://developer.esignlive.com/guides/quick-start/check-package-status-and-download-documents-java/ In this example, there's a line to chec
1 7 years 2 months ago 60
Profile picture for user mwilliams
Hi There, In the integration that I'm doing, I will collect user's data on the Portal that I'm building and by using that data, I will generate a PDF and on that PDF I want to get the user's signatur
2 7 years 3 months ago 9
Profile picture for user harishaidary

Code Share

This user has not submitted any code shares.

Subscriptions Release Notes

This user is not subscribed to any release notes.