SlideShare ist ein Scribd-Unternehmen logo
1 von 45
Agenda
Domino JAVA development environments – Today
– Domino and JAVA - embedded Applets
– Domino and Javascript
– Domino toolkit for JAVA/Corba
– Harmony for Domino - EJB from Sun
– JAVA and SOAP web services on Domino
JAVA in Domino 6 – Tomorrow
– Domino and JAVA in Release 6
– Domino and J2EE
– Domino and Websphere integration
Examples
– Help Desk Application
– Web Services using SOAP
– SPAM filters
Sites to find more information
Lotus Notes and Domino – A
Level Set
• Notes is the Client code – a groupware
product that supports email, calendaring,
document management, workflow and web
access
• Domino is the backend server that runs
services such as HTTP, POP, SMTP,
LDAP, Database, Routing, JAVA Servlets,
Replication, etc.
Domino Development – Brief Overview
• The key programming functions in Domino are:
– Formula, LotusScript, Java, and JavaScript code
– You attach code to various objects depending on need.
• You use attach formulas to fields and sections on forms and views.
• You attach JavaScript code to the onFocus event of a field which
would then execute whenever a user places focus on the field.
• Macros can be developed to perform common functions on all
objects
• There is an IDE programming interface to development
environments that support COM and OLE.
• There is a programming interface for Java applications
and applets.
– Java applications and applets can operate locally by accessing
installed Domino software or remotely by connecting to a Domino
server using CORBA with IIOP protocols.
Domino Object Model (DOM)
• What is it?
– Hierarchical organization of the Domino objects.
• It consists of back-end and front-end classes.
– 25 back-end classes (two new classes in R5).
– 7 front-end classes
• Formerly referred to as:
– Notes object model, Notes object interface or NOI
– LotusScript classes (the back-end classes were called
the Database level classes, while the front-end classes
were called the UI level classes)
Where to Use JAVA in Domino
• Embedded Applets & Servlets
• CORBA Applets/Applications
• Web Agents & Web development
– use Java applets (like eSuite DevPack) and Java Servlets.
• Connecting to Relational Databases
– use JDBC in Java Applications and Java agents.
• Integrating with Legacy Systems
– use Java Applications and Java agents.
• Reduce development time by purchasing ready to use
Java classes written specifically for Domino
developers
Java Objects in Notes R5
IIOPIIOP CORBACORBA
Server APIServer API
ServerServer
ObjectsObjects
CORBACORBA
ClientClient
Domino and JAVA - embedded Applets
• Domino ships with 4 pre-built JAVA applets
– Outline applet
• The outline applet lets Web users work with outlines
embedded in a page or form.
– View applet
• The view applet lets Web users use many of the Domino
view features, including column resizing, multiple
document selection, and section collapse/expand without
page regeneration.
– Action bar applet
• The action bar applet lets users scroll and easily view and
select sub-actions.
– Editor applet
• The editor applet lets Web users change the font, color,
size, and style for text in rich text fields.
View Applet
Outline & View Combined
Editor Applet
“Rolling Your Own” Applet
Extending Classes
CREATING AN APPLET INVOLVES
EXTENDING THE APPLET CLASS:
• Import the class files: import java.applet.Applet
– Importing the applet class file gives you a starting point
to build from, a bit like a template.
• Extend: public class Catalogue extends Applet
– Your code extends the java.applet.Applet class files.
• Void: public void init()
– In order to add your own code to the methods available
in a applet class file, you need to override the existing
methods.
Object Actions
CREATING OBJECTS INVOLVES THREE ACTIONS:
• Declaration: type name
– "Button nextProduct" is a variable declaration that
declares that the name nextProduct will be used to refer to
a object of the button type (class name).
• Instantiation: new
– the new operator (like LotusScript) is used in Java to
create a new object, in this case a new button.
• Initialization: constructor call
– "Button(“Next Product”)" calls the button class
constructor which will initialize the nextProduct object.
Referencing Variables
• All objects of the same type have the same
variables:
– These are created when the object is instantiated and
initialized.
– This is similar to LotusScript, that is all
NotesDocument objects have the same properties and
methods. (The values stored in the properties vary).
• To reference a variable:
– objectName.methodName
Handling Events
• Applets inherit a group of event handling methods
from the AWT class: java.awt.Event.
• Establishing event handling methods involves
three steps:
1. Implement the appropriate Listener interfaces:
public class X extends Applet implements ActionListener
2. Register each object with the event Listener:
objectName.addActionListener(this);
3. Implement the methods of the appropriate Listener
interface:
public void actionPerformed(ActionEvent event)
Basic Syntax
• Unlike JavaScript, which is untyped, all data
variables in Java have a type
– The type determines what values the variable can
contain and the operations that can be performed on it.
• Variable scope is similar to LotusScript:
– Variables defined in the “(declarations)” event are
available to all events in the same module. This is like
a member variable in Java.
– Variables declared in the “initialize” event are only
available for the duration of that event. This is like a
local variable in Java.
Steps to Create an Applet
• Create the Source File
– This can be done in any text editor.
– Must save the file with an *.java extension.
• Compile the Source File
– This converts the text file into ByteCode which
can be read by the JVM.
– Use the JDK (Java Developers Kit) or a Java
IDE, such as IBM’s Visual Age
• Embed the Applet into an HTML page or a
Domino Document, Form or Page.
Displaying Images in Applet
• Import the AWT Image and Graphics class files.
• Loading the Image:
– Use imagename =
getImage(getDocumentBase(),”image.gif”);
• Drawing the Image using:
– Use g.drawImage(imagename, 0, 0, this);
– where g represents the Java graphics object.
– 0,0 are the x,y co-ordinates for the image.
– this indicates that this object should be notified as more
of the image becomes available.
Lotus.domino.*
• All Java programs use the Domino Java Classes to
write code that instantiates Domino Objects.
• lotus.domino.* is a Java package that gives Java
programmer’s access to the Domino Object Model.
• The package does not include the Front-end classes
-as a Java program cannot be attached to front-end
objects, such as form events (unlike LotusScript).
• This same package is used in Java Applets,
Applications and Agents.
Domino Java Classes
METHODS:
• Java methods are identical to LotusScript methods
except that they start with lowercase.
PROPERTIES:
• In Java, properties are also methods, so the
LotusScript properties needed to be converted into
equivalent methods:
– Boolean properties have two equivalent methods - one
to set/change it, which starts with the word “set”, and
one to read it, which starts with the word “is”.
– Other properties convert to “get” methods in Java.
Class Examples
• lotus.domino.Session
– getDatabase
• lotus.domino.Database
– getView
• lotus.domino.View
– getFirstDocument()
– getNextDocument(Object document)
Adding an Applet into your App
• Embed the applet into a Domino form, page or
document.
• Check the “Applet uses the Notes CORBA
classes” property.
• Check the “Applet uses CORBA SSL security”
property if required.
• Execution in a Browser invokes CORBA, in a
Notes Client the applet simply access the local
Domino APIs.
Lotus Domino Toolkit for Java/CORBA
• Tools, samples, and documentation to create Java programs using
Domino data and services.
• Domino Collaboration Objects for Java (DCO)
– Java beans (classes) that add Domino messaging and calendaring
services to programs.
– You provide any needed user interface; the DCO beans provide easy
Domino access to:
• User login and authentication
• Sending an email
• Working with calendar entries
• The DCO beans help Web developers tap into Domino services by
consolidating the necessary Domino back-end Java classes into a
few Java components.
• Developers not familiar with Domino can rapidly integrate Domino
services into Java applications such as servlets and JavaServer
Pages (JSPs).
• http://www.lotus.com/developers/devbase.nsf/homedata/homejava
Domino JAVA Servlets
• A Domino Java servlet is a program run by the Domino Web server
in response to a browser request.
• Domino supports both Java servlets and Java applets for Web
applications.
• The most important difference between these types of Java
programs is how they are run.
• Servlets are "server-side" programs
– a servlet's Java class is loaded and run entirely within the Domino
server and the result from the servlet, usually a page of HTML, is
returned to the browser
• Applets are "client-side" programs
– An applet's Java class is downloaded to the browser and is run by the
browser
• Applets require Java support in the browser, but servlets do not.
• Servlets for Domino must conform to the Java Servlet API
Specification, an open standard published by Sun Microsystems,
Inc.
Java Servlets – Backend
Architecture
LotusScript
Agents
Events
Java
Agents Client ORB
Applet
Client-side
objects
Domino Server
Browser Client
IIOP
LS
Adapter
Java
Adapter
Domino Back-End
Classes
CORBA
Adapter
COM
Adapter
Host
Application
Visual
Basic
DIIOP ORB
Web
Server HTTP
HTTP
Foreign Client
Java
Servlets
How is the Servlet Invoked?
• Triggered by HTTP request
– /servlet/<servlet name>
• Mapped to a specific file extension
• Built-in Java Servlet Engine for JSDK 2.0
• IBM WebSphere 2.0 compatible
Domino Servlet Configuration Screen
Java Servlets
Java servlet support: Domino Servlet Manager
Servlet URL path: /servlet
Class path: domino/servlet
Servlet file extensions:
Session state tracking: Enabled
Idle session time-out: 30 minutes
Maximum active sessions: 1024
Session persistence: Disabled
How to implement in Domino
• JSDK 2.0 documentation at java.sun.com
• Commercial Java development packages
• VisualAge for Java from IBM
• Put JSDK.jar into CLASSPATH
– (packaged with R5)
– javac
Writing a Servlet - 1
• Extend javax.servlet.http.HttpServlet
– Subclass of GenericServlet
• Choose the desired method
– doGet( ), doPost( ), init( ) & destroy( )
• Place class files into servlet directory
– <Notes data dir>dominoservlet
• Invoke by URL
– /servlet/<name>
Writing a Servlet - 2
• <data dir>servlets.properties
• Standard Java properties file format
• Directives:
– servlets.startup=<name1> <name2>
– servlet.<name>.initArgs=<name>=<value>
– servlet.<alias>.code=<class>
– servlet.<name>.extension=<ext>
Running the Servlet
• Servlet Manager ClassLoader loads servlet
– Uses dominoservlet path
• System ClassLoader loads other classes
– From file system
– Locates using CLASSPATH
• init( ) method executes
• service( ) method executes for each request
• Servlet classes REUSED
Java User Classes
• Notes.ini variable
• Couples system classloader to a classpath
• Path separators
– Semicolon for Win32/OS2
– Colon for UNIX
• Example:
– JavaUserClasses=c:myjarsutils.jar;
c:morefoo.jar
Languages
• CORBA applets & applications
– Java
– JDBC and Domino Driver
• Web agents
– Java
– LotusScript
– Formula language
• Servlets
– Java
Examples of code used
in an Agent
Import lotus domino.*
public class simpleagent extends AgentBase
{
public void NotesMain( )
{
try {
Session s = getSession( );
AgentContext ac = s.getAgentContext( );
// your code goes here
Document doc = ac.getDocumentContext( );
String qs=doc.getItemValueString("Query_String"); }
catch( NotesException e)
{ e.printStackTrace( ); }
}
}
Harmony for Lotus Domino
• OEM Java API to access information from Lotus
Domino.
– Comprehensive library of Java technology-based
components
– Developers can access and store information such as
appointments, todos, mail messages and contacts
through the Harmony for Lotus Domino Java
technology API.
JAVA and Soap in Domino
• Use XML to encode the data
• Format the remote calls using SOAP
• Use HTTP as the tranport
• Use JAVA as the language to tie it
together
Domino 6 – What’s New
• Creating JSPs from the JSP tag libraries
– large set of tags for Java Server Pages (JSP)
• Enhancements to the Java APIs to make it
easier to get into and out of Domino.
• IDE enhancements for importing JAVA applets
and servlets
Domino 6 – More integration
with Websphere
• IBM has announced that Lotus Domino 6 customers will
be able to download a free version of WebSphere
Application Server (WAS) from the IBM Lotus Passport
Advantage site.
– Delivers Java 2 Platform, Enterprise Edition (J2EE) Advances
IBM's Web services strategy by delivering J2EE capabilities to
Lotus Domino customers and business partners embracing a J2EE
architecture.
– The free WAS download can only be installed on the same
machine as Domino 6, and it can only access Domino objects. In
addition, developers won't be able to use WebSphere connection
pooling or EJBs
Is Domino Worth It?
• Lotus has sold about 85 million seats, it has
about 50 thousand customers, and it
contributes about 20 percent of the total
revenue of IBM Software Group
(comprised of Lotus, WebSphere, DB2 and
Tivoli brands).
After Domino 6 - ??
• Lotus President Al Zollar says the plan is to
modularize products and exploit J2EE and Web
services.
• The product roadmap to Lotus NextGen
Contextual Collaboration has four levels, from
most to least "application richness," evolving over
time:
– Lotus Domino JAVA APIs
– NextGen collaborative infrastructure
– NextGen collaborative components
– RAD for J2EE based on Eclipse
Sites for more information
• http://www.lotus.com
• http://javaadvisor.com/Articles.nsf/aid/DEVEG02
• http://javaadvisor.com/Articles.nsf/aid/SMITT728
• http://www-
10.lotus.com/ldd/sandbox.nsf/e26da15be91bde91852566f0006941d9/04ba4
82a57b4131d8525673100760f75?OpenDocument
• http://industry.java.sun.com/solutions/products/by_product/0,2348,all-5604-
13,00.html
• http://www.notestips.com/80256B3A007F2692/0/92D392DC6B297289802
56BA5007FBAA3?OpenDocument
• http://industry.java.sun.com/solutions/products/by_product/0,2348,all-1162-
99,00.html
• http://www.lotus.com/products/rnext.nsf/873769A79D9C5B2285256A0800
720B96/D14669BE33B75CB585256C4700659FDC?OpenDocument
Want to hear more?
• Patricia Egen
– Patricia Egen Consulting, LLC
– www.egenconsulting.com
– 423-875-2652
– Pregen@egenconsulting.com

Weitere ähnliche Inhalte

Was ist angesagt?

Java review00
Java review00Java review00
Java review00saryu2011
 
PROGRAMMING IN JAVA- unit 4-part II
PROGRAMMING IN JAVA- unit 4-part IIPROGRAMMING IN JAVA- unit 4-part II
PROGRAMMING IN JAVA- unit 4-part IISivaSankari36
 
Ad103 - Have it Your Way: Extending IBM Lotus Domino Designer
Ad103 - Have it Your Way: Extending IBM Lotus Domino DesignerAd103 - Have it Your Way: Extending IBM Lotus Domino Designer
Ad103 - Have it Your Way: Extending IBM Lotus Domino Designerddrschiw
 
JavaClassPresentation
JavaClassPresentationJavaClassPresentation
JavaClassPresentationjuliasceasor
 
From Java to Ruby...and Back
From Java to Ruby...and BackFrom Java to Ruby...and Back
From Java to Ruby...and BackAnil Hemrajani
 
Connect 2014 JMP101: Java for XPages Development
Connect 2014 JMP101: Java for XPages DevelopmentConnect 2014 JMP101: Java for XPages Development
Connect 2014 JMP101: Java for XPages Developmentpanagenda
 
Java for XPages Development
Java for XPages DevelopmentJava for XPages Development
Java for XPages DevelopmentTeamstudio
 
Java Presentation
Java PresentationJava Presentation
Java PresentationAmr Salah
 
Introduction to Java Programming
Introduction to Java Programming Introduction to Java Programming
Introduction to Java Programming Saravanakumar R
 
AD111 -- Harnessing the Power of Server-Side JavaScript and Other Advanced XP...
AD111 -- Harnessing the Power of Server-Side JavaScript and Other Advanced XP...AD111 -- Harnessing the Power of Server-Side JavaScript and Other Advanced XP...
AD111 -- Harnessing the Power of Server-Side JavaScript and Other Advanced XP...ddrschiw
 

Was ist angesagt? (17)

Java review00
Java review00Java review00
Java review00
 
PROGRAMMING IN JAVA- unit 4-part II
PROGRAMMING IN JAVA- unit 4-part IIPROGRAMMING IN JAVA- unit 4-part II
PROGRAMMING IN JAVA- unit 4-part II
 
Basic java part_ii
Basic java part_iiBasic java part_ii
Basic java part_ii
 
Ad103 - Have it Your Way: Extending IBM Lotus Domino Designer
Ad103 - Have it Your Way: Extending IBM Lotus Domino DesignerAd103 - Have it Your Way: Extending IBM Lotus Domino Designer
Ad103 - Have it Your Way: Extending IBM Lotus Domino Designer
 
JavaClassPresentation
JavaClassPresentationJavaClassPresentation
JavaClassPresentation
 
Java basics notes
Java basics notesJava basics notes
Java basics notes
 
Netbeans IDE & Platform
Netbeans IDE & PlatformNetbeans IDE & Platform
Netbeans IDE & Platform
 
From Java to Ruby...and Back
From Java to Ruby...and BackFrom Java to Ruby...and Back
From Java to Ruby...and Back
 
PROGRAMMING IN JAVA
PROGRAMMING IN JAVAPROGRAMMING IN JAVA
PROGRAMMING IN JAVA
 
Connect 2014 JMP101: Java for XPages Development
Connect 2014 JMP101: Java for XPages DevelopmentConnect 2014 JMP101: Java for XPages Development
Connect 2014 JMP101: Java for XPages Development
 
Intro lift
Intro liftIntro lift
Intro lift
 
Java for XPages Development
Java for XPages DevelopmentJava for XPages Development
Java for XPages Development
 
Java introduction
Java introductionJava introduction
Java introduction
 
Java Presentation
Java PresentationJava Presentation
Java Presentation
 
Introduction to Java Programming
Introduction to Java Programming Introduction to Java Programming
Introduction to Java Programming
 
Basic java tutorial
Basic java tutorialBasic java tutorial
Basic java tutorial
 
AD111 -- Harnessing the Power of Server-Side JavaScript and Other Advanced XP...
AD111 -- Harnessing the Power of Server-Side JavaScript and Other Advanced XP...AD111 -- Harnessing the Power of Server-Side JavaScript and Other Advanced XP...
AD111 -- Harnessing the Power of Server-Side JavaScript and Other Advanced XP...
 

Andere mochten auch

非常不多的多媒体公司简介
非常不多的多媒体公司简介非常不多的多媒体公司简介
非常不多的多媒体公司简介Frank Cheung
 
管窥Nodejs的事件——基于观察者模式的事件队列
管窥Nodejs的事件——基于观察者模式的事件队列管窥Nodejs的事件——基于观察者模式的事件队列
管窥Nodejs的事件——基于观察者模式的事件队列Frank Cheung
 
史前的Ssjs——从js的asp到node js
史前的Ssjs——从js的asp到node js史前的Ssjs——从js的asp到node js
史前的Ssjs——从js的asp到node jsFrank Cheung
 
1.2 History
1.2 History1.2 History
1.2 Historychoodo
 
关于职业发展的一点思考
关于职业发展的一点思考关于职业发展的一点思考
关于职业发展的一点思考Frank Cheung
 
Sencha SDK Tools简介:IE6上也可以用CSS3?
Sencha SDK Tools简介:IE6上也可以用CSS3?Sencha SDK Tools简介:IE6上也可以用CSS3?
Sencha SDK Tools简介:IE6上也可以用CSS3?Frank Cheung
 
Ha rdware components
Ha rdware componentsHa rdware components
Ha rdware componentsEDGAR3333
 
1.3.philosophy
1.3.philosophy1.3.philosophy
1.3.philosophychoodo
 
图形渲染引擎:Ext.draw源码心得
图形渲染引擎:Ext.draw源码心得图形渲染引擎:Ext.draw源码心得
图形渲染引擎:Ext.draw源码心得Frank Cheung
 
Integration test
Integration testIntegration test
Integration testSumit Tambe
 
Anestesi umum-fk-ur
Anestesi umum-fk-urAnestesi umum-fk-ur
Anestesi umum-fk-urAldi Rauf
 
מתאורולוגיה הרצאה 1
מתאורולוגיה הרצאה 1מתאורולוגיה הרצאה 1
מתאורולוגיה הרצאה 1choodo
 
何为用户体验设计
何为用户体验设计何为用户体验设计
何为用户体验设计Frank Cheung
 

Andere mochten auch (17)

非常不多的多媒体公司简介
非常不多的多媒体公司简介非常不多的多媒体公司简介
非常不多的多媒体公司简介
 
Ddh
DdhDdh
Ddh
 
管窥Nodejs的事件——基于观察者模式的事件队列
管窥Nodejs的事件——基于观察者模式的事件队列管窥Nodejs的事件——基于观察者模式的事件队列
管窥Nodejs的事件——基于观察者模式的事件队列
 
史前的Ssjs——从js的asp到node js
史前的Ssjs——从js的asp到node js史前的Ssjs——从js的asp到node js
史前的Ssjs——从js的asp到node js
 
N at
N atN at
N at
 
1.2 History
1.2 History1.2 History
1.2 History
 
关于职业发展的一点思考
关于职业发展的一点思考关于职业发展的一点思考
关于职业发展的一点思考
 
Sencha SDK Tools简介:IE6上也可以用CSS3?
Sencha SDK Tools简介:IE6上也可以用CSS3?Sencha SDK Tools简介:IE6上也可以用CSS3?
Sencha SDK Tools简介:IE6上也可以用CSS3?
 
Ha rdware components
Ha rdware componentsHa rdware components
Ha rdware components
 
1.3.philosophy
1.3.philosophy1.3.philosophy
1.3.philosophy
 
Java tut1
Java tut1Java tut1
Java tut1
 
图形渲染引擎:Ext.draw源码心得
图形渲染引擎:Ext.draw源码心得图形渲染引擎:Ext.draw源码心得
图形渲染引擎:Ext.draw源码心得
 
Ip
IpIp
Ip
 
Integration test
Integration testIntegration test
Integration test
 
Anestesi umum-fk-ur
Anestesi umum-fk-urAnestesi umum-fk-ur
Anestesi umum-fk-ur
 
מתאורולוגיה הרצאה 1
מתאורולוגיה הרצאה 1מתאורולוגיה הרצאה 1
מתאורולוגיה הרצאה 1
 
何为用户体验设计
何为用户体验设计何为用户体验设计
何为用户体验设计
 

Ähnlich wie Domino java

Java Programming concept
Java Programming concept Java Programming concept
Java Programming concept Prakash Poudel
 
JAVA object oriented programming (oop).ppt
JAVA object oriented programming (oop).pptJAVA object oriented programming (oop).ppt
JAVA object oriented programming (oop).pptAliyaJav
 
Spring data jpa are used to develop spring applications
Spring data jpa are used to develop spring applicationsSpring data jpa are used to develop spring applications
Spring data jpa are used to develop spring applicationsmichaelaaron25322
 
BP214 IBM Lotus Symphony : Finally, A Developer's Friend
BP214 IBM Lotus Symphony : Finally, A Developer's FriendBP214 IBM Lotus Symphony : Finally, A Developer's Friend
BP214 IBM Lotus Symphony : Finally, A Developer's FriendJohn Head
 
Fundamentals of JAVA
Fundamentals of JAVAFundamentals of JAVA
Fundamentals of JAVAKUNAL GADHIA
 
UKLUG 2012 - XPages, Beyond the basics
UKLUG 2012 - XPages, Beyond the basicsUKLUG 2012 - XPages, Beyond the basics
UKLUG 2012 - XPages, Beyond the basicsUlrich Krause
 
Connect 2014 SHOW102: XPages Still No Experience Necessary
Connect 2014 SHOW102: XPages Still No Experience NecessaryConnect 2014 SHOW102: XPages Still No Experience Necessary
Connect 2014 SHOW102: XPages Still No Experience Necessarypanagenda
 
Introduction to react native with redux
Introduction to react native with reduxIntroduction to react native with redux
Introduction to react native with reduxMike Melusky
 
Lecture 19 - Dynamic Web - JAVA - Part 1.ppt
Lecture 19 - Dynamic Web - JAVA - Part 1.pptLecture 19 - Dynamic Web - JAVA - Part 1.ppt
Lecture 19 - Dynamic Web - JAVA - Part 1.pptKalsoomTahir2
 
Lecture11_LaravelGetStarted_SPring2023.pdf
Lecture11_LaravelGetStarted_SPring2023.pdfLecture11_LaravelGetStarted_SPring2023.pdf
Lecture11_LaravelGetStarted_SPring2023.pdfShaimaaMohamedGalal
 
1 java programming- introduction
1  java programming- introduction1  java programming- introduction
1 java programming- introductionjyoti_lakhani
 
Lecture 19 dynamic web - java - part 1
Lecture 19   dynamic web - java - part 1Lecture 19   dynamic web - java - part 1
Lecture 19 dynamic web - java - part 1Д. Ганаа
 

Ähnlich wie Domino java (20)

JAVA APPLET BASICS
JAVA APPLET BASICSJAVA APPLET BASICS
JAVA APPLET BASICS
 
Java Programming concept
Java Programming concept Java Programming concept
Java Programming concept
 
JAVA object oriented programming (oop).ppt
JAVA object oriented programming (oop).pptJAVA object oriented programming (oop).ppt
JAVA object oriented programming (oop).ppt
 
Spring data jpa are used to develop spring applications
Spring data jpa are used to develop spring applicationsSpring data jpa are used to develop spring applications
Spring data jpa are used to develop spring applications
 
Introduction to Spring & Spring BootFramework
Introduction to Spring  & Spring BootFrameworkIntroduction to Spring  & Spring BootFramework
Introduction to Spring & Spring BootFramework
 
Java1
Java1Java1
Java1
 
Java1
Java1Java1
Java1
 
Java Introduction
Java IntroductionJava Introduction
Java Introduction
 
BP214 IBM Lotus Symphony : Finally, A Developer's Friend
BP214 IBM Lotus Symphony : Finally, A Developer's FriendBP214 IBM Lotus Symphony : Finally, A Developer's Friend
BP214 IBM Lotus Symphony : Finally, A Developer's Friend
 
Fundamentals of JAVA
Fundamentals of JAVAFundamentals of JAVA
Fundamentals of JAVA
 
unit1.pptx
unit1.pptxunit1.pptx
unit1.pptx
 
oop unit1.pptx
oop unit1.pptxoop unit1.pptx
oop unit1.pptx
 
CS8392 OOP
CS8392 OOPCS8392 OOP
CS8392 OOP
 
UKLUG 2012 - XPages, Beyond the basics
UKLUG 2012 - XPages, Beyond the basicsUKLUG 2012 - XPages, Beyond the basics
UKLUG 2012 - XPages, Beyond the basics
 
Connect 2014 SHOW102: XPages Still No Experience Necessary
Connect 2014 SHOW102: XPages Still No Experience NecessaryConnect 2014 SHOW102: XPages Still No Experience Necessary
Connect 2014 SHOW102: XPages Still No Experience Necessary
 
Introduction to react native with redux
Introduction to react native with reduxIntroduction to react native with redux
Introduction to react native with redux
 
Lecture 19 - Dynamic Web - JAVA - Part 1.ppt
Lecture 19 - Dynamic Web - JAVA - Part 1.pptLecture 19 - Dynamic Web - JAVA - Part 1.ppt
Lecture 19 - Dynamic Web - JAVA - Part 1.ppt
 
Lecture11_LaravelGetStarted_SPring2023.pdf
Lecture11_LaravelGetStarted_SPring2023.pdfLecture11_LaravelGetStarted_SPring2023.pdf
Lecture11_LaravelGetStarted_SPring2023.pdf
 
1 java programming- introduction
1  java programming- introduction1  java programming- introduction
1 java programming- introduction
 
Lecture 19 dynamic web - java - part 1
Lecture 19   dynamic web - java - part 1Lecture 19   dynamic web - java - part 1
Lecture 19 dynamic web - java - part 1
 

Kürzlich hochgeladen

EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEarley Information Science
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityPrincipled Technologies
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processorsdebabhi2
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slidevu2urc
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024Rafal Los
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfsudhanshuwaghmare1
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking MenDelhi Call girls
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsEnterprise Knowledge
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slidespraypatel2
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...Martijn de Jong
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)wesley chun
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxMalak Abu Hammad
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024Results
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Miguel Araújo
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024The Digital Insurer
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptxHampshireHUG
 

Kürzlich hochgeladen (20)

EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptx
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 

Domino java

  • 1. Agenda Domino JAVA development environments – Today – Domino and JAVA - embedded Applets – Domino and Javascript – Domino toolkit for JAVA/Corba – Harmony for Domino - EJB from Sun – JAVA and SOAP web services on Domino JAVA in Domino 6 – Tomorrow – Domino and JAVA in Release 6 – Domino and J2EE – Domino and Websphere integration Examples – Help Desk Application – Web Services using SOAP – SPAM filters Sites to find more information
  • 2. Lotus Notes and Domino – A Level Set • Notes is the Client code – a groupware product that supports email, calendaring, document management, workflow and web access • Domino is the backend server that runs services such as HTTP, POP, SMTP, LDAP, Database, Routing, JAVA Servlets, Replication, etc.
  • 3. Domino Development – Brief Overview • The key programming functions in Domino are: – Formula, LotusScript, Java, and JavaScript code – You attach code to various objects depending on need. • You use attach formulas to fields and sections on forms and views. • You attach JavaScript code to the onFocus event of a field which would then execute whenever a user places focus on the field. • Macros can be developed to perform common functions on all objects • There is an IDE programming interface to development environments that support COM and OLE. • There is a programming interface for Java applications and applets. – Java applications and applets can operate locally by accessing installed Domino software or remotely by connecting to a Domino server using CORBA with IIOP protocols.
  • 4. Domino Object Model (DOM) • What is it? – Hierarchical organization of the Domino objects. • It consists of back-end and front-end classes. – 25 back-end classes (two new classes in R5). – 7 front-end classes • Formerly referred to as: – Notes object model, Notes object interface or NOI – LotusScript classes (the back-end classes were called the Database level classes, while the front-end classes were called the UI level classes)
  • 5. Where to Use JAVA in Domino • Embedded Applets & Servlets • CORBA Applets/Applications • Web Agents & Web development – use Java applets (like eSuite DevPack) and Java Servlets. • Connecting to Relational Databases – use JDBC in Java Applications and Java agents. • Integrating with Legacy Systems – use Java Applications and Java agents. • Reduce development time by purchasing ready to use Java classes written specifically for Domino developers
  • 6. Java Objects in Notes R5 IIOPIIOP CORBACORBA Server APIServer API ServerServer ObjectsObjects CORBACORBA ClientClient
  • 7. Domino and JAVA - embedded Applets • Domino ships with 4 pre-built JAVA applets – Outline applet • The outline applet lets Web users work with outlines embedded in a page or form. – View applet • The view applet lets Web users use many of the Domino view features, including column resizing, multiple document selection, and section collapse/expand without page regeneration. – Action bar applet • The action bar applet lets users scroll and easily view and select sub-actions. – Editor applet • The editor applet lets Web users change the font, color, size, and style for text in rich text fields.
  • 8.
  • 9.
  • 10.
  • 12. Outline & View Combined
  • 15. Extending Classes CREATING AN APPLET INVOLVES EXTENDING THE APPLET CLASS: • Import the class files: import java.applet.Applet – Importing the applet class file gives you a starting point to build from, a bit like a template. • Extend: public class Catalogue extends Applet – Your code extends the java.applet.Applet class files. • Void: public void init() – In order to add your own code to the methods available in a applet class file, you need to override the existing methods.
  • 16. Object Actions CREATING OBJECTS INVOLVES THREE ACTIONS: • Declaration: type name – "Button nextProduct" is a variable declaration that declares that the name nextProduct will be used to refer to a object of the button type (class name). • Instantiation: new – the new operator (like LotusScript) is used in Java to create a new object, in this case a new button. • Initialization: constructor call – "Button(“Next Product”)" calls the button class constructor which will initialize the nextProduct object.
  • 17. Referencing Variables • All objects of the same type have the same variables: – These are created when the object is instantiated and initialized. – This is similar to LotusScript, that is all NotesDocument objects have the same properties and methods. (The values stored in the properties vary). • To reference a variable: – objectName.methodName
  • 18. Handling Events • Applets inherit a group of event handling methods from the AWT class: java.awt.Event. • Establishing event handling methods involves three steps: 1. Implement the appropriate Listener interfaces: public class X extends Applet implements ActionListener 2. Register each object with the event Listener: objectName.addActionListener(this); 3. Implement the methods of the appropriate Listener interface: public void actionPerformed(ActionEvent event)
  • 19. Basic Syntax • Unlike JavaScript, which is untyped, all data variables in Java have a type – The type determines what values the variable can contain and the operations that can be performed on it. • Variable scope is similar to LotusScript: – Variables defined in the “(declarations)” event are available to all events in the same module. This is like a member variable in Java. – Variables declared in the “initialize” event are only available for the duration of that event. This is like a local variable in Java.
  • 20. Steps to Create an Applet • Create the Source File – This can be done in any text editor. – Must save the file with an *.java extension. • Compile the Source File – This converts the text file into ByteCode which can be read by the JVM. – Use the JDK (Java Developers Kit) or a Java IDE, such as IBM’s Visual Age • Embed the Applet into an HTML page or a Domino Document, Form or Page.
  • 21. Displaying Images in Applet • Import the AWT Image and Graphics class files. • Loading the Image: – Use imagename = getImage(getDocumentBase(),”image.gif”); • Drawing the Image using: – Use g.drawImage(imagename, 0, 0, this); – where g represents the Java graphics object. – 0,0 are the x,y co-ordinates for the image. – this indicates that this object should be notified as more of the image becomes available.
  • 22. Lotus.domino.* • All Java programs use the Domino Java Classes to write code that instantiates Domino Objects. • lotus.domino.* is a Java package that gives Java programmer’s access to the Domino Object Model. • The package does not include the Front-end classes -as a Java program cannot be attached to front-end objects, such as form events (unlike LotusScript). • This same package is used in Java Applets, Applications and Agents.
  • 23. Domino Java Classes METHODS: • Java methods are identical to LotusScript methods except that they start with lowercase. PROPERTIES: • In Java, properties are also methods, so the LotusScript properties needed to be converted into equivalent methods: – Boolean properties have two equivalent methods - one to set/change it, which starts with the word “set”, and one to read it, which starts with the word “is”. – Other properties convert to “get” methods in Java.
  • 24. Class Examples • lotus.domino.Session – getDatabase • lotus.domino.Database – getView • lotus.domino.View – getFirstDocument() – getNextDocument(Object document)
  • 25. Adding an Applet into your App • Embed the applet into a Domino form, page or document. • Check the “Applet uses the Notes CORBA classes” property. • Check the “Applet uses CORBA SSL security” property if required. • Execution in a Browser invokes CORBA, in a Notes Client the applet simply access the local Domino APIs.
  • 26. Lotus Domino Toolkit for Java/CORBA • Tools, samples, and documentation to create Java programs using Domino data and services. • Domino Collaboration Objects for Java (DCO) – Java beans (classes) that add Domino messaging and calendaring services to programs. – You provide any needed user interface; the DCO beans provide easy Domino access to: • User login and authentication • Sending an email • Working with calendar entries • The DCO beans help Web developers tap into Domino services by consolidating the necessary Domino back-end Java classes into a few Java components. • Developers not familiar with Domino can rapidly integrate Domino services into Java applications such as servlets and JavaServer Pages (JSPs). • http://www.lotus.com/developers/devbase.nsf/homedata/homejava
  • 27. Domino JAVA Servlets • A Domino Java servlet is a program run by the Domino Web server in response to a browser request. • Domino supports both Java servlets and Java applets for Web applications. • The most important difference between these types of Java programs is how they are run. • Servlets are "server-side" programs – a servlet's Java class is loaded and run entirely within the Domino server and the result from the servlet, usually a page of HTML, is returned to the browser • Applets are "client-side" programs – An applet's Java class is downloaded to the browser and is run by the browser • Applets require Java support in the browser, but servlets do not. • Servlets for Domino must conform to the Java Servlet API Specification, an open standard published by Sun Microsystems, Inc.
  • 28. Java Servlets – Backend Architecture LotusScript Agents Events Java Agents Client ORB Applet Client-side objects Domino Server Browser Client IIOP LS Adapter Java Adapter Domino Back-End Classes CORBA Adapter COM Adapter Host Application Visual Basic DIIOP ORB Web Server HTTP HTTP Foreign Client Java Servlets
  • 29. How is the Servlet Invoked? • Triggered by HTTP request – /servlet/<servlet name> • Mapped to a specific file extension • Built-in Java Servlet Engine for JSDK 2.0 • IBM WebSphere 2.0 compatible
  • 30. Domino Servlet Configuration Screen Java Servlets Java servlet support: Domino Servlet Manager Servlet URL path: /servlet Class path: domino/servlet Servlet file extensions: Session state tracking: Enabled Idle session time-out: 30 minutes Maximum active sessions: 1024 Session persistence: Disabled
  • 31. How to implement in Domino • JSDK 2.0 documentation at java.sun.com • Commercial Java development packages • VisualAge for Java from IBM • Put JSDK.jar into CLASSPATH – (packaged with R5) – javac
  • 32. Writing a Servlet - 1 • Extend javax.servlet.http.HttpServlet – Subclass of GenericServlet • Choose the desired method – doGet( ), doPost( ), init( ) & destroy( ) • Place class files into servlet directory – <Notes data dir>dominoservlet • Invoke by URL – /servlet/<name>
  • 33. Writing a Servlet - 2 • <data dir>servlets.properties • Standard Java properties file format • Directives: – servlets.startup=<name1> <name2> – servlet.<name>.initArgs=<name>=<value> – servlet.<alias>.code=<class> – servlet.<name>.extension=<ext>
  • 34. Running the Servlet • Servlet Manager ClassLoader loads servlet – Uses dominoservlet path • System ClassLoader loads other classes – From file system – Locates using CLASSPATH • init( ) method executes • service( ) method executes for each request • Servlet classes REUSED
  • 35. Java User Classes • Notes.ini variable • Couples system classloader to a classpath • Path separators – Semicolon for Win32/OS2 – Colon for UNIX • Example: – JavaUserClasses=c:myjarsutils.jar; c:morefoo.jar
  • 36. Languages • CORBA applets & applications – Java – JDBC and Domino Driver • Web agents – Java – LotusScript – Formula language • Servlets – Java
  • 37. Examples of code used in an Agent Import lotus domino.* public class simpleagent extends AgentBase { public void NotesMain( ) { try { Session s = getSession( ); AgentContext ac = s.getAgentContext( ); // your code goes here Document doc = ac.getDocumentContext( ); String qs=doc.getItemValueString("Query_String"); } catch( NotesException e) { e.printStackTrace( ); } } }
  • 38. Harmony for Lotus Domino • OEM Java API to access information from Lotus Domino. – Comprehensive library of Java technology-based components – Developers can access and store information such as appointments, todos, mail messages and contacts through the Harmony for Lotus Domino Java technology API.
  • 39. JAVA and Soap in Domino • Use XML to encode the data • Format the remote calls using SOAP • Use HTTP as the tranport • Use JAVA as the language to tie it together
  • 40. Domino 6 – What’s New • Creating JSPs from the JSP tag libraries – large set of tags for Java Server Pages (JSP) • Enhancements to the Java APIs to make it easier to get into and out of Domino. • IDE enhancements for importing JAVA applets and servlets
  • 41. Domino 6 – More integration with Websphere • IBM has announced that Lotus Domino 6 customers will be able to download a free version of WebSphere Application Server (WAS) from the IBM Lotus Passport Advantage site. – Delivers Java 2 Platform, Enterprise Edition (J2EE) Advances IBM's Web services strategy by delivering J2EE capabilities to Lotus Domino customers and business partners embracing a J2EE architecture. – The free WAS download can only be installed on the same machine as Domino 6, and it can only access Domino objects. In addition, developers won't be able to use WebSphere connection pooling or EJBs
  • 42. Is Domino Worth It? • Lotus has sold about 85 million seats, it has about 50 thousand customers, and it contributes about 20 percent of the total revenue of IBM Software Group (comprised of Lotus, WebSphere, DB2 and Tivoli brands).
  • 43. After Domino 6 - ?? • Lotus President Al Zollar says the plan is to modularize products and exploit J2EE and Web services. • The product roadmap to Lotus NextGen Contextual Collaboration has four levels, from most to least "application richness," evolving over time: – Lotus Domino JAVA APIs – NextGen collaborative infrastructure – NextGen collaborative components – RAD for J2EE based on Eclipse
  • 44. Sites for more information • http://www.lotus.com • http://javaadvisor.com/Articles.nsf/aid/DEVEG02 • http://javaadvisor.com/Articles.nsf/aid/SMITT728 • http://www- 10.lotus.com/ldd/sandbox.nsf/e26da15be91bde91852566f0006941d9/04ba4 82a57b4131d8525673100760f75?OpenDocument • http://industry.java.sun.com/solutions/products/by_product/0,2348,all-5604- 13,00.html • http://www.notestips.com/80256B3A007F2692/0/92D392DC6B297289802 56BA5007FBAA3?OpenDocument • http://industry.java.sun.com/solutions/products/by_product/0,2348,all-1162- 99,00.html • http://www.lotus.com/products/rnext.nsf/873769A79D9C5B2285256A0800 720B96/D14669BE33B75CB585256C4700659FDC?OpenDocument
  • 45. Want to hear more? • Patricia Egen – Patricia Egen Consulting, LLC – www.egenconsulting.com – 423-875-2652 – Pregen@egenconsulting.com