<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet type="text/xsl" href="RSS_xslt_style.asp" version="1.0" ?>
<rss version="2.0" xmlns:WebWizForums="http://syndication.webwiz.co.uk/rss_namespace/">
 <channel>
  <title>Debenu Quick PDF Library - PDF SDK Community Forum : Sign PDF with Certificates</title>
  <link>http://www.quickpdf.org/forum/</link>
  <description><![CDATA[This is an XML content feed of; Debenu Quick PDF Library - PDF SDK Community Forum : General Discussion : Sign PDF with Certificates]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Wed, 29 Apr 2026 20:05:23 +0000</pubDate>
  <lastBuildDate>Tue, 20 Apr 2010 10:00:51 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 11.01</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>www.quickpdf.org/forum/RSS_post_feed.asp?TID=437</WebWizForums:feedURL>
  <image>
   <title><![CDATA[Debenu Quick PDF Library - PDF SDK Community Forum]]></title>
   <url>http://www.quickpdf.org/forum/forum_images/QPDF_Forum_Title.png</url>
   <link>http://www.quickpdf.org/forum/</link>
  </image>
  <item>
   <title><![CDATA[Sign PDF with Certificates : Here is another free tool called...]]></title>
   <link>http://www.quickpdf.org/forum/sign-pdf-with-certificates_topic437_post6404.html#6404</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=1302">dlakhin</a><br /><strong>Subject:</strong> 437<br /><strong>Posted:</strong> 20 Apr 10 at 10:00AM<br /><br />Here is another free tool called DigiSigner to sign pdf with certificates&nbsp;at <a href="http://digisigner.com" target="_blank">http://digisigner.com</A>. You can start it from your browser. It supports X.509 certificates, PFX key stores and produces Adobe Reader compliant digital signatures. There are also desktop versions on the site for Windows and Mac.<DIV></DIV>]]>
   </description>
   <pubDate>Tue, 20 Apr 2010 10:00:51 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/sign-pdf-with-certificates_topic437_post6404.html#6404</guid>
  </item> 
  <item>
   <title><![CDATA[Sign PDF with Certificates : Here is the module i&amp;#039;ve used...]]></title>
   <link>http://www.quickpdf.org/forum/sign-pdf-with-certificates_topic437_post4379.html#4379</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=129">DELBEKE</a><br /><strong>Subject:</strong> 437<br /><strong>Posted:</strong> 17 Jul 08 at 4:17AM<br /><br />Here is the module i've used <DIV>&nbsp;</DIV><DIV>Option Explicit</DIV><DIV>Public Function SignPdf(FileName As String, Certificat As String, CertificatKey As String) As Boolean<BR>&nbsp; 'Input :<BR>&nbsp; ' FileName = the name of the PDF to sign<BR>&nbsp; ' Certificat = the name of the Certificat file (Extension pfx)<BR>&nbsp; ' CertificatKey = the password for the certificat<BR>&nbsp; 'Output :<BR>&nbsp; ' True if the pdf as been signed correctly, otherwise false<BR>&nbsp; '<BR>&nbsp; 'remark :<BR>&nbsp; ' A temp file is generated during the process : signed.pdf<BR>&nbsp; Dim strTemp As String<BR>&nbsp; Dim RepFile As String<BR>&nbsp; RepFile = FileNamePath(FileName)<BR>&nbsp; 'gen the command line<BR>&nbsp; strTemp = "java -jar " &amp; Chr(34) &amp; App.Path &amp; "\TBSSignaturePDFInvisble.jar" &amp; Chr(34) &amp; " "<BR>&nbsp; strTemp = strTemp &amp; "-in " &amp; Chr(34) &amp; FileName &amp; Chr(34) &amp; " "<BR>&nbsp; strTemp = strTemp &amp; "-pkcs12 " &amp; Chr(34) &amp; Certificat &amp; Chr(34) &amp; " "<BR>&nbsp; strTemp = strTemp &amp; "-passwd " &amp; CertificatKey &amp; " "<BR>&nbsp; 'kill the old temp file if any<BR>&nbsp; On Error Resume Next<BR>&nbsp; Kill RepFile &amp; "signed.pdf"<BR>&nbsp; On Error GoTo 0<BR>&nbsp; 'synchronized shell , use your own function to replace the following SyncShell function<BR>&nbsp; SyncShell strTemp, , , True<BR>&nbsp; 'control if we got the signed.pdf<BR>&nbsp; If Dir(RepFile &amp; "signed.pdf") &lt;&gt; "" Then<BR>&nbsp;&nbsp;&nbsp; ' signing is ok<BR>&nbsp;&nbsp;&nbsp; SignPdf = True<BR>&nbsp;&nbsp;&nbsp; 'copy the temp file , overwriting the original pdf<BR>&nbsp;&nbsp;&nbsp; Kill FileName<BR>&nbsp;&nbsp;&nbsp; Name RepFile &amp; "signed.pdf" As FileName<BR>&nbsp; Else<BR>&nbsp;&nbsp;&nbsp; ' signing has failed<BR>&nbsp;&nbsp;&nbsp; SignPdf = False<BR>&nbsp; End If<BR>End Function</DIV><DIV>Private Function FileNamePath(FileName As String) As String<BR>&nbsp; 'return the path of a file<BR>&nbsp; Dim iPosit As Integer<BR>&nbsp; iPosit = InStrRev(FileName, "\")<BR>&nbsp; If iPosit Then<BR>&nbsp;&nbsp;&nbsp; FileNamePath = Left(FileName, iPosit)<BR>&nbsp; Else<BR>&nbsp;&nbsp;&nbsp; FileNamePath = ""<BR>&nbsp; End If<BR>End Function</DIV><DIV>&nbsp;</DIV><DIV>it should be easy to translate in others languages</DIV><span style="font-size:10px"><br /><br />Edited by DELBEKE - 17 Jul 08 at 4:20AM</span>]]>
   </description>
   <pubDate>Thu, 17 Jul 2008 04:17:58 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/sign-pdf-with-certificates_topic437_post4379.html#4379</guid>
  </item> 
  <item>
   <title><![CDATA[Sign PDF with Certificates : excellent !I was looking for this...]]></title>
   <link>http://www.quickpdf.org/forum/sign-pdf-with-certificates_topic437_post4377.html#4377</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=404">lcarrere</a><br /><strong>Subject:</strong> 437<br /><strong>Posted:</strong> 16 Jul 08 at 2:39AM<br /><br />excellent !<br><br>I was looking for this kind of tool.<br><br>If anybody needs a simple traduction tell me it. I'm french.<br><br>Best regards,<br><br>Loïc]]>
   </description>
   <pubDate>Wed, 16 Jul 2008 02:39:58 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/sign-pdf-with-certificates_topic437_post4377.html#4377</guid>
  </item> 
  <item>
   <title><![CDATA[Sign PDF with Certificates : Hello I&amp;#039;ve found a free...]]></title>
   <link>http://www.quickpdf.org/forum/sign-pdf-with-certificates_topic437_post4375.html#4375</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=129">DELBEKE</a><br /><strong>Subject:</strong> 437<br /><strong>Posted:</strong> 15 Jul 08 at 10:47AM<br /><br /><P>Hello</P><P>I've found a free tool for signing pdf, it is Itext based and is a jar file</P><P><a href="http://www.tbs-certificats.com/fom-serve/cache/316.html" target="_blank">http://www.tbs-certificats.com/fom-serve/cache/316.html</A></P><DIV>The problem, it's in french</DIV><DIV>I've used it from Vb6 and it&nbsp; work fine</DIV>]]>
   </description>
   <pubDate>Tue, 15 Jul 2008 10:47:46 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/sign-pdf-with-certificates_topic437_post4375.html#4375</guid>
  </item> 
  <item>
   <title><![CDATA[Sign PDF with Certificates : You can try the winnovative html...]]></title>
   <link>http://www.quickpdf.org/forum/sign-pdf-with-certificates_topic437_post4316.html#4316</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=864">ossweb</a><br /><strong>Subject:</strong> 437<br /><strong>Posted:</strong> 15 Jun 08 at 5:23AM<br /><br /><P>You can try the winnovative <a href="http://www.winnovative-software.com/pdf-creator.aspx" target="_blank">html to pdf</A> converter from <a href="http://www.winnovative-software.com" target="_blank">http://www.winnovative-software.com</A>. You can perform HTML to PDF conversion with 2 lines of code:</P><P>PdfConverter pdfConverter = new PdfConverter();<BR>byte&#091;&#093; downloadBytes = pdfConverter.GetPdfFromUrlBytes(MyURL);&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <BR></P>]]>
   </description>
   <pubDate>Sun, 15 Jun 2008 05:23:16 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/sign-pdf-with-certificates_topic437_post4316.html#4316</guid>
  </item> 
  <item>
   <title><![CDATA[Sign PDF with Certificates : I haven&amp;#039;t tried any of the...]]></title>
   <link>http://www.quickpdf.org/forum/sign-pdf-with-certificates_topic437_post1989.html#1989</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=115">chicks</a><br /><strong>Subject:</strong> 437<br /><strong>Posted:</strong> 20 Jun 06 at 3:35PM<br /><br />I haven't tried any of the 995 products, so can't help you there.<br /><br />Here's an example of a self-signed PDF using the iText java example, in visible mode:<br /><br />http://www.geocities.com/sea_sbs/files/signed.pdf<br /><br />]]>
   </description>
   <pubDate>Tue, 20 Jun 2006 15:35:10 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/sign-pdf-with-certificates_topic437_post1989.html#1989</guid>
  </item> 
  <item>
   <title><![CDATA[Sign PDF with Certificates : As a matter of fact, they have...]]></title>
   <link>http://www.quickpdf.org/forum/sign-pdf-with-certificates_topic437_post1988.html#1988</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=153">jabaltie</a><br /><strong>Subject:</strong> 437<br /><strong>Posted:</strong> 20 Jun 06 at 1:04PM<br /><br />As a matter of fact, they have an independent tool to sign PDF documents. It's called Signature995. And, it is free, although it imposes some delay (advertisements).<br /><br />On my local machine, I've been able to sign a document. I dont have a digital certificate but, at least signing I can.<br /><br />However, at the server, where I have a certificate, I cant sign.<br /><br />Don't know what's wrong...<br /><br />- Server is W2K whereas I'm XP<br />- Signature995 runs OK at server side but, when I open the file under Adobe Professional, it complains that it is not a valid PDF file<br /><br />Are you being able to sign with it ?<br /><br />If so, do you enter into Signature995 a pdf file with no signature fields or with a blank one ?<br /><br />After signing, can you open and SEE the signature on Adobe ?<br /><br />Thanks again !]]>
   </description>
   <pubDate>Tue, 20 Jun 2006 13:04:41 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/sign-pdf-with-certificates_topic437_post1988.html#1988</guid>
  </item> 
  <item>
   <title><![CDATA[Sign PDF with Certificates : I looked at a couple of things...]]></title>
   <link>http://www.quickpdf.org/forum/sign-pdf-with-certificates_topic437_post1987.html#1987</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=115">chicks</a><br /><strong>Subject:</strong> 437<br /><strong>Posted:</strong> 20 Jun 06 at 11:12AM<br /><br />I looked at a couple of things -<br /><br />1. You can create signature fields with iSEDQuickPDF.  Use fieldtype=6 with NewFormField().  There doesn't seem to be any way to sign with iSEDQuickPDF, but the signature field can be signed with NitroPDF or Acrobat (not Reader, though).<br /><br />2. I was able to sign a PDF with iText, using both a regular and a self-sign cert.  Very easy to do, if you know any java.<br /><br />3. These folks have a very low cost signature tool:<br /><br />&nbsp;&nbsp;&nbsp;http://www.pdf995.com/<br /><br />&nbsp;&nbsp;&nbsp;I don't know anything about it, other than it's very low cost.<br />]]>
   </description>
   <pubDate>Tue, 20 Jun 2006 11:12:29 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/sign-pdf-with-certificates_topic437_post1987.html#1987</guid>
  </item> 
  <item>
   <title><![CDATA[Sign PDF with Certificates :   Michel_K17 wrote:Hi,  Good...]]></title>
   <link>http://www.quickpdf.org/forum/sign-pdf-with-certificates_topic437_post1986.html#1986</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=153">jabaltie</a><br /><strong>Subject:</strong> 437<br /><strong>Posted:</strong> 20 Jun 06 at 6:41AM<br /><br /><table width="99%"><tr><td class="BBquote"><img src="forum_images/quote_box.png" title="Originally posted by Michel_K17" alt="Originally posted by Michel_K17" style="vertical-align: text-bottom;" /> <strong>Michel_K17 wrote:</strong><br /><br />Hi,<br /><br />&nbsp;&nbsp;&nbsp;Good luck to the Brazilian team at FIFA! Personally, I'm enjoying that the Edmonton Oilers are in the Stanley Cup finals (hockey).<br /></td></tr></table><br /><br />OK. I'm not that fanatic about football too. But here in Brazil this is taken so seriously that you would not believe it. Anyway, back to our point...<br /><br /><table width="99%"><tr><td class="BBquote"><img src="forum_images/quote_box.png" title="Originally posted by Michel_K17" alt="Originally posted by Michel_K17" style="vertical-align: text-bottom;" /> <strong>Michel_K17 wrote:</strong><br /><br /><br /><br />&nbsp;&nbsp;&nbsp;I have not used the "form" functions of DynaPDF. I agree with you that nothing beats QuickPDF for price. <img border="0" src="http://www.quickpdf.org/forum/smileys/smiley1.gif" border="0"><br /><br />&nbsp;&nbsp;&nbsp;I can ask for a University discount, but I believe that Dynaforms do not offer such a discount.<br /><br />&nbsp;&nbsp;&nbsp;Cheers!<br /><br />Michel</td></tr></table><br /><br />Hold on about this discount. I'm still around in order to  find a library that is *complete* about PDF.<br /><br />My plan is :<br /><br />1) Find a way to sign my PDFs right now, even if it is something cumbersome.<br /><br />2) Do a presentation of the project.<br /><br />3) Ask money for products (tools).<br /><br />So, maybe in the future !<br /><br />Thanks again 4 your Dinamic support !]]>
   </description>
   <pubDate>Tue, 20 Jun 2006 06:41:08 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/sign-pdf-with-certificates_topic437_post1986.html#1986</guid>
  </item> 
  <item>
   <title><![CDATA[Sign PDF with Certificates : Hi,  Good luck to the Brazilian...]]></title>
   <link>http://www.quickpdf.org/forum/sign-pdf-with-certificates_topic437_post1984.html#1984</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=1">Michel_K17</a><br /><strong>Subject:</strong> 437<br /><strong>Posted:</strong> 19 Jun 06 at 8:10PM<br /><br />Hi,<br /><br />&nbsp;&nbsp;&nbsp;Good luck to the Brazilian team at FIFA! Personally, I'm enjoying that the Edmonton Oilers are in the Stanley Cup finals (hockey).<br /><br />&nbsp;&nbsp;&nbsp;I have not used the "form" functions of DynaPDF. I agree with you that nothing beats QuickPDF for price. <img border="0" src="http://www.quickpdf.org/forum/smileys/smiley1.gif" border="0"><br /><br />&nbsp;&nbsp;&nbsp;I can ask for a University discount, but I believe that Dynaforms do not offer such a discount.<br /><br />&nbsp;&nbsp;&nbsp;Cheers!<br /><br />Michel ]]>
   </description>
   <pubDate>Mon, 19 Jun 2006 20:10:34 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/sign-pdf-with-certificates_topic437_post1984.html#1984</guid>
  </item> 
 </channel>
</rss>