Home > Domino Tips > Developer > Java > Converting Lotus Notes Domino Web pages to PDF files with a Java agent
Domino Tips:
EMAIL THIS
 TIPS & NEWSLETTERS TOPICS 

JAVA

Converting Lotus Notes Domino Web pages to PDF files with a Java agent


Michael Marcavage
08.08.2007
Rating: -3.06- (out of 5)


Lotus Notes, Domino, Workplace and WebSphere tips and advice
Digg This!    StumbleUpon Toolbar StumbleUpon    Bookmark with Delicious Del.icio.us    Add to Google


Want to provide your Lotus Notes Domino users with the ability to convert Web pages to PDF documents on the fly? Place the code below into a Java agent.
More related information from SearchDomino.com:
Creating Microsoft Word documents from Lotus Notes

Creating PDF documents from Lotus Notes

Converting Web pages to images using Java

Java for Lotus Notes and Domino advice

Java Reference Center

Called via a JavaScript button on a Web form, this agent parses the URL used to call the agent and returns the key that it is looking for. It then copies the document to a Lotus Notes Domino database that is wide open and calls the document via a URL. Finally, it converts it to a PDF file.

You will need to create a shareable Web folder so that the PDF file has somewhere to land. From there, you just need to call the PDF document to present it to the Lotus Notes user.

You also need to buy a Jar file from http://pd4ml.com/ and add it to your Java agent to make this work.

There may be better methods to accomplish this task, but this is a quick-and-dirty technique I successfully implemented in a rush situation.

Here is the code that resides in the Javascript Button:

var getDBPath = "/" + form.DBPath.value; 
var varURL = getDBPath + '/webCreatePDF?
OpenAgent&pQuoteNumber=' + 
form.quoteNumber.value;

window.open(varURL, '_blank', "menubar=yes,
width=900,height=600, scrollbars=yes,
resizable=yes, top=4, left=4");

Here is the code for the Java agent:

import lotus.domino.*;
import java.awt.Dimension;
import java.awt.Insets;
import java.io.File;
import java.io.*;
import java.net.*;
import java.util.*;

import org.zefer.pd4ml.PD4Constants;
import org.zefer.pd4ml.PD4ML;
import org.zefer.pd4ml.PD4PageMark;

public class JavaAgent extends AgentBase 
    {
 public void NotesMain() 
        {
          lotus.domino.Database lnDB = null;
          lotus.domino.Document lnDoc = null;
          Document doc = null;
          Database dbDump = null;
          String strURLValue = null;
          String strGetQuoteNumber = null;

  try
               {
Session session = getSession();
AgentContext agentContext = 
session.getAgentContext();
lnDB = agentContext.getCurrentDatabase();
doc = agentContext.getDocumentContext( );
dbDump = session.getDatabase
(lnDB.getServer(), "Sales\qaSPDump.nsf");
                 
//Parse URL from web form
                 strURLValue = 
doc.getItemValueString("Query_String_Decoded");
                 Hashtable ht = 
parseQueryString(strURLValue);
                 strGetQuoteNumber = 
(String) ht.get( "pQuoteNumber" );

//Get Hook on Doc
                 View lnView = lnDB.getView
("wLKQuoteNumber");
                 lnDoc = lnView.getDocumentByKey
(strGetQuoteNumber, false);
                 lnDoc.copyToDatabase(dbDump);

                 String htmlFileName = 
"http://<Your Domain>/Sales/qaSPDump.nsf/wPDF/" 
+ strGetQuoteNumber + "?OpenDocument";
File pdfFile = new File("<server name or 
IP>\Temp\" + strGetQuoteNumber + ".pdf");
 Converter converter = new Converter();
converter.generatePDF(htmlFileName, pdfFile, 
PD4Constants.A4, null, null);

               } catch(Exception e) 
                           {
  e.printStackTrace();
                   }
        }

public static Hashtable 
parseQueryString(String queryString) {
  StringTokenizer tokens = 
new StringTokenizer(queryString, "&");
  Hashtable params = new Hashtable();

  while (tokens.hasMoreTokens()) 
             {
               String token = tokens.nextToken();
               int equalIdx = token.indexOf('=');
               if (equalIdx != -1 && !token.
equalsIgnoreCase("OpenAgent")) 
                  {
                    String name = token.
substring(0, equalIdx);
                    String value = token.
substring(equalIdx + 1);
                    params.put(name, value);
                   }
              }
return params;
}

 }


//Converter Class
import java.awt.Dimension;
import java.awt.Insets;
import java.io.File;

import org.zefer.pd4ml.PD4Constants;
import org.zefer.pd4ml.PD4ML;
import org.zefer.pd4ml.PD4PageMark;

public class Converter
{
public void generatePDF(String inputHTMLFileName, 
File outputPDFFile, Dimension format, 
String fontsDir, String headerBody) throws Exception 
    {
java.io.FileOutputStream fos = new 
java.io.FileOutputStream(outputPDFFile);
PD4ML pd4ml = new PD4ML();
pd4ml.setPageInsets(new Insets(20, 10, 10, 10));
pd4ml.setHtmlWidth(950);
//pd4ml.setPageSize(pd4ml.changePage
Orientation(format));
          pd4ml.setPageSize(format);

if (fontsDir != null && fontsDir.length() > 0)
             {
pd4ml.useTTF( fontsDir, true );
     }
     
if (headerBody != null && 
headerBody.length() > 0 )
             {
PD4PageMark header = new PD4PageMark();
header.setAreaHeight( -1 ); 
header.setHtmlTemplate( headerBody );
pd4ml.setPageHeader( header );
     }
     
pd4ml.enableDebugInfo();
//pd4ml.render("file:" + inputHTMLFileName, fos);
          pd4ml.render("url:" + inputHTMLFileName, fos);
 }
}

Do you have comments on this tip? Let us know.

This tip was submitted to the SearchDomino.com tip library by member Michael Marcavage. Please let others know how useful it is via the rating scale below. Do you have a useful Lotus Notes, Domino, Workplace or WebSphere tip or code snippet to share? Submit it to our monthly tip contest and you could win a prize.

Rate this Tip
To rate tips, you must be a member of SearchDomino.com.
Register now to start rating these tips. Log in if you are already a member.


Submit a Tip




Digg This!    StumbleUpon Toolbar StumbleUpon    Bookmark with Delicious Del.icio.us    Add to Google


RELATED CONTENT
Java
Java code shortens strings in a SQL table
How to execute a stored procedure in Lotus Notes Domino using Java
How to return an HTML representation of a Lotus Notes rich-text field
Shrink Lotus Notes databases with many attachments
A bevy of Notes/Domino development tips
Converting Web pages to images using Java
Creating Microsoft Word documents from Lotus Notes
FAQ: Java for Lotus Notes and Domino
Automatically scan Lotus Notes database document attachments for viruses
Creating PDF documents from Lotus Notes

Java for Lotus Notes Domino
Java code shortens strings in a SQL table
How to execute a stored procedure in Lotus Notes Domino using Java
Top 10 Lotus Notes Domino programming and development tips of 2007
How to return an HTML representation of a Lotus Notes rich-text field
Shrink Lotus Notes databases with many attachments
Developing Eclipse plug-ins for Lotus Notes and Domino -- 7 tips in 7 minutes
A bevy of Notes/Domino development tips
Converting Web pages to images using Java
Creating Microsoft Word documents from Lotus Notes
Sending and logging faxes from Lotus Notes and Domino

RELATED RESOURCES
2020software.com, trial software downloads for accounting software, ERP software, CRM software and business software systems
Search Bitpipe.com for the latest white papers and business webcasts
Whatis.com, the online computer dictionary

DISCLAIMER: Our Tips Exchange is a forum for you to share technical advice and expertise with your peers and to learn from other enterprise IT professionals. TechTarget provides the infrastructure to facilitate this sharing of information. However, we cannot guarantee the accuracy or validity of the material submitted. You agree that your use of the Ask The Expert services and your reliance on any questions, answers, information or other materials received through this Web site is at your own risk.



Domino & Lotus Notes Security Solutions: Authentication, Antispam, Encryption and Antivirus
HomeTopicsITKnowledge ExchangeTipsAsk the ExpertsMultimediaWhite PapersDomino IT Downloads
About Us  |  Contact Us  |  For Advertisers  |  For Business Partners  |  Site Index  |  RSS
SEARCH 
TechTarget provides enterprise IT professionals with the information they need to perform their jobs - from developing strategy, to making cost-effective IT purchase decisions and managing their organizations' IT projects - with its network of technology-specific Web sites, events and magazines.

TechTarget Corporate Web Site  |  Media Kits  |  Reprints  |  Site Map




All Rights Reserved, Copyright 1999 - 2008, TechTarget | Read our Privacy Policy
  TechTarget - The IT Media ROI Experts