Using WithADA() flag with On Premise solution 6.5
Wednesday, September 26, 2018 at 08:49amGood Afternoon,
My orginization is in the process of upgrading our On Premise ESignLive solution from 6.2 to 6.5. As part of this upgrade we are attempting to make some documents WCAG 2.0 AA compliant.
From reading documentation on this sight, from the ESignLive platform perspectve, i should simple be able to add .WithAda() to the settings using the SDK. However when i do that i get an error.
{"code":400,"message":"Documents uploaded to accessible transactions must be accessibility enabled.","messageKey":"error.validation.ada.notTaggedDocument","name":"Validation Error"}
However, from looking at your instruction page for this, i should only be seeing that error when the document itself is not tagged. My process is just creating the initial package which this page says is ok.
https://docs.esignlive.com/content/c_integrator_s_guide/rest_api/packages.htm#Create5
When using the SDK, this is the code i am using. just removing .WithAda() will allow the process to work again.
var package = PackageBuilder
.NewPackageNamed(productName)
.WithSigner(SignerBuilder.NewSignerWithEmail(primary.Email)
.WithFirstName(primary.FirstName)
.WithLastName(primary.LastName)
.WithCustomId(primary.SignerId)
)
.WithSettings(DocumentPackageSettingsBuilder.NewDocumentPackageSettings()
.WithAda()
.HideOwnerInPersonDropDown()
.DisableFirstAffidavit()
.DisableSecondAffidavit()
.WithHandOverLinkHref(returnUrl)
.WithHandOverLinkText("Exit")
.WithDialogOnComplete()
.WithoutOptOut()
.WithoutDocumentToolbarDownloadButton()
.WithoutLanguageDropDown()
.WithDecline()
.WithoutCaptureText()
.WithoutWatermark()
.WithCeremonyLayoutSettings(CeremonyLayoutSettingsBuilder.NewCeremonyLayoutSettings()
.WithoutBreadCrumbs()
.WithoutNavigator()
.WithoutSessionBar()
.WithoutProgressBar()
.WithoutGlobalConfirmButton()
.WithoutGlobalDownloadButton()
.WithoutGlobalNavigation()
.WithLogoImageSource(logoSource)
)
)
.Build();
var packageId = _eslClient.CreatePackage(package);
return packageId;
Now i seem to be able to use the rest service directly and get some traction in creating a package. I am running into completely different problems with that and as such i would prefer to keep using the SDK if at all possible
Reply to: Using WithADA() flag with On Premise solution 6.5
Wednesday, September 26, 2018 at 10:54am.WithAda()
and after you uploaded your first document or before sending then you enable Ada? At the same time, you can contact our support team at [email protected] to create a ticket for yourself on this issue. Then we can create an exactly same environment at our side and test and solve the issue for you. Hope this could help you! DuoReply to: Using WithADA() flag with On Premise solution 6.5
Wednesday, September 26, 2018 at 11:03amReply to: Using WithADA() flag with On Premise solution 6.5
Wednesday, September 26, 2018 at 11:32amReply to: Using WithADA() flag with On Premise solution 6.5
Wednesday, September 26, 2018 at 11:42amReply to: Using WithADA() flag with On Premise solution 6.5
Wednesday, September 26, 2018 at 11:49amReply to: Using WithADA() flag with On Premise solution 6.5
Wednesday, September 26, 2018 at 12:15pmReply to: Using WithADA() flag with On Premise solution 6.5
Thursday, September 27, 2018 at 11:25amReply to: Using WithADA() flag with On Premise solution 6.5
Thursday, September 27, 2018 at 11:37amReply to: Using WithADA() flag with On Premise solution 6.5
Friday, September 28, 2018 at 05:51amReply to: Using WithADA() flag with On Premise solution 6.5
Friday, September 28, 2018 at 05:58amReply to: Using WithADA() flag with On Premise solution 6.5
Friday, September 28, 2018 at 06:05am