├── Ruby └── DocuSignSample │ ├── log │ ├── test.log │ ├── production.log │ └── server.log │ ├── lib │ └── tasks │ │ └── .gitkeep │ ├── public │ ├── favicon.ico │ ├── resources │ │ ├── BlankPDF.pdf │ │ └── DocuSignDemo11.pdf │ ├── robots.txt │ ├── 422.html │ ├── 404.html │ ├── 500.html │ └── pop.html │ ├── app │ ├── assets │ │ ├── images │ │ │ ├── .keep │ │ │ ├── blog.png │ │ │ ├── plus.png │ │ │ ├── rails.png │ │ │ ├── calendar.png │ │ │ ├── icon-rss.png │ │ │ ├── icon-twitter.png │ │ │ ├── icon-youtube.png │ │ │ ├── icon-facebook.png │ │ │ ├── icon-linkedin.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_454545_256x240.png │ │ │ ├── follow-us_reasonably_small.png │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ └── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ ├── stylesheets │ │ │ ├── GetStatusAndDocs.css │ │ │ ├── jquery.ui.all.css │ │ │ ├── application.css │ │ │ ├── Tabs.css │ │ │ ├── scaffold.css │ │ │ └── jquery.ui.dialog.css │ │ └── javascripts │ │ │ └── application.js │ ├── views │ │ ├── logins │ │ │ └── new.html.erb │ │ ├── embed_docusign │ │ │ ├── create.html.erb │ │ │ ├── sign.html.erb │ │ │ └── _form.html.erb │ │ ├── send_document │ │ │ ├── create.html.erb │ │ │ └── edit.html.erb │ │ ├── send_template │ │ │ ├── create.html.erb │ │ │ ├── get_template.erb │ │ │ ├── edit.html.erb │ │ │ └── _get_templates.erb │ │ ├── get_status_and_docs │ │ │ ├── sign.html.erb │ │ │ └── show.html.erb │ │ └── error │ │ │ └── show.html.erb │ ├── helpers │ │ ├── error_helper.rb │ │ ├── logins_helper.rb │ │ ├── application_helper.rb │ │ ├── embed_docusign_helper.rb │ │ ├── get_status_and_docs_helper.rb │ │ ├── send_template_helper.rb │ │ └── send_document_helper.rb │ ├── controllers │ │ └── error_controller.rb │ └── models │ │ └── recipient.rb │ ├── vendor │ └── plugins │ │ └── .gitkeep │ ├── db │ ├── development.sqlite3 │ ├── seeds.rb │ ├── migrate │ │ └── 20130729051925_add_sessions_table.rb │ └── schema.rb │ ├── config.ru │ ├── doc │ └── README_FOR_APP │ ├── config │ ├── locales │ │ └── en.yml │ ├── database.yml │ ├── docusign.yml │ ├── environment.rb │ ├── boot.rb │ └── initializers │ │ ├── mime_types.rb │ │ ├── docusign.rb │ │ ├── inflections.rb │ │ ├── secret_token.rb │ │ ├── backtrace_silencers.rb │ │ └── session_store.rb │ ├── Rakefile │ ├── script │ └── rails │ └── Gemfile ├── PHP ├── DocuSignSample │ ├── include │ │ ├── header.html │ │ └── account_creds.php │ ├── css │ │ ├── GetStatusAndDocs.css │ │ ├── jquery.ui.all.css │ │ ├── Tabs.css │ │ └── jquery.ui.core.css │ ├── images │ │ ├── blog.png │ │ ├── open.gif │ │ ├── icon-rss.png │ │ ├── icon-twitter.png │ │ ├── icon-youtube.png │ │ ├── calendar-blue.gif │ │ ├── icon-facebook.png │ │ ├── icon-linkedin.png │ │ ├── ui-icons_222222_256x240.png │ │ ├── ui-icons_454545_256x240.png │ │ ├── follow-us_reasonably_small.png │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ └── ui-bg_highlight-soft_75_cccccc_1x100.png │ ├── resources │ │ ├── BlankPDF.pdf │ │ ├── Docusign_Demo_11.doc │ │ └── Docusign_Demo_11.pdf │ ├── pop.html │ ├── pop2.html │ └── sendsuccess.php ├── CodeSnippets │ ├── docs │ │ ├── LoremIpsum.pdf │ │ ├── picturePdf.pdf │ │ └── twoPagePdfWithMeta.pdf │ ├── include │ │ └── creds.php │ └── index_of_ams_sample_functions.php └── Connect │ ├── docs │ └── Sample PHP Connect solution instructions.pdf │ └── Readme.txt ├── Java ├── DocuSignSample │ ├── .gitignore │ ├── WebContent │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── css │ │ │ ├── GetStatusAndDocs.css │ │ │ ├── jquery.ui.all.css │ │ │ └── Tabs.css │ │ ├── images │ │ │ ├── blog.png │ │ │ ├── plus.png │ │ │ ├── calendar.png │ │ │ ├── icon-rss.png │ │ │ ├── icon-twitter.png │ │ │ ├── icon-youtube.png │ │ │ ├── calendar-blue.gif │ │ │ ├── icon-facebook.png │ │ │ ├── icon-linkedin.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_454545_256x240.png │ │ │ ├── follow-us_reasonably_small.png │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ └── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ ├── resources │ │ │ ├── BlankPDF.pdf │ │ │ ├── Docusign_Demo_11.doc │ │ │ └── Docusign_Demo_11.pdf │ │ ├── WEB-INF │ │ │ └── lib │ │ │ │ ├── commons-io-2.0.1.jar │ │ │ │ └── commons-fileupload-1.2.2.jar │ │ ├── header.jsp │ │ ├── index.jsp │ │ └── pop.jsp │ ├── build.properties │ └── src │ │ ├── config.properties │ │ └── net │ │ └── docusign │ │ ├── api_3_0 │ │ ├── package-info.java │ │ └── Ping.java │ │ └── credential │ │ ├── package-info.java │ │ └── Ping.java └── Connect │ ├── WebContent │ ├── META-INF │ │ └── MANIFEST.MF │ └── WEB-INF │ │ ├── lib │ │ └── servlet-api.jar │ │ └── web.xml │ ├── src │ └── net │ │ └── docusign │ │ └── receiver │ │ └── OnlyXml.java │ └── Readme.txt ├── Salesforce ├── NDAKiosk │ ├── Readme.pdf │ ├── staticresources │ │ ├── icon_ipad.png │ │ └── ndaStyles.zip │ ├── pages │ │ ├── ndaPop.page │ │ ├── NDAeSign.page │ │ ├── ndadonesignout.page │ │ ├── ndanotifyreception.page │ │ ├── NDADone.page │ │ ├── NDANameRes.page │ │ └── ndasignout.page │ └── Readme.txt ├── EmbedToDocusign │ ├── Readme.pdf │ └── src │ │ ├── EmbedDocuSign.page │ │ ├── RenderContract.page │ │ └── embedPop.page ├── SendToDocusign │ ├── Readme.pdf │ └── src │ │ ├── SendToDocuSign.page │ │ └── RenderContract.page └── Readme.txt ├── MS.NET ├── DocuSignSample │ ├── DocuSignSample │ │ ├── images │ │ │ ├── blog.png │ │ │ ├── plus.png │ │ │ ├── calendar.png │ │ │ ├── icon-rss.png │ │ │ ├── icon-facebook.png │ │ │ ├── icon-linkedin.png │ │ │ ├── icon-twitter.png │ │ │ ├── icon-youtube.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_454545_256x240.png │ │ │ ├── follow-us_reasonably_small.png │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ └── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ ├── resources │ │ │ ├── BlankPDF.pdf │ │ │ ├── DocuSign Demo '11.doc │ │ │ └── DocuSign Demo '11.pdf │ │ ├── css │ │ │ ├── GetStatusAndDocs.css │ │ │ ├── jquery.ui.all.css │ │ │ ├── Tabs.css │ │ │ └── jquery.ui.dialog.css │ │ ├── Default.aspx │ │ ├── Default.aspx.designer.cs │ │ ├── EmbeddedHost.aspx │ │ ├── Properties │ │ │ ├── DataSources │ │ │ │ └── System.Xml.XmlNode.datasource │ │ │ └── AssemblyInfo.cs │ │ ├── Service References │ │ │ ├── DocuSignAPI │ │ │ │ ├── DocuSignSample.DocuSignAPI.Envelope.datasource │ │ │ │ ├── DocuSignSample.DocuSignAPI.EnvelopePDF.datasource │ │ │ │ ├── DocuSignSample.DocuSignAPI.DocumentPDFs.datasource │ │ │ │ ├── DocuSignSample.DocuSignAPI.AccountSetting.datasource │ │ │ │ ├── DocuSignSample.DocuSignAPI.EnvelopeStatus.datasource │ │ │ │ ├── DocuSignSample.DocuSignAPI.FolderResults.datasource │ │ │ │ ├── DocuSignSample.DocuSignAPI.RecipientList.datasource │ │ │ │ ├── DocuSignSample.DocuSignAPI.AddressBookItem.datasource │ │ │ │ ├── DocuSignSample.DocuSignAPI.AvailableFolders.datasource │ │ │ │ ├── DocuSignSample.DocuSignAPI.CorrectionStatus.datasource │ │ │ │ ├── DocuSignSample.DocuSignAPI.EnvelopeTemplate.datasource │ │ │ │ ├── DocuSignSample.DocuSignAPI.PurgeDocumentStatus.datasource │ │ │ │ ├── DocuSignSample.DocuSignAPI.RecipientEsignList.datasource │ │ │ │ ├── DocuSignSample.DocuSignAPI.SaveTemplateResult.datasource │ │ │ │ ├── DocuSignSample.DocuSignAPI.SynchEnvelopeStatus.datasource │ │ │ │ ├── DocuSignSample.DocuSignAPI.VoidEnvelopeStatus.datasource │ │ │ │ ├── DocuSignSample.DocuSignAPI.TransferEnvelopeStatus.datasource │ │ │ │ ├── DocuSignSample.DocuSignAPI.FilteredEnvelopeStatuses.datasource │ │ │ │ ├── DocuSignSample.DocuSignAPI.UpdateAddressBookResult.datasource │ │ │ │ ├── DocuSignSample.DocuSignAPI.EnvelopeTemplateDefinition.datasource │ │ │ │ ├── api.disco │ │ │ │ ├── DocuSignSample.DocuSignAPI.DocuSignEnvelopeInformation.datasource │ │ │ │ ├── DocuSignSample.DocuSignAPI.AccountMembershipFeaturesList.datasource │ │ │ │ ├── DocuSignSample.DocuSignAPI.AuthoritativeCopyExportStatus.datasource │ │ │ │ ├── DocuSignSample.DocuSignAPI.FilteredEnvelopeStatusChanges.datasource │ │ │ │ └── DocuSignSample.DocuSignAPI.AuthoritativeCopyExportDocuments.datasource │ │ │ └── CredentialAPI │ │ │ │ ├── DocuSignSample.CredentialAPI.LoginResult.datasource │ │ │ │ └── credential.disco │ │ ├── Error.aspx │ │ ├── LogIn.aspx.designer.cs │ │ ├── Error.aspx.designer.cs │ │ ├── SelectUser.aspx.designer.cs │ │ ├── EmbeddedHost.aspx.designer.cs │ │ ├── GetStatusAndDocs.aspx │ │ ├── DefaultPage.Master.cs │ │ ├── pop.html │ │ ├── DefaultPage.Master.designer.cs │ │ ├── Error.aspx.cs │ │ ├── EmbedDocuSign.aspx │ │ ├── Web.Debug.config │ │ ├── Web.Release.config │ │ ├── ApiHelper.cs │ │ └── SendDocument.aspx.designer.cs │ └── DocuSignSample.sln ├── CodeSnippets │ ├── CodeSnippets │ │ ├── resources │ │ │ ├── sample.pdf │ │ │ ├── LoremIpsum.pdf │ │ │ ├── picturePdf.pdf │ │ │ └── twoPagePdfWithMeta.pdf │ │ ├── Properties │ │ │ ├── DataSources │ │ │ │ └── System.Xml.XmlNode.datasource │ │ │ └── AssemblyInfo.cs │ │ └── Service References │ │ │ └── DocuSignWeb │ │ │ ├── CodeDistribution.DocuSignWeb.Envelope.datasource │ │ │ ├── CodeDistribution.DocuSignWeb.DocumentPDFs.datasource │ │ │ ├── CodeDistribution.DocuSignWeb.EnvelopePDF.datasource │ │ │ ├── CodeDistribution.DocuSignWeb.AccountSetting.datasource │ │ │ ├── CodeDistribution.DocuSignWeb.EnvelopeStatus.datasource │ │ │ ├── CodeDistribution.DocuSignWeb.FolderResults.datasource │ │ │ ├── CodeDistribution.DocuSignWeb.RecipientList.datasource │ │ │ ├── CodeDistribution.DocuSignWeb.AddressBookItem.datasource │ │ │ ├── CodeDistribution.DocuSignWeb.AvailableFolders.datasource │ │ │ ├── CodeDistribution.DocuSignWeb.CorrectionStatus.datasource │ │ │ ├── CodeDistribution.DocuSignWeb.EnvelopeTemplate.datasource │ │ │ ├── CodeDistribution.DocuSignWeb.PurgeDocumentStatus.datasource │ │ │ ├── CodeDistribution.DocuSignWeb.RecipientEsignList.datasource │ │ │ ├── CodeDistribution.DocuSignWeb.SaveTemplateResult.datasource │ │ │ ├── CodeDistribution.DocuSignWeb.SynchEnvelopeStatus.datasource │ │ │ ├── CodeDistribution.DocuSignWeb.VoidEnvelopeStatus.datasource │ │ │ ├── CodeDistribution.DocuSignWeb.TransferEnvelopeStatus.datasource │ │ │ ├── CodeDistribution.DocuSignWeb.FilteredEnvelopeStatuses.datasource │ │ │ ├── CodeDistribution.DocuSignWeb.UpdateAddressBookResult.datasource │ │ │ ├── api.disco │ │ │ ├── CodeDistribution.DocuSignWeb.DocuSignEnvelopeInformation.datasource │ │ │ ├── CodeDistribution.DocuSignWeb.EnvelopeTemplateDefinition.datasource │ │ │ ├── CodeDistribution.DocuSignWeb.AccountMembershipFeaturesList.datasource │ │ │ ├── CodeDistribution.DocuSignWeb.AuthoritativeCopyExportStatus.datasource │ │ │ ├── CodeSnippets.DocuSignWeb.FilteredEnvelopeStatusChanges.datasource │ │ │ └── CodeDistribution.DocuSignWeb.AuthoritativeCopyExportDocuments.datasource │ ├── CodeSnippets.sln │ └── README.txt └── Connect │ ├── Properties │ ├── Settings.settings │ └── AssemblyInfo.cs │ ├── Receiver.aspx │ ├── Web References │ └── net.docusign.test │ │ ├── Reference.map │ │ ├── EnvelopePDF.datasource │ │ ├── DocumentPDFs.datasource │ │ ├── RecipientList.datasource │ │ ├── AccountSetting.datasource │ │ ├── EnvelopeStatus.datasource │ │ ├── AddressBookItem.datasource │ │ ├── CorrectionStatus.datasource │ │ ├── EnvelopeTemplate.datasource │ │ ├── RecipientEsignList.datasource │ │ ├── SaveTemplateResult.datasource │ │ ├── VoidEnvelopeStatus.datasource │ │ ├── PurgeDocumentStatus.datasource │ │ ├── SynchEnvelopeStatus.datasource │ │ ├── TransferEnvelopeStatus.datasource │ │ ├── UpdateAddressBookResult.datasource │ │ ├── FilteredEnvelopeStatuses.datasource │ │ ├── EnvelopeTemplateDefinition.datasource │ │ ├── DocuSignEnvelopeInformation.datasource │ │ ├── AccountMembershipFeaturesList.datasource │ │ ├── AuthoritativeCopyExportStatus.datasource │ │ ├── AuthoritativeCopyExportDocuments.datasource │ │ └── api.disco │ ├── hcc_poc.sln │ ├── Receiver.aspx.designer.cs │ ├── Readme.txt │ └── hcc_poc.idc ├── .gitignore └── LICENSE /Ruby/DocuSignSample/log/test.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PHP/DocuSignSample/include/header.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Ruby/DocuSignSample/lib/tasks/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Ruby/DocuSignSample/log/production.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Ruby/DocuSignSample/log/server.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Ruby/DocuSignSample/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Ruby/DocuSignSample/app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Ruby/DocuSignSample/vendor/plugins/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Java/DocuSignSample/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | dist 3 | build -------------------------------------------------------------------------------- /Ruby/DocuSignSample/app/views/logins/new.html.erb: -------------------------------------------------------------------------------- 1 | <%= render 'form' %> -------------------------------------------------------------------------------- /Ruby/DocuSignSample/app/views/embed_docusign/create.html.erb: -------------------------------------------------------------------------------- 1 | <%= render 'form' %> -------------------------------------------------------------------------------- /Ruby/DocuSignSample/app/views/send_document/create.html.erb: -------------------------------------------------------------------------------- 1 | <%= render 'form' %> -------------------------------------------------------------------------------- /Ruby/DocuSignSample/app/views/send_template/create.html.erb: -------------------------------------------------------------------------------- 1 | <%= render 'form' %> -------------------------------------------------------------------------------- /Ruby/DocuSignSample/app/views/send_template/get_template.erb: -------------------------------------------------------------------------------- 1 | <%= render 'get_templates' %> -------------------------------------------------------------------------------- /Java/Connect/WebContent/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /PHP/DocuSignSample/css/GetStatusAndDocs.css: -------------------------------------------------------------------------------- 1 | body 2 | { 3 | font: 1em Arial, sans-serif; 4 | } -------------------------------------------------------------------------------- /Java/DocuSignSample/WebContent/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /Java/DocuSignSample/WebContent/css/GetStatusAndDocs.css: -------------------------------------------------------------------------------- 1 | body 2 | { 3 | font: 1em Arial, sans-serif; 4 | } -------------------------------------------------------------------------------- /Ruby/DocuSignSample/app/views/send_document/edit.html.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Ruby/DocuSignSample/app/views/send_template/edit.html.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Ruby/DocuSignSample/app/views/get_status_and_docs/sign.html.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Salesforce/NDAKiosk/Readme.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/Salesforce/NDAKiosk/Readme.pdf -------------------------------------------------------------------------------- /PHP/DocuSignSample/images/blog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/PHP/DocuSignSample/images/blog.png -------------------------------------------------------------------------------- /PHP/DocuSignSample/images/open.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/PHP/DocuSignSample/images/open.gif -------------------------------------------------------------------------------- /PHP/CodeSnippets/docs/LoremIpsum.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/PHP/CodeSnippets/docs/LoremIpsum.pdf -------------------------------------------------------------------------------- /PHP/CodeSnippets/docs/picturePdf.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/PHP/CodeSnippets/docs/picturePdf.pdf -------------------------------------------------------------------------------- /Salesforce/EmbedToDocusign/Readme.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/Salesforce/EmbedToDocusign/Readme.pdf -------------------------------------------------------------------------------- /Salesforce/SendToDocusign/Readme.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/Salesforce/SendToDocusign/Readme.pdf -------------------------------------------------------------------------------- /PHP/DocuSignSample/images/icon-rss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/PHP/DocuSignSample/images/icon-rss.png -------------------------------------------------------------------------------- /PHP/DocuSignSample/images/icon-twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/PHP/DocuSignSample/images/icon-twitter.png -------------------------------------------------------------------------------- /PHP/DocuSignSample/images/icon-youtube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/PHP/DocuSignSample/images/icon-youtube.png -------------------------------------------------------------------------------- /PHP/DocuSignSample/resources/BlankPDF.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/PHP/DocuSignSample/resources/BlankPDF.pdf -------------------------------------------------------------------------------- /Ruby/DocuSignSample/db/development.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/Ruby/DocuSignSample/db/development.sqlite3 -------------------------------------------------------------------------------- /PHP/CodeSnippets/docs/twoPagePdfWithMeta.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/PHP/CodeSnippets/docs/twoPagePdfWithMeta.pdf -------------------------------------------------------------------------------- /PHP/DocuSignSample/images/calendar-blue.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/PHP/DocuSignSample/images/calendar-blue.gif -------------------------------------------------------------------------------- /PHP/DocuSignSample/images/icon-facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/PHP/DocuSignSample/images/icon-facebook.png -------------------------------------------------------------------------------- /PHP/DocuSignSample/images/icon-linkedin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/PHP/DocuSignSample/images/icon-linkedin.png -------------------------------------------------------------------------------- /Java/DocuSignSample/WebContent/images/blog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/Java/DocuSignSample/WebContent/images/blog.png -------------------------------------------------------------------------------- /Java/DocuSignSample/WebContent/images/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/Java/DocuSignSample/WebContent/images/plus.png -------------------------------------------------------------------------------- /Ruby/DocuSignSample/app/assets/images/blog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/Ruby/DocuSignSample/app/assets/images/blog.png -------------------------------------------------------------------------------- /Ruby/DocuSignSample/app/assets/images/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/Ruby/DocuSignSample/app/assets/images/plus.png -------------------------------------------------------------------------------- /Ruby/DocuSignSample/app/assets/images/rails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/Ruby/DocuSignSample/app/assets/images/rails.png -------------------------------------------------------------------------------- /PHP/DocuSignSample/resources/Docusign_Demo_11.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/PHP/DocuSignSample/resources/Docusign_Demo_11.doc -------------------------------------------------------------------------------- /PHP/DocuSignSample/resources/Docusign_Demo_11.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/PHP/DocuSignSample/resources/Docusign_Demo_11.pdf -------------------------------------------------------------------------------- /Ruby/DocuSignSample/public/resources/BlankPDF.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/Ruby/DocuSignSample/public/resources/BlankPDF.pdf -------------------------------------------------------------------------------- /Salesforce/NDAKiosk/staticresources/icon_ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/Salesforce/NDAKiosk/staticresources/icon_ipad.png -------------------------------------------------------------------------------- /Salesforce/NDAKiosk/staticresources/ndaStyles.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/Salesforce/NDAKiosk/staticresources/ndaStyles.zip -------------------------------------------------------------------------------- /Java/Connect/WebContent/WEB-INF/lib/servlet-api.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/Java/Connect/WebContent/WEB-INF/lib/servlet-api.jar -------------------------------------------------------------------------------- /Java/DocuSignSample/WebContent/images/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/Java/DocuSignSample/WebContent/images/calendar.png -------------------------------------------------------------------------------- /Java/DocuSignSample/WebContent/images/icon-rss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/Java/DocuSignSample/WebContent/images/icon-rss.png -------------------------------------------------------------------------------- /MS.NET/DocuSignSample/DocuSignSample/images/blog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/MS.NET/DocuSignSample/DocuSignSample/images/blog.png -------------------------------------------------------------------------------- /MS.NET/DocuSignSample/DocuSignSample/images/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/MS.NET/DocuSignSample/DocuSignSample/images/plus.png -------------------------------------------------------------------------------- /Ruby/DocuSignSample/app/assets/images/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/Ruby/DocuSignSample/app/assets/images/calendar.png -------------------------------------------------------------------------------- /Ruby/DocuSignSample/app/assets/images/icon-rss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/Ruby/DocuSignSample/app/assets/images/icon-rss.png -------------------------------------------------------------------------------- /Ruby/DocuSignSample/app/views/get_status_and_docs/show.html.erb: -------------------------------------------------------------------------------- 1 |

GetStatusAndDocs#show

2 |

Find me in app/views/get_status_and_docs/show.html.erb

3 | -------------------------------------------------------------------------------- /Java/DocuSignSample/WebContent/images/icon-twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/Java/DocuSignSample/WebContent/images/icon-twitter.png -------------------------------------------------------------------------------- /Java/DocuSignSample/WebContent/images/icon-youtube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/Java/DocuSignSample/WebContent/images/icon-youtube.png -------------------------------------------------------------------------------- /Java/DocuSignSample/WebContent/resources/BlankPDF.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/Java/DocuSignSample/WebContent/resources/BlankPDF.pdf -------------------------------------------------------------------------------- /MS.NET/CodeSnippets/CodeSnippets/resources/sample.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/MS.NET/CodeSnippets/CodeSnippets/resources/sample.pdf -------------------------------------------------------------------------------- /PHP/DocuSignSample/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/PHP/DocuSignSample/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /PHP/DocuSignSample/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/PHP/DocuSignSample/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /Ruby/DocuSignSample/app/assets/images/icon-twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/Ruby/DocuSignSample/app/assets/images/icon-twitter.png -------------------------------------------------------------------------------- /Ruby/DocuSignSample/app/assets/images/icon-youtube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/Ruby/DocuSignSample/app/assets/images/icon-youtube.png -------------------------------------------------------------------------------- /Ruby/DocuSignSample/app/views/embed_docusign/sign.html.erb: -------------------------------------------------------------------------------- 1 |
<%=@message%>
2 | -------------------------------------------------------------------------------- /Java/DocuSignSample/WebContent/images/calendar-blue.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/Java/DocuSignSample/WebContent/images/calendar-blue.gif -------------------------------------------------------------------------------- /Java/DocuSignSample/WebContent/images/icon-facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/Java/DocuSignSample/WebContent/images/icon-facebook.png -------------------------------------------------------------------------------- /Java/DocuSignSample/WebContent/images/icon-linkedin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/Java/DocuSignSample/WebContent/images/icon-linkedin.png -------------------------------------------------------------------------------- /MS.NET/CodeSnippets/CodeSnippets/resources/LoremIpsum.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/MS.NET/CodeSnippets/CodeSnippets/resources/LoremIpsum.pdf -------------------------------------------------------------------------------- /MS.NET/CodeSnippets/CodeSnippets/resources/picturePdf.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/MS.NET/CodeSnippets/CodeSnippets/resources/picturePdf.pdf -------------------------------------------------------------------------------- /MS.NET/DocuSignSample/DocuSignSample/images/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/MS.NET/DocuSignSample/DocuSignSample/images/calendar.png -------------------------------------------------------------------------------- /MS.NET/DocuSignSample/DocuSignSample/images/icon-rss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/MS.NET/DocuSignSample/DocuSignSample/images/icon-rss.png -------------------------------------------------------------------------------- /PHP/DocuSignSample/images/follow-us_reasonably_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/PHP/DocuSignSample/images/follow-us_reasonably_small.png -------------------------------------------------------------------------------- /PHP/DocuSignSample/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/PHP/DocuSignSample/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /PHP/DocuSignSample/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/PHP/DocuSignSample/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /PHP/DocuSignSample/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/PHP/DocuSignSample/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /PHP/DocuSignSample/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/PHP/DocuSignSample/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /PHP/DocuSignSample/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/PHP/DocuSignSample/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /Ruby/DocuSignSample/app/assets/images/icon-facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/Ruby/DocuSignSample/app/assets/images/icon-facebook.png -------------------------------------------------------------------------------- /Ruby/DocuSignSample/app/assets/images/icon-linkedin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/Ruby/DocuSignSample/app/assets/images/icon-linkedin.png -------------------------------------------------------------------------------- /Ruby/DocuSignSample/public/resources/DocuSignDemo11.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/Ruby/DocuSignSample/public/resources/DocuSignDemo11.pdf -------------------------------------------------------------------------------- /MS.NET/DocuSignSample/DocuSignSample/resources/BlankPDF.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/MS.NET/DocuSignSample/DocuSignSample/resources/BlankPDF.pdf -------------------------------------------------------------------------------- /Java/DocuSignSample/WebContent/resources/Docusign_Demo_11.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/Java/DocuSignSample/WebContent/resources/Docusign_Demo_11.doc -------------------------------------------------------------------------------- /Java/DocuSignSample/WebContent/resources/Docusign_Demo_11.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/Java/DocuSignSample/WebContent/resources/Docusign_Demo_11.pdf -------------------------------------------------------------------------------- /MS.NET/DocuSignSample/DocuSignSample/images/icon-facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/MS.NET/DocuSignSample/DocuSignSample/images/icon-facebook.png -------------------------------------------------------------------------------- /MS.NET/DocuSignSample/DocuSignSample/images/icon-linkedin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/MS.NET/DocuSignSample/DocuSignSample/images/icon-linkedin.png -------------------------------------------------------------------------------- /MS.NET/DocuSignSample/DocuSignSample/images/icon-twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/MS.NET/DocuSignSample/DocuSignSample/images/icon-twitter.png -------------------------------------------------------------------------------- /MS.NET/DocuSignSample/DocuSignSample/images/icon-youtube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/MS.NET/DocuSignSample/DocuSignSample/images/icon-youtube.png -------------------------------------------------------------------------------- /PHP/Connect/docs/Sample PHP Connect solution instructions.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/PHP/Connect/docs/Sample PHP Connect solution instructions.pdf -------------------------------------------------------------------------------- /Java/DocuSignSample/WebContent/WEB-INF/lib/commons-io-2.0.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/Java/DocuSignSample/WebContent/WEB-INF/lib/commons-io-2.0.1.jar -------------------------------------------------------------------------------- /Java/DocuSignSample/WebContent/header.jsp: -------------------------------------------------------------------------------- 1 |
2 | <%= session.getAttribute( Utils.SESSION_EMAIL ) %> 3 | (logout) 4 |
-------------------------------------------------------------------------------- /Java/DocuSignSample/WebContent/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/Java/DocuSignSample/WebContent/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /Java/DocuSignSample/WebContent/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/Java/DocuSignSample/WebContent/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /MS.NET/CodeSnippets/CodeSnippets/resources/twoPagePdfWithMeta.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/MS.NET/CodeSnippets/CodeSnippets/resources/twoPagePdfWithMeta.pdf -------------------------------------------------------------------------------- /PHP/DocuSignSample/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/PHP/DocuSignSample/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /Ruby/DocuSignSample/app/assets/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/Ruby/DocuSignSample/app/assets/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /Ruby/DocuSignSample/app/assets/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/Ruby/DocuSignSample/app/assets/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /Java/DocuSignSample/WebContent/images/follow-us_reasonably_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/Java/DocuSignSample/WebContent/images/follow-us_reasonably_small.png -------------------------------------------------------------------------------- /Java/DocuSignSample/WebContent/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/Java/DocuSignSample/WebContent/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /Java/DocuSignSample/WebContent/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/Java/DocuSignSample/WebContent/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /Java/DocuSignSample/WebContent/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/Java/DocuSignSample/WebContent/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /Java/DocuSignSample/WebContent/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/Java/DocuSignSample/WebContent/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /Java/DocuSignSample/WebContent/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/Java/DocuSignSample/WebContent/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /MS.NET/DocuSignSample/DocuSignSample/resources/DocuSign Demo '11.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/MS.NET/DocuSignSample/DocuSignSample/resources/DocuSign Demo '11.doc -------------------------------------------------------------------------------- /MS.NET/DocuSignSample/DocuSignSample/resources/DocuSign Demo '11.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/MS.NET/DocuSignSample/DocuSignSample/resources/DocuSign Demo '11.pdf -------------------------------------------------------------------------------- /Ruby/DocuSignSample/app/assets/images/follow-us_reasonably_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/Ruby/DocuSignSample/app/assets/images/follow-us_reasonably_small.png -------------------------------------------------------------------------------- /Ruby/DocuSignSample/app/assets/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/Ruby/DocuSignSample/app/assets/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /Ruby/DocuSignSample/app/assets/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/Ruby/DocuSignSample/app/assets/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /Ruby/DocuSignSample/app/assets/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/Ruby/DocuSignSample/app/assets/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /Ruby/DocuSignSample/app/assets/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/Ruby/DocuSignSample/app/assets/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /Ruby/DocuSignSample/app/assets/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/Ruby/DocuSignSample/app/assets/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /Java/DocuSignSample/WebContent/WEB-INF/lib/commons-fileupload-1.2.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/Java/DocuSignSample/WebContent/WEB-INF/lib/commons-fileupload-1.2.2.jar -------------------------------------------------------------------------------- /MS.NET/DocuSignSample/DocuSignSample/css/GetStatusAndDocs.css: -------------------------------------------------------------------------------- 1 | body 2 | { 3 | font: 1em Arial, sans-serif; 4 | } 5 | 6 | div.detail 7 | { 8 | display:none; 9 | margin-left:20px; 10 | } -------------------------------------------------------------------------------- /MS.NET/DocuSignSample/DocuSignSample/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/MS.NET/DocuSignSample/DocuSignSample/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /MS.NET/DocuSignSample/DocuSignSample/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/MS.NET/DocuSignSample/DocuSignSample/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /Ruby/DocuSignSample/app/assets/stylesheets/GetStatusAndDocs.css: -------------------------------------------------------------------------------- 1 | body 2 | { 3 | font: 1em Arial, sans-serif; 4 | } 5 | 6 | div.detail 7 | { 8 | display:none; 9 | margin-left:20px; 10 | } -------------------------------------------------------------------------------- /MS.NET/DocuSignSample/DocuSignSample/images/follow-us_reasonably_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/MS.NET/DocuSignSample/DocuSignSample/images/follow-us_reasonably_small.png -------------------------------------------------------------------------------- /Ruby/DocuSignSample/config.ru: -------------------------------------------------------------------------------- 1 | # This file is used by Rack-based servers to start the application. 2 | 3 | require ::File.expand_path('../config/environment', __FILE__) 4 | run DocuSignSample::Application 5 | -------------------------------------------------------------------------------- /MS.NET/DocuSignSample/DocuSignSample/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/MS.NET/DocuSignSample/DocuSignSample/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /MS.NET/DocuSignSample/DocuSignSample/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/MS.NET/DocuSignSample/DocuSignSample/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /MS.NET/DocuSignSample/DocuSignSample/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/MS.NET/DocuSignSample/DocuSignSample/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /MS.NET/DocuSignSample/DocuSignSample/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/MS.NET/DocuSignSample/DocuSignSample/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /MS.NET/DocuSignSample/DocuSignSample/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/MS.NET/DocuSignSample/DocuSignSample/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /Java/DocuSignSample/WebContent/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/Java/DocuSignSample/WebContent/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /Ruby/DocuSignSample/app/assets/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/Ruby/DocuSignSample/app/assets/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /MS.NET/DocuSignSample/DocuSignSample/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-soap-sdk/master/MS.NET/DocuSignSample/DocuSignSample/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /Java/DocuSignSample/build.properties: -------------------------------------------------------------------------------- 1 | cxf.dir=C:/apache-cxf-2.7.6/lib 2 | 3 | src.dir=src 4 | build.dir=build 5 | dist.dir=dist 6 | web.inf.dir=WEB-INF 7 | web.con.dir=WebContent 8 | 9 | java.source.version = 1.6 10 | java.target.version = 1.6 11 | -------------------------------------------------------------------------------- /Ruby/DocuSignSample/doc/README_FOR_APP: -------------------------------------------------------------------------------- 1 | Use this README file to introduce your application and point to useful places in the API for learning more. 2 | Run "rake doc:app" to generate API documentation for your models, controllers, helpers, and libraries. 3 | -------------------------------------------------------------------------------- /Ruby/DocuSignSample/public/robots.txt: -------------------------------------------------------------------------------- 1 | # See http://www.robotstxt.org/wc/norobots.html for documentation on how to use the robots.txt file 2 | # 3 | # To ban all spiders from the entire site uncomment the next two lines: 4 | # User-Agent: * 5 | # Disallow: / 6 | -------------------------------------------------------------------------------- /Salesforce/EmbedToDocusign/src/EmbedDocuSign.page: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Ruby/DocuSignSample/config/locales/en.yml: -------------------------------------------------------------------------------- 1 | # Sample localization file for English. Add more files in this directory for other locales. 2 | # See http://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points. 3 | 4 | en: 5 | hello: "Hello world" 6 | -------------------------------------------------------------------------------- /Ruby/DocuSignSample/Rakefile: -------------------------------------------------------------------------------- 1 | # Add your own tasks in files placed in lib/tasks ending in .rake, 2 | # for example lib/tasks/capistrano.rake, and they will automatically be available to Rake. 3 | 4 | require File.expand_path('../config/application', __FILE__) 5 | require 'rake' 6 | 7 | DocuSignSample::Application.load_tasks 8 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /Java/DocuSign2011Q1Sample/nbproject/private/ 2 | /Java/DocuSignSample/nbproject/private/ 3 | *.user 4 | /MS.NET/DocuSignSample/DocuSignSample/bin 5 | /MS.NET/DocuSignSample/DocuSignSample/obj 6 | Ruby/DocuSignSample/log 7 | Ruby/DocuSignSample/log/development.log 8 | Ruby/DocuSignSample/tmp 9 | Ruby/DocuSignSample/Gemfile.lock -------------------------------------------------------------------------------- /Ruby/DocuSignSample/script/rails: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | # This command will automatically be run when you run "rails" with Rails 3 gems installed from the root of your application. 3 | 4 | APP_PATH = File.expand_path('../../config/application', __FILE__) 5 | require File.expand_path('../../config/boot', __FILE__) 6 | require 'rails/commands' 7 | -------------------------------------------------------------------------------- /Salesforce/SendToDocusign/src/SendToDocuSign.page: -------------------------------------------------------------------------------- 1 | 2 |

Your eSignature request is being sent to DocuSign API!

3 |
4 | 5 | 6 | 7 |
8 | The DocuSign EnvelopeId:{!envelopeId}
9 |
-------------------------------------------------------------------------------- /Ruby/DocuSignSample/db/seeds.rb: -------------------------------------------------------------------------------- 1 | # This file should contain all the record creation needed to seed the database with its default values. 2 | # The data can then be loaded with the rake db:seed (or created alongside the db with db:setup). 3 | # 4 | # Examples: 5 | # 6 | # cities = City.create([{ :name => 'Chicago' }, { :name => 'Copenhagen' }]) 7 | # Mayor.create(:name => 'Daley', :city => cities.first) 8 | -------------------------------------------------------------------------------- /Java/DocuSignSample/WebContent/index.jsp: -------------------------------------------------------------------------------- 1 | <%@ page session="true" language="java" contentType="text/html; charset=UTF-8" 2 | pageEncoding="UTF-8"%> 3 | 4 | 5 | 6 | DocuSign Sample Welcome Page 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /MS.NET/DocuSignSample/DocuSignSample/Default.aspx: -------------------------------------------------------------------------------- 1 | <%@ Page Title="" Language="C#" MasterPageFile="~/DefaultPage.Master" AutoEventWireup="true" 2 | CodeBehind="Default.aspx.cs" Inherits="DocuSignSample.Default" %> 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /PHP/DocuSignSample/css/jquery.ui.all.css: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI CSS Framework 1.8.9 3 | * 4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Theming 9 | */ 10 | @import "jquery.ui.core.css"; 11 | @import "jquery.ui.datepicker.css"; 12 | @import "jquery.ui.theme.css"; 13 | -------------------------------------------------------------------------------- /Java/DocuSignSample/WebContent/css/jquery.ui.all.css: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI CSS Framework 1.8.9 3 | * 4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Theming 9 | */ 10 | @import "jquery.ui.core.css"; 11 | @import "jquery.ui.datepicker.css"; 12 | @import "jquery.ui.theme.css"; 13 | -------------------------------------------------------------------------------- /Ruby/DocuSignSample/db/migrate/20130729051925_add_sessions_table.rb: -------------------------------------------------------------------------------- 1 | class AddSessionsTable < ActiveRecord::Migration 2 | def self.up 3 | create_table :sessions do |t| 4 | t.string :session_id, :null => false 5 | t.text :data 6 | t.timestamps 7 | end 8 | 9 | add_index :sessions, :session_id 10 | add_index :sessions, :updated_at 11 | end 12 | 13 | def self.down 14 | drop_table :sessions 15 | end 16 | end 17 | -------------------------------------------------------------------------------- /MS.NET/DocuSignSample/DocuSignSample/css/jquery.ui.all.css: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI CSS Framework 1.8.9 3 | * 4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Theming 9 | */ 10 | @import "jquery.ui.core.css"; 11 | @import "jquery.ui.datepicker.css"; 12 | @import "jquery.ui.theme.css"; 13 | @import "jquery.ui.dialog.css"; 14 | @import "jquery.ui.button.css"; 15 | 16 | -------------------------------------------------------------------------------- /Ruby/DocuSignSample/app/assets/stylesheets/jquery.ui.all.css: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI CSS Framework 1.8.9 3 | * 4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Theming 9 | */ 10 | @import "jquery.ui.core.css"; 11 | @import "jquery.ui.datepicker.css"; 12 | @import "jquery.ui.theme.css"; 13 | @import "jquery.ui.dialog.css"; 14 | @import "jquery.ui.button.css"; 15 | 16 | -------------------------------------------------------------------------------- /PHP/CodeSnippets/include/creds.php: -------------------------------------------------------------------------------- 1 | 12 | -------------------------------------------------------------------------------- /MS.NET/Connect/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | https://test.docusign.net/api/3.0/api.asmx 7 | 8 | 9 | -------------------------------------------------------------------------------- /Salesforce/NDAKiosk/pages/ndaPop.page: -------------------------------------------------------------------------------- 1 | 3 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Salesforce/EmbedToDocusign/src/RenderContract.page: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |
____________________________________
5 |
By:
6 |
7 |
8 |
____________________________________
9 |
Date Signed:
10 |
11 |
-------------------------------------------------------------------------------- /Salesforce/SendToDocusign/src/RenderContract.page: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |
____________________________________
5 |
By:
6 |
7 |
8 |
____________________________________
9 |
Date Signed:
10 |
11 |
-------------------------------------------------------------------------------- /MS.NET/DocuSignSample/DocuSignSample/Default.aspx.designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // 5 | // Changes to this file may cause incorrect behavior and will be lost if 6 | // the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | namespace DocuSignSample 11 | { 12 | 13 | 14 | public partial class Default 15 | { 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /MS.NET/DocuSignSample/DocuSignSample/EmbeddedHost.aspx: -------------------------------------------------------------------------------- 1 | <%@ Page Title="" Language="C#" MasterPageFile="~/Tabs.Master" AutoEventWireup="true" 2 | CodeBehind="EmbeddedHost.aspx.cs" Inherits="DocuSignSample.EmbeddedHost" %> 3 | 4 | 5 | 6 | 7 |
8 | 9 |
10 |
11 | -------------------------------------------------------------------------------- /Salesforce/EmbedToDocusign/src/embedPop.page: -------------------------------------------------------------------------------- 1 | 3 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Salesforce/NDAKiosk/pages/NDAeSign.page: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /PHP/DocuSignSample/include/account_creds.php: -------------------------------------------------------------------------------- 1 | 14 | -------------------------------------------------------------------------------- /Ruby/DocuSignSample/app/views/embed_docusign/_form.html.erb: -------------------------------------------------------------------------------- 1 | <%= form_tag("create", :method => :post) do%> 2 | 3 | 4 | 7 | 10 | 11 |
5 | <%= submit_tag('Create an Envelope with 1 Signer', :name => 'OneSigner', :class => "docusignbutton orange") %> 6 | 8 | <%= submit_tag('Create an Envelope with 2 Signers', :name => 'TwoSigners', :class => "docusignbutton brown") %> 9 |
12 | <%end%> -------------------------------------------------------------------------------- /MS.NET/Connect/Receiver.aspx: -------------------------------------------------------------------------------- 1 | <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Receiver.aspx.cs" Inherits="hcc_poc.Receiver" %> 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
12 | 13 | 14 | 15 |
16 |
17 | 18 | 19 | -------------------------------------------------------------------------------- /PHP/DocuSignSample/pop.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | DocuSign SDK - Frame Pop 5 | 6 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /PHP/DocuSignSample/pop2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | DocuSign SDK - Frame Pop 5 | 6 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /MS.NET/Connect/Web References/net.docusign.test/Reference.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Ruby/DocuSignSample/config/database.yml: -------------------------------------------------------------------------------- 1 | # SQLite version 3.x 2 | # gem install sqlite3 3 | development: 4 | adapter: sqlite3 5 | database: db/development.sqlite3 6 | pool: 5 7 | timeout: 5000 8 | 9 | # Warning: The database defined as "test" will be erased and 10 | # re-generated from your development database when you run "rake". 11 | # Do not set this db to the same as development or production. 12 | test: 13 | adapter: sqlite3 14 | database: db/test.sqlite3 15 | pool: 5 16 | timeout: 5000 17 | 18 | production: 19 | adapter: sqlite3 20 | database: db/production.sqlite3 21 | pool: 5 22 | timeout: 5000 23 | -------------------------------------------------------------------------------- /Java/DocuSignSample/src/config.properties: -------------------------------------------------------------------------------- 1 | # Docusign account details 2 | 3 | docusign.integrators.key=[enter your integrator key] 4 | docusign.user.id=[enter your user ID] 5 | email=[enter account email address] 6 | docusign.password=[enter account password] 7 | 8 | # Docusign webservice endpoint 9 | docusign.webservice.endpoint=https://demo.docusign.net/api/3.0/api.asmx 10 | docusign.credential.endpoint=https://demo.docusign.net/api/3.0/credential.asmx 11 | 12 | #docusign.webservice.endpoint=https://www.docusign.net/api/3.0/dsapi.asmx 13 | #docusign.credential.endpoint=https://www.docusign.net/api/3.0/accountmanagement.asmx 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /MS.NET/CodeSnippets/CodeSnippets/Properties/DataSources/System.Xml.XmlNode.datasource: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | System.Xml.XmlNode, System.Xml, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 10 | -------------------------------------------------------------------------------- /MS.NET/DocuSignSample/DocuSignSample/Properties/DataSources/System.Xml.XmlNode.datasource: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | System.Xml.XmlNode, System.Xml, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 10 | -------------------------------------------------------------------------------- /Ruby/DocuSignSample/app/assets/javascripts/application.js: -------------------------------------------------------------------------------- 1 | // This is a manifest file that'll be compiled into application.js, which will include all the files 2 | // listed below. 3 | // 4 | // Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts, 5 | // or any plugin's vendor/assets/javascripts directory can be referenced here using a relative path. 6 | // 7 | // It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the 8 | // compiled file. 9 | // 10 | // Read Sprockets README (https://github.com/rails/sprockets#sprockets-directives) for details 11 | // about supported directives. 12 | // 13 | //= require_tree . 14 | -------------------------------------------------------------------------------- /MS.NET/Connect/Web References/net.docusign.test/EnvelopePDF.datasource: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | hcc_poc.net.docusign.test.EnvelopePDF, Web References.net.docusign.test.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /MS.NET/Connect/Web References/net.docusign.test/DocumentPDFs.datasource: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | hcc_poc.net.docusign.test.DocumentPDFs, Web References.net.docusign.test.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /MS.NET/Connect/Web References/net.docusign.test/RecipientList.datasource: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | hcc_poc.net.docusign.test.RecipientList, Web References.net.docusign.test.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /MS.NET/Connect/Web References/net.docusign.test/AccountSetting.datasource: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | hcc_poc.net.docusign.test.AccountSetting, Web References.net.docusign.test.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /MS.NET/Connect/Web References/net.docusign.test/EnvelopeStatus.datasource: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | hcc_poc.net.docusign.test.EnvelopeStatus, Web References.net.docusign.test.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /MS.NET/Connect/Web References/net.docusign.test/AddressBookItem.datasource: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | hcc_poc.net.docusign.test.AddressBookItem, Web References.net.docusign.test.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /MS.NET/Connect/Web References/net.docusign.test/CorrectionStatus.datasource: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | hcc_poc.net.docusign.test.CorrectionStatus, Web References.net.docusign.test.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /MS.NET/Connect/Web References/net.docusign.test/EnvelopeTemplate.datasource: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | hcc_poc.net.docusign.test.EnvelopeTemplate, Web References.net.docusign.test.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /MS.NET/Connect/Web References/net.docusign.test/RecipientEsignList.datasource: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | hcc_poc.net.docusign.test.RecipientEsignList, Web References.net.docusign.test.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /MS.NET/Connect/Web References/net.docusign.test/SaveTemplateResult.datasource: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | hcc_poc.net.docusign.test.SaveTemplateResult, Web References.net.docusign.test.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /MS.NET/Connect/Web References/net.docusign.test/VoidEnvelopeStatus.datasource: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | hcc_poc.net.docusign.test.VoidEnvelopeStatus, Web References.net.docusign.test.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /MS.NET/Connect/Web References/net.docusign.test/PurgeDocumentStatus.datasource: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | hcc_poc.net.docusign.test.PurgeDocumentStatus, Web References.net.docusign.test.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /MS.NET/Connect/Web References/net.docusign.test/SynchEnvelopeStatus.datasource: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | hcc_poc.net.docusign.test.SynchEnvelopeStatus, Web References.net.docusign.test.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /MS.NET/CodeSnippets/CodeSnippets/Service References/DocuSignWeb/CodeDistribution.DocuSignWeb.Envelope.datasource: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | CodeSnippets.DocuSignWeb.Envelope, Service References.DocuSignWeb.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /MS.NET/Connect/Web References/net.docusign.test/TransferEnvelopeStatus.datasource: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | hcc_poc.net.docusign.test.TransferEnvelopeStatus, Web References.net.docusign.test.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /MS.NET/Connect/Web References/net.docusign.test/UpdateAddressBookResult.datasource: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | hcc_poc.net.docusign.test.UpdateAddressBookResult, Web References.net.docusign.test.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /MS.NET/Connect/Web References/net.docusign.test/FilteredEnvelopeStatuses.datasource: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | hcc_poc.net.docusign.test.FilteredEnvelopeStatuses, Web References.net.docusign.test.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /MS.NET/DocuSignSample/DocuSignSample/Service References/DocuSignAPI/DocuSignSample.DocuSignAPI.Envelope.datasource: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | DocuSignSample.DocuSignAPI.Envelope, Service References.DocuSignAPI.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /MS.NET/CodeSnippets/CodeSnippets/Service References/DocuSignWeb/CodeDistribution.DocuSignWeb.DocumentPDFs.datasource: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | CodeSnippets.DocuSignWeb.DocumentPDFs, Service References.DocuSignWeb.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /MS.NET/CodeSnippets/CodeSnippets/Service References/DocuSignWeb/CodeDistribution.DocuSignWeb.EnvelopePDF.datasource: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | CodeSnippets.DocuSignWeb.EnvelopePDF, Service References.DocuSignWeb.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /MS.NET/Connect/Web References/net.docusign.test/EnvelopeTemplateDefinition.datasource: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | hcc_poc.net.docusign.test.EnvelopeTemplateDefinition, Web References.net.docusign.test.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /MS.NET/DocuSignSample/DocuSignSample/Error.aspx: -------------------------------------------------------------------------------- 1 | <%@ Page Title="" Language="C#" MasterPageFile="~/Tabs.Master" AutoEventWireup="true" 2 | CodeBehind="Error.aspx.cs" Inherits="DocuSignSample.Error" %> 3 | 4 | 5 | 6 | 7 |

8 | This demo has encountered an error: 9 | 10 |
11 | Please correct the issue and try again.

12 |

13 | To get help, please visit the DocuSign Community 14 | Forums.

15 |
16 | -------------------------------------------------------------------------------- /MS.NET/DocuSignSample/DocuSignSample/Service References/DocuSignAPI/DocuSignSample.DocuSignAPI.EnvelopePDF.datasource: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | DocuSignSample.DocuSignAPI.EnvelopePDF, Service References.DocuSignAPI.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /MS.NET/CodeSnippets/CodeSnippets/Service References/DocuSignWeb/CodeDistribution.DocuSignWeb.AccountSetting.datasource: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | CodeSnippets.DocuSignWeb.AccountSetting, Service References.DocuSignWeb.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /MS.NET/CodeSnippets/CodeSnippets/Service References/DocuSignWeb/CodeDistribution.DocuSignWeb.EnvelopeStatus.datasource: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | CodeSnippets.DocuSignWeb.EnvelopeStatus, Service References.DocuSignWeb.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /MS.NET/CodeSnippets/CodeSnippets/Service References/DocuSignWeb/CodeDistribution.DocuSignWeb.FolderResults.datasource: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | CodeSnippets.DocuSignWeb.FolderResults, Service References.DocuSignWeb.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /MS.NET/CodeSnippets/CodeSnippets/Service References/DocuSignWeb/CodeDistribution.DocuSignWeb.RecipientList.datasource: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | CodeSnippets.DocuSignWeb.RecipientList, Service References.DocuSignWeb.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /MS.NET/Connect/Web References/net.docusign.test/DocuSignEnvelopeInformation.datasource: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | hcc_poc.net.docusign.test.DocuSignEnvelopeInformation, Web References.net.docusign.test.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /MS.NET/DocuSignSample/DocuSignSample/Service References/DocuSignAPI/DocuSignSample.DocuSignAPI.DocumentPDFs.datasource: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | DocuSignSample.DocuSignAPI.DocumentPDFs, Service References.DocuSignAPI.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /MS.NET/CodeSnippets/CodeSnippets/Service References/DocuSignWeb/CodeDistribution.DocuSignWeb.AddressBookItem.datasource: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | CodeSnippets.DocuSignWeb.AddressBookItem, Service References.DocuSignWeb.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /MS.NET/Connect/Web References/net.docusign.test/AccountMembershipFeaturesList.datasource: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | hcc_poc.net.docusign.test.AccountMembershipFeaturesList, Web References.net.docusign.test.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /MS.NET/Connect/Web References/net.docusign.test/AuthoritativeCopyExportStatus.datasource: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | hcc_poc.net.docusign.test.AuthoritativeCopyExportStatus, Web References.net.docusign.test.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /MS.NET/DocuSignSample/DocuSignSample/Service References/CredentialAPI/DocuSignSample.CredentialAPI.LoginResult.datasource: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | DocuSignSample.CredentialAPI.LoginResult, Service References.CredentialAPI.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /MS.NET/DocuSignSample/DocuSignSample/Service References/DocuSignAPI/DocuSignSample.DocuSignAPI.AccountSetting.datasource: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | DocuSignSample.DocuSignAPI.AccountSetting, Service References.DocuSignAPI.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /MS.NET/DocuSignSample/DocuSignSample/Service References/DocuSignAPI/DocuSignSample.DocuSignAPI.EnvelopeStatus.datasource: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | DocuSignSample.DocuSignAPI.EnvelopeStatus, Service References.DocuSignAPI.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /MS.NET/DocuSignSample/DocuSignSample/Service References/DocuSignAPI/DocuSignSample.DocuSignAPI.FolderResults.datasource: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | DocuSignSample.DocuSignAPI.FolderResults, Service References.DocuSignAPI.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /MS.NET/DocuSignSample/DocuSignSample/Service References/DocuSignAPI/DocuSignSample.DocuSignAPI.RecipientList.datasource: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | DocuSignSample.DocuSignAPI.RecipientList, Service References.DocuSignAPI.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /Ruby/DocuSignSample/app/helpers/error_helper.rb: -------------------------------------------------------------------------------- 1 | ## 2 | # @copyright Copyright (C) DocuSign, Inc. All rights reserved. 3 | # 4 | # This source code is intended only as a supplement to DocuSign SDK 5 | # and/or on-line documentation. 6 | # 7 | # This sample is designed to demonstrate DocuSign features and is not intended 8 | # for production use. Code and policy for a production application must be 9 | # developed to meet the specific data and security requirements of the 10 | # application. 11 | # 12 | # THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY 13 | # KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE 14 | # IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A 15 | # PARTICULAR PURPOSE. 16 | # 17 | module ErrorHelper 18 | end 19 | -------------------------------------------------------------------------------- /Ruby/DocuSignSample/config/docusign.yml: -------------------------------------------------------------------------------- 1 | # Replace the development values with your demo credentials (or leave blank for login page) 2 | # user_name: 'Enter your DocuSign demo email here' 3 | # password: 'Enter your DocuSign demo password here' 4 | # integrators_key: 'Enter your DocuSign integrator key here' 5 | # account_id: 'Enter your DocuSign demo account ID here' 6 | # default_endpoint_url: 'https://demo.docusign.net/api/3.0/api.asmx' 7 | # credential_endpoint_url: 'https://demo.docusign.net/api/3.0/Credential.asmx' 8 | development: 9 | user_name: '' 10 | password: '' 11 | integrators_key: '' 12 | account_id: '' 13 | default_endpoint_url: 'https://demo.docusign.net/api/3.0/api.asmx' 14 | credential_endpoint_url: 'https://demo.docusign.net/api/3.0/Credential.asmx' -------------------------------------------------------------------------------- /MS.NET/CodeSnippets/CodeSnippets/Service References/DocuSignWeb/CodeDistribution.DocuSignWeb.AvailableFolders.datasource: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | CodeSnippets.DocuSignWeb.AvailableFolders, Service References.DocuSignWeb.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /MS.NET/CodeSnippets/CodeSnippets/Service References/DocuSignWeb/CodeDistribution.DocuSignWeb.CorrectionStatus.datasource: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | CodeSnippets.DocuSignWeb.CorrectionStatus, Service References.DocuSignWeb.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /MS.NET/CodeSnippets/CodeSnippets/Service References/DocuSignWeb/CodeDistribution.DocuSignWeb.EnvelopeTemplate.datasource: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | CodeSnippets.DocuSignWeb.EnvelopeTemplate, Service References.DocuSignWeb.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /MS.NET/DocuSignSample/DocuSignSample/Service References/DocuSignAPI/DocuSignSample.DocuSignAPI.AddressBookItem.datasource: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | DocuSignSample.DocuSignAPI.AddressBookItem, Service References.DocuSignAPI.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /MS.NET/DocuSignSample/DocuSignSample/Service References/DocuSignAPI/DocuSignSample.DocuSignAPI.AvailableFolders.datasource: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | DocuSignSample.DocuSignAPI.AvailableFolders, Service References.DocuSignAPI.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /MS.NET/DocuSignSample/DocuSignSample/Service References/DocuSignAPI/DocuSignSample.DocuSignAPI.CorrectionStatus.datasource: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | DocuSignSample.DocuSignAPI.CorrectionStatus, Service References.DocuSignAPI.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /MS.NET/DocuSignSample/DocuSignSample/Service References/DocuSignAPI/DocuSignSample.DocuSignAPI.EnvelopeTemplate.datasource: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | DocuSignSample.DocuSignAPI.EnvelopeTemplate, Service References.DocuSignAPI.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /Ruby/DocuSignSample/app/helpers/logins_helper.rb: -------------------------------------------------------------------------------- 1 | ## 2 | # @copyright Copyright (C) DocuSign, Inc. All rights reserved. 3 | # 4 | # This source code is intended only as a supplement to DocuSign SDK 5 | # and/or on-line documentation. 6 | # 7 | # This sample is designed to demonstrate DocuSign features and is not intended 8 | # for production use. Code and policy for a production application must be 9 | # developed to meet the specific data and security requirements of the 10 | # application. 11 | # 12 | # THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY 13 | # KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE 14 | # IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A 15 | # PARTICULAR PURPOSE. 16 | # 17 | module LoginsHelper 18 | end 19 | -------------------------------------------------------------------------------- /MS.NET/CodeSnippets/CodeSnippets/Service References/DocuSignWeb/CodeDistribution.DocuSignWeb.PurgeDocumentStatus.datasource: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | CodeSnippets.DocuSignWeb.PurgeDocumentStatus, Service References.DocuSignWeb.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /MS.NET/CodeSnippets/CodeSnippets/Service References/DocuSignWeb/CodeDistribution.DocuSignWeb.RecipientEsignList.datasource: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | CodeSnippets.DocuSignWeb.RecipientEsignList, Service References.DocuSignWeb.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /MS.NET/CodeSnippets/CodeSnippets/Service References/DocuSignWeb/CodeDistribution.DocuSignWeb.SaveTemplateResult.datasource: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | CodeSnippets.DocuSignWeb.SaveTemplateResult, Service References.DocuSignWeb.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /MS.NET/CodeSnippets/CodeSnippets/Service References/DocuSignWeb/CodeDistribution.DocuSignWeb.SynchEnvelopeStatus.datasource: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | CodeSnippets.DocuSignWeb.SynchEnvelopeStatus, Service References.DocuSignWeb.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /MS.NET/CodeSnippets/CodeSnippets/Service References/DocuSignWeb/CodeDistribution.DocuSignWeb.VoidEnvelopeStatus.datasource: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | CodeSnippets.DocuSignWeb.VoidEnvelopeStatus, Service References.DocuSignWeb.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /MS.NET/Connect/Web References/net.docusign.test/AuthoritativeCopyExportDocuments.datasource: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | hcc_poc.net.docusign.test.AuthoritativeCopyExportDocuments, Web References.net.docusign.test.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /MS.NET/Connect/Web References/net.docusign.test/api.disco: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /MS.NET/DocuSignSample/DocuSignSample/Service References/DocuSignAPI/DocuSignSample.DocuSignAPI.PurgeDocumentStatus.datasource: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | DocuSignSample.DocuSignAPI.PurgeDocumentStatus, Service References.DocuSignAPI.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /MS.NET/DocuSignSample/DocuSignSample/Service References/DocuSignAPI/DocuSignSample.DocuSignAPI.RecipientEsignList.datasource: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | DocuSignSample.DocuSignAPI.RecipientEsignList, Service References.DocuSignAPI.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /MS.NET/DocuSignSample/DocuSignSample/Service References/DocuSignAPI/DocuSignSample.DocuSignAPI.SaveTemplateResult.datasource: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | DocuSignSample.DocuSignAPI.SaveTemplateResult, Service References.DocuSignAPI.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /MS.NET/DocuSignSample/DocuSignSample/Service References/DocuSignAPI/DocuSignSample.DocuSignAPI.SynchEnvelopeStatus.datasource: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | DocuSignSample.DocuSignAPI.SynchEnvelopeStatus, Service References.DocuSignAPI.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /MS.NET/DocuSignSample/DocuSignSample/Service References/DocuSignAPI/DocuSignSample.DocuSignAPI.VoidEnvelopeStatus.datasource: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | DocuSignSample.DocuSignAPI.VoidEnvelopeStatus, Service References.DocuSignAPI.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /Ruby/DocuSignSample/app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | ## 2 | # @copyright Copyright (C) DocuSign, Inc. All rights reserved. 3 | # 4 | # This source code is intended only as a supplement to DocuSign SDK 5 | # and/or on-line documentation. 6 | # 7 | # This sample is designed to demonstrate DocuSign features and is not intended 8 | # for production use. Code and policy for a production application must be 9 | # developed to meet the specific data and security requirements of the 10 | # application. 11 | # 12 | # THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY 13 | # KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE 14 | # IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A 15 | # PARTICULAR PURPOSE. 16 | # 17 | module ApplicationHelper 18 | end 19 | -------------------------------------------------------------------------------- /MS.NET/CodeSnippets/CodeSnippets/Service References/DocuSignWeb/CodeDistribution.DocuSignWeb.TransferEnvelopeStatus.datasource: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | CodeSnippets.DocuSignWeb.TransferEnvelopeStatus, Service References.DocuSignWeb.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /Ruby/DocuSignSample/app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- 1 | /* 2 | * This is a manifest file that'll be compiled into application.css, which will include all the files 3 | * listed below. 4 | * 5 | * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets, 6 | * or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path. 7 | * 8 | * You're free to add application-wide styles to this file and they'll appear at the bottom of the 9 | * compiled file so the styles you add here take precedence over styles defined in any styles 10 | * defined in the other CSS/SCSS files in this directory. It is generally better to create a new 11 | * file per style scope. 12 | * 13 | *= require_tree . 14 | *= require_self 15 | */ 16 | -------------------------------------------------------------------------------- /Ruby/DocuSignSample/app/helpers/embed_docusign_helper.rb: -------------------------------------------------------------------------------- 1 | ## 2 | # @copyright Copyright (C) DocuSign, Inc. All rights reserved. 3 | # 4 | # This source code is intended only as a supplement to DocuSign SDK 5 | # and/or on-line documentation. 6 | # 7 | # This sample is designed to demonstrate DocuSign features and is not intended 8 | # for production use. Code and policy for a production application must be 9 | # developed to meet the specific data and security requirements of the 10 | # application. 11 | # 12 | # THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY 13 | # KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE 14 | # IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A 15 | # PARTICULAR PURPOSE. 16 | # 17 | module EmbedDocusignHelper 18 | end 19 | -------------------------------------------------------------------------------- /Ruby/DocuSignSample/app/views/error/show.html.erb: -------------------------------------------------------------------------------- 1 | 11 |

Error

12 |

This demo has encountered an error. Click here to get the error details.

<%=@error%>

13 | 14 |

Please correct the issue and try again.

15 |

To get help, please visit the DocuSign Community Forums.

-------------------------------------------------------------------------------- /MS.NET/CodeSnippets/CodeSnippets/Service References/DocuSignWeb/CodeDistribution.DocuSignWeb.FilteredEnvelopeStatuses.datasource: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | CodeSnippets.DocuSignWeb.FilteredEnvelopeStatuses, Service References.DocuSignWeb.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /MS.NET/CodeSnippets/CodeSnippets/Service References/DocuSignWeb/CodeDistribution.DocuSignWeb.UpdateAddressBookResult.datasource: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | CodeSnippets.DocuSignWeb.UpdateAddressBookResult, Service References.DocuSignWeb.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /MS.NET/DocuSignSample/DocuSignSample/Service References/DocuSignAPI/DocuSignSample.DocuSignAPI.TransferEnvelopeStatus.datasource: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | DocuSignSample.DocuSignAPI.TransferEnvelopeStatus, Service References.DocuSignAPI.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /Ruby/DocuSignSample/app/helpers/get_status_and_docs_helper.rb: -------------------------------------------------------------------------------- 1 | ## 2 | # @copyright Copyright (C) DocuSign, Inc. All rights reserved. 3 | # 4 | # This source code is intended only as a supplement to DocuSign SDK 5 | # and/or on-line documentation. 6 | # 7 | # This sample is designed to demonstrate DocuSign features and is not intended 8 | # for production use. Code and policy for a production application must be 9 | # developed to meet the specific data and security requirements of the 10 | # application. 11 | # 12 | # THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY 13 | # KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE 14 | # IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A 15 | # PARTICULAR PURPOSE. 16 | # 17 | module GetStatusAndDocsHelper 18 | end 19 | -------------------------------------------------------------------------------- /Ruby/DocuSignSample/app/helpers/send_template_helper.rb: -------------------------------------------------------------------------------- 1 | ## 2 | # @copyright Copyright (C) DocuSign, Inc. All rights reserved. 3 | # 4 | # This source code is intended only as a supplement to DocuSign SDK 5 | # and/or on-line documentation. 6 | # 7 | # This sample is designed to demonstrate DocuSign features and is not intended 8 | # for production use. Code and policy for a production application must be 9 | # developed to meet the specific data and security requirements of the 10 | # application. 11 | # 12 | # THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY 13 | # KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE 14 | # IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A 15 | # PARTICULAR PURPOSE. 16 | # 17 | 18 | module SendTemplateHelper 19 | end 20 | -------------------------------------------------------------------------------- /MS.NET/CodeSnippets/CodeSnippets/Service References/DocuSignWeb/api.disco: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /MS.NET/DocuSignSample/DocuSignSample/Service References/DocuSignAPI/DocuSignSample.DocuSignAPI.FilteredEnvelopeStatuses.datasource: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | DocuSignSample.DocuSignAPI.FilteredEnvelopeStatuses, Service References.DocuSignAPI.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /MS.NET/DocuSignSample/DocuSignSample/Service References/DocuSignAPI/DocuSignSample.DocuSignAPI.UpdateAddressBookResult.datasource: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | DocuSignSample.DocuSignAPI.UpdateAddressBookResult, Service References.DocuSignAPI.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /MS.NET/CodeSnippets/CodeSnippets/Service References/DocuSignWeb/CodeDistribution.DocuSignWeb.DocuSignEnvelopeInformation.datasource: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | CodeSnippets.DocuSignWeb.DocuSignEnvelopeInformation, Service References.DocuSignWeb.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /MS.NET/CodeSnippets/CodeSnippets/Service References/DocuSignWeb/CodeDistribution.DocuSignWeb.EnvelopeTemplateDefinition.datasource: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | CodeSnippets.DocuSignWeb.EnvelopeTemplateDefinition, Service References.DocuSignWeb.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /MS.NET/DocuSignSample/DocuSignSample/Service References/DocuSignAPI/DocuSignSample.DocuSignAPI.EnvelopeTemplateDefinition.datasource: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | DocuSignSample.DocuSignAPI.EnvelopeTemplateDefinition, Service References.DocuSignAPI.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /MS.NET/DocuSignSample/DocuSignSample/Service References/DocuSignAPI/api.disco: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /MS.NET/CodeSnippets/CodeSnippets/Service References/DocuSignWeb/CodeDistribution.DocuSignWeb.AccountMembershipFeaturesList.datasource: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | CodeSnippets.DocuSignWeb.AccountMembershipFeaturesList, Service References.DocuSignWeb.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /MS.NET/CodeSnippets/CodeSnippets/Service References/DocuSignWeb/CodeDistribution.DocuSignWeb.AuthoritativeCopyExportStatus.datasource: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | CodeSnippets.DocuSignWeb.AuthoritativeCopyExportStatus, Service References.DocuSignWeb.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /MS.NET/CodeSnippets/CodeSnippets/Service References/DocuSignWeb/CodeSnippets.DocuSignWeb.FilteredEnvelopeStatusChanges.datasource: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | CodeSnippets.DocuSignWeb.FilteredEnvelopeStatusChanges, Service References.DocuSignWeb.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /MS.NET/DocuSignSample/DocuSignSample/Service References/DocuSignAPI/DocuSignSample.DocuSignAPI.DocuSignEnvelopeInformation.datasource: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | DocuSignSample.DocuSignAPI.DocuSignEnvelopeInformation, Service References.DocuSignAPI.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /MS.NET/DocuSignSample/DocuSignSample/Service References/DocuSignAPI/DocuSignSample.DocuSignAPI.AccountMembershipFeaturesList.datasource: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | DocuSignSample.DocuSignAPI.AccountMembershipFeaturesList, Service References.DocuSignAPI.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /MS.NET/DocuSignSample/DocuSignSample/Service References/DocuSignAPI/DocuSignSample.DocuSignAPI.AuthoritativeCopyExportStatus.datasource: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | DocuSignSample.DocuSignAPI.AuthoritativeCopyExportStatus, Service References.DocuSignAPI.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /MS.NET/DocuSignSample/DocuSignSample/Service References/DocuSignAPI/DocuSignSample.DocuSignAPI.FilteredEnvelopeStatusChanges.datasource: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | DocuSignSample.DocuSignAPI.FilteredEnvelopeStatusChanges, Service References.DocuSignAPI.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /MS.NET/CodeSnippets/CodeSnippets/Service References/DocuSignWeb/CodeDistribution.DocuSignWeb.AuthoritativeCopyExportDocuments.datasource: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | CodeSnippets.DocuSignWeb.AuthoritativeCopyExportDocuments, Service References.DocuSignWeb.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /MS.NET/DocuSignSample/DocuSignSample/Service References/DocuSignAPI/DocuSignSample.DocuSignAPI.AuthoritativeCopyExportDocuments.datasource: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | DocuSignSample.DocuSignAPI.AuthoritativeCopyExportDocuments, Service References.DocuSignAPI.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /Ruby/DocuSignSample/app/assets/stylesheets/Tabs.css: -------------------------------------------------------------------------------- 1 | body { 2 | font: 16px Arial, sans-serif; 3 | } 4 | 5 | .tabs { 6 | height: 50px; 7 | overflow: hidden; 8 | position: relative; 9 | z-index: 1; 10 | display: block; 11 | width: 1024px; 12 | } 13 | 14 | .tabs section { 15 | float: left; 16 | z-index: 1; 17 | width: 254px; 18 | border-radius: 5px 5px 0 0; 19 | margin: 0 1px 0 0; 20 | } 21 | 22 | .tabs section h3 { 23 | margin: 0 1px 0 0; 24 | background: #d6d5d4; 25 | padding: 3px 10px; 26 | font-weight: bold; 27 | border-radius: 5px 5px 0 0; 28 | cursor: pointer; 29 | border-style: solid solid none solid; 30 | border-width: 0px; 31 | } 32 | 33 | .tabs section.current h3 { 34 | background: #fff; 35 | cursor: default; 36 | border-width: 1px; 37 | } -------------------------------------------------------------------------------- /Ruby/DocuSignSample/public/422.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | The change you wanted was rejected (422) 5 | 17 | 18 | 19 | 20 | 21 |
22 |

The change you wanted was rejected.

23 |

Maybe you tried to change something you didn't have access to.

24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /MS.NET/DocuSignSample/DocuSignSample/Service References/CredentialAPI/credential.disco: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Ruby/DocuSignSample/public/404.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | The page you were looking for doesn't exist (404) 5 | 17 | 18 | 19 | 20 | 21 |
22 |

The page you were looking for doesn't exist.

23 |

You may have mistyped the address or the page may have moved.

24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /Ruby/DocuSignSample/public/500.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | We're sorry, but something went wrong (500) 5 | 17 | 18 | 19 | 20 | 21 |
22 |

We're sorry, but something went wrong.

23 |

We've been notified about this issue and we'll take a look at it shortly.

24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /Ruby/DocuSignSample/public/pop.html: -------------------------------------------------------------------------------- 1 | 11 | 24 | 25 | -------------------------------------------------------------------------------- /MS.NET/DocuSignSample/DocuSignSample/LogIn.aspx.designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // 5 | // Changes to this file may cause incorrect behavior and will be lost if 6 | // the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | namespace DocuSignSample { 11 | 12 | 13 | public partial class Login { 14 | 15 | /// 16 | /// logInForm control. 17 | /// 18 | /// 19 | /// Auto-generated field. 20 | /// To modify move field declaration from designer file to code-behind file. 21 | /// 22 | protected global::System.Web.UI.HtmlControls.HtmlForm logInForm; 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /MS.NET/DocuSignSample/DocuSignSample/Error.aspx.designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // 5 | // Changes to this file may cause incorrect behavior and will be lost if 6 | // the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | namespace DocuSignSample { 11 | 12 | 13 | public partial class Error { 14 | 15 | /// 16 | /// lblErrorMessage control. 17 | /// 18 | /// 19 | /// Auto-generated field. 20 | /// To modify move field declaration from designer file to code-behind file. 21 | /// 22 | protected global::System.Web.UI.WebControls.Label lblErrorMessage; 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /MS.NET/DocuSignSample/DocuSignSample/SelectUser.aspx.designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // 5 | // Changes to this file may cause incorrect behavior and will be lost if 6 | // the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | namespace DocuSignSample { 11 | 12 | 13 | public partial class SelectUser { 14 | 15 | /// 16 | /// logInForm control. 17 | /// 18 | /// 19 | /// Auto-generated field. 20 | /// To modify move field declaration from designer file to code-behind file. 21 | /// 22 | protected global::System.Web.UI.HtmlControls.HtmlForm logInForm; 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /Ruby/DocuSignSample/config/environment.rb: -------------------------------------------------------------------------------- 1 | ## 2 | # @copyright Copyright (C) DocuSign, Inc. All rights reserved. 3 | # 4 | # This source code is intended only as a supplement to DocuSign SDK 5 | # and/or on-line documentation. 6 | # 7 | # This sample is designed to demonstrate DocuSign features and is not intended 8 | # for production use. Code and policy for a production application must be 9 | # developed to meet the specific data and security requirements of the 10 | # application. 11 | # 12 | # THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY 13 | # KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE 14 | # IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A 15 | # PARTICULAR PURPOSE. 16 | # 17 | 18 | # Load the rails application 19 | require File.expand_path('../application', __FILE__) 20 | 21 | # Initialize the rails application 22 | DocuSignSample::Application.initialize! 23 | -------------------------------------------------------------------------------- /Java/DocuSignSample/WebContent/css/Tabs.css: -------------------------------------------------------------------------------- 1 | body { 2 | font: 16px Arial, sans-serif; 3 | } 4 | 5 | .tabs { 6 | height: 50px; 7 | overflow: hidden; 8 | position: relative; 9 | z-index: 1; 10 | display: block; 11 | width: 1024px; 12 | text-decoration 13 | } 14 | 15 | .tabs section { 16 | float: left; 17 | z-index: 1; 18 | width: 254px; 19 | border-radius: 5px 5px 0 0; 20 | margin: 0 1px 0 0; 21 | } 22 | 23 | .tabs section h3 { 24 | margin: 0 1px 0 0; 25 | background: #d6d5d4; 26 | padding: 3px 10px; 27 | font-weight: bold; 28 | border-radius: 5px 5px 0 0; 29 | cursor: pointer; 30 | border-style: solid solid none solid; 31 | border-width: 0px; 32 | } 33 | 34 | .tabs section.current h3 { 35 | background: #fff; 36 | cursor: default; 37 | border-width: 1px; 38 | } 39 | 40 | .tabs section h3 a { 41 | color: black; 42 | text-decoration: none; 43 | } -------------------------------------------------------------------------------- /MS.NET/DocuSignSample/DocuSignSample/EmbeddedHost.aspx.designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // 5 | // Changes to this file may cause incorrect behavior and will be lost if 6 | // the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | namespace DocuSignSample { 11 | 12 | 13 | public partial class EmbeddedHost { 14 | 15 | /// 16 | /// sendingFrame control. 17 | /// 18 | /// 19 | /// Auto-generated field. 20 | /// To modify move field declaration from designer file to code-behind file. 21 | /// 22 | protected global::System.Web.UI.HtmlControls.HtmlGenericControl sendingFrame; 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /Ruby/DocuSignSample/app/controllers/error_controller.rb: -------------------------------------------------------------------------------- 1 | ## 2 | # @copyright Copyright (C) DocuSign, Inc. All rights reserved. 3 | # 4 | # This source code is intended only as a supplement to DocuSign SDK 5 | # and/or on-line documentation. 6 | # 7 | # This sample is designed to demonstrate DocuSign features and is not intended 8 | # for production use. Code and policy for a production application must be 9 | # developed to meet the specific data and security requirements of the 10 | # application. 11 | # 12 | # THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY 13 | # KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE 14 | # IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A 15 | # PARTICULAR PURPOSE. 16 | # 17 | 18 | class ErrorController < ApplicationController 19 | attr_accessor :error 20 | 21 | #Surface the error to the user 22 | def show 23 | @error = params[:message] 24 | end 25 | end 26 | -------------------------------------------------------------------------------- /Ruby/DocuSignSample/app/views/send_template/_get_templates.erb: -------------------------------------------------------------------------------- 1 | <%= form_tag("send_template/get_template", :method => :post) do%> 2 |
3 | 4 | <%if @templates.empty? %> 5 | 6 | <% else %> 7 | 8 | 11 | 12 | 13 | 17 | 18 | <% end %> 19 |
No templates are available currently
9 | Select a Template 10 |
<%= select(:tname, :tid, @templates.collect{|t| [t.templateID + 14 | ': ' + 15 | t.name, t.templateID]}, {:include_blank => true, :selected => @template_id}) %><%= submit_tag('Select Template', :name => 'LoadTemplate', :class => "docusignbutton orange")%> 16 |
20 |
21 | <% end %> -------------------------------------------------------------------------------- /Ruby/DocuSignSample/config/boot.rb: -------------------------------------------------------------------------------- 1 | ## 2 | # @copyright Copyright (C) DocuSign, Inc. All rights reserved. 3 | # 4 | # This source code is intended only as a supplement to DocuSign SDK 5 | # and/or on-line documentation. 6 | # 7 | # This sample is designed to demonstrate DocuSign features and is not intended 8 | # for production use. Code and policy for a production application must be 9 | # developed to meet the specific data and security requirements of the 10 | # application. 11 | # 12 | # THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY 13 | # KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE 14 | # IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A 15 | # PARTICULAR PURPOSE. 16 | # 17 | 18 | require 'rubygems' 19 | 20 | # Set up gems listed in the Gemfile. 21 | ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__) 22 | 23 | require 'bundler/setup' if File.exists?(ENV['BUNDLE_GEMFILE']) 24 | -------------------------------------------------------------------------------- /Java/DocuSignSample/src/net/docusign/api_3_0/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * @copyright Copyright (C) DocuSign, Inc. All rights reserved. 3 | * 4 | * This source code is intended only as a supplement to DocuSign SDK 5 | * and/or on-line documentation. 6 | * 7 | * This sample is designed to demonstrate DocuSign features and is not intended 8 | * for production use. Code and policy for a production application must be 9 | * developed to meet the specific data and security requirements of the 10 | * application. 11 | * 12 | * THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY 13 | * KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE 14 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A 15 | * PARTICULAR PURPOSE. 16 | */ 17 | 18 | @javax.xml.bind.annotation.XmlSchema(namespace = "http://www.docusign.net/API/3.0", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) 19 | package net.docusign.api_3_0; 20 | -------------------------------------------------------------------------------- /MS.NET/DocuSignSample/DocuSignSample/GetStatusAndDocs.aspx: -------------------------------------------------------------------------------- 1 | <%@ Page Title="" Language="C#" MasterPageFile="~/Tabs.Master" AutoEventWireup="true" 2 | CodeBehind="GetStatusAndDocs.aspx.cs" Inherits="DocuSignSample.GetStatusAndDocs" %> 3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 |
11 | 12 |
13 |
14 |
15 |
16 |
17 | 19 |
20 | -------------------------------------------------------------------------------- /Salesforce/NDAKiosk/pages/ndadonesignout.page: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | 7 | 8 | 9 |

Checked Out

10 |

11 | Thanks for checking out. Have a great day! 12 |

13 | 17 | 18 |
19 | 20 | -------------------------------------------------------------------------------- /MS.NET/Connect/hcc_poc.sln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 2012 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "hcc_poc", "hcc_poc.csproj", "{2D6069A6-4413-41B5-A7C2-9D3FED4D5D79}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {2D6069A6-4413-41B5-A7C2-9D3FED4D5D79}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {2D6069A6-4413-41B5-A7C2-9D3FED4D5D79}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {2D6069A6-4413-41B5-A7C2-9D3FED4D5D79}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {2D6069A6-4413-41B5-A7C2-9D3FED4D5D79}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /Java/DocuSignSample/src/net/docusign/credential/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * @copyright Copyright (C) DocuSign, Inc. All rights reserved. 3 | * 4 | * This source code is intended only as a supplement to DocuSign SDK 5 | * and/or on-line documentation. 6 | * 7 | * This sample is designed to demonstrate DocuSign features and is not intended 8 | * for production use. Code and policy for a production application must be 9 | * developed to meet the specific data and security requirements of the 10 | * application. 11 | * 12 | * THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY 13 | * KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE 14 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A 15 | * PARTICULAR PURPOSE. 16 | */ 17 | 18 | @javax.xml.bind.annotation.XmlSchema(namespace = "http://www.docusign.net/API/Credential", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) 19 | package net.docusign.credential; 20 | -------------------------------------------------------------------------------- /Ruby/DocuSignSample/config/initializers/mime_types.rb: -------------------------------------------------------------------------------- 1 | ## 2 | # @copyright Copyright (C) DocuSign, Inc. All rights reserved. 3 | # 4 | # This source code is intended only as a supplement to DocuSign SDK 5 | # and/or on-line documentation. 6 | # 7 | # This sample is designed to demonstrate DocuSign features and is not intended 8 | # for production use. Code and policy for a production application must be 9 | # developed to meet the specific data and security requirements of the 10 | # application. 11 | # 12 | # THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY 13 | # KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE 14 | # IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A 15 | # PARTICULAR PURPOSE. 16 | # 17 | 18 | # Be sure to restart your server when you modify this file. 19 | 20 | # Add new mime types for use in respond_to blocks: 21 | # Mime::Type.register "text/richtext", :rtf 22 | # Mime::Type.register_alias "text/html", :iphone 23 | -------------------------------------------------------------------------------- /Ruby/DocuSignSample/app/helpers/send_document_helper.rb: -------------------------------------------------------------------------------- 1 | ## 2 | # @copyright Copyright (C) DocuSign, Inc. All rights reserved. 3 | # 4 | # This source code is intended only as a supplement to DocuSign SDK 5 | # and/or on-line documentation. 6 | # 7 | # This sample is designed to demonstrate DocuSign features and is not intended 8 | # for production use. Code and policy for a production application must be 9 | # developed to meet the specific data and security requirements of the 10 | # application. 11 | # 12 | # THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY 13 | # KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE 14 | # IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A 15 | # PARTICULAR PURPOSE. 16 | # 17 | 18 | module SendDocumentHelper 19 | def add_tabs 20 | 21 | end 22 | 23 | def construct_recipients 24 | 25 | end 26 | 27 | def create_status_table 28 | 29 | end 30 | 31 | def proces_options 32 | 33 | end 34 | end 35 | -------------------------------------------------------------------------------- /MS.NET/CodeSnippets/CodeSnippets.sln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 2012 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CodeSnippets", "CodeSnippets\CodeSnippets.csproj", "{2B510F1F-4BC2-4256-AF4E-C8D34395A7B4}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {2B510F1F-4BC2-4256-AF4E-C8D34395A7B4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {2B510F1F-4BC2-4256-AF4E-C8D34395A7B4}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {2B510F1F-4BC2-4256-AF4E-C8D34395A7B4}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {2B510F1F-4BC2-4256-AF4E-C8D34395A7B4}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /PHP/DocuSignSample/css/Tabs.css: -------------------------------------------------------------------------------- 1 | body { 2 | font: 16px Arial, sans-serif; 3 | } 4 | 5 | .tabs { 6 | height: 50px; 7 | overflow: hidden; 8 | position: relative; 9 | z-index: 1; 10 | display: block; 11 | width: 1000px; 12 | margin-left: auto; 13 | margin-right: auto; 14 | } 15 | 16 | .tabs ul 17 | { 18 | list-style-type:none; 19 | width: 1000px; 20 | padding:0px; 21 | } 22 | 23 | .tabs li { 24 | float: left; 25 | z-index: 1; 26 | width:228px; 27 | background: #d6d5d4; 28 | padding: 3px 10px; 29 | border-radius: 5px 5px 0 0; 30 | margin: 0 1px 0 0; 31 | } 32 | 33 | .tabs li a { 34 | font-weight: bold; 35 | cursor: pointer; 36 | border-style: solid solid none solid; 37 | border-width: 0px; 38 | text-decoration:none; 39 | color: Black; 40 | font-size:large; 41 | } 42 | 43 | .tabs li.current { 44 | background: #fff; 45 | cursor: default; 46 | border-width: 1px; 47 | border-style: solid solid none solid; 48 | } 49 | 50 | .tabs li.passive 51 | { 52 | background: #d6d5d4; 53 | } -------------------------------------------------------------------------------- /Ruby/DocuSignSample/config/initializers/docusign.rb: -------------------------------------------------------------------------------- 1 | ## 2 | # @copyright Copyright (C) DocuSign, Inc. All rights reserved. 3 | # 4 | # This source code is intended only as a supplement to DocuSign SDK 5 | # and/or on-line documentation. 6 | # 7 | # This sample is designed to demonstrate DocuSign features and is not intended 8 | # for production use. Code and policy for a production application must be 9 | # developed to meet the specific data and security requirements of the 10 | # application. 11 | # 12 | # THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY 13 | # KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE 14 | # IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A 15 | # PARTICULAR PURPOSE. 16 | # 17 | 18 | # Read configuration options from config/docusign.yml 19 | 20 | require 'docusign' 21 | 22 | Docusign::Config = HashWithIndifferentAccess.new(YAML.load_file("#{Rails.root}/config/docusign.yml")[Rails.env]) 23 | Docusign::Config[:verify_mode] = OpenSSL::SSL::VERIFY_PEER 24 | Docusign::Config[:ca_file] = '/usr/local/etc/openssl/cert.pem' 25 | -------------------------------------------------------------------------------- /MS.NET/DocuSignSample/DocuSignSample/css/Tabs.css: -------------------------------------------------------------------------------- 1 | body { 2 | font: 16px Arial, sans-serif; 3 | } 4 | 5 | .tabs { 6 | height: 50px; 7 | overflow: hidden; 8 | position: relative; 9 | z-index: 1; 10 | display: block; 11 | width: 1000px; 12 | margin-left: auto; 13 | margin-right: auto; 14 | } 15 | 16 | .tabs ul 17 | { 18 | list-style-type:none; 19 | width: 1000px; 20 | padding:0px; 21 | } 22 | 23 | .tabs li { 24 | float: left; 25 | z-index: 1; 26 | width:228px; 27 | background: #d6d5d4; 28 | padding: 3px 10px; 29 | border-radius: 5px 5px 0 0; 30 | margin: 0 1px 0 0; 31 | } 32 | 33 | .tabs li a { 34 | font-weight: bold; 35 | cursor: pointer; 36 | border-style: solid solid none solid; 37 | border-width: 0px; 38 | text-decoration:none; 39 | color: Black; 40 | font-size:large; 41 | } 42 | 43 | .tabs li.current { 44 | background: #fff; 45 | cursor: default; 46 | border-width: 1px; 47 | border-style: solid solid none solid; 48 | } 49 | 50 | .tabs li.passive 51 | { 52 | background: #d6d5d4; 53 | } -------------------------------------------------------------------------------- /Salesforce/NDAKiosk/pages/ndanotifyreception.page: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | 7 | 8 | 9 |

10 | The person you are here to see doesn't seem to be listed. Please notify the receptionist, then press continue. 11 |

12 | 13 | 14 | 15 | 16 |
17 | {!errMsg} 18 |
19 | 20 |
21 | 22 | -------------------------------------------------------------------------------- /Salesforce/NDAKiosk/pages/NDADone.page: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | 7 | 8 | 9 |

You have completed checking in.

10 |

11 | Thanks for checking in. Please take a seat, the person you are here to see will be with you shortly. 12 | Please remember to check out at the end of your visit by touching the Sign Out button. 13 |

14 | 18 | 19 |
20 | 21 | -------------------------------------------------------------------------------- /Ruby/DocuSignSample/Gemfile: -------------------------------------------------------------------------------- 1 | source 'http://rubygems.org' 2 | 3 | ruby "2.3.7" 4 | 5 | gem 'rails', '5.2.1' 6 | 7 | # Bundle edge Rails instead: 8 | # gem 'rails', :git => 'git://github.com/rails/rails.git' 9 | 10 | 11 | gem 'soap4r', :git => 'git://github.com/docusign/soap4r.git' 12 | gem 'docusignsdk', :git => 'git://github.com/market-art/docusignsdk.git' 13 | gem 'intercession', '=2.0.0' 14 | gem 'httpclient', '=2.1.6.1' 15 | gem 'sqlite3' 16 | 17 | gem 'activerecord-session_store' 18 | 19 | # Use unicorn as the web server 20 | # gem 'unicorn' 21 | 22 | # Deploy with Capistrano 23 | # gem 'capistrano' 24 | 25 | # To use debugger (ruby-debug for Ruby 1.8.7+, ruby-debug19 for Ruby 1.9.2+) 26 | # gem 'ruby-debug' 27 | # gem 'ruby-debug19' 28 | 29 | # Bundle the extra gems: 30 | # gem 'bj' 31 | # gem 'nokogiri' 32 | # gem 'sqlite3-ruby', :require => 'sqlite3' 33 | # gem 'aws-s3', :require => 'aws/s3' 34 | 35 | # Bundle gems for the local environment. Make sure to 36 | # put test-only gems in this group so their generators 37 | # and rake tasks are available in development mode: 38 | # group :development, :test do 39 | # gem 'webrat' 40 | # end 41 | -------------------------------------------------------------------------------- /PHP/CodeSnippets/index_of_ams_sample_functions.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MS.NET/DocuSignSample/DocuSignSample.sln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 2012 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DocuSignSample", "DocuSignSample\DocuSignSample.csproj", "{2C964ECD-B28C-4F46-8288-9E1FDB3EE22F}" 5 | EndProject 6 | Global 7 | GlobalSection(SubversionScc) = preSolution 8 | Svn-Managed = True 9 | Manager = AnkhSVN - Subversion Support for Visual Studio 10 | EndGlobalSection 11 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 12 | Debug|Any CPU = Debug|Any CPU 13 | Release|Any CPU = Release|Any CPU 14 | EndGlobalSection 15 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 16 | {2C964ECD-B28C-4F46-8288-9E1FDB3EE22F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 17 | {2C964ECD-B28C-4F46-8288-9E1FDB3EE22F}.Debug|Any CPU.Build.0 = Debug|Any CPU 18 | {2C964ECD-B28C-4F46-8288-9E1FDB3EE22F}.Release|Any CPU.ActiveCfg = Release|Any CPU 19 | {2C964ECD-B28C-4F46-8288-9E1FDB3EE22F}.Release|Any CPU.Build.0 = Release|Any CPU 20 | EndGlobalSection 21 | GlobalSection(SolutionProperties) = preSolution 22 | HideSolutionNode = FALSE 23 | EndGlobalSection 24 | EndGlobal 25 | -------------------------------------------------------------------------------- /MS.NET/DocuSignSample/DocuSignSample/DefaultPage.Master.cs: -------------------------------------------------------------------------------- 1 | /** 2 | * @copyright Copyright (C) DocuSign, Inc. All rights reserved. 3 | * 4 | * This source code is intended only as a supplement to DocuSign SDK 5 | * and/or on-line documentation. 6 | * 7 | * This sample is designed to demonstrate DocuSign features and is not intended 8 | * for production use. Code and policy for a production application must be 9 | * developed to meet the specific data and security requirements of the 10 | * application. 11 | * 12 | * THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY 13 | * KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE 14 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A 15 | * PARTICULAR PURPOSE. 16 | */ 17 | 18 | using System; 19 | using System.Collections.Generic; 20 | using System.Linq; 21 | using System.Web; 22 | using System.Web.UI; 23 | using System.Web.UI.WebControls; 24 | 25 | namespace DocuSignSample 26 | { 27 | public partial class DefaultPage : System.Web.UI.MasterPage 28 | { 29 | protected void Page_Load(object sender, EventArgs e) 30 | { 31 | 32 | } 33 | } 34 | } -------------------------------------------------------------------------------- /Ruby/DocuSignSample/config/initializers/inflections.rb: -------------------------------------------------------------------------------- 1 | ## 2 | # @copyright Copyright (C) DocuSign, Inc. All rights reserved. 3 | # 4 | # This source code is intended only as a supplement to DocuSign SDK 5 | # and/or on-line documentation. 6 | # 7 | # This sample is designed to demonstrate DocuSign features and is not intended 8 | # for production use. Code and policy for a production application must be 9 | # developed to meet the specific data and security requirements of the 10 | # application. 11 | # 12 | # THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY 13 | # KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE 14 | # IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A 15 | # PARTICULAR PURPOSE. 16 | # 17 | 18 | # Be sure to restart your server when you modify this file. 19 | 20 | # Add new inflection rules using the following format 21 | # (all these examples are active by default): 22 | # ActiveSupport::Inflector.inflections do |inflect| 23 | # inflect.plural /^(ox)$/i, '\1en' 24 | # inflect.singular /^(ox)en/i, '\1' 25 | # inflect.irregular 'person', 'people' 26 | # inflect.uncountable %w( fish sheep ) 27 | # end 28 | -------------------------------------------------------------------------------- /Ruby/DocuSignSample/config/initializers/secret_token.rb: -------------------------------------------------------------------------------- 1 | ## 2 | # @copyright Copyright (C) DocuSign, Inc. All rights reserved. 3 | # 4 | # This source code is intended only as a supplement to DocuSign SDK 5 | # and/or on-line documentation. 6 | # 7 | # This sample is designed to demonstrate DocuSign features and is not intended 8 | # for production use. Code and policy for a production application must be 9 | # developed to meet the specific data and security requirements of the 10 | # application. 11 | # 12 | # THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY 13 | # KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE 14 | # IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A 15 | # PARTICULAR PURPOSE. 16 | # 17 | 18 | # Be sure to restart your server when you modify this file. 19 | 20 | # Your secret key for verifying the integrity of signed cookies. 21 | # If you change this key, all old signed cookies will become invalid! 22 | # Make sure the secret is at least 30 characters and all random, 23 | # no regular words or you'll be exposed to dictionary attacks. 24 | DocuSignSample::Application.config.secret_token = '{SECRET_TOKEN}' 25 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License 2 | 3 | Copyright (c) 2016- DocuSign, Inc. (https://www.docusign.com) 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /Ruby/DocuSignSample/app/models/recipient.rb: -------------------------------------------------------------------------------- 1 | ## 2 | # @copyright Copyright (C) DocuSign, Inc. All rights reserved. 3 | # 4 | # This source code is intended only as a supplement to DocuSign SDK 5 | # and/or on-line documentation. 6 | # 7 | # This sample is designed to demonstrate DocuSign features and is not intended 8 | # for production use. Code and policy for a production application must be 9 | # developed to meet the specific data and security requirements of the 10 | # application. 11 | # 12 | # THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY 13 | # KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE 14 | # IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A 15 | # PARTICULAR PURPOSE. 16 | # 17 | 18 | class Recipient 19 | include ActiveModel::Validations 20 | 21 | attr_accessor :username, :email, :ident, :embedded, :security, :accesscode, :rolename 22 | 23 | def initialize(name, email, ident, embedded, security, code, role) 24 | @username = name 25 | @email = email 26 | @ident = ident 27 | @embedded = embedded 28 | @security = security 29 | @accesscode = code 30 | @rolename = role 31 | end 32 | end -------------------------------------------------------------------------------- /Ruby/DocuSignSample/config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- 1 | ## 2 | # @copyright Copyright (C) DocuSign, Inc. All rights reserved. 3 | # 4 | # This source code is intended only as a supplement to DocuSign SDK 5 | # and/or on-line documentation. 6 | # 7 | # This sample is designed to demonstrate DocuSign features and is not intended 8 | # for production use. Code and policy for a production application must be 9 | # developed to meet the specific data and security requirements of the 10 | # application. 11 | # 12 | # THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY 13 | # KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE 14 | # IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A 15 | # PARTICULAR PURPOSE. 16 | # 17 | 18 | # Be sure to restart your server when you modify this file. 19 | 20 | # You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces. 21 | # Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ } 22 | 23 | # You can also remove all the silencers if you're trying to debug a problem that might stem from framework code. 24 | # Rails.backtrace_cleaner.remove_silencers! 25 | -------------------------------------------------------------------------------- /Java/Connect/WebContent/WEB-INF/web.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Connect 4 | 5 | index.html 6 | index.htm 7 | index.jsp 8 | default.html 9 | default.htm 10 | default.jsp 11 | 12 | 13 | Receives an HTTP Post of XML from Docusign Envelope Reports 14 | Receiver 15 | Receiver 16 | net.docusign.receiver.Receiver 17 | 18 | 19 | Receiver 20 | /Receiver 21 | 22 | -------------------------------------------------------------------------------- /Java/Connect/src/net/docusign/receiver/OnlyXml.java: -------------------------------------------------------------------------------- 1 | /** 2 | * @copyright Copyright (C) DocuSign, Inc. All rights reserved. 3 | * 4 | * This source code is intended only as a supplement to DocuSign SDK 5 | * and/or on-line documentation. 6 | * This sample is designed to demonstrate DocuSign features and is not intended 7 | * for production use. Code and policy for a production application must be 8 | * developed to meet the specific data and security requirements of the 9 | * application. 10 | * 11 | * THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY 12 | * KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE 13 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A 14 | * PARTICULAR PURPOSE. 15 | */ 16 | package net.docusign.receiver; 17 | 18 | import java.io.File; 19 | import java.io.FilenameFilter; 20 | 21 | /** 22 | * @author csmith 23 | * 24 | */ 25 | public class OnlyXml implements FilenameFilter { 26 | 27 | /* (non-Javadoc) 28 | * @see java.io.FilenameFilter#accept(java.io.File, java.lang.String) 29 | */ 30 | @Override 31 | public boolean accept(File dir, String name) { 32 | return name.endsWith(".xml"); 33 | } 34 | 35 | } 36 | -------------------------------------------------------------------------------- /Ruby/DocuSignSample/app/assets/stylesheets/scaffold.css: -------------------------------------------------------------------------------- 1 | body { background-color: #fff; color: #333; } 2 | 3 | body, p, ol, ul, td { 4 | font-family: verdana, arial, helvetica, sans-serif; 5 | font-size: 13px; 6 | line-height: 18px; 7 | } 8 | 9 | pre { 10 | background-color: #eee; 11 | padding: 10px; 12 | font-size: 11px; 13 | } 14 | 15 | a { color: #000; } 16 | a:visited { color: #666; } 17 | a:hover { color: #fff; background-color:#000; } 18 | 19 | div.field, div.actions { 20 | margin-bottom: 10px; 21 | } 22 | 23 | #notice { 24 | color: green; 25 | } 26 | 27 | .field_with_errors { 28 | padding: 2px; 29 | background-color: red; 30 | display: table; 31 | } 32 | 33 | #error_explanation { 34 | width: 450px; 35 | border: 2px solid red; 36 | padding: 7px; 37 | padding-bottom: 0; 38 | margin-bottom: 20px; 39 | background-color: #f0f0f0; 40 | } 41 | 42 | #error_explanation h2 { 43 | text-align: left; 44 | font-weight: bold; 45 | padding: 5px 5px 5px 15px; 46 | font-size: 12px; 47 | margin: -7px; 48 | margin-bottom: 0px; 49 | background-color: #c00; 50 | color: #fff; 51 | } 52 | 53 | #error_explanation ul li { 54 | font-size: 12px; 55 | list-style: square; 56 | } 57 | -------------------------------------------------------------------------------- /MS.NET/DocuSignSample/DocuSignSample/pop.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | DocuSign SDK - Frame Pop 5 | 6 | 14 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /Salesforce/NDAKiosk/Readme.txt: -------------------------------------------------------------------------------- 1 | Readme.txt for DocuSign SDK Salesforce NDAKios sample 2 | =========================================================================== 3 | 4 | System Requirements: 5 | - Salesforce Developer Edition account 6 | 7 | Overview: 8 | --------------------------------------------------------------------------- 9 | 10 | This sample code requires a DocuSign DevCenter account. If you do not 11 | already have a DevCenter account please go to 12 | http://www.docusign.com/devcenter/ and sign up for one. This sample will 13 | not function without a valid DevCenter account. 14 | 15 | This sample shows how to construct VisualForce pages optimized for an 16 | Apple iPad Safari browser. The use case is for a company that requires 17 | vistors to sign an NDA at the front desk. Instead of handing the visitor 18 | a paper copy to sign, this app lets the user electronically sign the NDA 19 | using an iPad on display! 20 | 21 | Static resources are provided in the sample that can be changed to the 22 | company's branding; including the icon that appears when the app is 23 | bookmarked to the iPad Home Screen! 24 | 25 | Refer to Readme.pdf for a walkthrough on how to implement this from a 26 | Salesforce Dev account. 27 | -------------------------------------------------------------------------------- /Ruby/DocuSignSample/config/initializers/session_store.rb: -------------------------------------------------------------------------------- 1 | ## 2 | # @copyright Copyright (C) DocuSign, Inc. All rights reserved. 3 | # 4 | # This source code is intended only as a supplement to DocuSign SDK 5 | # and/or on-line documentation. 6 | # 7 | # This sample is designed to demonstrate DocuSign features and is not intended 8 | # for production use. Code and policy for a production application must be 9 | # developed to meet the specific data and security requirements of the 10 | # application. 11 | # 12 | # THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY 13 | # KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE 14 | # IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A 15 | # PARTICULAR PURPOSE. 16 | # 17 | 18 | # Be sure to restart your server when you modify this file. 19 | 20 | DocuSignSample::Application.config.session_store :active_record_store, :key => '_DocuSignSample_session' 21 | 22 | # Use the database for sessions instead of the cookie-based default, 23 | # which shouldn't be used to store highly confidential information 24 | # (create the session table with "rails generate session_migration") 25 | # DocuSignSample::Application.config.session_store :active_record_store 26 | -------------------------------------------------------------------------------- /MS.NET/Connect/Receiver.aspx.designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:2.0.50727.4927 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace hcc_poc { 12 | 13 | 14 | public partial class Receiver { 15 | 16 | /// 17 | /// form1 control. 18 | /// 19 | /// 20 | /// Auto-generated field. 21 | /// To modify move field declaration from designer file to code-behind file. 22 | /// 23 | protected global::System.Web.UI.HtmlControls.HtmlForm form1; 24 | 25 | /// 26 | /// statusLabel control. 27 | /// 28 | /// 29 | /// Auto-generated field. 30 | /// To modify move field declaration from designer file to code-behind file. 31 | /// 32 | protected global::System.Web.UI.WebControls.Label statusLabel; 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /Ruby/DocuSignSample/db/schema.rb: -------------------------------------------------------------------------------- 1 | # encoding: UTF-8 2 | # This file is auto-generated from the current state of the database. Instead 3 | # of editing this file, please use the migrations feature of Active Record to 4 | # incrementally modify your database, and then regenerate this schema definition. 5 | # 6 | # Note that this schema.rb definition is the authoritative source for your 7 | # database schema. If you need to create the application database on another 8 | # system, you should be using db:schema:load, not running all the migrations 9 | # from scratch. The latter is a flawed and unsustainable approach (the more migrations 10 | # you'll amass, the slower it'll run and the greater likelihood for issues). 11 | # 12 | # It's strongly recommended to check this file into your version control system. 13 | 14 | ActiveRecord::Schema.define(:version => 20130729051925) do 15 | 16 | create_table "sessions", :force => true do |t| 17 | t.string "session_id", :null => false 18 | t.text "data" 19 | t.datetime "created_at", :null => false 20 | t.datetime "updated_at", :null => false 21 | end 22 | 23 | add_index "sessions", ["session_id"], :name => "index_sessions_on_session_id" 24 | add_index "sessions", ["updated_at"], :name => "index_sessions_on_updated_at" 25 | 26 | end 27 | -------------------------------------------------------------------------------- /MS.NET/DocuSignSample/DocuSignSample/DefaultPage.Master.designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // 5 | // Changes to this file may cause incorrect behavior and will be lost if 6 | // the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | namespace DocuSignSample { 11 | 12 | 13 | public partial class DefaultPage { 14 | 15 | /// 16 | /// head control. 17 | /// 18 | /// 19 | /// Auto-generated field. 20 | /// To modify move field declaration from designer file to code-behind file. 21 | /// 22 | protected global::System.Web.UI.WebControls.ContentPlaceHolder head; 23 | 24 | /// 25 | /// ContentPlaceHolder1 control. 26 | /// 27 | /// 28 | /// Auto-generated field. 29 | /// To modify move field declaration from designer file to code-behind file. 30 | /// 31 | protected global::System.Web.UI.WebControls.ContentPlaceHolder ContentPlaceHolder1; 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /MS.NET/DocuSignSample/DocuSignSample/Error.aspx.cs: -------------------------------------------------------------------------------- 1 | /** 2 | * @copyright Copyright (C) DocuSign, Inc. All rights reserved. 3 | * 4 | * This source code is intended only as a supplement to DocuSign SDK 5 | * and/or on-line documentation. 6 | * 7 | * This sample is designed to demonstrate DocuSign features and is not intended 8 | * for production use. Code and policy for a production application must be 9 | * developed to meet the specific data and security requirements of the 10 | * application. 11 | * 12 | * THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY 13 | * KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE 14 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A 15 | * PARTICULAR PURPOSE. 16 | */ 17 | 18 | using DocuSignSample.resources; 19 | using System; 20 | 21 | namespace DocuSignSample 22 | { 23 | public partial class Error : System.Web.UI.Page 24 | { 25 | protected void Page_Load(object sender, EventArgs e) 26 | { 27 | if (null != Session[Keys.ErrorMessage]) 28 | { 29 | lblErrorMessage.Text = (string)Session[Keys.ErrorMessage]; 30 | } 31 | else 32 | { 33 | lblErrorMessage.Text = "No error message in session. ?"; 34 | 35 | } 36 | } 37 | } 38 | } -------------------------------------------------------------------------------- /MS.NET/DocuSignSample/DocuSignSample/EmbedDocuSign.aspx: -------------------------------------------------------------------------------- 1 | <%@ Page Title="" Language="C#" MasterPageFile="~/Tabs.Master" AutoEventWireup="true" 2 | CodeBehind="EmbedDocuSign.aspx.cs" Inherits="DocuSignSample.EmbedDocuSign" %> 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 14 | 18 | 19 |
11 | 13 | 15 | 17 |
20 |
21 |
<%=signerMessage %>
22 | 24 |
25 | -------------------------------------------------------------------------------- /MS.NET/CodeSnippets/README.txt: -------------------------------------------------------------------------------- 1 | Readme.txt for Docusign SDK MS.NET samples 2 | =========================================================================== 3 | 4 | System requirements for Microsoft .NET samples: 5 | - Visual Studio 2008+ (with applicable system requirements) 6 | - NUnit 2.5.7+ (from http://www.nunit.org/?p=download) 7 | 8 | Overview: 9 | --------------------------------------------------------------------------- 10 | 11 | This sample code requires a DocuSign DevCenter account. If you do not 12 | already have a DevCenter account please go to 13 | http://www.docusign.com/devcenter/ and sign up for one. This sample will 14 | not function without a valid DevCenter account. 15 | 16 | Each sample includes the source code for the services required to execute 17 | the applications. All of the appications include a Microsoft Visual Studio 18 | solution file that can perform building, deployment, and debugging 19 | 20 | Unit Test Setup 21 | --------------------------------------------------------------------------- 22 | 23 | To run these tests, you need to: 24 | 1. Install the NUnit framework and configure for use with Visual Studio 25 | 2. Replace the placeholder credentials in the app.config appsettings section with your demo credentials 26 | 3. Replace any placeholder strings (usually for email IDs or template IDs, especially within CreateOneSigner) within CodeSnippets.cs -------------------------------------------------------------------------------- /MS.NET/Connect/Readme.txt: -------------------------------------------------------------------------------- 1 | Readme.txt for Docusign SDK MS.NET Connect sample. 2 | =========================================================================== 3 | 4 | System Requirements: 5 | - Visual Studio 2008+ (with applicable system requirements) 6 | 7 | This sample code requires a DocuSign DevCenter account. If you do not 8 | already have a DevCenter account please go to 9 | http://www.docusign.com/devcenter/ and sign up for one. This sample will 10 | not function without a valid DevCenter account. 11 | 12 | Overview: 13 | --------------------------------------------------------------------------- 14 | 15 | The Connect sample shows a simple ASP.NET servlet to send and receive events. 16 | 17 | Installation 18 | --------------------------------------------------------------------------- 19 | 20 | 1. Open hcc_poc.sln in project root and build. 21 | 22 | 2. Publish to your IIS server. 23 | 24 | Connect solution instructions 25 | --------------------------------------------------------------------------- 26 | 27 | In order to start receiving events from your Docusign account, please 28 | follow the configuration instructions in the DocuSign Connect Service 29 | Guide. Note that the Demo site does not require an HTTPS URL. 30 | 31 | The URL that you can post to is the same that can be used to browse the 32 | files that were POSTed. It is http:///HCC/Receiver.aspx 33 | -------------------------------------------------------------------------------- /Salesforce/Readme.txt: -------------------------------------------------------------------------------- 1 | Readme.txt for DocuSign SDK Salesforce samples 2 | =========================================================================== 3 | 4 | System Requirements: 5 | - Salesforce Developer Edition account 6 | 7 | Overview: 8 | --------------------------------------------------------------------------- 9 | 10 | This sample code requires a DocuSign DevCenter account. If you do not 11 | already have a DevCenter account please go to 12 | http://www.docusign.com/devcenter/ and sign up for one. This sample will 13 | not function without a valid DevCenter account. 14 | 15 | Each sample includes the source code for the services required to execute 16 | the applications. All of the samples run as Salesforce applications. Refer 17 | to the Readme.pdf in the root directory of each sample for 18 | further details. 19 | 20 | 21 | ----- Rate Limits ----- 22 | 23 | Please note: Applications are not allowed to poll for envelope status more 24 | than once every 15 minutes and we discourage integrators from continuously 25 | retrieving status on envelopes that are in a terminal state (Completed, 26 | Declined, and Voided). Excessive polling will result in your API access 27 | being revoked. 28 | If you need immediate notification of envelope events we encourage you to 29 | review envelope events or use our Connect Publisher technology, DocuSign 30 | Connect as an alternative. -------------------------------------------------------------------------------- /Java/DocuSignSample/WebContent/pop.jsp: -------------------------------------------------------------------------------- 1 | <%@ page session="true" 2 | import="net.docusign.sample.Utils" 3 | language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> 4 | 5 | 6 | 7 | 8 | DocuSign SDK - Frame Pop 9 | 10 | 20 | 33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /MS.NET/DocuSignSample/DocuSignSample/Web.Debug.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 17 | 18 | 29 | 30 | -------------------------------------------------------------------------------- /Salesforce/NDAKiosk/pages/NDANameRes.page: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | 7 | 8 | 9 |

Name resolution screen

10 | 11 |

It seems like your e-mail is already associated with the following eSignatures, please pick one:

12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 |
21 | {!errMsg} 22 |
23 | 24 |
25 | 26 | -------------------------------------------------------------------------------- /Java/Connect/Readme.txt: -------------------------------------------------------------------------------- 1 | Readme.txt for Docusign SDK Java Connect sample. 2 | =========================================================================== 3 | 4 | System Requirements: 5 | - Java Development Kit 1.6 6 | - Apache Ant 1.6 7 | - Tomcat 6 (or equivalent) 8 | 9 | This sample code requires a DocuSign DevCenter account. If you do not 10 | already have a DevCenter account please go to 11 | http://www.docusign.com/devcenter/ and sign up for one. This sample will 12 | not function without a valid DevCenter account. 13 | 14 | Overview: 15 | --------------------------------------------------------------------------- 16 | 17 | The Connect sample shows a simple Java servlet to send and receive events. 18 | 19 | Installation 20 | --------------------------------------------------------------------------- 21 | 22 | 1. Run Apache ANT in the project root. 23 | 24 | 2. Deploy the resulting dist/Connect.war file to your Tomcat or equivalent 25 | server. 26 | 27 | Connect solution instructions 28 | --------------------------------------------------------------------------- 29 | 30 | In order to start receiving events from your Docusign account, please 31 | follow the configuration instructions in the DocuSign Connect Service 32 | Guide. Note that the Demo site does not require an HTTPS URL. 33 | 34 | The URL that you can post to is the same that can be used to browse the 35 | files that were POSTed. It is http:///Connect/Receiver 36 | -------------------------------------------------------------------------------- /MS.NET/Connect/hcc_poc.idc: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /PHP/Connect/Readme.txt: -------------------------------------------------------------------------------- 1 | DocuSign PHP Connect 2011 Readme 2 | =========================================================================== 3 | 4 | The Connect sample show a simple implementation to receive DocuSign events. 5 | 6 | Installation 7 | --------------------------------------------------------------------------- 8 | 9 | This sample code requires a DocuSign DevCenter account. If you do not 10 | already have a DevCenter account please go to 11 | http://www.docusign.com/devcenter/ and sign up for one. This sample will 12 | not function without a valid DevCenter account. 13 | 14 | System requirements for PHP samples: 15 | - PHP Version 5.3+ 16 | - libcurl/7.19.4 OpenSSL/0.9.8k zlib/1.2.3 17 | 18 | Sample PHP Connect solution instructions 19 | --------------------------------------------------------------------------- 20 | 21 | In order to start receiving events from your DocuSign account please follow 22 | the configuration in the HTTPS Connect Guide included in the DocuSign SDK. 23 | 24 | PHP Connect solution contains just one project. The project consists of 25 | one PHP file and one sample data file. The data file can be used to test 26 | out the post processing. 27 | 28 | Just like with a lot of PHP solutions deployment of the PHP sample is as 29 | simple as just copying the files into a directory on your server. 30 | 31 | The url that you post the index.php can be used for both sending 32 | https:////index.php 33 | 34 | -------------------------------------------------------------------------------- /MS.NET/DocuSignSample/DocuSignSample/Web.Release.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 17 | 18 | 19 | 30 | 31 | -------------------------------------------------------------------------------- /MS.NET/DocuSignSample/DocuSignSample/css/jquery.ui.dialog.css: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI Dialog 1.8.9 3 | * 4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Dialog#theming 9 | */ 10 | .ui-dialog { position: absolute; padding: .2em; width: 600px; overflow: hidden; } 11 | .ui-dialog .ui-dialog-titlebar { padding: .4em 1em; position: relative; } 12 | .ui-dialog .ui-dialog-title { float: left; margin: .1em 16px .1em 0; } 13 | .ui-dialog .ui-dialog-titlebar-close { position: absolute; right: .3em; top: 50%; width: 19px; margin: -10px 0 0 0; padding: 1px; height: 18px; } 14 | .ui-dialog .ui-dialog-titlebar-close span { display: block; margin: 1px; } 15 | .ui-dialog .ui-dialog-titlebar-close:hover, .ui-dialog .ui-dialog-titlebar-close:focus { padding: 0; } 16 | .ui-dialog .ui-dialog-content { position: relative; border: 0; padding: .5em 1em; background: none; overflow: auto; zoom: 1; } 17 | .ui-dialog .ui-dialog-buttonpane { text-align: left; border-width: 1px 0 0 0; background-image: none; margin: .5em 0 0 0; padding: .3em 1em .5em .4em; } 18 | .ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset { float: right; } 19 | .ui-dialog .ui-dialog-buttonpane button { margin: .5em .4em .5em 0; cursor: pointer; } 20 | .ui-dialog .ui-resizable-se { width: 14px; height: 14px; right: 3px; bottom: 3px; } 21 | .ui-draggable .ui-dialog-titlebar { cursor: move; } 22 | -------------------------------------------------------------------------------- /Ruby/DocuSignSample/app/assets/stylesheets/jquery.ui.dialog.css: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI Dialog 1.8.9 3 | * 4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Dialog#theming 9 | */ 10 | .ui-dialog { position: absolute; padding: .2em; width: 600px; overflow: hidden; } 11 | .ui-dialog .ui-dialog-titlebar { padding: .4em 1em; position: relative; } 12 | .ui-dialog .ui-dialog-title { float: left; margin: .1em 16px .1em 0; } 13 | .ui-dialog .ui-dialog-titlebar-close { position: absolute; right: .3em; top: 50%; width: 19px; margin: -10px 0 0 0; padding: 1px; height: 18px; } 14 | .ui-dialog .ui-dialog-titlebar-close span { display: block; margin: 1px; } 15 | .ui-dialog .ui-dialog-titlebar-close:hover, .ui-dialog .ui-dialog-titlebar-close:focus { padding: 0; } 16 | .ui-dialog .ui-dialog-content { position: relative; border: 0; padding: .5em 1em; background: none; overflow: auto; zoom: 1; } 17 | .ui-dialog .ui-dialog-buttonpane { text-align: left; border-width: 1px 0 0 0; background-image: none; margin: .5em 0 0 0; padding: .3em 1em .5em .4em; } 18 | .ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset { float: right; } 19 | .ui-dialog .ui-dialog-buttonpane button { margin: .5em .4em .5em 0; cursor: pointer; } 20 | .ui-dialog .ui-resizable-se { width: 14px; height: 14px; right: 3px; bottom: 3px; } 21 | .ui-draggable .ui-dialog-titlebar { cursor: move; } 22 | -------------------------------------------------------------------------------- /Salesforce/NDAKiosk/pages/ndasignout.page: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |

Please Sign Out

11 |

{!errmsg}

12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 |

Please Enter Your Sign In Email:

22 | 23 | 24 | 25 | 26 | 27 |
28 |
29 |
30 | 31 | -------------------------------------------------------------------------------- /MS.NET/Connect/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("hcc_poc")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("hcc_poc")] 13 | [assembly: AssemblyCopyright("Copyright © 2010")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("3d5900ae-111a-45be-96b3-d9e4606ca793")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Revision and Build Numbers 33 | // by using the '*' as shown below: 34 | [assembly: AssemblyVersion("1.0.0.0")] 35 | [assembly: AssemblyFileVersion("1.0.0.0")] 36 | -------------------------------------------------------------------------------- /PHP/DocuSignSample/sendsuccess.php: -------------------------------------------------------------------------------- 1 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | Success! EnvelopeID: 40 | 41 | -------------------------------------------------------------------------------- /MS.NET/DocuSignSample/DocuSignSample/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("DocuSignSample")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("Microsoft")] 12 | [assembly: AssemblyProduct("DocuSignSample")] 13 | [assembly: AssemblyCopyright("Copyright © Microsoft 2011")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("61d87b8e-b98e-48e7-8410-2c37f4525783")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Revision and Build Numbers 33 | // by using the '*' as shown below: 34 | [assembly: AssemblyVersion("1.0.0.0")] 35 | [assembly: AssemblyFileVersion("1.0.0.0")] 36 | -------------------------------------------------------------------------------- /MS.NET/CodeSnippets/CodeSnippets/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("CodeSnippets")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("DocuSign")] 12 | [assembly: AssemblyProduct("CodeSnippets")] 13 | [assembly: AssemblyCopyright("Copyright © DocuSign 2010")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("ce408341-d7da-4844-8cb7-84b7993fea67")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /Java/DocuSignSample/src/net/docusign/api_3_0/Ping.java: -------------------------------------------------------------------------------- 1 | /** 2 | * @copyright Copyright (C) DocuSign, Inc. All rights reserved. 3 | * 4 | * This source code is intended only as a supplement to DocuSign SDK 5 | * and/or on-line documentation. 6 | * 7 | * This sample is designed to demonstrate DocuSign features and is not intended 8 | * for production use. Code and policy for a production application must be 9 | * developed to meet the specific data and security requirements of the 10 | * application. 11 | * 12 | * THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY 13 | * KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE 14 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A 15 | * PARTICULAR PURPOSE. 16 | */ 17 | package net.docusign.api_3_0; 18 | 19 | import javax.xml.bind.annotation.XmlAccessType; 20 | import javax.xml.bind.annotation.XmlAccessorType; 21 | import javax.xml.bind.annotation.XmlRootElement; 22 | import javax.xml.bind.annotation.XmlType; 23 | 24 | 25 | /** 26 | *

Java class for anonymous complex type. 27 | * 28 | *

The following schema fragment specifies the expected content contained within this class. 29 | * 30 | *

31 |  * <complexType>
32 |  *   <complexContent>
33 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
34 |  *     </restriction>
35 |  *   </complexContent>
36 |  * </complexType>
37 |  * 
38 | * 39 | * 40 | */ 41 | @XmlAccessorType(XmlAccessType.FIELD) 42 | @XmlType(name = "") 43 | @XmlRootElement(name = "Ping") 44 | public class Ping { 45 | 46 | 47 | } 48 | -------------------------------------------------------------------------------- /Java/DocuSignSample/src/net/docusign/credential/Ping.java: -------------------------------------------------------------------------------- 1 | /** 2 | * @copyright Copyright (C) DocuSign, Inc. All rights reserved. 3 | * 4 | * This source code is intended only as a supplement to DocuSign SDK 5 | * and/or on-line documentation. 6 | * 7 | * This sample is designed to demonstrate DocuSign features and is not intended 8 | * for production use. Code and policy for a production application must be 9 | * developed to meet the specific data and security requirements of the 10 | * application. 11 | * 12 | * THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY 13 | * KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE 14 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A 15 | * PARTICULAR PURPOSE. 16 | */ 17 | package net.docusign.credential; 18 | 19 | import javax.xml.bind.annotation.XmlAccessType; 20 | import javax.xml.bind.annotation.XmlAccessorType; 21 | import javax.xml.bind.annotation.XmlRootElement; 22 | import javax.xml.bind.annotation.XmlType; 23 | 24 | 25 | /** 26 | *

Java class for anonymous complex type. 27 | * 28 | *

The following schema fragment specifies the expected content contained within this class. 29 | * 30 | *

31 |  * <complexType>
32 |  *   <complexContent>
33 |  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
34 |  *     </restriction>
35 |  *   </complexContent>
36 |  * </complexType>
37 |  * 
38 | * 39 | * 40 | */ 41 | @XmlAccessorType(XmlAccessType.FIELD) 42 | @XmlType(name = "") 43 | @XmlRootElement(name = "Ping") 44 | public class Ping { 45 | 46 | 47 | } 48 | -------------------------------------------------------------------------------- /MS.NET/DocuSignSample/DocuSignSample/ApiHelper.cs: -------------------------------------------------------------------------------- 1 | /** 2 | * @copyright Copyright (C) DocuSign, Inc. All rights reserved. 3 | * 4 | * This source code is intended only as a supplement to DocuSign SDK 5 | * and/or on-line documentation. 6 | * 7 | * This sample is designed to demonstrate DocuSign features and is not intended 8 | * for production use. Code and policy for a production application must be 9 | * developed to meet the specific data and security requirements of the 10 | * application. 11 | * 12 | * THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY 13 | * KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE 14 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A 15 | * PARTICULAR PURPOSE. 16 | */ 17 | 18 | using System; 19 | using System.Collections.Generic; 20 | using System.Linq; 21 | using System.Web; 22 | 23 | namespace DocuSignSample 24 | { 25 | /// 26 | /// This just has some methods that create some common api objects to save typing and avoid cluttering up the main 27 | /// process code. Many of the values here are defaulted for the demo. 28 | /// 29 | public class ApiHelper 30 | { 31 | 32 | } 33 | 34 | public struct AccountCredentials 35 | { 36 | public string ApiUrl; // url endpoint of the api 37 | public string AccountId; // billing account for sending envelopes 38 | public string UserName; // email address used for DocuSign login, prefixed with integrator key in square brackets 39 | public string Password; // password for DocuSign login 40 | } 41 | 42 | } -------------------------------------------------------------------------------- /MS.NET/DocuSignSample/DocuSignSample/SendDocument.aspx.designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // 5 | // Changes to this file may cause incorrect behavior and will be lost if 6 | // the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | namespace DocuSignSample { 11 | 12 | 13 | public partial class SendDocument { 14 | 15 | /// 16 | /// SendDocumentForm control. 17 | /// 18 | /// 19 | /// Auto-generated field. 20 | /// To modify move field declaration from designer file to code-behind file. 21 | /// 22 | protected global::System.Web.UI.HtmlControls.HtmlForm SendDocumentForm; 23 | 24 | /// 25 | /// file1 control. 26 | /// 27 | /// 28 | /// Auto-generated field. 29 | /// To modify move field declaration from designer file to code-behind file. 30 | /// 31 | protected global::System.Web.UI.HtmlControls.HtmlInputFile file1; 32 | 33 | /// 34 | /// file2 control. 35 | /// 36 | /// 37 | /// Auto-generated field. 38 | /// To modify move field declaration from designer file to code-behind file. 39 | /// 40 | protected global::System.Web.UI.HtmlControls.HtmlInputFile file2; 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /PHP/DocuSignSample/css/jquery.ui.core.css: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI CSS Framework 1.8.9 3 | * 4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Theming/API 9 | */ 10 | 11 | /* Layout helpers 12 | ----------------------------------*/ 13 | .ui-helper-hidden { display: none; } 14 | .ui-helper-hidden-accessible { position: absolute !important; clip: rect(1px 1px 1px 1px); clip: rect(1px,1px,1px,1px); } 15 | .ui-helper-reset { margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; } 16 | .ui-helper-clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; } 17 | .ui-helper-clearfix { display: inline-block; } 18 | /* required comment for clearfix to work in Opera \*/ 19 | * html .ui-helper-clearfix { height:1%; } 20 | .ui-helper-clearfix { display:block; } 21 | /* end clearfix */ 22 | .ui-helper-zfix { width: 100%; height: 100%; top: 0; left: 0; position: absolute; opacity: 0; filter:Alpha(Opacity=0); } 23 | 24 | 25 | /* Interaction Cues 26 | ----------------------------------*/ 27 | .ui-state-disabled { cursor: default !important; } 28 | 29 | 30 | /* Icons 31 | ----------------------------------*/ 32 | 33 | /* states and images */ 34 | .ui-icon { display: block; text-indent: -99999px; overflow: hidden; background-repeat: no-repeat; } 35 | 36 | 37 | /* Misc visuals 38 | ----------------------------------*/ 39 | 40 | /* Overlays */ 41 | .ui-widget-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; } 42 | --------------------------------------------------------------------------------