<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>DocuSign Blog &#187; api</title>
	<atom:link href="http://www.docusign.com/blog/tag/api/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.docusign.com/blog</link>
	<description>DocuSign News &#38; Electronic Signature Tips &#38; Ideas</description>
	<lastBuildDate>Sat, 20 Mar 2010 09:30:12 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How-To Increase Security with Java Keystore to Embed the DocuSign Electronic Signature Experience In Your Application</title>
		<link>http://www.docusign.com/blog/2010/01/11/how-to-increase-security-with-java-keystore-to-embed-the-docusign-electronic-signature-experience-in-your-application/</link>
		<comments>http://www.docusign.com/blog/2010/01/11/how-to-increase-security-with-java-keystore-to-embed-the-docusign-electronic-signature-experience-in-your-application/#comments</comments>
		<pubDate>Mon, 11 Jan 2010 19:17:56 +0000</pubDate>
		<dc:creator>Mike Borozdin</dc:creator>
				<category><![CDATA[DevCenter]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[DocuSign Developer Center]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[keystore]]></category>
		<category><![CDATA[sdk]]></category>
		<category><![CDATA[web services]]></category>

		<guid isPermaLink="false">http://www.docusign.com/blog/?p=2010</guid>
		<description><![CDATA[If you want to embed the DocuSign esigning experience into your application, your web service calls to DocuSign API will require a  tighter level of security. In addition to the user name token in the SOAP  headers, you will need to provide an X509 signature. For an example of a SOAP call  [...]]]></description>
			<content:encoded><![CDATA[<p>If you want to embed the <a href="http://www.docusign.com/blog/tag/docusign/" class="st_tag internal_tag" rel="tag" title="Posts tagged with DocuSign">DocuSign</a> esigning experience into your application, your web <a href="http://www.docusign.com/blog/tag/service/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Service">service</a> calls to <a href="http://www.docusign.com/blog/tag/docusign/" class="st_tag internal_tag" rel="tag" title="Posts tagged with DocuSign">DocuSign</a> <a href="http://www.docusign.com/blog/tag/api/" class="st_tag internal_tag" rel="tag" title="Posts tagged with api">API</a> will require a  tighter level of security. In addition to the user name token in the SOAP  headers, you will need to provide an X509 signature. For an example of a SOAP call  with an X509 signature, please see Chapter 1 of DocuSign3.0API.doc – the  <a href="http://www.docusign.com/blog/tag/docusign/" class="st_tag internal_tag" rel="tag" title="Posts tagged with DocuSign">DocuSign</a> developer guide.</p>
<p><strong>Step 1 – Procure an X509 Certificate</strong></p>
<ul>
<li>To get BinarySecurityToken working  with <a href="http://www.docusign.com/blog/tag/java/" class="st_tag internal_tag" rel="tag" title="Posts tagged with java">Java</a>, procure an X509 Certificate. While getting an X509 certificate is beyond  the scope of this blog post – you might want to try searching for “SSL Certificates”. SSL transport protocol uses X.509 certificates for  encryption.</li>
<li><a href="http://www.docusign.com/blog/tag/docusign/" class="st_tag internal_tag" rel="tag" title="Posts tagged with DocuSign">DocuSign</a> supports certificates issued  by certificate authorities included in Windows2003 servers. The most widely  used certificate authorities are Thawte and VeriSign. Additionally, our Demo server farm  support CACert.org certificate authority, which enables you to get a certificate without having to pay for it.</li>
<li>Keys are generally distributed in  PEM, PFX or CRT files. You will need one of these files prior to proceeding with  this walkthrough.</li>
</ul>
<p><strong>Step 2 – Generate a <a href="http://www.docusign.com/blog/tag/java/" class="st_tag internal_tag" rel="tag" title="Posts tagged with java">Java</a> <a href="http://www.docusign.com/blog/tag/keystore/" class="st_tag internal_tag" rel="tag" title="Posts tagged with keystore">KeyStore</a></strong></p>
<ul>
<li><a href="http://www.docusign.com/blog/tag/java/" class="st_tag internal_tag" rel="tag" title="Posts tagged with java">Java</a> has its own <a href="http://www.docusign.com/blog/tag/keystore/" class="st_tag internal_tag" rel="tag" title="Posts tagged with keystore">keystore</a> format  which requires the use of its own tool – keytool. In my experience, I had started with a  PFX file. To convert to the <a href="http://www.docusign.com/blog/tag/java/" class="st_tag internal_tag" rel="tag" title="Posts tagged with java">Java</a> <a href="http://www.docusign.com/blog/tag/keystore/" class="st_tag internal_tag" rel="tag" title="Posts tagged with keystore">Keystore</a> format, I had to go through a  number of cumbersome steps. Then, one of our customers, Gloria Zhang, pointed me  to a blog post about a very nifty tool: <a href="http://erlend.oftedal.no/blog/?blogid=68">http://erlend.oftedal.no/blog/?blogid=68</a><span style="text-decoration: underline;"> </span></li>
<li>Using the steps in that tutorial, I  created an <a href="http://www.docusign.com/blog/tag/esign/" class="st_tag internal_tag" rel="tag" title="Posts tagged with esign">esign</a>.jks file.</li>
</ul>
<p><strong>Step 3 – Configure Axis2 to generate electronic signatures</strong></p>
<ul>
<li>We’ve prepackaged samples to generate  the right configuration files when you want to use XML signatures. I suggest that  you start with working code from the <a href="http://www.docusign.com/blog/tag/docusign/" class="st_tag internal_tag" rel="tag" title="Posts tagged with DocuSign">DocuSign</a> <a href="http://www.docusign.com/blog/tag/sdk/" class="st_tag internal_tag" rel="tag" title="Posts tagged with sdk">SDK</a> and plug in your <a href="http://www.docusign.com/blog/tag/keystore/" class="st_tag internal_tag" rel="tag" title="Posts tagged with keystore">keystore</a> file.  This minimizes the number of things that can go wrong.</li>
<li>You will need to plug in some  important information about your <a href="http://www.docusign.com/blog/tag/keystore/" class="st_tag internal_tag" rel="tag" title="Posts tagged with keystore">keystore</a> into the build.properties.x509 file.  Once you plug in the (1) <a href="http://www.docusign.com/blog/tag/keystore/" class="st_tag internal_tag" rel="tag" title="Posts tagged with keystore">keystore</a> path, (2) alias of the certificate and (3)  password, you will need to issue “ant war-x509” command to build the web archive  for deployment.</li>
<li>If you were to examine the build  configuration, you should see the following things in your axis2.xml config file:</li>
<li>&lt;items&gt;<strong>Signature</strong> UsernameToken Timestamp&lt;/items&gt;</li>
<li>Elements such as ≤signatureCrypto&gt;  in the OutflowSecurity portion of the configuration.</li>
<li>A cert.properties file that seemingly  has a set of information that is already provided in axis2.xml. This may be there  for historical reasons.</li>
</ul>
<p><strong>Step 4 – Testing</strong></p>
<ul>
<li>Once you have established that the  application is still functioning and making web <a href="http://www.docusign.com/blog/tag/service/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Service">service</a> calls, the next thing to  examine is the SOAP calls. LoanSample comes pre-packaged with log4j integration  that dumps out the HTTP wire calls. You can find the SOAP requests and responses  there.</li>
<li>In my experience, opening the SOAP  requests and responses in an external editor and cutting and pasting the appropriate sections makes them easier to read. After all the edits, you should see  your requests to <a href="http://www.docusign.com/blog/tag/docusign/" class="st_tag internal_tag" rel="tag" title="Posts tagged with DocuSign">DocuSign</a> <a href="http://www.docusign.com/blog/tag/web-services/" class="st_tag internal_tag" rel="tag" title="Posts tagged with web services">web services</a>. Those requests will have the  UserNameToken and also BinarySecurityToken element in the headers. The  BinarySecurityToken will have signature information and signature value.</li>
<li>The final test is contacting your  <a href="http://www.docusign.com/blog/tag/docusign/" class="st_tag internal_tag" rel="tag" title="Posts tagged with DocuSign">DocuSign</a> representative and asking them to turn on XML signature validation on your account.  This request should be accompanied by a public export of your certificate.  Make sure you do not include the private key in your request.</li>
</ul>
<p>While configuring XML signatures in <a href="http://www.docusign.com/blog/tag/java/" class="st_tag internal_tag" rel="tag" title="Posts tagged with java">Java</a> is an advanced topic that requires that you master servlets, axis (or a similar framework),  and PKI file manipulation, you can also work with <a href="http://www.docusign.com/blog/tag/docusign/" class="st_tag internal_tag" rel="tag" title="Posts tagged with DocuSign">DocuSign</a> to ensure the correct configuration.</p>
<p>After all the settings are correctly configured, <a href="http://www.docusign.com/blog/tag/docusign/" class="st_tag internal_tag" rel="tag" title="Posts tagged with DocuSign">DocuSign</a> will know that the web <a href="http://www.docusign.com/blog/tag/service/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Service">service</a> calls were generated only by an application  that had access to the X.509 certificate file. Enterprise IT operations put a lot of  emphasis on the security of the certificate files, so you can enjoy the benefits  from the internal infrastructure.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.docusign.com%2Fblog%2F2010%2F01%2F11%2Fhow-to-increase-security-with-java-keystore-to-embed-the-docusign-electronic-signature-experience-in-your-application%2F&amp;linkname=How-To%20Increase%20Security%20with%20Java%20Keystore%20to%20Embed%20the%20DocuSign%20Electronic%20Signature%20Experience%20In%20Your%20Application"><img src="http://www.docusign.com/blog/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.docusign.com/blog/2010/01/11/how-to-increase-security-with-java-keystore-to-embed-the-docusign-electronic-signature-experience-in-your-application/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Preparing for DocuSign Connect API Certification</title>
		<link>http://www.docusign.com/blog/2009/07/15/preparing-for-docusign-connect-api-certification/</link>
		<comments>http://www.docusign.com/blog/2009/07/15/preparing-for-docusign-connect-api-certification/#comments</comments>
		<pubDate>Thu, 16 Jul 2009 00:10:25 +0000</pubDate>
		<dc:creator>Mike Borozdin</dc:creator>
				<category><![CDATA[DevCenter]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[DocuSign Connect]]></category>
		<category><![CDATA[Questions about DocuSign]]></category>
		<category><![CDATA[sdk]]></category>

		<guid isPermaLink="false">http://www.docusign.com/blog/?p=932</guid>
		<description><![CDATA[
Introduction
DocuSign Connect API is a powerful way to include an electronic signature and automate parts of your electronic contract execution process. The DocuSign Connect Application Programming Interface allows you to send documents, get status of outstanding or completed contracts, retrieve signed files and control the signing process workflow.  Supporting an integrated application includes challenges not [...]]]></description>
			<content:encoded><![CDATA[<p><strong><img class="size-thumbnail wp-image-937  alignright" title="Certification Checklist" src="http://www.docusign.com/blog/wp-content/uploads/2009/07/2-150x150.gif" alt="Certification Checklist" width="150" height="150" /></strong><br />
<strong>Introduction</strong><br />
<a href="http://www.docusign.com/blog/tag/docusign/" class="st_tag internal_tag" rel="tag" title="Posts tagged with DocuSign">DocuSign</a> Connect API is a powerful way to include an electronic signature and automate parts of your electronic contract execution process. The <a href="http://www.docusign.com/blog/tag/docusign/" class="st_tag internal_tag" rel="tag" title="Posts tagged with DocuSign">DocuSign</a> Connect Application Programming Interface allows you to send documents, get status of outstanding or completed contracts, retrieve signed files and control the signing process workflow.  Supporting an integrated application includes challenges not experienced by users that interact with <a href="http://www.docusign.com/blog/tag/docusign/" class="st_tag internal_tag" rel="tag" title="Posts tagged with DocuSign">DocuSign</a> user interface.<br />
The complexities of support and management of API customers  In order to make sure <a href="http://www.docusign.com/blog/tag/docusign/" class="st_tag internal_tag" rel="tag" title="Posts tagged with DocuSign">DocuSign</a> customers have access to the best possible solutions, <a href="http://www.docusign.com/blog/tag/docusign/" class="st_tag internal_tag" rel="tag" title="Posts tagged with DocuSign">DocuSign</a> has created a <a href="http://www.docusign.com/blog/tag/docusign/" class="st_tag internal_tag" rel="tag" title="Posts tagged with DocuSign">DocuSign</a> certification session (Certification) requirement. Any new system that intends to interact with <a href="http://www.docusign.com/blog/tag/docusign/" class="st_tag internal_tag" rel="tag" title="Posts tagged with DocuSign">DocuSign</a> <a href="http://www.docusign.com/blog/tag/web-services/" class="st_tag internal_tag" rel="tag" title="Posts tagged with web services">web services</a> must be introduced to <a href="http://www.docusign.com/blog/tag/docusign/" class="st_tag internal_tag" rel="tag" title="Posts tagged with DocuSign">DocuSign</a> developer support and operations staff.<br />
During the Certification session, your operations and development team and <a href="http://www.docusign.com/blog/tag/docusign/" class="st_tag internal_tag" rel="tag" title="Posts tagged with DocuSign">DocuSign</a> personnel go through the Certification Checklist available from your <a href="http://www.docusign.com/blog/tag/docusign/" class="st_tag internal_tag" rel="tag" title="Posts tagged with DocuSign">DocuSign</a> account manager. The latest version of the checklist is 2.7.<br />
What are some best practices when preparing for the Certification session?<br />
<strong></strong></p>
<p><strong>Demonstrate Use Cases</strong><br />
To schedule a Certification, your application needs to be close to complete. We understand that you will keep innovating in your space and continue converting more document execution to <a href="http://www.docusign.com/blog/tag/docusign/" class="st_tag internal_tag" rel="tag" title="Posts tagged with DocuSign">DocuSign</a>. For us to get the proper context, we need to see at least a Beta.<br />
Most of the applications we certify have multiple use cases. If only select use cases deal with electronic contract execution or <a href="http://www.docusign.com/blog/tag/electronic-signatures/" class="st_tag internal_tag" rel="tag" title="Posts tagged with electronic signatures">electronic signatures</a>, we recommend isolating your <a href="http://www.docusign.com/blog/tag/docusign/" class="st_tag internal_tag" rel="tag" title="Posts tagged with DocuSign">DocuSign</a> use cases and preparing data, if possible, to provide the most benefit.<br />
For example: What if your user needs to establish an account, input 3 screens of data and then sign the appropriate application? You can pre-create a user with all the data entered prior to Certification.<br />
Commonly missed edge use cases:<br />
1.    Users can decline to sign: <a href="http://www.docusign.com/blog/tag/docusign/" class="st_tag internal_tag" rel="tag" title="Posts tagged with DocuSign">DocuSign</a> interface supports that.<br />
2.    Users can take several sessions to sign: <a href="http://www.docusign.com/blog/tag/docusign/" class="st_tag internal_tag" rel="tag" title="Posts tagged with DocuSign">DocuSign</a> allows someone to review the document, leave the signing experience and come back later to re-start signing.<br />
3.    Network connectivity issues: Network code needs to account for circumstance. You can simulate that by plugging in the wrong web <a href="http://www.docusign.com/blog/tag/service/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Service">service</a> URL.<br />
4.    Mistyped username or password: While it’s unlikely that your API enabled user account will mistype passwords, you do want to be ready when someone resets the password through <a href="http://www.docusign.com/blog/tag/docusign/" class="st_tag internal_tag" rel="tag" title="Posts tagged with DocuSign">DocuSign</a> account management console.<br />
<strong></strong></p>
<p><strong>Timing</strong><br />
You might get some actionable feedback during the Certification process. That means your code, your workflow and maybe your configuration may need to change. If your company has actively engaged <a href="http://www.docusign.com/blog/tag/docusign/" class="st_tag internal_tag" rel="tag" title="Posts tagged with DocuSign">DocuSign</a> Professional Services, then most likely you will have no surprises waiting for you. However, if you were coding on your own, it’s probably best to structure additional review time in your schedule to ensure sufficient time in your application release cycle.<br />
Keep in mind that <a href="http://www.docusign.com/blog/tag/docusign/" class="st_tag internal_tag" rel="tag" title="Posts tagged with DocuSign">DocuSign</a> Professional Services are booked out about 2-3 weeks in advance. The earlier you can let your account manager know that you have a new application getting ready to certify, the better.<br />
<strong></strong></p>
<p><strong>Participants</strong><br />
During the Certification, your sustained engineering staff and the implementation team will be introduced to <a href="http://www.docusign.com/blog/tag/docusign/" class="st_tag internal_tag" rel="tag" title="Posts tagged with DocuSign">DocuSign</a> developer support, operations and escalations personnel.<br />
One of the goals of certification is to ensure that, in case of an emergency, precious time is not wasted determining who needs to be contacted and who can fix the business critical systems.<br />
Re-certification: “When Do I Need to Re-certify?”<br />
Given the fee associated with the Certification, it’s natural to try to minimize the number of Certifications. That’s a fine strategy as long as the supportability of your application doesn’t suffer.<br />
In a case where you are adding more signatures or documents to the same process, it’s probably not going to change the calls or architecture of the application. You can continue <a href="http://www.docusign.com/blog/tag/innovation/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Innovation">innovation</a> on that scale without looping <a href="http://www.docusign.com/blog/tag/docusign/" class="st_tag internal_tag" rel="tag" title="Posts tagged with DocuSign">DocuSign</a> in. However, if you introduce a brand new module, change frameworks, or change programming languages then you might end up in a situation where the <a href="http://www.docusign.com/blog/tag/docusign/" class="st_tag internal_tag" rel="tag" title="Posts tagged with DocuSign">DocuSign</a> documentation on your solution is out of date. Contact your Account Manager!<br />
<strong></strong></p>
<p><strong>Summary</strong><br />
Please let us know if you need additional clarity into the certification process and our expectations. As mentioned above, the latest checklist can be obtained from your <a href="http://www.docusign.com/blog/tag/docusign/" class="st_tag internal_tag" rel="tag" title="Posts tagged with DocuSign">DocuSign</a> Account Manager. While the contents of the Certification Checklist are constantly refined and improved, the spirit of ensuring quality, supportable integrations with <a href="http://www.docusign.com/blog/tag/docusign/" class="st_tag internal_tag" rel="tag" title="Posts tagged with DocuSign">DocuSign</a> <a href="http://www.docusign.com/blog/tag/service/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Service">service</a> remains the same.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.docusign.com%2Fblog%2F2009%2F07%2F15%2Fpreparing-for-docusign-connect-api-certification%2F&amp;linkname=Preparing%20for%20DocuSign%20Connect%20API%20Certification"><img src="http://www.docusign.com/blog/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.docusign.com/blog/2009/07/15/preparing-for-docusign-connect-api-certification/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Part 2, ECE Implementation Projects: General Contract Signing Process and Degrees of Automation</title>
		<link>http://www.docusign.com/blog/2009/06/26/part-2-esignature-implementation-projects/</link>
		<comments>http://www.docusign.com/blog/2009/06/26/part-2-esignature-implementation-projects/#comments</comments>
		<pubDate>Fri, 26 Jun 2009 22:02:55 +0000</pubDate>
		<dc:creator>Mike Borozdin</dc:creator>
				<category><![CDATA[DevCenter]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[automation]]></category>
		<category><![CDATA[business analysis]]></category>
		<category><![CDATA[esign]]></category>
		<category><![CDATA[esignature]]></category>

		<guid isPermaLink="false">http://docusign.com/blog/?p=837</guid>
		<description><![CDATA[ Want to understand the bottom line value of electronic signature and electronic contract execution (ECE)? Are you responsible for the business analysis and implementation of an enterprise class rollout of ECE processes and system?
Business Analysis of ECE Implementation, published regularly during June, will address these questions. This series is brought to you by Mike [...]]]></description>
			<content:encoded><![CDATA[<p><img class="size-thumbnail wp-image-843 " title="Stack of Paper" src="http://docusign.com/blog/wp-content/uploads/2009/06/326761635_7736e92d44-150x150.jpg" alt="Stack of Paper" width="150" height="150" align="left" /> Want to understand the bottom line value of electronic signature and <a href="http://www.docusign.com/blog/tag/electronic-contract-execution/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Electronic Contract Execution">electronic contract execution</a> (<a href="http://www.docusign.com/blog/tag/ece/" class="st_tag internal_tag" rel="tag" title="Posts tagged with ECE">ECE</a>)? Are you responsible for the business analysis and implementation of an enterprise class rollout of <a href="http://www.docusign.com/blog/tag/ece/" class="st_tag internal_tag" rel="tag" title="Posts tagged with ECE">ECE</a> processes and system?<br />
Business Analysis of <a href="http://www.docusign.com/blog/tag/ece/" class="st_tag internal_tag" rel="tag" title="Posts tagged with ECE">ECE</a> Implementation, published regularly during June, will address these questions. This series is brought to you by Mike Borozdin, Manager of DocuSign Professional Services.<br />
Understanding what general contract signing processes and electronic contract signing processes entail sets a framework for thinking about <a href="http://www.docusign.com/blog/tag/automation/" class="st_tag internal_tag" rel="tag" title="Posts tagged with automation">automation</a> options.</p>
<p><strong>General Contract Signing Process<br />
</strong>The following stages represent a generalized, high-level cycle for any contract signing process. Without DocuSign, the contract signing process is &#8220;print-ship-sign-copy-return-scan&#8221;.</p>
<p><em>Stage 1: Document and Envelope Preparation<br />
</em>During this stage, the sender will provide transaction data and instructions. This information might come in manually or automatically from a variety of the data sources. The sender will add documents, templates, signing locations, initials locations, data fields, recipients, and reminder and expiration information. Without DocuSign, the sender has to print the documents to paper, ensuring sufficient print time and printer ink.<br />
With DocuSign, you can work with the DocuSign team to automate this stage according to your business specifications. The documents and envelope will be ready to be sent at the completion of this stage.<br />
<em></em></p>
<p><em>Stage 2: Transaction Execution<br />
</em>Stage 2 begins when the sender sends the envelope of documents. Without DocuSign, this might entail faxing every sheet of paper and confirming receipt. If the documents are overnighted, someone must either drop off the envelope or schedule a pickup. Then the sender must wait for the recipient to receive the documents. If a critical page is missing or illegible, there may be emails, phone calls or other back-and-forth communication. The recipient must also be physically available to wet-sign. Last minute business trips or other delays can add days to this process.</p>
<p>If the sender were to use DocuSign, the DocuSign services execute all of the actions defined in stage 1 once the envelope has been sent. The envelope is routed via email to the proper recipients in the appropriate order. The recipients enter the required data (as applicable) and electronically sign and initial (as applicable) in all the required locations. Senders can control what happens to an envelope after it has been sent. For example, a sender may correct an e-mail address in case it was mistyped, a sender may stop execution and void the entire transaction before completion. However, more major changes are not allowed without first voiding. For example, senders cannot add an addendum after a signer has signed.</p>
<p><em>Stage 3 – Filing and Storage<br />
</em>After the transaction has been executed, contracts are typically filed and the data is manually entered into business systems. Sometimes other processes are initiated.<br />
With DocuSign implementation, the filing and storage stage can be automated with some amount of investment.<br />
This discussion of a high-level, generalized contract signing cycle provides a process framework for understanding where and how <a href="http://www.docusign.com/blog/tag/automation/" class="st_tag internal_tag" rel="tag" title="Posts tagged with automation">automation</a> using DocuSign electronic signature and <a href="http://www.docusign.com/blog/tag/online-contract-execution/" class="st_tag internal_tag" rel="tag" title="Posts tagged with online contract execution">online contract execution</a> adds value. The next section describes how to leverage DocuSign <a href="http://www.docusign.com/blog/tag/technology/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Technology">technology</a> and <a href="http://www.docusign.com/blog/tag/service/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Service">service</a> to automate your contract execution process and turn it into <a href="http://www.docusign.com/blog/tag/electronic-contract-execution/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Electronic Contract Execution">electronic contract execution</a>.</p>
<p><strong>Degrees of <a href="http://www.docusign.com/blog/tag/automation/" class="st_tag internal_tag" rel="tag" title="Posts tagged with automation">Automation</a><br />
</strong>DocuSign offers a web interface, desktop software, and an application programming interface (API) called <a href="http://www.docusign.com/blog/tag/docusign-connect/" class="st_tag internal_tag" rel="tag" title="Posts tagged with DocuSign Connect">DocuSign Connect</a>. These different options apply to all three stages in the lifecycle of a contract.</p>
<p><em>Web interface </em><br />
The DocuSign web interface allows a user to send, sign, add data, initial, download, and get status of documents. The flexible WYSIWYG interface allows users to get started immediately and work from almost anywhere. Anyone who can use e-mail and a web browser should feel comfortable interacting with the system very quickly.</p>
<p><em>Standard <a href="http://www.docusign.com/blog/tag/automation/" class="st_tag internal_tag" rel="tag" title="Posts tagged with automation">automation</a> solutions<br />
</em>In addition to the web and software solutions, the DocuSign <a href="http://www.docusign.com/blog/tag/service/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Service">service</a> provides several standard solutions which automate steps in the <a href="http://www.docusign.com/blog/tag/electronic-contract-execution/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Electronic Contract Execution">electronic contract execution</a> process.</p>
<p>These solutions allow you to:<br />
•    Create a DocuSign envelope out of a blank PDF form using DocuSign PowerForms,<br />
•    Automate document and envelope sending with DocuSign desktop software,<br />
•    Automate data entry of status updates and data collected during the <a href="http://www.docusign.com/blog/tag/electronic-contract-execution/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Electronic Contract Execution">electronic contract execution</a> process to SalesForce with <a href="http://www.docusign.com/blog/tag/docusign-connect/" class="st_tag internal_tag" rel="tag" title="Posts tagged with DocuSign Connect">DocuSign Connect</a> for SalesForce,<br />
•    Automate document and data retrieval from the DocuSign <a href="http://www.docusign.com/blog/tag/service/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Service">service</a> to a server behind your firewall with DocuSign Export,<br />
•    Automate the transport of the authoritative copy of documents to another secure location with eOriginal Vaulting.</p>
<p>These solutions require configuration and possibly installation. The target audiences for these solutions are office “power users” and IT administrators.</p>
<p><em>Application Programming Interface<br />
</em>The DocuSign API, <a href="http://www.docusign.com/blog/tag/docusign-connect/" class="st_tag internal_tag" rel="tag" title="Posts tagged with DocuSign Connect">DocuSign Connect</a>, allows other systems to interact with the DocuSign <a href="http://www.docusign.com/blog/tag/service/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Service">service</a> and automate the processes around sending, correcting, status, and download.</p>
<p><a href="http://www.docusign.com/blog/tag/docusign-connect/" class="st_tag internal_tag" rel="tag" title="Posts tagged with DocuSign Connect">DocuSign Connect</a> is exposed as a standard SOAP XML Web <a href="http://www.docusign.com/blog/tag/service/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Service">Service</a>, protected by transport level security and message level security based on WS-Security standards.</p>
<p><a href="http://www.docusign.com/blog/tag/docusign-connect/" class="st_tag internal_tag" rel="tag" title="Posts tagged with DocuSign Connect">DocuSign Connect</a> enables greater <a href="http://www.docusign.com/blog/tag/automation/" class="st_tag internal_tag" rel="tag" title="Posts tagged with automation">automation</a> capability. The most common automations are:<br />
•    <a href="http://www.docusign.com/blog/tag/automation/" class="st_tag internal_tag" rel="tag" title="Posts tagged with automation">Automation</a> of sending process: Senders can send documents with one click. This requires additional programming by the DocuSign customers. This programming enables the automatic selection of the document, data collection requirements, and signers. Using this capability, step 1 of the electronic execution process can be almost entirely automated.<br />
•    Store and update documents and data automatically: Using data from <a href="http://www.docusign.com/blog/tag/docusign-connect/" class="st_tag internal_tag" rel="tag" title="Posts tagged with DocuSign Connect">DocuSign Connect</a>, update internal systems with documents, data collected, and status information. <a href="http://www.docusign.com/blog/tag/docusign-connect/" class="st_tag internal_tag" rel="tag" title="Posts tagged with DocuSign Connect">DocuSign Connect</a> provides all the information about the transaction at any point in its lifecycle. These capabilities can automate most of the processes in step 3 of the <a href="http://www.docusign.com/blog/tag/electronic-contract-execution/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Electronic Contract Execution">electronic contract execution</a> process.<br />
•    Embedded signing experience: You may embed the DocuSign signing and data collection processes in your portal or website using an IFRAME. This capability keeps your brand in front of the signers at all times in the <a href="http://www.docusign.com/blog/tag/electronic-contract-execution/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Electronic Contract Execution">electronic contract execution</a> process.</p>
<p>A shared understanding of the general contract signing process and how DocuSign&#8217;s <a href="http://www.docusign.com/blog/tag/electronic-contract-execution/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Electronic Contract Execution">electronic contract execution</a> process differs enables you to think about which steps of the process are repeatable and appropriate for <a href="http://www.docusign.com/blog/tag/automation/" class="st_tag internal_tag" rel="tag" title="Posts tagged with automation">automation</a>. Understanding the various options around creating an automated <a href="http://www.docusign.com/blog/tag/electronic-contract-execution/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Electronic Contract Execution">electronic contract execution</a> process for your organization and how they each fit into the contract lifecycle may help you communicate the value of adopting electronic signature and <a href="http://www.docusign.com/blog/tag/ece/" class="st_tag internal_tag" rel="tag" title="Posts tagged with ECE">ECE</a> technologies and processes.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.docusign.com%2Fblog%2F2009%2F06%2F26%2Fpart-2-esignature-implementation-projects%2F&amp;linkname=Part%202%2C%20ECE%20Implementation%20Projects%3A%20General%20Contract%20Signing%20Process%20and%20Degrees%20of%20Automation"><img src="http://www.docusign.com/blog/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.docusign.com/blog/2009/06/26/part-2-esignature-implementation-projects/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Integration Considerations for a Software Vendor</title>
		<link>http://www.docusign.com/blog/2009/05/26/integration-considerations-for-a-software-vendor/</link>
		<comments>http://www.docusign.com/blog/2009/05/26/integration-considerations-for-a-software-vendor/#comments</comments>
		<pubDate>Tue, 26 May 2009 23:38:03 +0000</pubDate>
		<dc:creator>Mike Borozdin</dc:creator>
				<category><![CDATA[DevCenter]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[isv]]></category>
		<category><![CDATA[sdk]]></category>
		<category><![CDATA[web services]]></category>

		<guid isPermaLink="false">http://docusign.com/blog/?p=539</guid>
		<description><![CDATA[A lot of business applications today are starting to use commercial web services.  The ubiquity of connectivity allows us to move mission critical business processes outside of our internal firewalls to cut down on maintenance, increase reliability, create more feature rich applications and get instant updates.

Whether or not your application is installed or delivered as a service, integration with web services such as the ones delivered by DocuSign requires a shift in user interface, support and architecture.

The cost of adopting the new paradigms are often less then the benefits you receive by utilizing the services oriented architecture (SOA). In this post we will examine the benefits, architecture considerations, implementation guidelines and support for an application integrated with DocuSign web services.

The target audience of this post are enterprise software architects and technical project managers that are designing an integration with DocuSign web services.]]></description>
			<content:encoded><![CDATA[<p><strong>Overview</strong><br />
A lot of business applications today are starting to use commercial <a href="http://www.docusign.com/blog/tag/web-services/" class="st_tag internal_tag" rel="tag" title="Posts tagged with web services">web services</a>.  The ubiquity of connectivity allows us to move mission critical business processes outside of our internal firewalls to cut down on maintenance, increase reliability, create more feature rich applications and get instant updates.</p>
<p>Whether or not your application is installed or delivered as a <a href="http://www.docusign.com/blog/tag/service/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Service">service</a>, integration with <a href="http://www.docusign.com/blog/tag/web-services/" class="st_tag internal_tag" rel="tag" title="Posts tagged with web services">web services</a> such as the ones delivered by DocuSign requires a shift in user interface, support and architecture.</p>
<p>The cost of adopting the new paradigms are often less then the benefits you receive by utilizing the services oriented architecture (SOA). In this post we will examine the benefits, architecture considerations, implementation guidelines and support for an application integrated with DocuSign <a href="http://www.docusign.com/blog/tag/web-services/" class="st_tag internal_tag" rel="tag" title="Posts tagged with web services">web services</a>.</p>
<p>The target audience of this post are enterprise software architects and technical project managers that are designing an integration with DocuSign <a href="http://www.docusign.com/blog/tag/web-services/" class="st_tag internal_tag" rel="tag" title="Posts tagged with web services">web services</a>.<br />
<strong></strong></p>
<p><strong>Benefits</strong><br />
ISO 9126 is an international standard for evaluating software quality.   There are six main characteristics and utilizing DocuSign <a href="http://www.docusign.com/blog/tag/web-services/" class="st_tag internal_tag" rel="tag" title="Posts tagged with web services">web services</a> directly contributes to all of them.<br />
<em>1. Functionality</em><br />
As you are considering executing contracts electronically or just gathering electronic signature you should keep in mind that stated requirements are most of the time are missing the full scope.</p>
<p>In addition to end user stated functionality electronic signatures have a number of applicable laws. Utilizing a commercial web <a href="http://www.docusign.com/blog/tag/service/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Service">service</a> eases the burden of figuring out the details.  The <a href="http://www.docusign.com/blog/tag/service/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Service">service</a> providing the full range of options can have immediate return on your investment or most likely will have a return in the near future.</p>
<p>Before you decide to build your own or buy a limited <a href="http://www.docusign.com/blog/tag/service/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Service">service</a> it’s generally a good exercise to ask your users if any of the additional features could be applicable to their contract execution.  These are the types of questions that can help you figure out the evolution of requirements: “Dear Project Stakeholder, I know you are saying that right now all you need is a signature on the last page, but do you foresee us executing contracts that might require signatures on multiple pages?  Could initials come in handy?  Do we need to collect any data with this contract or just get the signatures?”<br />
<em>2. Reliability</em><br />
Enterprise ready commercial web <a href="http://www.docusign.com/blog/tag/service/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Service">service</a> providers such as DocuSign host their solution in a secure and reliable data center.  There are personnel controls, audit logs and secure storage utilized to make sure that the solution and the data are well maintained.  In case of a forensics exercise or data loss by your application the secure audit log at DocuSign will still maintain that your documents were signed.</p>
<p>In addition to the operational reliability the software releases by an enterprise ready web <a href="http://www.docusign.com/blog/tag/service/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Service">service</a> provider go through test passes and beta testing by other users of the web <a href="http://www.docusign.com/blog/tag/service/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Service">service</a>.]<br />
<em>3. Usability</em><br />
Commercial <a href="http://www.docusign.com/blog/tag/web-services/" class="st_tag internal_tag" rel="tag" title="Posts tagged with web services">web services</a> can leverage economies of scale and invest more in user interface and application interface.  DocuSign continuously invests into ease of use both by end signers, senders and developers.</p>
<p>The usability improvements are then vetted and confirmed by thousands of signers that interact with the <a href="http://www.docusign.com/blog/tag/service/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Service">service</a> every single day.<br />
<em>4. Efficiency</em><br />
One of the biggest wins when utilizing SOA is that the resource cost of executing the transactions is equal to the cost of making a call to the web <a href="http://www.docusign.com/blog/tag/service/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Service">service</a>.  That’s a miniscule impact in comparison to what the web <a href="http://www.docusign.com/blog/tag/service/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Service">service</a> provider needs to invest in to support presentation, conversion, cataloging and archiving of the electronic contracts.<br />
<em>5. Maintainability</em><br />
Web <a href="http://www.docusign.com/blog/tag/service/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Service">service</a> provider maintains the solution and fixes any issues.  In addition to your staff not having to fix issues, the issues found by other users by the web <a href="http://www.docusign.com/blog/tag/service/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Service">service</a> are also fixed and immediately delivered to you.<br />
<em>6. Portability</em><br />
Utilizing a standards based web <a href="http://www.docusign.com/blog/tag/service/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Service">service</a> rather then an installed behind the firewall system allows you for maximum portability of your application.</p>
<p>First the application physical location is flexible.  You can access the commercial web <a href="http://www.docusign.com/blog/tag/service/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Service">service</a> from any location with connectivity to the Internet.</p>
<p>Second the standards based SOAP API allows you to utilize any operating system or <a href="http://www.docusign.com/blog/tag/technology/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Technology">technology</a> that supports that interface.  Most of the application stacks in use today support SOAP and XML.<br />
<strong></strong></p>
<p><strong>Billing Information</strong><br />
Commercial <a href="http://www.docusign.com/blog/tag/web-services/" class="st_tag internal_tag" rel="tag" title="Posts tagged with web services">web services</a> need to support a billing configuration.  When architecting an application you need to consider the following billing relationships:<br />
1)    You are going to purchase a subscription to the web <a href="http://www.docusign.com/blog/tag/service/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Service">service</a> and deliver the application pre-configured and ready to go.<br />
2)    You are going to ask your clients to purchase a subscription to the commercial web <a href="http://www.docusign.com/blog/tag/service/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Service">service</a>.</p>
<p>The first configuration is probably easiest for deployment because the billing information is static.  When a new client starts using your application they don’t have to purchase a subscription to DocuSign services.  The burden of billing and possibly pre-paying for the subscription is something your system has to manage.</p>
<p>The second configuration will leverage DocuSign billing infrastructure but will have an up front cost of setting up a DocuSign corporate account and plugging that information in.</p>
<p>From a software architecture perspective the credentials that identify an account on DocuSign system are going to be global or stored in a customer record.<br />
<strong></strong></p>
<p><strong>Application Configuration</strong><br />
Most user friendly applications have a configuration page that allow the administrators to make changes without having to recompile or re-deploy the application.</p>
<p>Depending on the choices you made for the billing configuration between your application and your clients the configuration page is going to be global or on a per user basis.</p>
<p>It’s important to make sure that the configuration is limited and secured to the users that know how to properly configure connection to DocuSign <a href="http://www.docusign.com/blog/tag/web-services/" class="st_tag internal_tag" rel="tag" title="Posts tagged with web services">web services</a>.</p>
<p>There are also web <a href="http://www.docusign.com/blog/tag/service/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Service">service</a> methods that can be used to make configuration easier.  Login method allows your application to get the web <a href="http://www.docusign.com/blog/tag/service/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Service">service</a> credentials by supplying an e-mail and a password in a human readable form.  DocuSign also supports a Ping method which doesn’t validate credentials but returns True if you are successfully connecting to the web <a href="http://www.docusign.com/blog/tag/service/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Service">service</a> end point.</p>
<p>DocuSign has several server farms:<br />
a.    Production (www.docusign.net) – this is where legally binding contracts are processed.<br />
b.    Demo (demo.docusign.net) – used for development and is free for customers to test against.  The code mirrors production exactly, the data is separate.<br />
c.    Preview (preview.docusign.net) – used to give customers early access to the upcoming versions of the web <a href="http://www.docusign.com/blog/tag/service/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Service">service</a>.</p>
<p>A full DocuSign configuration screen should contain the following elements:<br />
1)    E-mail<br />
2)    Password<br />
3)    Billing Account selection (one e-mail and password could belong to several accounts)<br />
4)    Web <a href="http://www.docusign.com/blog/tag/service/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Service">Service</a> URL selection (demo/production/preview)</p>
<p>If you opt out of using the Login method and would like to obtain web <a href="http://www.docusign.com/blog/tag/service/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Service">service</a> credentials directly your screen should at least contain these elements:<br />
1)    Web <a href="http://www.docusign.com/blog/tag/service/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Service">Service</a> User ID<br />
2)    Account ID<br />
3)    Password<br />
4)    Web <a href="http://www.docusign.com/blog/tag/service/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Service">Service</a> URL selection (demo/production/preview)</p>
<p>We also suggest that you add a “Test” button that uses Ping and Login method for basic checking.  It will save you time on generating a real transaction in order to just test whether the configuration is correct.<br />
<strong>Support Considerations</strong><br />
Your application is likely to have it’s own screens, processes and data flow.  When an administrator or an end user is looking for help you need to provide functionality that will enable them to get help from DocuSign.</p>
<p>DocuSign deals with millions of different contracts and hundreds of integrated applications.  In order to help DocuSign developer support troubleshoot the errors we suggest you build in logging that shows what the requests and responses were at the web <a href="http://www.docusign.com/blog/tag/service/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Service">service</a> level.</p>
<p>Different <a href="http://www.docusign.com/blog/tag/technology/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Technology">technology</a> stacks support various methods for enabling tracing of web <a href="http://www.docusign.com/blog/tag/service/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Service">service</a> calls.  When you escalate a support request to DocuSign you should have these key pieces of information – XML output of the web <a href="http://www.docusign.com/blog/tag/service/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Service">service</a> call that is failing, XML response from DocuSign web <a href="http://www.docusign.com/blog/tag/service/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Service">service</a>, Envelope IDs that are exhibiting problems, web <a href="http://www.docusign.com/blog/tag/service/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Service">service</a> URL that you are interfacing with.</p>
<p>We suggest devising a configuration screen or a report that will allow an IT Operation person to generate the above-mentioned output.  Having that information handy is going to enable us to <a href="http://www.docusign.com/blog/tag/service/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Service">service</a> you a lot quicker.</p>
<p><strong>Meta Data Linking</strong><br />
Most integrating applications extend their workflow and replace what used to be a faxing or printing functionality with DocuSign <a href="http://www.docusign.com/blog/tag/electronic-contract-execution/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Electronic Contract Execution">electronic contract execution</a>.  From a system level you will be using an external data source for some of your data.  The data needs to be correlated between the two data sources to provide a coherent view to the end user.</p>
<p>DocuSign transaction containers are called Envelopes and every single envelope has an envelope ID.  An appliction that creates or references those envelopes should at the very minimum store the envelope ID in one of its tables.</p>
<p>Envelopes also have Custom Fields.  Those are places where arbitrary data can be placed.  If you are looking for a bi-directional data linking you can use these fields.  Commonly applications store things like account ID or transaction ID in the envelope custom fields.</p>
<p>Given the envelope ID you can control the envelope and maybe most importantly gather the data from a completed envelope to update your application state.</p>
<p>For example when envelope completes you might want to change the customer record in your application and move forward in the business process.<br />
Multi Tenant Support<br />
Often applications will support having several companies in one data store.  For example <a href="http://www.docusign.com/blog/tag/salesforce/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Salesforce">SalesForce</a>.com supports thousands of tenants that all have their own configuration and are expecting <a href="http://www.docusign.com/blog/tag/salesforce/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Salesforce">SalesForce</a>.com to keep their records private and secured from each other.</p>
<p>When integrating with DocuSign <a href="http://www.docusign.com/blog/tag/web-services/" class="st_tag internal_tag" rel="tag" title="Posts tagged with web services">web services</a> you need to keep in mind that every tenant in your application might want to plug in their own web <a href="http://www.docusign.com/blog/tag/service/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Service">service</a> credentials in case they have a DocuSign subscription already.</p>
<p>The configuration screens, data tables and onboarding procedures need to take this into account.  Consequently any support escalating from one of the tenants of the application might be due to the fact that the settings in that tenant’s DocuSign account are incorrect.</p>
<p>A common scenario is a changed password.  A new password would invalidate existing web <a href="http://www.docusign.com/blog/tag/service/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Service">service</a> credentials for one of the tenants and the web <a href="http://www.docusign.com/blog/tag/service/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Service">service</a> calls are going to generate “Invalid User Name or Password” credentials.</p>
<p><strong>X509 Certificates</strong><br />
A few of DocuSign’s web <a href="http://www.docusign.com/blog/tag/service/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Service">service</a> calls are secured with an additional level of security.  The security based on WS-Security standard is utilizing a binary security token generated with an X509 Certificate.</p>
<p>These certificates need to be issues by a well known certificate authority such as Thawte or VeriSign.  The certificates also tend to have an expiration date.</p>
<p>If your application is using the methods that require a functioning certificate you need to make sure that the certificate doesn’t expire.  If you are not careful then one day with no code changes and no data changes the web <a href="http://www.docusign.com/blog/tag/service/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Service">service</a> calls might start failing.<br />
<strong>Other Considerations</strong><br />
Some businesses have additional requirements:<br />
1)    What kind of identity verification is necessary for the signers?  DocuSign supports scalable security around signing from a unique activation link sent to the e-mail to RSA integrated ID Check system.  Increased levels of security generally make getting to signing harder and have different costs associated with them.<br />
2)    Has your development team implemented Web <a href="http://www.docusign.com/blog/tag/service/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Service">Service</a> connectivity before?  If not we strongly advise you to get help from a knowledgeable integrator or from DocuSign Professional Services.<br />
References:<br />
<a href="http://en.wikipedia.org/wiki/ISO_9126 ">http://en.wikipedia.org/wiki/ISO_9126 </a></p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.docusign.com%2Fblog%2F2009%2F05%2F26%2Fintegration-considerations-for-a-software-vendor%2F&amp;linkname=Integration%20Considerations%20for%20a%20Software%20Vendor"><img src="http://www.docusign.com/blog/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.docusign.com/blog/2009/05/26/integration-considerations-for-a-software-vendor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DocuSign Users: Getting to Know Todd Waller of Team366</title>
		<link>http://www.docusign.com/blog/2009/03/23/docusign-users-getting-to-know-todd-waller-of-team366/</link>
		<comments>http://www.docusign.com/blog/2009/03/23/docusign-users-getting-to-know-todd-waller-of-team366/#comments</comments>
		<pubDate>Tue, 24 Mar 2009 06:01:11 +0000</pubDate>
		<dc:creator>An Bui, DocuSign Social Media</dc:creator>
				<category><![CDATA[Conferences, Community]]></category>
		<category><![CDATA[Getting to Know DocuSign Users]]></category>
		<category><![CDATA[Real Estate]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[ECE]]></category>
		<category><![CDATA[Electronic Contract Execution]]></category>
		<category><![CDATA[electronic signature]]></category>
		<category><![CDATA[esignature]]></category>
		<category><![CDATA[online contract execution]]></category>
		<category><![CDATA[Team366]]></category>
		<category><![CDATA[Todd Waller]]></category>

		<guid isPermaLink="false">http://blog.docusign.net/?p=66</guid>
		<description><![CDATA[This series interviews real DocuSign users to share their stories about electronic signature and online contract execution. Get to know the people who use DocuSign and how 


Please share with us who you are, and what you mean by &#8220;real estate at the speed of life&#8221; and &#8220;black tie service&#8221;?  

I&#8217;m a simple man from South [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-430" title="image62" src="http://www.docusign.com/blog/wp-content/uploads/2009/03/image62.jpg" alt="DocuSign Users: Getting to Know Todd Waller of Team366" width="111" height="108" />This series interviews real <span style="font-size: x-small;">DocuSign users</span><span style="font-size: x-small;"> to share their stories about electronic signature and </span><span style="font-size: x-small;">online contract execution</span><span style="font-size: x-small;">. Get to know the people who use DocuSign and how </span><a style="padding-left: 1ex; margin: 0pt 0pt 0pt 0.8ex; border-left: #cccccc 1px solid;" href="http://www.docusign.com/" target="_blank&gt;eSignature and electronic contract execution&lt;/a&gt;has helped them with their business. &lt;/div&gt; &lt;blockquote class="></p>
<div class="gmail_quote">
<div>
<p>Please share with us who you are, and what you mean by &#8220;real estate at the speed of life&#8221; and &#8220;black tie service&#8221;?  </p></div>
</div>
<div><span style="color: #3366ff;">I&#8217;m a simple man from South East Michigan&#8230;I was born and raised in SE Michigan. Graduated from the University of Michigan.  Prior to real estate, I had a diverse job experience: automotive market research, governmental affairs division in a trade association, communications analyst and political campaign manager.</span>HA!  Real Estate Simplified with Black Tie Service was my first crack at a slogan in my young real estate career.  Simply put, my service to my clients is &#8220;black tie.&#8221;  In fact, I still show up to my closings in a tux!  Folks around Ann Arbor have taken to calling me <a title="Todd Waller on Twitter" href="http://www.twitter.com/toddwaller" target="_blank">Black Tie Todd</a>.</p>
<p>Real Estate @ the Speed of Life is the slogan for my real estate team, <a title="Team366 Blog" href="http://blog.team366.net/" target="_blank">Team366</a>.  My business partner and I assembled a team of agents with the intent of being accustomed and competent with the latest technology for real estate, but able to communicate effectively and at the pace of our clients.  If they want to run like the wind to buy or sell a home, we can do that!</p>
<div>
<blockquote class="gmail_quote" style="padding-left: 1ex; margin: 0pt 0pt 0pt 0.8ex; border-left: #cccccc 1px solid;">
<div class="gmail_quote">
<p>What other tools, technology or otherwise, do you consider essential to your business and why?</p></div>
</blockquote>
</div>
<div><span style="color: #3366ff;">I CAN NOT LIVE WITHOUT MY BLACKBERRY!  Hands down, it is a business machine.  When you predicate your business plan on responsiveness and efficiency, nothing beats a blackberry for instant email and communication.  Past that one piece of hardware, I would also need to mention two pieces of software or services:  Google Apps for my Domain and DocuSign (not trying to kiss up, but DS is THAT important to my business!)</span>Google apps simply because it is too easy to set up, fill and organize all the digital stuff of my business.  <a title="DocuSign Real Estate Page" href="http://www.docusign.com/real_estate/index.php" target="_blank">DocuSign</a>, because I can send my contracts anywhere for signatures and because it has saved me countless hours of cross town travel and from headaches trying to decipher a multi-faxed document.</p>
<p> </p>
<div>
<blockquote class="gmail_quote" style="padding-left: 1ex; margin: 0pt 0pt 0pt 0.8ex; border-left: #cccccc 1px solid;">
<div class="gmail_quote">
<p>How did you discover DocuSign and do you know others who use technology tools like DocuSign in your area?</p></div>
</blockquote>
</div>
<div><span style="color: #3366ff;">Oddly enough, I ran into <a href="http://www.docusign.com/" target="_blank">DocuSign</a> about the same time a real estate attorney approached me about it.  He suggested that me and my team look into it as he felt we were the only ones in the market place who could see its immediate value and need. </span> </p>
<div>
<blockquote class="gmail_quote" style="padding-left: 1ex; margin: 0pt 0pt 0pt 0.8ex; border-left: #cccccc 1px solid;">
<div class="gmail_quote">
<p>There are many people that use DocuSign in many different ways, like using the consistent, personalized branding, bulk sending or multiple signers functionality or using the API to integrate with existing programs like Salesforce. How do you get the most out of DocuSign and what has been your most extraordinary DocuSign moment?</p></div>
</blockquote>
</div>
<div><span style="color: #3366ff;">We&#8217;re not even that fancy with our implementation of DocuSign!  We use the web interface and the <a href="http://www.docusign.com/devcenter" target="_blank">API</a> between an online RE form generator and DocuSign.</span>The Ah Ha! moment for me was last summer.  I had shown my buyers a few homes that day and knew they were &#8220;thinking hard&#8221; about one of the homes.  They expressed to me that they would get back with me the next morning to let me know what their decision would be.  They called just a few hours later and stated that they wanted to put an offer in on that one home.  Long story short, I could not meet with them in person, but I could write the offer, get their signatures and initials via DocuSign and, in conjunction with my BlackBerry, email the offer into the listing agent.</p>
<p>Good thing we had <a href="http://www.docusign.com/solutions/" target="_blank">DocuSign</a> to overcome our scheduling difficulties;  we got the offer to the sellers, and had their signatures before two other offers could be produced.</p>
<p> </p>
<div>
<blockquote class="gmail_quote" style="padding-left: 1ex; margin: 0pt 0pt 0pt 0.8ex; border-left: #cccccc 1px solid;">
<div class="gmail_quote">
<p>Give us one fun fact about yourself you haven’t already shared and any other tidbits you would like to offer.</p></div>
</blockquote>
</div>
<div><span style="color: #3366ff;">I am a firm believer that all the cool technology that is coming out, <a title="DocuSign Product Page" href="http://www.docusign.com/products/" target="_blank">DocuSign</a> included, is simply making the job of the real estate agent</a> more efficient.  My job is to communicate effectively and efficiently with my clients, providing them the answers they deserve and crave.  Ultimately, I see the job of real estate agent include the ability to find and wrangle information on behalf of our clients</span>. </div>
</div>
</div>
</div>
</div>
<p></a></p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.docusign.com%2Fblog%2F2009%2F03%2F23%2Fdocusign-users-getting-to-know-todd-waller-of-team366%2F&amp;linkname=DocuSign%20Users%3A%20Getting%20to%20Know%20Todd%20Waller%20of%20Team366"><img src="http://www.docusign.com/blog/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.docusign.com/blog/2009/03/23/docusign-users-getting-to-know-todd-waller-of-team366/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>API&#8217;s, Cloud Computing and Developer Center – Expanding the Cloud</title>
		<link>http://www.docusign.com/blog/2009/03/16/apis-cloud-computing-and-developer-center-%e2%80%93-expanding-the-cloud/</link>
		<comments>http://www.docusign.com/blog/2009/03/16/apis-cloud-computing-and-developer-center-%e2%80%93-expanding-the-cloud/#comments</comments>
		<pubDate>Mon, 16 Mar 2009 18:04:44 +0000</pubDate>
		<dc:creator>An Bui, DocuSign Social Media</dc:creator>
				<category><![CDATA[DevCenter]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[Cloud Computing]]></category>
		<category><![CDATA[DocuSign]]></category>
		<category><![CDATA[integration]]></category>
		<category><![CDATA[software adoption]]></category>

		<guid isPermaLink="false">http://blog.docusign.net/?p=87</guid>
		<description><![CDATA[Cloud computing and scalable solutions will likely increase in importance as organizations try to allocate their resources according to their priorities. Several blogs cover cloud computing technologies, such as Programmable Web, a blog that focuses on API&#8217;s (Application Programming Interfaces) and mashups. Amazon&#8217;s Jeff Barr, the Lead Web Services Evangelist, often blogs, speaks, or otherwise [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-440" title="image10" src="http://www.docusign.com/blog/wp-content/uploads/2009/03/image10.jpg" alt="APIs, Cloud Computing and Developer Center – Expanding the Cloud " width="340" height="200" />Cloud computing and scalable solutions will likely increase in importance as organizations try to allocate their resources according to their priorities. Several blogs cover cloud computing technologies, such as <a href="http://www.programmableweb.com/">Programmable Web</a>, a blog that focuses on <a href="http://www.docusign.com/blog/tag/api/" class="st_tag internal_tag" rel="tag" title="Posts tagged with api">API</a>&#8217;s (Application Programming Interfaces) and mashups. Amazon&#8217;s <a href="http://www.jeff-barr.com/">Jeff Barr</a>, the Lead <a href="http://www.docusign.com/blog/tag/web-services/" class="st_tag internal_tag" rel="tag" title="Posts tagged with web services">Web Services</a> Evangelist, often blogs, speaks, or otherwise communicates about the cloud, as Amazon provides several solutions, such as Simple Storage <a href="http://www.docusign.com/blog/tag/service/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Service">Service</a> (S3), Elastic Compute Cloud (EC2) and others.</p>
<p><strong><a href="http://www.docusign.com/blog/tag/api/" class="st_tag internal_tag" rel="tag" title="Posts tagged with api">API</a>&#8217;s Importance</strong><br />
At <a href="http://www.docusign.com/blog/tag/docusign/" class="st_tag internal_tag" rel="tag" title="Posts tagged with DocuSign">DocuSign</a>, we recently released our <a href="http://www.docusign.com/devcenter/">developer center</a>, a resource for our <a href="http://www.docusign.com/devcenter/sign_up/register.php">developer community</a> to access our <a href="http://www.docusign.com/blog/tag/api/" class="st_tag internal_tag" rel="tag" title="Posts tagged with api">API</a>, use forums to communicate with other developers and share knowledge with <a href="http://www.docusign.com/blog/tag/docusign/" class="st_tag internal_tag" rel="tag" title="Posts tagged with DocuSign">DocuSign</a> experts. We realize that the true benefit of ECE is to integrate it into mission critical applications and processes. That takes developers and domain expertise beyond what any one company can do. By allowing others to leverage the power of the <a href="http://www.docusign.com/blog/tag/docusign/" class="st_tag internal_tag" rel="tag" title="Posts tagged with DocuSign">DocuSign</a> cloud in their applications these developers can unlock the ability to streamline processes around the globe.</p>
<p>The <a href="http://www.docusign.com/blog/tag/docusign/" class="st_tag internal_tag" rel="tag" title="Posts tagged with DocuSign">DocuSign</a> <a href="http://www.docusign.com/blog/tag/api/" class="st_tag internal_tag" rel="tag" title="Posts tagged with api">API</a> actually comes in two flavors &#8211; the <a href="http://www.docusign.com/blog/tag/docusign/" class="st_tag internal_tag" rel="tag" title="Posts tagged with DocuSign">DocuSign</a> Connect <a href="http://www.docusign.com/blog/tag/service/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Service">Service</a> which enables <a href="http://www.docusign.com/blog/tag/docusign/" class="st_tag internal_tag" rel="tag" title="Posts tagged with DocuSign">DocuSign</a> transactions to deliver real-time status and form data directly to 3rd party applications, and the <a href="http://www.docusign.com/blog/tag/docusign/" class="st_tag internal_tag" rel="tag" title="Posts tagged with DocuSign">DocuSign</a> Connect <a href="http://www.docusign.com/blog/tag/api/" class="st_tag internal_tag" rel="tag" title="Posts tagged with api">API</a> which allows external systems to ‘embed’ the <a href="http://www.docusign.com/blog/tag/docusign/" class="st_tag internal_tag" rel="tag" title="Posts tagged with DocuSign">DocuSign</a> signing or sending process directly into other applications. Both of these interfaces are purely ‘cloud based’ so there is nothing to install. Both are based on well understood standards such as SOAP and XML.</p>
<p>A good example of the <a href="http://www.docusign.com/blog/tag/docusign/" class="st_tag internal_tag" rel="tag" title="Posts tagged with DocuSign">DocuSign</a> Connect <a href="http://www.docusign.com/blog/tag/service/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Service">service</a> is the new <a href="http://www.docusign.com/products/connect/salesforce/index.php">DocuSign Connect for Salesforce</a> tool &#8211; this has enabled customers to deeply integrate transaction events and document/form data directly into their <a href="http://www.docusign.com/blog/tag/salesforce/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Salesforce">Salesforce</a> instances, automating what usually required manual work by the sales reps. This means reps spend more time selling, and the data is much more accurate so better decisions can be made.</p>
<p><strong>Expanding the Cloud </strong><br />
Of course, providing an <a href="http://www.docusign.com/blog/tag/api/" class="st_tag internal_tag" rel="tag" title="Posts tagged with api">API</a> and developer program is only the beginning. This program also must include registration, support, forums, example code segments, and a validation process to qualify applications that are production ready. Put another way, this is not just a web site – this project requires a commitment. Just ask Mike Borozdin, our lead dev center manager – he spends many, many, hours working with developers to be sure they have what they need.</p>
<p>We know a strong developer community is key to large scale success of our platform. We’ll continue to provide blogs, forums and other <a href="http://www.docusign.com/blog/tag/social-media/" class="st_tag internal_tag" rel="tag" title="Posts tagged with social media">social media</a> tools, so our developer community can connect with each other, share ideas, and expand the cloud.</p>
<p><a href="http://www.docusign.com/blog/tag/docusign/" class="st_tag internal_tag" rel="tag" title="Posts tagged with DocuSign">DocuSign</a>&#8217;s <a href="http://www.docusign.com/forums/">forums</a> provide information such as development features, SDK updates &amp; content, upcoming release instructions, <a href="http://www.docusign.com/blog/tag/api/" class="st_tag internal_tag" rel="tag" title="Posts tagged with api">API</a> feature requests, <a href="http://www.docusign.com/blog/tag/java/" class="st_tag internal_tag" rel="tag" title="Posts tagged with java">Java</a> and .NET integration and other relevant discussions.</p>
<p><strong><a href="http://www.docusign.com/blog/tag/api/" class="st_tag internal_tag" rel="tag" title="Posts tagged with api">API</a>&#8217;s Role in Adoption </strong><br />
<a href="http://www.docusign.com/blog/tag/api/" class="st_tag internal_tag" rel="tag" title="Posts tagged with api">API</a>&#8217;s help drive technology adoption. For example, <a href="http://www.twitter.com/docusign">Twitter</a>, one of the more popular microblogging applications, has an <a href="http://www.docusign.com/blog/tag/api/" class="st_tag internal_tag" rel="tag" title="Posts tagged with api">API</a> that&#8217;s given rise to third party applications that&#8217;s helped drive adoption of the <a href="http://www.docusign.com/blog/tag/service/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Service">service</a>. These tools mean <a href="http://www.docusign.com/blog/tag/twitter/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Twitter">Twitter</a> can focus on its core proposition and users who want additional features such as metrics can use the appropriate third party provider. <a href="http://www.docusign.com/blog/tag/twitter/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Twitter">Twitter</a>&#8217;s extensibility due to a popular <a href="http://www.docusign.com/blog/tag/api/" class="st_tag internal_tag" rel="tag" title="Posts tagged with api">API</a> may be a reason for its popularity.</p>
<p>By opening up <a href="http://www.docusign.com/blog/tag/docusign/" class="st_tag internal_tag" rel="tag" title="Posts tagged with DocuSign">DocuSign</a>&#8217;s electronic signature and <a href="http://www.docusign.com/blog/tag/online-contract-execution/" class="st_tag internal_tag" rel="tag" title="Posts tagged with online contract execution">online contract execution</a> technology to developers via our <a href="http://www.docusign.com/blog/tag/api/" class="st_tag internal_tag" rel="tag" title="Posts tagged with api">API</a> and developer center, we hope to ‘expand the cloud’ through the innovations that can only come from developers with all sorts of different perspectives.</p>
<p><em><span style="font-size: 11px; font-family: Verdana;">Image courtesy of flickr user <a href="http://www.flickr.com/photos/selenamarie/">selena marie</a> under <a href="http://creativecommons.org/licenses/by-nd/2.0/deed.en">creative commons</a></span></em></p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.docusign.com%2Fblog%2F2009%2F03%2F16%2Fapis-cloud-computing-and-developer-center-%25e2%2580%2593-expanding-the-cloud%2F&amp;linkname=API%26%238217%3Bs%2C%20Cloud%20Computing%20and%20Developer%20Center%20%E2%80%93%20Expanding%20the%20Cloud"><img src="http://www.docusign.com/blog/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.docusign.com/blog/2009/03/16/apis-cloud-computing-and-developer-center-%e2%80%93-expanding-the-cloud/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Want to Test Drive Online Contract Execution at No Cost?</title>
		<link>http://www.docusign.com/blog/2009/02/26/want-to-test-drive-online-contract-execution-at-no-cost/</link>
		<comments>http://www.docusign.com/blog/2009/02/26/want-to-test-drive-online-contract-execution-at-no-cost/#comments</comments>
		<pubDate>Thu, 26 Feb 2009 18:33:44 +0000</pubDate>
		<dc:creator>An Bui, DocuSign Social Media</dc:creator>
				<category><![CDATA[DevCenter]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[DocuSign]]></category>
		<category><![CDATA[DocuSign Connect]]></category>
		<category><![CDATA[Electronic Contract Execution]]></category>
		<category><![CDATA[electronic signatures]]></category>
		<category><![CDATA[integration]]></category>
		<category><![CDATA[sdk]]></category>

		<guid isPermaLink="false">http://blog.docusign.net/?p=100</guid>
		<description><![CDATA[Free Resources, SDK and Developer Forum Provide Fast Path to Automating Legacy Processes 
The DocuSign Developer Center provides software developers, enterprise architects, systems integrators and independent software vendors with free resources to learn about, create and test solutions powered by DocuSign technology. Complete with a SDK, open standards-based application programming interfaces (APIs) and Developer Forum, [...]]]></description>
			<content:encoded><![CDATA[<p><em><img class="alignleft size-full wp-image-446" title="image13" src="http://www.docusign.com/blog/wp-content/uploads/2009/02/image13.jpg" alt="Want to Test Drive Online Contract Execution at No Cost?" width="340" height="200" />Free Resources, <a href="http://www.docusign.com/blog/tag/sdk/" class="st_tag internal_tag" rel="tag" title="Posts tagged with sdk">SDK</a> and Developer Forum Provide Fast Path to Automating Legacy Processes </em></p>
<p>The <a href="http://www.docusign.com/blog/tag/docusign/" class="st_tag internal_tag" rel="tag" title="Posts tagged with DocuSign">DocuSign</a> Developer Center provides software developers, enterprise architects, systems integrators and independent software vendors with free resources to learn about, create and test solutions powered by <a href="http://www.docusign.com/blog/tag/docusign/" class="st_tag internal_tag" rel="tag" title="Posts tagged with DocuSign">DocuSign</a> <a href="http://www.docusign.com/blog/tag/technology/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Technology">technology</a>. Complete with a <a href="http://www.docusign.com/blog/tag/sdk/" class="st_tag internal_tag" rel="tag" title="Posts tagged with sdk">SDK</a>, open standards-based application programming interfaces (APIs) and Developer Forum, the <a href="http://www.docusign.com/blog/category/devcenter/">DocuSign Developer Center</a> is now available.</p>
<p>Despite the focus on business process <a href="http://www.docusign.com/blog/tag/automation/" class="st_tag internal_tag" rel="tag" title="Posts tagged with automation">automation</a>, organizations mail or express ship millions of documents for signature daily, relying on a slow, expensive and inherently insecure paper-based process. <a href="http://www.docusign.com/blog/tag/docusign/" class="st_tag internal_tag" rel="tag" title="Posts tagged with DocuSign">DocuSign</a>’s on-demand <a href="http://www.docusign.com/blog/tag/electronic-contract-execution/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Electronic Contract Execution">electronic contract execution</a> automates this business process and enables companies to eliminate the antiquated “print-ship-sign-copy-return-scan” cycle, dramatically reducing costs and accelerating business. The new Developer Center allows companies to inject <a href="http://www.docusign.com/blog/tag/docusign/" class="st_tag internal_tag" rel="tag" title="Posts tagged with DocuSign">DocuSign</a> <a href="http://www.docusign.com/blog/tag/technology/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Technology">technology</a> into their unique business processes including existing ERP, <a href="http://www.docusign.com/blog/tag/crm/" class="st_tag internal_tag" rel="tag" title="Posts tagged with CRM">CRM</a> and HR systems to eliminate an unnecessary paper processes, go green and reduce costs. Now developers can quickly offer their company and clients the power and productivity of <a href="http://www.docusign.com/blog/tag/electronic-contract-execution/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Electronic Contract Execution">electronic contract execution</a>.</p>
<p>John Musser, founder of ProgammableWeb, stated:</p>
<blockquote><p>Open APIs like the new <a href="http://www.docusign.com/blog/tag/docusign-connect/" class="st_tag internal_tag" rel="tag" title="Posts tagged with DocuSign Connect">DocuSign Connect</a> are becoming the essential glue that makes the best SaaS services a truly integral part of enterprise IT. Enterprise and third party developers can use this new breed of APIs in the cloud to tailor solutions to work with existing corporate systems from <a href="http://www.docusign.com/blog/tag/crm/" class="st_tag internal_tag" rel="tag" title="Posts tagged with CRM">CRM</a> to ERP. <a href="http://www.docusign.com/blog/tag/docusign/" class="st_tag internal_tag" rel="tag" title="Posts tagged with DocuSign">DocuSign</a>&#8217;s just-launched Developer Center has the key elements that we&#8217;ve seen make a difference in getting developer&#8217;s the resources they need to succeed.</p></blockquote>
<p><strong><span style="font-size: 14px; font-family: Verdana;"><span style="font-size: 13px;">The Dev Center At-a-Glance </span></span></strong></p>
<p>The <a href="http://www.docusign.com/blog/tag/docusign/" class="st_tag internal_tag" rel="tag" title="Posts tagged with DocuSign">DocuSign</a> Developer Center provides developers access to the most robust and flexible electronic signature and <a href="http://www.docusign.com/blog/tag/electronic-contract-execution/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Electronic Contract Execution">electronic contract execution</a> (<a href="http://www.docusign.com/blog/tag/ece/" class="st_tag internal_tag" rel="tag" title="Posts tagged with ECE">ECE</a>) APIs available today that can be used to reduce costs associated with contract execution processes, while driving untapped business opportunities. <a href="http://www.docusign.com/blog/tag/docusign/" class="st_tag internal_tag" rel="tag" title="Posts tagged with DocuSign">DocuSign</a> APIs adhere to the latest version of the WS-Security (<a href="http://www.docusign.com/blog/tag/web-services/" class="st_tag internal_tag" rel="tag" title="Posts tagged with web services">web services</a> security) protocol to ensure the integrity and confidentiality of <a href="http://www.docusign.com/blog/tag/docusign/" class="st_tag internal_tag" rel="tag" title="Posts tagged with DocuSign">DocuSign</a>-powered <a href="http://www.docusign.com/blog/tag/web-services/" class="st_tag internal_tag" rel="tag" title="Posts tagged with web services">web services</a> messaging. The cornerstone of the Developer Center is <a href="http://www.docusign.com/blog/tag/docusign-connect/" class="st_tag internal_tag" rel="tag" title="Posts tagged with DocuSign Connect">DocuSign Connect</a>, a suite of integration services designed to extend <a href="http://www.docusign.com/blog/tag/docusign/" class="st_tag internal_tag" rel="tag" title="Posts tagged with DocuSign">DocuSign</a> <a href="http://www.docusign.com/blog/tag/service/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Service">service</a> capabilities into existing systems or new applications.</p>
<p><a href="http://www.docusign.com/blog/tag/docusign-connect/" class="st_tag internal_tag" rel="tag" title="Posts tagged with DocuSign Connect">DocuSign Connect</a> includes:</p>
<ul>
<li><strong><span style="font-size: 12px; font-family: Verdana;"><a href="http://www.docusign.com/blog/tag/docusign-connect/" class="st_tag internal_tag" rel="tag" title="Posts tagged with DocuSign Connect">DocuSign Connect</a> <a href="http://www.docusign.com/blog/tag/api/" class="st_tag internal_tag" rel="tag" title="Posts tagged with api">API</a></span></strong><span style="font-size: 12px; font-family: Verdana;">—Enables the exchange of information between the <a href="http://www.docusign.com/blog/tag/docusign/" class="st_tag internal_tag" rel="tag" title="Posts tagged with DocuSign">DocuSign</a> platform and enterprise business applications, allowing developers to create custom <a href="http://www.docusign.com/blog/tag/docusign/" class="st_tag internal_tag" rel="tag" title="Posts tagged with DocuSign">DocuSign</a> enterprise Web applications. </span></li>
</ul>
<ul>
<li><strong><span style="font-size: 12px; font-family: Verdana;"><a href="http://www.docusign.com/blog/tag/docusign-connect/" class="st_tag internal_tag" rel="tag" title="Posts tagged with DocuSign Connect">DocuSign Connect</a> <a href="http://www.docusign.com/blog/tag/service/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Service">Service</a></span></strong><span style="font-size: 12px; font-family: Verdana;">—Is a standards-based web <a href="http://www.docusign.com/blog/tag/service/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Service">service</a> that pushes <a href="http://www.docusign.com/blog/tag/docusign/" class="st_tag internal_tag" rel="tag" title="Posts tagged with DocuSign">DocuSign</a> contract transaction data into disparate applications over HTTPS protocol. </span></li>
</ul>
<p>As a <a href="http://www.docusign.com/blog/tag/docusign/" class="st_tag internal_tag" rel="tag" title="Posts tagged with DocuSign">DocuSign</a> Developer Community member, you receive access to all of the tools, tips and resources needed to develop and deliver a <a href="http://www.docusign.com/blog/tag/docusign/" class="st_tag internal_tag" rel="tag" title="Posts tagged with DocuSign">DocuSign</a>-powered solution. For more information visit the <a href="http://www.docusign.com/devcenter">DocuSign Developer Center</a>. To start using <a href="http://www.docusign.com/blog/tag/docusign-connect/" class="st_tag internal_tag" rel="tag" title="Posts tagged with DocuSign Connect">DocuSign Connect</a>, sign up for a <a href="http://www.docusign.com/devcenter/sign_up/register.php">free developer account</a>.</p>
<p>In today&#8217;s economic climate, corporations are clearly focused on three critical and essential activities: cutting costs, securing revenue and retaining customers. Our customers tell us daily they have slashed operating costs, raised revenues and improved customer retention by closing deals electronically which may not have happened otherwise. We&#8217;re excited to provide you with the tools you need to drive the critical benefits of online contract execution into your organizations.<br />
<em><br />
<span style="font-size: 11px; font-family: Verdana;">Image courtesy of flickr user <a href="http://flickr.com/photos/preciouskhyatt/">preciouskhyatt</a> under <a href="http://creativecommons.org/licenses/by/2.0/deed.en">Creative Commons</a></span></em></p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.docusign.com%2Fblog%2F2009%2F02%2F26%2Fwant-to-test-drive-online-contract-execution-at-no-cost%2F&amp;linkname=Want%20to%20Test%20Drive%20Online%20Contract%20Execution%20at%20No%20Cost%3F"><img src="http://www.docusign.com/blog/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.docusign.com/blog/2009/02/26/want-to-test-drive-online-contract-execution-at-no-cost/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Like Using Cool Technology? Check Out the DocuSign Developer Center</title>
		<link>http://www.docusign.com/blog/2009/02/20/like-using-cool-technology-check-out-the-docusign-developer-center/</link>
		<comments>http://www.docusign.com/blog/2009/02/20/like-using-cool-technology-check-out-the-docusign-developer-center/#comments</comments>
		<pubDate>Fri, 20 Feb 2009 18:45:43 +0000</pubDate>
		<dc:creator>An Bui, DocuSign Social Media</dc:creator>
				<category><![CDATA[DevCenter]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[DocuSign Connect]]></category>
		<category><![CDATA[ECE]]></category>
		<category><![CDATA[Innovation]]></category>
		<category><![CDATA[Salesforce]]></category>
		<category><![CDATA[Service]]></category>
		<category><![CDATA[social media]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://blog.docusign.net/?p=108</guid>
		<description><![CDATA[While it&#8217;s only been about six weeks into this year, we&#8217;ve accomplished some pretty amazing things here at DocuSign on the marketing front. We launched our new Web site, started participating more in social media and just launched our Developer Center.
If you are a developer or an ISV who is looking for a platform for [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-450" title="image15" src="http://www.docusign.com/blog/wp-content/uploads/2009/02/image15.jpg" alt="Like Using Cool Technology? Check Out the DocuSign Developer Center" width="340" height="200" />While it&#8217;s only been about six weeks into this year, we&#8217;ve accomplished some pretty amazing things here at <a href="http://www.docusign.com/blog/tag/docusign/" class="st_tag internal_tag" rel="tag" title="Posts tagged with DocuSign">DocuSign</a> on the marketing front. We launched our new Web site, started participating more in <a href="http://www.docusign.com/blog/tag/social-media/" class="st_tag internal_tag" rel="tag" title="Posts tagged with social media">social media</a> and just launched our <a href="http://docusign.com/devcenter/">Developer Center</a>.</p>
<p>If you are a developer or an <a href="http://www.docusign.com/blog/tag/isv/" class="st_tag internal_tag" rel="tag" title="Posts tagged with isv">ISV</a> who is looking for a platform for business critical applications, you will like the <a href="http://www.docusign.com/blog/tag/docusign/" class="st_tag internal_tag" rel="tag" title="Posts tagged with DocuSign">DocuSign</a> Developer Program. <a href="http://www.docusign.com/blog/tag/docusign/" class="st_tag internal_tag" rel="tag" title="Posts tagged with DocuSign">DocuSign</a> has developed an extensive <a href="http://www.docusign.com/blog/tag/api/" class="st_tag internal_tag" rel="tag" title="Posts tagged with api">API</a> that allows some very powerful extensions to be built that extend the <a href="http://www.docusign.com/blog/tag/docusign/" class="st_tag internal_tag" rel="tag" title="Posts tagged with DocuSign">DocuSign</a> Electronic Contract Execution (ECE) <a href="http://www.docusign.com/blog/tag/service/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Service">service</a> into a great number of business critical applications.</p>
<p>For example, the <a href="http://www.docusign.com/blog/tag/docusign-connect/" class="st_tag internal_tag" rel="tag" title="Posts tagged with DocuSign Connect">DocuSign Connect</a> <a href="http://www.docusign.com/blog/tag/service/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Service">service</a> allows real-time delivery of status and form data to any application in real time. We’ve built a <a href="http://www.docusign.com/blog/tag/salesforce/">Connector for Salesforce</a> on this <a href="http://www.docusign.com/blog/tag/technology/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Technology">technology</a> that allows deep integration of data status into <a href="http://www.docusign.com/blog/tag/salesforce/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Salesforce">Salesforce</a>. There are more opportunities out there for Connect that many businesses would find very valuable.</p>
<p>Off the top of my head, I’d expect to see developers create tools for Sharepoint, RSS, SAP, or even <a href="http://www.docusign.com/blog/tag/docusign-connect/" class="st_tag internal_tag" rel="tag" title="Posts tagged with DocuSign Connect">DocuSign connect</a> that automated credit card transactions… Any business process that could automate downstream delivery of data and/or status is a target! Through our <a href="http://www.docusign.com/blog/tag/api/" class="st_tag internal_tag" rel="tag" title="Posts tagged with api">API</a>, the entire sending or signing process can be literally EMBEDDED inside other applications. If you are an expert in a business critical application that works with documents, forms or workflow, you can turbocharge it with <a href="http://www.docusign.com/blog/tag/docusign/" class="st_tag internal_tag" rel="tag" title="Posts tagged with DocuSign">DocuSign</a>.</p>
<p><strong>Why would you do that if you can do the above with a digital process? </strong><br />
We created the <a href="http://www.docusign.com/blog/tag/docusign/" class="st_tag internal_tag" rel="tag" title="Posts tagged with DocuSign">DocuSign</a> Developer Center to provide developers access to <a href="http://www.docusign.com/blog/tag/docusign/" class="st_tag internal_tag" rel="tag" title="Posts tagged with DocuSign">DocuSign</a> <a href="http://www.docusign.com/blog/tag/electronic-signature/" class="st_tag internal_tag" rel="tag" title="Posts tagged with electronic signature">electronic signature</a> and electronic contract execution (ECE) resources to foster solutions that streamline business processes like the ones above. <a href="http://www.docusign.com/blog/tag/docusign-connect/" class="st_tag internal_tag" rel="tag" title="Posts tagged with DocuSign Connect">DocuSign Connect</a>, the cornerstone of this dev center, is a suite of integration services designed to extend <a href="http://www.docusign.com/blog/tag/docusign/" class="st_tag internal_tag" rel="tag" title="Posts tagged with DocuSign">DocuSign</a> <a href="http://www.docusign.com/blog/tag/service/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Service">Service</a> capabilities into existing systems or new applications. <a href="http://www.docusign.com/blog/tag/docusign-connect/" class="st_tag internal_tag" rel="tag" title="Posts tagged with DocuSign Connect">DocuSign Connect</a> comprises of <a href="http://www.docusign.com/blog/tag/docusign-connect/" class="st_tag internal_tag" rel="tag" title="Posts tagged with DocuSign Connect">DocuSign Connect</a> <a href="http://www.docusign.com/blog/tag/api/" class="st_tag internal_tag" rel="tag" title="Posts tagged with api">API</a> and <a href="http://www.docusign.com/blog/tag/docusign-connect/" class="st_tag internal_tag" rel="tag" title="Posts tagged with DocuSign Connect">DocuSign Connect</a> <a href="http://www.docusign.com/blog/tag/service/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Service">Service</a>.</p>
<p>By joining the <a href="http://www.docusign.com/blog/tag/docusign/" class="st_tag internal_tag" rel="tag" title="Posts tagged with DocuSign">DocuSign</a> Developer Community, you&#8217;ll get access to all the tools, tips and resources you&#8217;ll need to develop and deliver your own integrated <a href="http://www.docusign.com/blog/tag/electronic-signature/" class="st_tag internal_tag" rel="tag" title="Posts tagged with electronic signature">electronic signature</a> solutions. With your <a href="http://docusign.com/devcenter/sign_up/register.php">free DocuSign developer account</a>, you can develop your own <a href="http://www.docusign.com/blog/tag/docusign/" class="st_tag internal_tag" rel="tag" title="Posts tagged with DocuSign">DocuSign</a> solution and help your organization realize the cost savings, transaction control, and green benefits of <a href="http://www.docusign.com/blog/tag/electronic-signature/" class="st_tag internal_tag" rel="tag" title="Posts tagged with electronic signature">electronic signature</a> and online contract execution processes.</p>
<p><strong>You can:</strong></p>
<ul>
<li>Download the <a href="http://www.docusign.com/blog/tag/docusign-connect/" class="st_tag internal_tag" rel="tag" title="Posts tagged with DocuSign Connect">DocuSign Connect</a> <a href="http://www.docusign.com/blog/tag/api/" class="st_tag internal_tag" rel="tag" title="Posts tagged with api">API</a> 3.0 Developer Guide</li>
<li>See live samples</li>
<li>Download the <a href="http://www.docusign.com/blog/tag/docusign-connect/" class="st_tag internal_tag" rel="tag" title="Posts tagged with DocuSign Connect">DocuSign Connect</a> <a href="http://www.docusign.com/blog/tag/api/" class="st_tag internal_tag" rel="tag" title="Posts tagged with api">API</a> 3.0 <a href="http://www.docusign.com/blog/tag/sdk/" class="st_tag internal_tag" rel="tag" title="Posts tagged with sdk">SDK</a></li>
</ul>
<p>This is just the beginning &#8211; we have more innovations to come in the near future. I&#8217;ll keep you posted on developments and you can also check out our <a href="http://www.docusign.com/forums/">forums</a> and follow us on <a href="http://www.docusign.com/blog/tag/twitter/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Twitter">Twitter</a> (<a href="http://www.twitter.com/DocuSign">@DocuSign</a>).</p>
<p style="font-size: 11px; font-family: Verdana;"><em>Image courtesy of flickr user <a href="http://www.flickr.com/photos/ficken/">bfick</a> under <a href="http://creativecommons.org/licenses/by/2.0/deed.en">Creative Commons</a>. </em></p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.docusign.com%2Fblog%2F2009%2F02%2F20%2Flike-using-cool-technology-check-out-the-docusign-developer-center%2F&amp;linkname=Like%20Using%20Cool%20Technology%3F%20Check%20Out%20the%20DocuSign%20Developer%20Center"><img src="http://www.docusign.com/blog/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.docusign.com/blog/2009/02/20/like-using-cool-technology-check-out-the-docusign-developer-center/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DocuSign Ushers in a new Market: Electronic Contract Execution (ECE)</title>
		<link>http://www.docusign.com/blog/2008/11/03/docusign-ushers-in-a-new-market-electronic-contract-execution-ece/</link>
		<comments>http://www.docusign.com/blog/2008/11/03/docusign-ushers-in-a-new-market-electronic-contract-execution-ece/#comments</comments>
		<pubDate>Mon, 03 Nov 2008 23:31:19 +0000</pubDate>
		<dc:creator>Tom Gonser</dc:creator>
				<category><![CDATA[Product Announcements]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[Cloud Computing]]></category>
		<category><![CDATA[CRM]]></category>
		<category><![CDATA[DocuSign Connect]]></category>
		<category><![CDATA[ECE]]></category>
		<category><![CDATA[Electronic Contract Execution]]></category>
		<category><![CDATA[esign]]></category>
		<category><![CDATA[Evidence]]></category>
		<category><![CDATA[Online Contract Execution Technology]]></category>

		<guid isPermaLink="false">http://blog.docusign.net/?p=232</guid>
		<description><![CDATA[This week, DocuSign announced DocuSign Connect which is a suite of application integration services that allow SMBs, enterprises, and vendors to integrate DocuSign’s electronic signature and online contract execution platform into any 3rd party or in-house business application; including CRM, ERP, ERM, BPM, and CLP systems.
This week’s announcement is an excellent example of how we [...]]]></description>
			<content:encoded><![CDATA[<p>This week, DocuSign announced <a href="http://www.docusign.com/blog/tag/docusign-connect/" class="st_tag internal_tag" rel="tag" title="Posts tagged with DocuSign Connect">DocuSign Connect</a> which is a suite of application <a href="http://www.docusign.com/blog/tag/integration/" class="st_tag internal_tag" rel="tag" title="Posts tagged with integration">integration</a> services that allow SMBs, enterprises, and vendors to integrate DocuSign’s <a href="http://www.docusign.com/blog/tag/electronic-signature/" class="st_tag internal_tag" rel="tag" title="Posts tagged with electronic signature">electronic signature</a> and online contract execution platform into any 3rd party or in-house business application; including <a href="http://www.docusign.com/blog/tag/crm/" class="st_tag internal_tag" rel="tag" title="Posts tagged with CRM">CRM</a>, ERP, ERM, BPM, and CLP systems.</p>
<p>This week’s announcement is an excellent example of how we are expanding DocuSign’s award-winning platform to include a broader set of core capabilities.</p>
<p>Together the <a href="http://www.docusign.com/blog/tag/docusign-connect/" class="st_tag internal_tag" rel="tag" title="Posts tagged with DocuSign Connect">DocuSign Connect</a> <a href="http://www.docusign.com/blog/tag/service/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Service">Service</a> &amp; API enable complete contract workflow within DocuSign while dynamically extending DocuSign into a company’s other critical business applications. The system also delivers a myriad of other features, including real-time contract status, contract data changes/updates, etc.</p>
<p>Perhaps most important, <a href="http://www.docusign.com/blog/tag/docusign-connect/" class="st_tag internal_tag" rel="tag" title="Posts tagged with DocuSign Connect">DocuSign Connect</a> illustrates exactly why DocuSign stands apart from the rest of the market. The system establishes DocuSign as much, much more than a pure play ‘<a href="http://www.docusign.com/blog/tag/esign/" class="st_tag internal_tag" rel="tag" title="Posts tagged with esign">esign</a> vendor’. We&#8217;ve moved WAY beyond the simple &#8216;just get a signature&#8217; to facilitating the entire contract execution process. And great evidence of this is in our customer feedback.   </p>
<p>With DocuSign’s <a href="http://www.docusign.com/blog/tag/technology/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Technology">technology</a> advancements over the past year we are now enabling the entire <a href="http://www.docusign.com/blog/tag/electronic-contract-execution/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Electronic Contract Execution">electronic contract execution</a> (<a href="http://www.docusign.com/blog/tag/ece/" class="st_tag internal_tag" rel="tag" title="Posts tagged with ECE">ECE</a>) phase, helping companies move abandon traditional and disjointed manual and paper contract execution process to fully digital processes.</p>
<p>Yes, the ability to obtain a signature electronically unlocked this new capability, but it is really only one part. <a href="http://www.docusign.com/blog/tag/ece/" class="st_tag internal_tag" rel="tag" title="Posts tagged with ECE">ECE</a> is similar to, but really extends to several other large markets such as BPM, CLM, and <a href="http://www.docusign.com/blog/tag/crm/" class="st_tag internal_tag" rel="tag" title="Posts tagged with CRM">CRM</a>. Consider a few of the core elements of a true <a href="http://www.docusign.com/blog/tag/ece/" class="st_tag internal_tag" rel="tag" title="Posts tagged with ECE">ECE</a> system &#8211; and the enormous impact this can have on any business:</p>
<ol>
<li>Conversion of existing documents and forms into secure managed objects that can be automatically assigned workflow processes and can be sent from desktops, ecommerce applications, or integrated into other critical systems that send contracts for signature to ensure transactions are executed from start to finish in a managed fashion.</li>
<li>Creation of complete &#8217;signing workflow&#8217; templates which dictate all aspects of how the transaction is to complete.</li>
<li>Enabling secure, managed transport of contracts, forms, and data through a sequenced workflow to recipients that may be internal and external &#8211; at the speed of light, worldwide.</li>
<li>Providing a full managed data collection process, including masking using regular expressions, assignment of data collection to specific actors in a transaction, and the return of this data back programmatically to downstream applications without rekeying.</li>
<li>Enabling recipients to receive transaction documents and forms, with the ability to display, automatically navigate from key field or signature to the next and sign using a process that is both easy and familiar to the paper process, and withstands legal requirements of the most stringent laws.</li>
<li>Deep <a href="http://www.docusign.com/blog/tag/integration/" class="st_tag internal_tag" rel="tag" title="Posts tagged with integration">integration</a> on both the document creation and sending sides, as well as the recipient delivery and completion side of the equation.</li>
<li>Aggregates authentication capability enabling full FFIEC compliant multi-layer authentication which is tightly integrated into the data and audit log (which is also secured to ensure legal admissibility should there ever be a challenge).</li>
<li>A &#8216;Cloud computing&#8217; solution rather than <a href="http://www.docusign.com/blog/tag/technology/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Technology">technology</a> installed behind a firewall.</li>
</ol>
<p>With these (and more) capabilities, DocuSign delivers the full &#8216;contract execution process&#8217; (<a href="http://www.docusign.com/blog/tag/ece/" class="st_tag internal_tag" rel="tag" title="Posts tagged with ECE">ECE</a>), and saves customers literally thousands of dollars per month by handling what is done usually in a set of manual steps involving postage, scanning/imaging, rekeying data, and lots and lots of labor.</p>
<p>As the economy tightens and every business is forced to be more efficient <a href="http://www.docusign.com/blog/tag/ece/" class="st_tag internal_tag" rel="tag" title="Posts tagged with ECE">ECE</a> will stand out as the way for leading organization to be more competitive, more secure, and much, much more efficient.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.docusign.com%2Fblog%2F2008%2F11%2F03%2Fdocusign-ushers-in-a-new-market-electronic-contract-execution-ece%2F&amp;linkname=DocuSign%20Ushers%20in%20a%20new%20Market%3A%20Electronic%20Contract%20Execution%20%28ECE%29"><img src="http://www.docusign.com/blog/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.docusign.com/blog/2008/11/03/docusign-ushers-in-a-new-market-electronic-contract-execution-ece/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
