ad111

25
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

Upload: ddrschiw

Post on 30-Oct-2014

1.068 views

Category:

Technology


0 download

DESCRIPTION

 

TRANSCRIPT

Page 1: Ad111

AD111Harnessing the Power of Server-Side JavaScript and Other Advanced XPage TechniquesTim Tripcony | GROUP Experts - XMageStephan H. Wissel | IBM - Lotus Technology & Productivity Advisor

Page 2: Ad111

2

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

● Common practices: pattern & anti-pattern

● Code samples

The REAL Agenda: code, code, code

Page 3: Ad111

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

Page 4: Ad111

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

Page 5: Ad111

5

Server-side JavaScript is not JavaScript (2) ● @functions (e.g. @UserName() )● scope variables

▬ requestScope▬ viewScope▬ sessionScope▬ applicationScope

● Optional type declarations● Seamless Java™ integration

Page 6: Ad111

6

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

● Common practices: pattern & anti-pattern

● Code samples

Page 7: Ad111

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

Page 8: Ad111

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

Page 9: Ad111

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

Page 10: Ad111

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)

Page 11: Ad111

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)

Page 12: Ad111

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

Page 13: Ad111

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

Page 14: Ad111

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()

Page 15: Ad111

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

Page 16: Ad111

16

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

Page 17: Ad111

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

Page 18: Ad111

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”);

Page 19: Ad111

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)

Page 20: Ad111

20

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

● Common practices: pattern & anti-pattern

● Code samples

Page 21: Ad111

21

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

Page 22: Ad111

22

Shopping Cart● Session Context● Closure● Java integration

Page 23: Ad111

23

Cached Search● Application Context● Managed Bean● Network handling

Page 24: Ad111

24

Q&A

Page 25: Ad111

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.