SlideShare uma empresa Scribd logo
1 de 25
Baixar para ler offline
AD111
Harnessing the Power of Server-Side JavaScript and
Other Advanced XPage Techniques
Tim Tripcony | GROUP Experts - XMage
Stephan H. Wissel | IBM - Lotus Technology & Productivity Advisor
Agenda
●   What exactly is Server Side Java Script (SSJS)

●   Common practices: pattern & anti-pattern

●   Code samples




                                        The REAL Agenda: code, code, code

             2
Server-side JavaScript is JavaScript
●   all ECMAScript 3 keywords, operators and syntax still apply
     ▬   var myNumber = 0;
     ▬   var myArray = [ ]; // preferred over new Array();
     ▬   var myObject = { }; // preferred over new Object();
     ▬   function foo(){return "bar";}
     ▬   var depends = someBoolean ? "default" : "other";
●   ECMAScript scope rules apply, including closure
     ▬   More in the Demo section




             3
Server-side JavaScript is not JavaScript (1)
●   browser-specific globals not available
     ▬  window
     ▬  document
     ▬  location
●   Platform-specific globals and JSF-specifics
     ▬  session: current NotesSession
     ▬  database: current NotesDatabase, equal to
        session.getCurrentDatabase()
     ▬  param: URL parameters and post data
     ▬  context & facesContext: current state data and direct access to
        servlet engine




              4
Server-side JavaScript is not JavaScript (2)
●   @functions (e.g. @UserName() )
●   scope variables
     ▬ requestScope
     ▬ viewScope
     ▬ sessionScope
     ▬ applicationScope
●   Optional type declarations
●   Seamless Java™ integration




             5
Agenda
●   What exactly is Server Side Java Script (SSJS)

●   Common practices: pattern & anti-pattern

●   Code samples




             6
The use of context
●   getUser(): access to name, roles, groups, and more
●   getUrl(): no more String parsing to get query string parameters and other
    URL info
●   getUserAgent(): server-side browser detection
●   redirectToPage() / redirectToHome(): easy programmatic navigation




              7
The use of facesContext
●   getResponseWriter() / getResponseStream(): send your own output to
    the browser (like Print in LotusScript)
●   getExternalContext(): direct access to the servlet
      ▬ getRequest()
      ▬ GetResponse()
●   You need to understand the difference between the ResponseWriter
    and ResponseStream
      ▬ Writer doesn't take binary data
      ▬ Stream excludes Writer
      ▬ Can only use one per request
JavaScript Closures
●   An object returned from a function has access to variables defined within
    that function
      ▬ Includes arguments passed to the function
●   This allows for OOP constructs in JavaScript objects
      ▬ Private properties
      ▬ Private functions
      ▬ Inheritance without .prototype




              9
Take advantage of XPages' JSF heritage
●   Java Objects at your disposal
     ▬  java.util: powerful storage and iteration
     ▬  java.net: easy access to remote data
     ▬  Core JSF packages and IBM's implementation
●   Get to the servlet
●   Write your own servlet (you are on your own here)




             10
Write agent Style code in XPages
●   Control the rendering
●   Get the output writer
●   Get the output stream (one of the two)
●   Use cases:
     ▬ Replace web agent (?OpenAgent)
     ▬ Output other formats (PDF, ODF)




             11
The use of scope
●   requestScope: storage for anything needed multiple times in the same
    HTTP request
●   viewScope: survives for the life of a page - including partial and full
    refresh events
●   sessionScope: "shopping cart" storage - survives for the duration of a
    user's session, BUT can expire even if the user is still logged in (set in
    application properties to balance server performance with application
    performance)
●   applicationScope: storage shared among all users of the NSF - any data
    that numerous users are likely to need but shouldn't be queried on every
    request




              12
Anti-Pattern: What always goes wrong
●   The network is fast and reliable
●   Configuration parameters are retrieved through @DBLookup
●   Connect to JDBC without a session pool
●   Use data binding when you access data, not anything else




             13
Everybody's favorite objects
●   UI Elements
     ▬  Create a control programmatically
     ▬  Update control properties via event handlers
●   DOMUtil
     ▬  Parse DXL and other XML
●   cookie
     ▬  Set and read cookies using .put() and .get()




             14
Error Handling
●   try/catch: provide individual operations that might fail a specific response
    to failure
●   Enable “Display default error page” during development and testing
●   Create custom error pages to display uncaught exceptions




              15
Debugging
●   print(): send a single String statement to server log and console
●   _dump(): send detailed info about any object to log and console




              16
Unit Tests
        ●   Courtesy of Lorcan McDonald (IBM Lab Dublin)
        ●   Available on OpenNTF
        ●   Enables Test Driven
            Development (get used to it)




http://openntf.org/internal/ontfcatalog.nsf/topicThread.xsp?action=openDocument&documentId=9C66A4F3854E61BE852575A1003C6CAD

                           17
Reaching out to Java
●   Put source into webcontent/source
●   Add directory to Java build path
●   Package name required
●   Define like a JavaScript variable:
    var xy = new com.acme.RoadRunner();
    xy.foolCoyote(“Meep Meep”);




            18
Managed Beans
●   Concept inherited from JSF underpinnings
●   Bean is described in XML declaration
●   Can be used in JavaScript expressions
●   Automatically loaded when needed
●   Bound to a specific scope
●   Take advantage of Java capabilities (e.g. Connection pooling, threading
    etc)




             19
Agenda
●   What exactly is Server Side Java Script (SSJS)

●   Common practices: pattern & anti-pattern

●   Code samples




             20
Application Chat
●   Application Context
●   Synchronized Access
●   Closure
●   Periodic partial refresh




              21
Shopping Cart
●   Session Context
●   Closure
●   Java integration




             22
Cached Search
●   Application Context
●   Managed Bean
●   Network handling




             23
Q&A




      24
Legal Disclaimer
  ●        © IBM Corporation 2009. All Rights Reserved.


The information contained in this publication is provided for informational purposes only. While efforts were made to verify the completeness and accuracy of the information contained in this publication, it is provided AS IS
without warranty of any kind, express or implied. In addition, this information is based on IBM’s current product plans and strategy, which are subject to change by IBM without notice. IBM shall not be responsible for any
damages arising out of the use of, or otherwise related to, this publication or any other materials. Nothing contained in this publication is intended to, nor shall have the effect of, creating any warranties or representations
from IBM or its suppliers or licensors, or altering the terms and conditions of the applicable license agreement governing the use of IBM software.


References in this presentation to IBM products, programs, or services do not imply that they will be available in all countries in which IBM operates. Product release dates and/or capabilities referenced in this presentation
may change at any time at IBM’s sole discretion based on market opportunities or other factors, and are not intended to be a commitment to future product or feature availability in any way. Nothing contained in these
materials is intended to, nor shall have the effect of, stating or implying that any activities undertaken by you will result in any specific sales, revenue growth or other results.


IBM, the IBM logo, Lotus, and Lotusphere are trademarks of International Business Machines Corporation in the United States, other countries, or both.

Java and all Java-based trademarks are trademarks of Sun Microsystems, Inc. in the United States, other countries, or both.

All references to ACME refer to a fictitious company and are used for illustration purposes only.




                                         25

Mais conteúdo relacionado

Mais procurados

AD201 - IBM Domino Application Development Today And Tomorrow
AD201 - IBM Domino Application Development Today And TomorrowAD201 - IBM Domino Application Development Today And Tomorrow
AD201 - IBM Domino Application Development Today And Tomorrowpjanzen11
 
Take Your XPages Development to the Next Level
Take Your XPages Development to the Next LevelTake Your XPages Development to the Next Level
Take Your XPages Development to the Next Levelbalassaitis
 
Diff between win runner vs and qtp
Diff between win runner vs and qtpDiff between win runner vs and qtp
Diff between win runner vs and qtpRamu Palanki
 
AD106 - IBM Lotus Domino XPages anywhere - Write them once, See them Everywhere
AD106 - IBM Lotus Domino XPages anywhere - Write them once, See them EverywhereAD106 - IBM Lotus Domino XPages anywhere - Write them once, See them Everywhere
AD106 - IBM Lotus Domino XPages anywhere - Write them once, See them EverywhereStephan H. Wissel
 
DanNotes XPages Mobile Controls
DanNotes XPages Mobile ControlsDanNotes XPages Mobile Controls
DanNotes XPages Mobile ControlsPaul Withers
 
Connect 2014 AD209 - Making Your Development Team More Productive With IBM Do...
Connect 2014 AD209 - Making Your Development Team More Productive With IBM Do...Connect 2014 AD209 - Making Your Development Team More Productive With IBM Do...
Connect 2014 AD209 - Making Your Development Team More Productive With IBM Do...marjoramg
 
From XPages Hero to OSGi Guru: Taking the Scary out of Building Extension Lib...
From XPages Hero to OSGi Guru: Taking the Scary out of Building Extension Lib...From XPages Hero to OSGi Guru: Taking the Scary out of Building Extension Lib...
From XPages Hero to OSGi Guru: Taking the Scary out of Building Extension Lib...Paul Withers
 
An Introduction To Model  View  Controller In XPages
An Introduction To Model  View  Controller In XPagesAn Introduction To Model  View  Controller In XPages
An Introduction To Model  View  Controller In XPagesUlrich Krause
 
A Notes Developer's Journey into Java
A Notes Developer's Journey into JavaA Notes Developer's Journey into Java
A Notes Developer's Journey into JavaTeamstudio
 
Sun Java EE 6 Overview
Sun Java EE 6 OverviewSun Java EE 6 Overview
Sun Java EE 6 Overviewsbobde
 
JMP401: Masterclass: XPages Scalability
JMP401: Masterclass: XPages ScalabilityJMP401: Masterclass: XPages Scalability
JMP401: Masterclass: XPages ScalabilityTony McGuckin
 
Workflow Management with Espresso Workflow
Workflow Management with Espresso WorkflowWorkflow Management with Espresso Workflow
Workflow Management with Espresso WorkflowRolf Kremer
 
Java EE 6 workshop at Dallas Tech Fest 2011
Java EE 6 workshop at Dallas Tech Fest 2011Java EE 6 workshop at Dallas Tech Fest 2011
Java EE 6 workshop at Dallas Tech Fest 2011Arun Gupta
 
Java EE6 CodeCamp16 oct 2010
Java EE6 CodeCamp16 oct 2010Java EE6 CodeCamp16 oct 2010
Java EE6 CodeCamp16 oct 2010Codecamp Romania
 
What’s new for Developers in IBM Domino & Domino Designer 9.0.1
What’s new for Developers in IBM Domino & Domino Designer 9.0.1What’s new for Developers in IBM Domino & Domino Designer 9.0.1
What’s new for Developers in IBM Domino & Domino Designer 9.0.1IBM Connections Developers
 
AD107 Microsoft SharePoint meets IBM Lotus Domino
AD107 Microsoft SharePoint meets IBM Lotus DominoAD107 Microsoft SharePoint meets IBM Lotus Domino
AD107 Microsoft SharePoint meets IBM Lotus DominoStephan H. Wissel
 
Java EE 6 Component Model Explained
Java EE 6 Component Model Explained Java EE 6 Component Model Explained
Java EE 6 Component Model Explained Shreedhar Ganapathy
 

Mais procurados (20)

AD201 - IBM Domino Application Development Today And Tomorrow
AD201 - IBM Domino Application Development Today And TomorrowAD201 - IBM Domino Application Development Today And Tomorrow
AD201 - IBM Domino Application Development Today And Tomorrow
 
Take Your XPages Development to the Next Level
Take Your XPages Development to the Next LevelTake Your XPages Development to the Next Level
Take Your XPages Development to the Next Level
 
Diff between win runner vs and qtp
Diff between win runner vs and qtpDiff between win runner vs and qtp
Diff between win runner vs and qtp
 
AD106 - IBM Lotus Domino XPages anywhere - Write them once, See them Everywhere
AD106 - IBM Lotus Domino XPages anywhere - Write them once, See them EverywhereAD106 - IBM Lotus Domino XPages anywhere - Write them once, See them Everywhere
AD106 - IBM Lotus Domino XPages anywhere - Write them once, See them Everywhere
 
DanNotes XPages Mobile Controls
DanNotes XPages Mobile ControlsDanNotes XPages Mobile Controls
DanNotes XPages Mobile Controls
 
Connect 2014 AD209 - Making Your Development Team More Productive With IBM Do...
Connect 2014 AD209 - Making Your Development Team More Productive With IBM Do...Connect 2014 AD209 - Making Your Development Team More Productive With IBM Do...
Connect 2014 AD209 - Making Your Development Team More Productive With IBM Do...
 
From XPages Hero to OSGi Guru: Taking the Scary out of Building Extension Lib...
From XPages Hero to OSGi Guru: Taking the Scary out of Building Extension Lib...From XPages Hero to OSGi Guru: Taking the Scary out of Building Extension Lib...
From XPages Hero to OSGi Guru: Taking the Scary out of Building Extension Lib...
 
An Introduction To Model  View  Controller In XPages
An Introduction To Model  View  Controller In XPagesAn Introduction To Model  View  Controller In XPages
An Introduction To Model  View  Controller In XPages
 
A Notes Developer's Journey into Java
A Notes Developer's Journey into JavaA Notes Developer's Journey into Java
A Notes Developer's Journey into Java
 
Workflow for XPages
Workflow for XPagesWorkflow for XPages
Workflow for XPages
 
Java 7 workshop
Java 7 workshopJava 7 workshop
Java 7 workshop
 
Sun Java EE 6 Overview
Sun Java EE 6 OverviewSun Java EE 6 Overview
Sun Java EE 6 Overview
 
JMP401: Masterclass: XPages Scalability
JMP401: Masterclass: XPages ScalabilityJMP401: Masterclass: XPages Scalability
JMP401: Masterclass: XPages Scalability
 
Workflow Management with Espresso Workflow
Workflow Management with Espresso WorkflowWorkflow Management with Espresso Workflow
Workflow Management with Espresso Workflow
 
Java EE 6 workshop at Dallas Tech Fest 2011
Java EE 6 workshop at Dallas Tech Fest 2011Java EE 6 workshop at Dallas Tech Fest 2011
Java EE 6 workshop at Dallas Tech Fest 2011
 
Java EE6 CodeCamp16 oct 2010
Java EE6 CodeCamp16 oct 2010Java EE6 CodeCamp16 oct 2010
Java EE6 CodeCamp16 oct 2010
 
What’s new for Developers in IBM Domino & Domino Designer 9.0.1
What’s new for Developers in IBM Domino & Domino Designer 9.0.1What’s new for Developers in IBM Domino & Domino Designer 9.0.1
What’s new for Developers in IBM Domino & Domino Designer 9.0.1
 
AD107 Microsoft SharePoint meets IBM Lotus Domino
AD107 Microsoft SharePoint meets IBM Lotus DominoAD107 Microsoft SharePoint meets IBM Lotus Domino
AD107 Microsoft SharePoint meets IBM Lotus Domino
 
Java modularization
Java modularizationJava modularization
Java modularization
 
Java EE 6 Component Model Explained
Java EE 6 Component Model Explained Java EE 6 Component Model Explained
Java EE 6 Component Model Explained
 

Semelhante a AD111 -- Harnessing the Power of Server-Side JavaScript and Other Advanced XPage Techniques

XPages Blast - ILUG 2010
XPages Blast - ILUG 2010XPages Blast - ILUG 2010
XPages Blast - ILUG 2010Tim Clark
 
IBM Lotusphere 2011 AD306 - IBM Lotus Sametime Proxy: A Collaborative Recipe...
IBM Lotusphere 2011 AD306 - IBM Lotus Sametime Proxy:  A Collaborative Recipe...IBM Lotusphere 2011 AD306 - IBM Lotus Sametime Proxy:  A Collaborative Recipe...
IBM Lotusphere 2011 AD306 - IBM Lotus Sametime Proxy: A Collaborative Recipe...William Holmes
 
Intro to XPages for Administrators (DanNotes, November 28, 2012)
Intro to XPages for Administrators (DanNotes, November 28, 2012)Intro to XPages for Administrators (DanNotes, November 28, 2012)
Intro to XPages for Administrators (DanNotes, November 28, 2012)Per Henrik Lausten
 
Ad109 - XPages Performance and Scalability
Ad109 - XPages Performance and ScalabilityAd109 - XPages Performance and Scalability
Ad109 - XPages Performance and Scalabilityddrschiw
 
JSFest 2019: Technology agnostic microservices at SPA frontend
JSFest 2019: Technology agnostic microservices at SPA frontendJSFest 2019: Technology agnostic microservices at SPA frontend
JSFest 2019: Technology agnostic microservices at SPA frontendVlad Fedosov
 
How to generate customized java 8 code from your database
How to generate customized java 8 code from your databaseHow to generate customized java 8 code from your database
How to generate customized java 8 code from your databaseSpeedment, Inc.
 
Silicon Valley JUG - How to generate customized java 8 code from your database
Silicon Valley JUG - How to generate customized java 8 code from your databaseSilicon Valley JUG - How to generate customized java 8 code from your database
Silicon Valley JUG - How to generate customized java 8 code from your databaseSpeedment, Inc.
 
How to JavaOne 2016 - Generate Customized Java 8 Code from Your Database [TUT...
How to JavaOne 2016 - Generate Customized Java 8 Code from Your Database [TUT...How to JavaOne 2016 - Generate Customized Java 8 Code from Your Database [TUT...
How to JavaOne 2016 - Generate Customized Java 8 Code from Your Database [TUT...Malin Weiss
 
JavaOne2016 - How to Generate Customized Java 8 Code from Your Database [TUT4...
JavaOne2016 - How to Generate Customized Java 8 Code from Your Database [TUT4...JavaOne2016 - How to Generate Customized Java 8 Code from Your Database [TUT4...
JavaOne2016 - How to Generate Customized Java 8 Code from Your Database [TUT4...Speedment, Inc.
 
AngularJS 1.x - your first application (problems and solutions)
AngularJS 1.x - your first application (problems and solutions)AngularJS 1.x - your first application (problems and solutions)
AngularJS 1.x - your first application (problems and solutions)Igor Talevski
 
React native introduction (Mobile Warsaw)
React native introduction (Mobile Warsaw)React native introduction (Mobile Warsaw)
React native introduction (Mobile Warsaw)Jarek Potiuk
 
JavascriptMVC: Another choice of web framework
JavascriptMVC: Another choice of web frameworkJavascriptMVC: Another choice of web framework
JavascriptMVC: Another choice of web frameworkAlive Kuo
 
JS Fest 2019/Autumn. Влад Федосов. Technology agnostic microservices at SPA f...
JS Fest 2019/Autumn. Влад Федосов. Technology agnostic microservices at SPA f...JS Fest 2019/Autumn. Влад Федосов. Technology agnostic microservices at SPA f...
JS Fest 2019/Autumn. Влад Федосов. Technology agnostic microservices at SPA f...JSFestUA
 
Spring Update | July 2023
Spring Update | July 2023Spring Update | July 2023
Spring Update | July 2023VMware Tanzu
 
Real World Java Compatibility
Real World Java CompatibilityReal World Java Compatibility
Real World Java CompatibilityTim Ellison
 
Graal Tutorial at CGO 2015 by Christian Wimmer
Graal Tutorial at CGO 2015 by Christian WimmerGraal Tutorial at CGO 2015 by Christian Wimmer
Graal Tutorial at CGO 2015 by Christian WimmerThomas Wuerthinger
 

Semelhante a AD111 -- Harnessing the Power of Server-Side JavaScript and Other Advanced XPage Techniques (20)

Grails 101
Grails 101Grails 101
Grails 101
 
XPages Blast - ILUG 2010
XPages Blast - ILUG 2010XPages Blast - ILUG 2010
XPages Blast - ILUG 2010
 
IBM Lotusphere 2011 AD306 - IBM Lotus Sametime Proxy: A Collaborative Recipe...
IBM Lotusphere 2011 AD306 - IBM Lotus Sametime Proxy:  A Collaborative Recipe...IBM Lotusphere 2011 AD306 - IBM Lotus Sametime Proxy:  A Collaborative Recipe...
IBM Lotusphere 2011 AD306 - IBM Lotus Sametime Proxy: A Collaborative Recipe...
 
Intro to XPages for Administrators (DanNotes, November 28, 2012)
Intro to XPages for Administrators (DanNotes, November 28, 2012)Intro to XPages for Administrators (DanNotes, November 28, 2012)
Intro to XPages for Administrators (DanNotes, November 28, 2012)
 
Ad109 - XPages Performance and Scalability
Ad109 - XPages Performance and ScalabilityAd109 - XPages Performance and Scalability
Ad109 - XPages Performance and Scalability
 
JavaFX in Action Part I
JavaFX in Action Part IJavaFX in Action Part I
JavaFX in Action Part I
 
JSFest 2019: Technology agnostic microservices at SPA frontend
JSFest 2019: Technology agnostic microservices at SPA frontendJSFest 2019: Technology agnostic microservices at SPA frontend
JSFest 2019: Technology agnostic microservices at SPA frontend
 
How to generate customized java 8 code from your database
How to generate customized java 8 code from your databaseHow to generate customized java 8 code from your database
How to generate customized java 8 code from your database
 
Silicon Valley JUG - How to generate customized java 8 code from your database
Silicon Valley JUG - How to generate customized java 8 code from your databaseSilicon Valley JUG - How to generate customized java 8 code from your database
Silicon Valley JUG - How to generate customized java 8 code from your database
 
How to JavaOne 2016 - Generate Customized Java 8 Code from Your Database [TUT...
How to JavaOne 2016 - Generate Customized Java 8 Code from Your Database [TUT...How to JavaOne 2016 - Generate Customized Java 8 Code from Your Database [TUT...
How to JavaOne 2016 - Generate Customized Java 8 Code from Your Database [TUT...
 
JavaOne2016 - How to Generate Customized Java 8 Code from Your Database [TUT4...
JavaOne2016 - How to Generate Customized Java 8 Code from Your Database [TUT4...JavaOne2016 - How to Generate Customized Java 8 Code from Your Database [TUT4...
JavaOne2016 - How to Generate Customized Java 8 Code from Your Database [TUT4...
 
AngularJS 1.x - your first application (problems and solutions)
AngularJS 1.x - your first application (problems and solutions)AngularJS 1.x - your first application (problems and solutions)
AngularJS 1.x - your first application (problems and solutions)
 
React native introduction (Mobile Warsaw)
React native introduction (Mobile Warsaw)React native introduction (Mobile Warsaw)
React native introduction (Mobile Warsaw)
 
JavascriptMVC: Another choice of web framework
JavascriptMVC: Another choice of web frameworkJavascriptMVC: Another choice of web framework
JavascriptMVC: Another choice of web framework
 
Nodejs
NodejsNodejs
Nodejs
 
JS Fest 2019/Autumn. Влад Федосов. Technology agnostic microservices at SPA f...
JS Fest 2019/Autumn. Влад Федосов. Technology agnostic microservices at SPA f...JS Fest 2019/Autumn. Влад Федосов. Technology agnostic microservices at SPA f...
JS Fest 2019/Autumn. Влад Федосов. Technology agnostic microservices at SPA f...
 
Spring Update | July 2023
Spring Update | July 2023Spring Update | July 2023
Spring Update | July 2023
 
Real World Java Compatibility
Real World Java CompatibilityReal World Java Compatibility
Real World Java Compatibility
 
Graal Tutorial at CGO 2015 by Christian Wimmer
Graal Tutorial at CGO 2015 by Christian WimmerGraal Tutorial at CGO 2015 by Christian Wimmer
Graal Tutorial at CGO 2015 by Christian Wimmer
 
Treinamento frontend
Treinamento frontendTreinamento frontend
Treinamento frontend
 

Mais de ddrschiw

Traveler preview guide
Traveler preview guideTraveler preview guide
Traveler preview guideddrschiw
 
Traveler preview guide
Traveler preview guideTraveler preview guide
Traveler preview guideddrschiw
 
AD114 -- Beyond the Mobile Browser? Building Rich Mobile Applications for IBM...
AD114 -- Beyond the Mobile Browser? Building Rich Mobile Applications for IBM...AD114 -- Beyond the Mobile Browser? Building Rich Mobile Applications for IBM...
AD114 -- Beyond the Mobile Browser? Building Rich Mobile Applications for IBM...ddrschiw
 
Ad107 - Enhance Your Existing Applications with XPages
Ad107 - Enhance Your Existing Applications with XPagesAd107 - Enhance Your Existing Applications with XPages
Ad107 - Enhance Your Existing Applications with XPagesddrschiw
 
Ad101 - IBM Lotus Domino Designer: Full Speed Ahead!
Ad101 - IBM Lotus Domino Designer: Full Speed Ahead!Ad101 - IBM Lotus Domino Designer: Full Speed Ahead!
Ad101 - IBM Lotus Domino Designer: Full Speed Ahead!ddrschiw
 
LotusSphere 2010 - Leveraging IBM Lotus® Forms™ with IBM WebSphere® Process S...
LotusSphere 2010 - Leveraging IBM Lotus® Forms™ with IBM WebSphere® Process S...LotusSphere 2010 - Leveraging IBM Lotus® Forms™ with IBM WebSphere® Process S...
LotusSphere 2010 - Leveraging IBM Lotus® Forms™ with IBM WebSphere® Process S...ddrschiw
 
Webform Server 351 Architecture and Overview
Webform Server 351 Architecture and OverviewWebform Server 351 Architecture and Overview
Webform Server 351 Architecture and Overviewddrschiw
 
Introduction To IBM Lotus Forms Viewer
Introduction To IBM Lotus Forms ViewerIntroduction To IBM Lotus Forms Viewer
Introduction To IBM Lotus Forms Viewerddrschiw
 
XPages Workshop: Concepts And Exercises
XPages Workshop:   Concepts And ExercisesXPages Workshop:   Concepts And Exercises
XPages Workshop: Concepts And Exercisesddrschiw
 
Building A Cool Web 2.0 Application With XPages
Building A Cool Web 2.0 Application With XPagesBuilding A Cool Web 2.0 Application With XPages
Building A Cool Web 2.0 Application With XPagesddrschiw
 
Domino X Pages
Domino X PagesDomino X Pages
Domino X Pagesddrschiw
 
Lotus Forms Webform Server 3.0 Overview & Architecture
Lotus Forms Webform Server 3.0 Overview & ArchitectureLotus Forms Webform Server 3.0 Overview & Architecture
Lotus Forms Webform Server 3.0 Overview & Architectureddrschiw
 
Lotus Forms Webform Server 3.0 Overview & Architecture
Lotus Forms Webform Server 3.0 Overview & ArchitectureLotus Forms Webform Server 3.0 Overview & Architecture
Lotus Forms Webform Server 3.0 Overview & Architectureddrschiw
 

Mais de ddrschiw (15)

Traveler preview guide
Traveler preview guideTraveler preview guide
Traveler preview guide
 
Traveler preview guide
Traveler preview guideTraveler preview guide
Traveler preview guide
 
Ad111
Ad111Ad111
Ad111
 
AD114 -- Beyond the Mobile Browser? Building Rich Mobile Applications for IBM...
AD114 -- Beyond the Mobile Browser? Building Rich Mobile Applications for IBM...AD114 -- Beyond the Mobile Browser? Building Rich Mobile Applications for IBM...
AD114 -- Beyond the Mobile Browser? Building Rich Mobile Applications for IBM...
 
Ad107 - Enhance Your Existing Applications with XPages
Ad107 - Enhance Your Existing Applications with XPagesAd107 - Enhance Your Existing Applications with XPages
Ad107 - Enhance Your Existing Applications with XPages
 
Ad101 - IBM Lotus Domino Designer: Full Speed Ahead!
Ad101 - IBM Lotus Domino Designer: Full Speed Ahead!Ad101 - IBM Lotus Domino Designer: Full Speed Ahead!
Ad101 - IBM Lotus Domino Designer: Full Speed Ahead!
 
LotusSphere 2010 - Leveraging IBM Lotus® Forms™ with IBM WebSphere® Process S...
LotusSphere 2010 - Leveraging IBM Lotus® Forms™ with IBM WebSphere® Process S...LotusSphere 2010 - Leveraging IBM Lotus® Forms™ with IBM WebSphere® Process S...
LotusSphere 2010 - Leveraging IBM Lotus® Forms™ with IBM WebSphere® Process S...
 
Webform Server 351 Architecture and Overview
Webform Server 351 Architecture and OverviewWebform Server 351 Architecture and Overview
Webform Server 351 Architecture and Overview
 
Introduction To IBM Lotus Forms Viewer
Introduction To IBM Lotus Forms ViewerIntroduction To IBM Lotus Forms Viewer
Introduction To IBM Lotus Forms Viewer
 
XPages Workshop: Concepts And Exercises
XPages Workshop:   Concepts And ExercisesXPages Workshop:   Concepts And Exercises
XPages Workshop: Concepts And Exercises
 
Building A Cool Web 2.0 Application With XPages
Building A Cool Web 2.0 Application With XPagesBuilding A Cool Web 2.0 Application With XPages
Building A Cool Web 2.0 Application With XPages
 
Domino X Pages
Domino X PagesDomino X Pages
Domino X Pages
 
Mlb Demo1
Mlb Demo1Mlb Demo1
Mlb Demo1
 
Lotus Forms Webform Server 3.0 Overview & Architecture
Lotus Forms Webform Server 3.0 Overview & ArchitectureLotus Forms Webform Server 3.0 Overview & Architecture
Lotus Forms Webform Server 3.0 Overview & Architecture
 
Lotus Forms Webform Server 3.0 Overview & Architecture
Lotus Forms Webform Server 3.0 Overview & ArchitectureLotus Forms Webform Server 3.0 Overview & Architecture
Lotus Forms Webform Server 3.0 Overview & Architecture
 

Último

IPL 2024 Fixture List Match Dates, Participating Teams, Stadiums, Venues, and...
IPL 2024 Fixture List Match Dates, Participating Teams, Stadiums, Venues, and...IPL 2024 Fixture List Match Dates, Participating Teams, Stadiums, Venues, and...
IPL 2024 Fixture List Match Dates, Participating Teams, Stadiums, Venues, and...Sportsnewstec24
 
Instruction Manual | Nightforce CFS 6-36x50 F1 | Optics Trade
Instruction Manual | Nightforce CFS 6-36x50 F1 | Optics TradeInstruction Manual | Nightforce CFS 6-36x50 F1 | Optics Trade
Instruction Manual | Nightforce CFS 6-36x50 F1 | Optics TradeOptics-Trade
 
TheOrmaxSportsAudienceReport2024-MediaHighlights.pdf
TheOrmaxSportsAudienceReport2024-MediaHighlights.pdfTheOrmaxSportsAudienceReport2024-MediaHighlights.pdf
TheOrmaxSportsAudienceReport2024-MediaHighlights.pdfSocial Samosa
 
Nicholas Kodomichalos: A Tale of Sporting Brilliance with Nick Kodos
Nicholas Kodomichalos: A Tale of Sporting Brilliance with Nick KodosNicholas Kodomichalos: A Tale of Sporting Brilliance with Nick Kodos
Nicholas Kodomichalos: A Tale of Sporting Brilliance with Nick KodosNicholasKodomichalos1
 
NCAA Tournament Free Pick, March 22 From Top March Madness Sports Handicapper
NCAA Tournament Free Pick, March 22 From  Top March Madness Sports HandicapperNCAA Tournament Free Pick, March 22 From  Top March Madness Sports Handicapper
NCAA Tournament Free Pick, March 22 From Top March Madness Sports HandicapperJoe Duffy
 
Kobe Bryant, The story of the "Black Mamba"
Kobe Bryant, The story of the "Black Mamba"Kobe Bryant, The story of the "Black Mamba"
Kobe Bryant, The story of the "Black Mamba"bmfcavalchini
 
Changing mindsets, rebuilding lives: Celebrating 25 years of First World Cup ...
Changing mindsets, rebuilding lives: Celebrating 25 years of First World Cup ...Changing mindsets, rebuilding lives: Celebrating 25 years of First World Cup ...
Changing mindsets, rebuilding lives: Celebrating 25 years of First World Cup ...mxmindia
 
Changing mindsets, rebuilding lives: Celebrating 25 years of First World Cup ...
Changing mindsets, rebuilding lives: Celebrating 25 years of First World Cup ...Changing mindsets, rebuilding lives: Celebrating 25 years of First World Cup ...
Changing mindsets, rebuilding lives: Celebrating 25 years of First World Cup ...mxmindia
 
Euro 2024 Serbia's Return to the European Championship.docx
Euro 2024 Serbia's Return to the European Championship.docxEuro 2024 Serbia's Return to the European Championship.docx
Euro 2024 Serbia's Return to the European Championship.docxEticketing.co
 

Último (9)

IPL 2024 Fixture List Match Dates, Participating Teams, Stadiums, Venues, and...
IPL 2024 Fixture List Match Dates, Participating Teams, Stadiums, Venues, and...IPL 2024 Fixture List Match Dates, Participating Teams, Stadiums, Venues, and...
IPL 2024 Fixture List Match Dates, Participating Teams, Stadiums, Venues, and...
 
Instruction Manual | Nightforce CFS 6-36x50 F1 | Optics Trade
Instruction Manual | Nightforce CFS 6-36x50 F1 | Optics TradeInstruction Manual | Nightforce CFS 6-36x50 F1 | Optics Trade
Instruction Manual | Nightforce CFS 6-36x50 F1 | Optics Trade
 
TheOrmaxSportsAudienceReport2024-MediaHighlights.pdf
TheOrmaxSportsAudienceReport2024-MediaHighlights.pdfTheOrmaxSportsAudienceReport2024-MediaHighlights.pdf
TheOrmaxSportsAudienceReport2024-MediaHighlights.pdf
 
Nicholas Kodomichalos: A Tale of Sporting Brilliance with Nick Kodos
Nicholas Kodomichalos: A Tale of Sporting Brilliance with Nick KodosNicholas Kodomichalos: A Tale of Sporting Brilliance with Nick Kodos
Nicholas Kodomichalos: A Tale of Sporting Brilliance with Nick Kodos
 
NCAA Tournament Free Pick, March 22 From Top March Madness Sports Handicapper
NCAA Tournament Free Pick, March 22 From  Top March Madness Sports HandicapperNCAA Tournament Free Pick, March 22 From  Top March Madness Sports Handicapper
NCAA Tournament Free Pick, March 22 From Top March Madness Sports Handicapper
 
Kobe Bryant, The story of the "Black Mamba"
Kobe Bryant, The story of the "Black Mamba"Kobe Bryant, The story of the "Black Mamba"
Kobe Bryant, The story of the "Black Mamba"
 
Changing mindsets, rebuilding lives: Celebrating 25 years of First World Cup ...
Changing mindsets, rebuilding lives: Celebrating 25 years of First World Cup ...Changing mindsets, rebuilding lives: Celebrating 25 years of First World Cup ...
Changing mindsets, rebuilding lives: Celebrating 25 years of First World Cup ...
 
Changing mindsets, rebuilding lives: Celebrating 25 years of First World Cup ...
Changing mindsets, rebuilding lives: Celebrating 25 years of First World Cup ...Changing mindsets, rebuilding lives: Celebrating 25 years of First World Cup ...
Changing mindsets, rebuilding lives: Celebrating 25 years of First World Cup ...
 
Euro 2024 Serbia's Return to the European Championship.docx
Euro 2024 Serbia's Return to the European Championship.docxEuro 2024 Serbia's Return to the European Championship.docx
Euro 2024 Serbia's Return to the European Championship.docx
 

AD111 -- Harnessing the Power of Server-Side JavaScript and Other Advanced XPage Techniques

  • 1. AD111 Harnessing the Power of Server-Side JavaScript and Other Advanced XPage Techniques Tim Tripcony | GROUP Experts - XMage Stephan H. Wissel | IBM - Lotus Technology & Productivity Advisor
  • 2. Agenda ● What exactly is Server Side Java Script (SSJS) ● Common practices: pattern & anti-pattern ● Code samples The REAL Agenda: code, code, code 2
  • 3. Server-side JavaScript is JavaScript ● all ECMAScript 3 keywords, operators and syntax still apply ▬ var myNumber = 0; ▬ var myArray = [ ]; // preferred over new Array(); ▬ var myObject = { }; // preferred over new Object(); ▬ function foo(){return "bar";} ▬ var depends = someBoolean ? "default" : "other"; ● ECMAScript scope rules apply, including closure ▬ More in the Demo section 3
  • 4. Server-side JavaScript is not JavaScript (1) ● browser-specific globals not available ▬ window ▬ document ▬ location ● Platform-specific globals and JSF-specifics ▬ session: current NotesSession ▬ database: current NotesDatabase, equal to session.getCurrentDatabase() ▬ param: URL parameters and post data ▬ context & facesContext: current state data and direct access to servlet engine 4
  • 5. Server-side JavaScript is not JavaScript (2) ● @functions (e.g. @UserName() ) ● scope variables ▬ requestScope ▬ viewScope ▬ sessionScope ▬ applicationScope ● Optional type declarations ● Seamless Java™ integration 5
  • 6. Agenda ● What exactly is Server Side Java Script (SSJS) ● Common practices: pattern & anti-pattern ● Code samples 6
  • 7. The use of context ● getUser(): access to name, roles, groups, and more ● getUrl(): no more String parsing to get query string parameters and other URL info ● getUserAgent(): server-side browser detection ● redirectToPage() / redirectToHome(): easy programmatic navigation 7
  • 8. The use of facesContext ● getResponseWriter() / getResponseStream(): send your own output to the browser (like Print in LotusScript) ● getExternalContext(): direct access to the servlet ▬ getRequest() ▬ GetResponse() ● You need to understand the difference between the ResponseWriter and ResponseStream ▬ Writer doesn't take binary data ▬ Stream excludes Writer ▬ Can only use one per request
  • 9. JavaScript Closures ● An object returned from a function has access to variables defined within that function ▬ Includes arguments passed to the function ● This allows for OOP constructs in JavaScript objects ▬ Private properties ▬ Private functions ▬ Inheritance without .prototype 9
  • 10. Take advantage of XPages' JSF heritage ● Java Objects at your disposal ▬ java.util: powerful storage and iteration ▬ java.net: easy access to remote data ▬ Core JSF packages and IBM's implementation ● Get to the servlet ● Write your own servlet (you are on your own here) 10
  • 11. Write agent Style code in XPages ● Control the rendering ● Get the output writer ● Get the output stream (one of the two) ● Use cases: ▬ Replace web agent (?OpenAgent) ▬ Output other formats (PDF, ODF) 11
  • 12. The use of scope ● requestScope: storage for anything needed multiple times in the same HTTP request ● viewScope: survives for the life of a page - including partial and full refresh events ● sessionScope: "shopping cart" storage - survives for the duration of a user's session, BUT can expire even if the user is still logged in (set in application properties to balance server performance with application performance) ● applicationScope: storage shared among all users of the NSF - any data that numerous users are likely to need but shouldn't be queried on every request 12
  • 13. Anti-Pattern: What always goes wrong ● The network is fast and reliable ● Configuration parameters are retrieved through @DBLookup ● Connect to JDBC without a session pool ● Use data binding when you access data, not anything else 13
  • 14. Everybody's favorite objects ● UI Elements ▬ Create a control programmatically ▬ Update control properties via event handlers ● DOMUtil ▬ Parse DXL and other XML ● cookie ▬ Set and read cookies using .put() and .get() 14
  • 15. Error Handling ● try/catch: provide individual operations that might fail a specific response to failure ● Enable “Display default error page” during development and testing ● Create custom error pages to display uncaught exceptions 15
  • 16. Debugging ● print(): send a single String statement to server log and console ● _dump(): send detailed info about any object to log and console 16
  • 17. Unit Tests ● Courtesy of Lorcan McDonald (IBM Lab Dublin) ● Available on OpenNTF ● Enables Test Driven Development (get used to it) http://openntf.org/internal/ontfcatalog.nsf/topicThread.xsp?action=openDocument&documentId=9C66A4F3854E61BE852575A1003C6CAD 17
  • 18. Reaching out to Java ● Put source into webcontent/source ● Add directory to Java build path ● Package name required ● Define like a JavaScript variable: var xy = new com.acme.RoadRunner(); xy.foolCoyote(“Meep Meep”); 18
  • 19. Managed Beans ● Concept inherited from JSF underpinnings ● Bean is described in XML declaration ● Can be used in JavaScript expressions ● Automatically loaded when needed ● Bound to a specific scope ● Take advantage of Java capabilities (e.g. Connection pooling, threading etc) 19
  • 20. Agenda ● What exactly is Server Side Java Script (SSJS) ● Common practices: pattern & anti-pattern ● Code samples 20
  • 21. Application Chat ● Application Context ● Synchronized Access ● Closure ● Periodic partial refresh 21
  • 22. Shopping Cart ● Session Context ● Closure ● Java integration 22
  • 23. Cached Search ● Application Context ● Managed Bean ● Network handling 23
  • 24. Q&A 24
  • 25. Legal Disclaimer ● © IBM Corporation 2009. All Rights Reserved. The information contained in this publication is provided for informational purposes only. While efforts were made to verify the completeness and accuracy of the information contained in this publication, it is provided AS IS without warranty of any kind, express or implied. In addition, this information is based on IBM’s current product plans and strategy, which are subject to change by IBM without notice. IBM shall not be responsible for any damages arising out of the use of, or otherwise related to, this publication or any other materials. Nothing contained in this publication is intended to, nor shall have the effect of, creating any warranties or representations from IBM or its suppliers or licensors, or altering the terms and conditions of the applicable license agreement governing the use of IBM software. References in this presentation to IBM products, programs, or services do not imply that they will be available in all countries in which IBM operates. Product release dates and/or capabilities referenced in this presentation may change at any time at IBM’s sole discretion based on market opportunities or other factors, and are not intended to be a commitment to future product or feature availability in any way. Nothing contained in these materials is intended to, nor shall have the effect of, stating or implying that any activities undertaken by you will result in any specific sales, revenue growth or other results. IBM, the IBM logo, Lotus, and Lotusphere are trademarks of International Business Machines Corporation in the United States, other countries, or both. Java and all Java-based trademarks are trademarks of Sun Microsystems, Inc. in the United States, other countries, or both. All references to ACME refer to a fictitious company and are used for illustration purposes only. 25