Forums
I've grabbed a completion report and am looping through the packages to archive them. I've tried the following: RestClient client; client = new RestClient("https://apps.e-signlive.com/api"); UrlTemplate template; template = new UrlTemplate("https://apps.e-signlive.com/api"); String path = template.urlFor(UrlTemplate.PACKAGE_ID_PATH) .replace("{packageId}", packageCompletionReport.getId()) .build(); String json = "{\"status\":\"ARCHIVED\"}"; try { client.put(path, json); } catch (RequestException e) { throw new EslSe
Forums
Is there a way to determine the exact position of a signature other then tryal and errors when we do this by code? I'm refering to atPosition(val_1, val_2) lines in the code snippet below...

		// Build the DocumentPackage object
		DocumentPackage documentPackage = newPackageNamed("Premilimary contract - 3345") //
				.withSigner(newSignerWithEmail("[email protected]") //
						.withFirstName("André") //
						.withLastName("Masson")) //
				.withSigner(newSignerWithEmail("[email protected]") //
						.withFirstName("Johanne") //
						.withLa
Forums
I'm running the follow code (segment) and my pdf is showing up garbled on the sandbox using Java API version 10.10.1 I can read the file Consent.pdf using any reader on my workstation, but when it gets to the sandbox site it is showing up as a series of garbled text (starts with @`%PDF-1.3...
Forums
Would anyone happen to have a full blown, sample Java application with e-SignLive integrated, that they can share? We have an idea of what we want to do, but it would be nice to see a sample application, to see if there are any things we might be overlooking that would make our integration cleaner or more feature-full. Thank you, Rex
Forums
For integrated signing (e.g. iFrame in your portal application - signer is authenticated in your application): A feature introduced in version 10.6 of the SDK allows you to create a Session Token for a Signer using the Signers Email address, instead of having to use their Signer ID. This makes it much easier to request Session Tokens, as you don't need to track the Signer Id in order to make the request - simply use their Email address. For example, you might not want to generate custom Signer Id's and manage them in your integration layer.