No Fields or Signatures mapped to form
Wednesday, September 14, 2016 at 10:26amHi all,
I am just getting through a few cycles of testing in the sand box on my way to uploading and populating large form with multiple signers from an external web app. It seems the documentation is not all the clear how to map fields to existing to PDF form fields. Also is there a way to test my code (100 plus fields and values) with out having to actually submit a package and wait for the emails to be sent?
It sends the document with out any errors but there are no fields filled in and no signature fields added. I have also attached the form I am trying to map to.
Emails get sent out but when the first signer oepn the form it just says
"This is a disclosure Document. You must read it and click the Accept button at the end of the Document before you can continue to the next Document."
Any here is my test code - Note: when I ran this with just a single signature it did work.
EslClient eslClient = new EslClient(apiKey, apiUrl); string FormPath = Server.MapPath("~/Forms/Adv_Directives_Combined_2008_02.pdf"); FileStream fs = System.IO.File.OpenRead(FormPath); DocumentPackage thisPackage = PackageBuilder .NewPackageNamed("Advanced Directives Combined Form") .WithSettings(DocumentPackageSettingsBuilder.NewDocumentPackageSettings()) .WithSigner(SignerBuilder.NewSignerWithEmail(model.SignerEmail) .WithFirstName(model.SignerFirstName) .WithLastName(model.SignerLastName) .SigningOrder(1)) .WithSigner(SignerBuilder.NewSignerWithEmail("[email protected]") .WithFirstName("Todd") .WithLastName("Crisafulli") .SigningOrder(2)) .WithDocument(DocumentBuilder.NewDocumentNamed("MentalHealthCareDeclaration_" + model.SignerFirstName + "_" + model.SignerLastName) .EnableExtraction() .FromStream(fs, DocumentType.PDF) .WithSignature(SignatureBuilder.SignatureFor(model.SignerEmail) .WithName("V_MySignature") .WithPositionExtracted()) .WithSignature(SignatureBuilder.SignatureFor("[email protected]") .WithName("IIIA_txtAgentSignature") .WithPositionExtracted()) .WithInjectedField(FieldBuilder.TextField() .WithName("IIIA_txtAgentAcceptPrintName") .WithValue("Todd Crisafulli") .WithPositionExtracted()) .WithInjectedField(FieldBuilder.CheckBox() .WithName("IIA_cbxPsychiatricFacilityPrefered") .WithValue("checked") .WithPositionExtracted()) .WithInjectedField(FieldBuilder.RadioButton("IIA_rdoRecommendedMedication") // this is the radio button group name on the PDF .WithName("IIA_rdoRecommendedMedicationsYes") .WithValue(false) .WithPositionExtracted()) .WithInjectedField(FieldBuilder.RadioButton("IIA_rdoRecommendedMedication") // this is the radio button group name on the PDF .WithName("IIA_rdoRecommendedMedicationsNo") .WithValue(true) .WithPositionExtracted()) ) .Build(); PackageId packageId = eslClient.CreatePackage(thisPackage); eslClient.SendPackage(packageId);
Reply to: No Fields or Signatures mapped to form
Friday, September 16, 2016 at 07:43amReply to: No Fields or Signatures mapped to form
Wednesday, September 14, 2016 at 10:27amReply to: No Fields or Signatures mapped to form
Wednesday, September 14, 2016 at 01:35pmReply to: No Fields or Signatures mapped to form
Wednesday, September 14, 2016 at 02:17pmReply to: No Fields or Signatures mapped to form
Wednesday, September 14, 2016 at 03:35pmReply to: No Fields or Signatures mapped to form
Wednesday, September 14, 2016 at 03:46pmReply to: No Fields or Signatures mapped to form
Friday, September 16, 2016 at 04:12amReply to: No Fields or Signatures mapped to form
Friday, September 16, 2016 at 06:03amReply to: No Fields or Signatures mapped to form
Friday, September 16, 2016 at 06:03amReply to: No Fields or Signatures mapped to form
Friday, September 16, 2016 at 07:38amReply to: No Fields or Signatures mapped to form
Friday, September 16, 2016 at 11:12amReply to: No Fields or Signatures mapped to form
Monday, September 19, 2016 at 03:44amReply to: No Fields or Signatures mapped to form
Tuesday, September 20, 2016 at 06:57amReply to: No Fields or Signatures mapped to form
Tuesday, September 20, 2016 at 07:27amReply to: No Fields or Signatures mapped to form
Tuesday, September 20, 2016 at 07:28amReply to: No Fields or Signatures mapped to form
Tuesday, September 20, 2016 at 07:38amReply to: No Fields or Signatures mapped to form
Tuesday, September 20, 2016 at 07:41amReply to: No Fields or Signatures mapped to form
Tuesday, September 20, 2016 at 07:47amReply to: No Fields or Signatures mapped to form
Tuesday, September 20, 2016 at 08:11amReply to: No Fields or Signatures mapped to form
Tuesday, September 20, 2016 at 08:33amReply to: No Fields or Signatures mapped to form
Tuesday, September 20, 2016 at 08:41amReply to: No Fields or Signatures mapped to form
Tuesday, September 20, 2016 at 09:25amReply to: No Fields or Signatures mapped to form
Tuesday, September 20, 2016 at 09:29amReply to: No Fields or Signatures mapped to form
Tuesday, September 20, 2016 at 09:57amReply to: No Fields or Signatures mapped to form
Tuesday, September 20, 2016 at 10:11amReply to: No Fields or Signatures mapped to form
Tuesday, September 20, 2016 at 10:40amReply to: No Fields or Signatures mapped to form
Tuesday, September 20, 2016 at 11:06amReply to: No Fields or Signatures mapped to form
Tuesday, September 20, 2016 at 11:08amReply to: No Fields or Signatures mapped to form
Wednesday, September 21, 2016 at 05:07amReply to: No Fields or Signatures mapped to form
Wednesday, September 21, 2016 at 07:19amReply to: No Fields or Signatures mapped to form
Wednesday, September 21, 2016 at 07:53am