SlideShare a Scribd company logo
Ask the XPages Experts
Tweet about this event: #XPages
and mention us: @teamstudio @TLCCLTD
@MarkyRoden @Gidgerby @Eknori
April 10, 2014
@teamstudio
teamstudio.com
@TLCCLTD
tlcc.com
Courtney Carter
Inbound Marketing Specialist
Who We Are
• Our background is in creating tools for collaborative
computing in mid-size and large enterprises,
primarily for IBM Notes
• Easy-to-use tools for developers and administrators
• 2300+ active customers, 47 countries
• Offices in US, UK and Japan
• Entered mobile space in 2010 with Unplugged: easy
mobilization of Notes apps to Blackberry, Android
and iOS
Teamstudio Unplugged
• Your mobile Domino server: take your Notes apps
with you!
• End-users access Notes applications from mobile
devices whether online or offline
• Leverages existing skills and technology – XPages –
a replication model you already know
• Unplugged 3.0 recently released
Unplugged Templates
• Continuity – Mobile offline access to
BCM programs
• OneView Approvals – Expense
approvals; anywhere, anytime
• CustomerView – lightweight CRM
framework for field sales and field
service teams
• Contacts – customer information database
• Activities – customer activity log
• Media – mobile offline file storage and access
• Next Wireless Wednesdays webinar: Part 4 on May 7,
2014
o jQuery Mobile
• Next Teamstudio/TLCC webinar: May 13, 2014
o It’s Not Infernal: Dante’s Nine Circles of XPages Heaven
• Promotion:
o Demo the administration interface for Unplugged and be
entered to win a Galaxy Tab 3
Ask the Xpages Experts
1
#XPages
Your Hosts Today:
Howard Greenberg
TLCC
@TLCCLtd
Paul Della-Nebbia
TLCC
@PaulDN
TLCC Courses and Services
• The Leader in Notes and Domino Training since
1997
• Self Paced Distance Learning Courses for
Notes/Domino
– XPages, Development, and Administration (user too!)
• OnSite Private Classes
• Mentoring/Consulting Services
• Free demo courses
– Intro. To XPages Development
– Application Development 1
2
Upcoming and Recorded Webinars
3
Webinar Schedule
It’s Not Infernal: Dante’s Nine Circles of XPages Heaven – May 13th
Bootstrap4XPages – June 17th
www.tlcc.com/xpages-webinar
View Previous Webinars
(use url above)
Administrator Webinar
• Tell Your Admins!
• Webinar on April 24th
– Topic: Replication
– With Kim Greene and Ben Menesi
• Register at:
http://www.tlcc.com/admin/tlccsite.nsf/pages/admin-
webinar?opendocument
4
Asking Questions
5
Q & A at the end!
Type in your
questions as they
come up
Your Presenters Today:
#XPages 6
Jesse Gallagher
Recycle: When, where,
why, how and the
OpenNTF Domino API
Ulrich Krause
Using Dojo with Multi-Lingual
Apps
Mark Roden
"Speeding Up Designer"
@Gidgerby @Markyroden@Eknori
Ask the XPages Experts
FIRST MISCONCEPTION
• Recycling is not about memory management!
• It’s more akin to managing network connections
• It’s not uncommon to have both at once, but
that’s because programmers playing fast and
loose with in-scope objects may ALSO play fast
and loose with recycling
SECOND MISCONCEPTION
• It’s not just when writing Java!
• SSJS Domino objects are Java
Domino objects and have the same
rules about recycling
• Only LotusScript is safe. Still not
worth it
WHEN MUST YOU RECYCLE?
• Short answer: mostly when looping
• Normal Java contexts (namely XPages) will recycle the session
at the end of execution/request
• Recycling an object recycles all children, and everything is a
child of Session
• Looping can create thousands of objects
• Not just the documents/entries – a loop can spew Names,
DateTimes, and Items
• .replaceItemValue returns an Item!
SO BASICALLY
View tests = database.getView("Tests");
Document doc = tests.getFirstDocument();
while(doc != null) {
Vector<?> columnValues = doc.getColumnValues();
// do stuff here
doc.recycle(columnValues);
// as well as any DateTimes or Names otherwise created
Document tempDoc = doc;
doc = tests.getNextDocument(doc);
tempDoc.recycle();
}
OR, BETTER
• Use the OpenNTF API!
• You don’t have to recycle when using the API
• It hooks into Java’s normal garbage collection smarts to auto-recycle
for you
• Strike an entire category of bugs off of your problem list
• …plus all of the other stuff the API brings you!
• Documentation
• Helper classes
• New methods
• Standard Java interfaces
• Happiness
Ask The XPages Experts
Ulrich Krause, 10-Apr-2014
Using Dojo with Multi-Lingual Apps
Ask the XPages Experts
About: Ulrich Krause
Administrator /Developer since 1993
Senior Software Architect
Blog http://www.eknori.de
Twitter: @eknori
Mail: ulrich.krause@eknori.de
IBM Champion 2011/2012/2013/2014
Ask the XPages Experts
Agenda
A few words about multi-lingual applications
What is the issue with multi-lingual applications ?
How can we fix it ?
Ask the XPages Experts
A few words about multi-lingual applications
http://de.slideshare.net/kjbrown13/bp208-pdf
Ask the XPages Experts
What is the issue with multi-lingual applications ?
Language Settings can be:
• Fixed
• Depend on browser language
• User can choose a language
Ask the XPages Experts
How can we fix it
1
Speeding Up Domino Designer
Dr. Mark Roden
Senior Consultant, PSC Group LLC
10th April 2014
About Marky
• Over 16 years IBM Notes Domino® work
• Engagement manager at PSC Group
• Web Developer
• Project Leader
• Contact Information
• Blog: http://www.xomino.com
• Email: marky@xomino.com
• Twitter: @markyroden
• Skype: marky.roden
www.psclistens.com @pscgroup
2
Agenda
• Speeding up Domino Designer
• Don’t Use Resources
• Better Use of Custom Controls
• Use Resources !
3
Agenda
• Speeding Up Domino Designer?How can jQuery
plugins solve my requirements
4
Don’t use resources
• All resources are loaded into designer as you
work – slows you down
5
Better use of Custom Controls
• Code looks simple enough
6
Better use of Custom Controls
• Screen harder to work with
7
Better use of Custom Controls
• Use Design Definition to make XPage more
readable and prevent code being loaded and
rendered
8
Use Resources !
• Move your
resources to a
Custom Control
and using
Design
Definition
they will not be
loaded
9
• Questions and Answers
http://www.xomino.com
http://demo.xomino.com
twitter: @MarkyRoden
Questions????
7
Use the Q&A pane in WebEx
to ask questions
We will answer your questions
verbally
Upcoming Events:
4/23 Webcast on Mail Next with IBM
4/24 - Administration Webinar on Replication
5/7 – Wireless Wednesday with Teamstudio
5/13 – TLCC XPages Webinar
6/16-17 – Social Connections in Prague
8/27-29 – MWLug in Grand Rapids, MI
Question and Answer Time!
8
Teamstudio Questions?
contactus@teamstudio.com
877-228-6178
TLCC Questions?
howardg@tlcc.com paul@tlcc.com
888-241-8522 or 561-953-0095
Howard Greenberg
Courtney Carter
#XPages
@TLCCLtd
@Teamstudio
@PaulDN
Paul Della-NebbiaMark RodenUlrich KrauseJesse Gallagher

More Related Content

PDF
Ask the XPages Experts
PPTX
Untangling spring week11
PDF
MongoDB World 2019: A Tale of Two Use Cases: Innovative MongoDB Solutions for...
PDF
DOD Presentation V2
PPTX
Untangling spring week6
PDF
To infinity and Beyond with Plone 5!
PDF
Lesson 01
KEY
Screw HTML5, make cool shit with AIR
Ask the XPages Experts
Untangling spring week11
MongoDB World 2019: A Tale of Two Use Cases: Innovative MongoDB Solutions for...
DOD Presentation V2
Untangling spring week6
To infinity and Beyond with Plone 5!
Lesson 01
Screw HTML5, make cool shit with AIR

What's hot (19)

KEY
WordPress APIs
PPT
Reflections on a Year with Plone: Harvard School of Engineering and Applied S...
PPTX
Entwickler camp2012 make the impossible possible with x_pages
PPTX
Untangling fall2017 week1
PDF
The Dawson Way of Doing Things
PDF
Webinar: From Frustration to Fascination: Dissecting Replication
PPTX
First steps of programming with php
PDF
Firefox OS - HTML5 for a truly world-wide-web
PDF
May 2014-webinar
PDF
FuelPHP - a PHP HMVC Framework by silicongulf.com
PDF
Dig1108C Lesson 1 Fall 2014
PDF
Making the Most of Plone's Content Types - Dan Jacka
KEY
SydPHP May 2012 - Deployment
PPTX
Week 1 - Intro to the Internet
PDF
FuelPHP presentation - PeoplePerHour workshop
PDF
An introduction to Titanium
PDF
Making ES6 available to all with ChakraCore and Typescript
KEY
Writing Your First Plugin
PPTX
Content Management Systems and Refactoring - Drupal, WordPress and eZ Publish
WordPress APIs
Reflections on a Year with Plone: Harvard School of Engineering and Applied S...
Entwickler camp2012 make the impossible possible with x_pages
Untangling fall2017 week1
The Dawson Way of Doing Things
Webinar: From Frustration to Fascination: Dissecting Replication
First steps of programming with php
Firefox OS - HTML5 for a truly world-wide-web
May 2014-webinar
FuelPHP - a PHP HMVC Framework by silicongulf.com
Dig1108C Lesson 1 Fall 2014
Making the Most of Plone's Content Types - Dan Jacka
SydPHP May 2012 - Deployment
Week 1 - Intro to the Internet
FuelPHP presentation - PeoplePerHour workshop
An introduction to Titanium
Making ES6 available to all with ChakraCore and Typescript
Writing Your First Plugin
Content Management Systems and Refactoring - Drupal, WordPress and eZ Publish
Ad

Viewers also liked (20)

PPTX
Voor Frans Heitling
PPSX
Prayer sildeshow sonder intro show
PPTX
Facebook 101
PDF
Company Profile [Eng]
PPT
Review and planning meeting
PDF
SNS - CP June 2015 - July 27, 2015
PPTX
Proyecto institucional
PDF
Zak Swain: Visual Resume
PPT
Course 14 days-5-march-2013
PPTX
Tru presentation
DOC
L'incontro mancato
PDF
Blender exercisi 1
PDF
Malcolm x
PDF
Ressources électroniques en sciences - 2017
PPT
Paragould community gardens
PPT
Spectrum (1)
PPT
Respect your kids
PDF
Memes analóxicos
PPTX
El Octavo hábito (extracto adaptado)
Voor Frans Heitling
Prayer sildeshow sonder intro show
Facebook 101
Company Profile [Eng]
Review and planning meeting
SNS - CP June 2015 - July 27, 2015
Proyecto institucional
Zak Swain: Visual Resume
Course 14 days-5-march-2013
Tru presentation
L'incontro mancato
Blender exercisi 1
Malcolm x
Ressources électroniques en sciences - 2017
Paragould community gardens
Spectrum (1)
Respect your kids
Memes analóxicos
El Octavo hábito (extracto adaptado)
Ad

Similar to Ask the XPages Experts (20)

PDF
Transformations: Smart Application Migration to XPages
PPTX
14 Habits of Great SQL Developers
PDF
Java for XPages Development
PPTX
14 Habits of Great SQL Developers
PDF
Domino, Notes, and Verse - Where are We and Whats the Future?
PDF
XPages: You Know the 'How to'. Now Learn the 'Why and What'.
PDF
The XPages Mobile Controls: What's New in Notes 9.0.1
PDF
It's XP, Stupid
PDF
Optimus XPages Part 2: The Deep Dive
PDF
UX in Action: IBM Watson
PDF
Everything XControls
PPTX
SharePoint Saturday Cambridge 2017: Training your organisation on Office 365
PPTX
Lean-Agile Development with SharePoint - Bill Ayers
PDF
An Introduction to the Model-View-Controller Pattern
PPTX
It's XP Stupid (2019)
PPTX
Branding office 365 with front end tooling
PDF
DbOps, DevOps and Ops
PPTX
Dbops, DevOps & Ops, by Eduardo Piairo
PDF
Optimus XPages: An Explosion of Techniques and Best Practices
PPTX
Mark Andersen DFW DevOps Days 2017
Transformations: Smart Application Migration to XPages
14 Habits of Great SQL Developers
Java for XPages Development
14 Habits of Great SQL Developers
Domino, Notes, and Verse - Where are We and Whats the Future?
XPages: You Know the 'How to'. Now Learn the 'Why and What'.
The XPages Mobile Controls: What's New in Notes 9.0.1
It's XP, Stupid
Optimus XPages Part 2: The Deep Dive
UX in Action: IBM Watson
Everything XControls
SharePoint Saturday Cambridge 2017: Training your organisation on Office 365
Lean-Agile Development with SharePoint - Bill Ayers
An Introduction to the Model-View-Controller Pattern
It's XP Stupid (2019)
Branding office 365 with front end tooling
DbOps, DevOps and Ops
Dbops, DevOps & Ops, by Eduardo Piairo
Optimus XPages: An Explosion of Techniques and Best Practices
Mark Andersen DFW DevOps Days 2017

More from Teamstudio (20)

PDF
Search Terms and Design Complexity: A Tutorial Before Modernizing or Migrating
PDF
SmartNSF - 100% Smart - and in Color!
PDF
Back from the Dead: When Bad Code Kills a Good Server
PDF
Understand Usage with Detailed Access Information
PDF
IBM Presents the Notes Domino Roadmap and a Deep Dive into Feature Pack 8
PDF
Marty, You're Just Not Thinking Fourth Dimensionally
PDF
IBM Presents the IBM Notes and Domino Roadmap
PDF
XPages and jQuery DataTables: Simplifying View Creation while Maximizing Func...
PDF
Take a Trip Into the Forest: A Java Primer on Maps, Trees, and Collections
PDF
Expanding XPages with Bootstrap Plugins for Ultimate Usability
PDF
Getting Started with the OpenNTF Domino API
PPTX
Understand the True Business Usage of Notes Applications with Usage Auditor
PDF
Building Responsive Applications Using XPages
PDF
Using Cool New Frameworks in (Mobile) Domino Apps
PDF
Move Your XPages Applications to the Fast Lane
PDF
Mobilisez vos Applications IBM Notes avec Teamstudio Unplugged ! (French Lang...
PDF
App.Next - The Future of Domino Application Development
PDF
Presenting Data – An Alternative to the View Control
PDF
A Notes Developer's Journey into Java
PDF
Mobilize Your Business, Not Just an App
Search Terms and Design Complexity: A Tutorial Before Modernizing or Migrating
SmartNSF - 100% Smart - and in Color!
Back from the Dead: When Bad Code Kills a Good Server
Understand Usage with Detailed Access Information
IBM Presents the Notes Domino Roadmap and a Deep Dive into Feature Pack 8
Marty, You're Just Not Thinking Fourth Dimensionally
IBM Presents the IBM Notes and Domino Roadmap
XPages and jQuery DataTables: Simplifying View Creation while Maximizing Func...
Take a Trip Into the Forest: A Java Primer on Maps, Trees, and Collections
Expanding XPages with Bootstrap Plugins for Ultimate Usability
Getting Started with the OpenNTF Domino API
Understand the True Business Usage of Notes Applications with Usage Auditor
Building Responsive Applications Using XPages
Using Cool New Frameworks in (Mobile) Domino Apps
Move Your XPages Applications to the Fast Lane
Mobilisez vos Applications IBM Notes avec Teamstudio Unplugged ! (French Lang...
App.Next - The Future of Domino Application Development
Presenting Data – An Alternative to the View Control
A Notes Developer's Journey into Java
Mobilize Your Business, Not Just an App

Recently uploaded (20)

PPT
“AI and Expert System Decision Support & Business Intelligence Systems”
DOCX
The AUB Centre for AI in Media Proposal.docx
PDF
NewMind AI Weekly Chronicles - August'25 Week I
PDF
cuic standard and advanced reporting.pdf
PDF
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
PDF
Unlocking AI with Model Context Protocol (MCP)
PPTX
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
PDF
Modernizing your data center with Dell and AMD
PPTX
Understanding_Digital_Forensics_Presentation.pptx
PDF
Agricultural_Statistics_at_a_Glance_2022_0.pdf
PPTX
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
PDF
Encapsulation theory and applications.pdf
PDF
Advanced methodologies resolving dimensionality complications for autism neur...
PPTX
20250228 LYD VKU AI Blended-Learning.pptx
PDF
Mobile App Security Testing_ A Comprehensive Guide.pdf
PDF
Reach Out and Touch Someone: Haptics and Empathic Computing
PPTX
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
PDF
KodekX | Application Modernization Development
PDF
Spectral efficient network and resource selection model in 5G networks
PPT
Teaching material agriculture food technology
“AI and Expert System Decision Support & Business Intelligence Systems”
The AUB Centre for AI in Media Proposal.docx
NewMind AI Weekly Chronicles - August'25 Week I
cuic standard and advanced reporting.pdf
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
Unlocking AI with Model Context Protocol (MCP)
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
Modernizing your data center with Dell and AMD
Understanding_Digital_Forensics_Presentation.pptx
Agricultural_Statistics_at_a_Glance_2022_0.pdf
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
Encapsulation theory and applications.pdf
Advanced methodologies resolving dimensionality complications for autism neur...
20250228 LYD VKU AI Blended-Learning.pptx
Mobile App Security Testing_ A Comprehensive Guide.pdf
Reach Out and Touch Someone: Haptics and Empathic Computing
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
KodekX | Application Modernization Development
Spectral efficient network and resource selection model in 5G networks
Teaching material agriculture food technology

Ask the XPages Experts

  • 1. Ask the XPages Experts Tweet about this event: #XPages and mention us: @teamstudio @TLCCLTD @MarkyRoden @Gidgerby @Eknori April 10, 2014
  • 3. Who We Are • Our background is in creating tools for collaborative computing in mid-size and large enterprises, primarily for IBM Notes • Easy-to-use tools for developers and administrators • 2300+ active customers, 47 countries • Offices in US, UK and Japan • Entered mobile space in 2010 with Unplugged: easy mobilization of Notes apps to Blackberry, Android and iOS
  • 4. Teamstudio Unplugged • Your mobile Domino server: take your Notes apps with you! • End-users access Notes applications from mobile devices whether online or offline • Leverages existing skills and technology – XPages – a replication model you already know • Unplugged 3.0 recently released
  • 5. Unplugged Templates • Continuity – Mobile offline access to BCM programs • OneView Approvals – Expense approvals; anywhere, anytime • CustomerView – lightweight CRM framework for field sales and field service teams • Contacts – customer information database • Activities – customer activity log • Media – mobile offline file storage and access
  • 6. • Next Wireless Wednesdays webinar: Part 4 on May 7, 2014 o jQuery Mobile • Next Teamstudio/TLCC webinar: May 13, 2014 o It’s Not Infernal: Dante’s Nine Circles of XPages Heaven • Promotion: o Demo the administration interface for Unplugged and be entered to win a Galaxy Tab 3
  • 7. Ask the Xpages Experts 1 #XPages Your Hosts Today: Howard Greenberg TLCC @TLCCLtd Paul Della-Nebbia TLCC @PaulDN
  • 8. TLCC Courses and Services • The Leader in Notes and Domino Training since 1997 • Self Paced Distance Learning Courses for Notes/Domino – XPages, Development, and Administration (user too!) • OnSite Private Classes • Mentoring/Consulting Services • Free demo courses – Intro. To XPages Development – Application Development 1 2
  • 9. Upcoming and Recorded Webinars 3 Webinar Schedule It’s Not Infernal: Dante’s Nine Circles of XPages Heaven – May 13th Bootstrap4XPages – June 17th www.tlcc.com/xpages-webinar View Previous Webinars (use url above)
  • 10. Administrator Webinar • Tell Your Admins! • Webinar on April 24th – Topic: Replication – With Kim Greene and Ben Menesi • Register at: http://www.tlcc.com/admin/tlccsite.nsf/pages/admin- webinar?opendocument 4
  • 11. Asking Questions 5 Q & A at the end! Type in your questions as they come up
  • 12. Your Presenters Today: #XPages 6 Jesse Gallagher Recycle: When, where, why, how and the OpenNTF Domino API Ulrich Krause Using Dojo with Multi-Lingual Apps Mark Roden "Speeding Up Designer" @Gidgerby @Markyroden@Eknori
  • 14. FIRST MISCONCEPTION • Recycling is not about memory management! • It’s more akin to managing network connections • It’s not uncommon to have both at once, but that’s because programmers playing fast and loose with in-scope objects may ALSO play fast and loose with recycling
  • 15. SECOND MISCONCEPTION • It’s not just when writing Java! • SSJS Domino objects are Java Domino objects and have the same rules about recycling • Only LotusScript is safe. Still not worth it
  • 16. WHEN MUST YOU RECYCLE? • Short answer: mostly when looping • Normal Java contexts (namely XPages) will recycle the session at the end of execution/request • Recycling an object recycles all children, and everything is a child of Session • Looping can create thousands of objects • Not just the documents/entries – a loop can spew Names, DateTimes, and Items • .replaceItemValue returns an Item!
  • 17. SO BASICALLY View tests = database.getView("Tests"); Document doc = tests.getFirstDocument(); while(doc != null) { Vector<?> columnValues = doc.getColumnValues(); // do stuff here doc.recycle(columnValues); // as well as any DateTimes or Names otherwise created Document tempDoc = doc; doc = tests.getNextDocument(doc); tempDoc.recycle(); }
  • 18. OR, BETTER • Use the OpenNTF API! • You don’t have to recycle when using the API • It hooks into Java’s normal garbage collection smarts to auto-recycle for you • Strike an entire category of bugs off of your problem list • …plus all of the other stuff the API brings you! • Documentation • Helper classes • New methods • Standard Java interfaces • Happiness
  • 19. Ask The XPages Experts Ulrich Krause, 10-Apr-2014 Using Dojo with Multi-Lingual Apps
  • 20. Ask the XPages Experts About: Ulrich Krause Administrator /Developer since 1993 Senior Software Architect Blog http://www.eknori.de Twitter: @eknori Mail: ulrich.krause@eknori.de IBM Champion 2011/2012/2013/2014
  • 21. Ask the XPages Experts Agenda A few words about multi-lingual applications What is the issue with multi-lingual applications ? How can we fix it ?
  • 22. Ask the XPages Experts A few words about multi-lingual applications http://de.slideshare.net/kjbrown13/bp208-pdf
  • 23. Ask the XPages Experts What is the issue with multi-lingual applications ? Language Settings can be: • Fixed • Depend on browser language • User can choose a language
  • 24. Ask the XPages Experts How can we fix it
  • 25. 1 Speeding Up Domino Designer Dr. Mark Roden Senior Consultant, PSC Group LLC 10th April 2014
  • 26. About Marky • Over 16 years IBM Notes Domino® work • Engagement manager at PSC Group • Web Developer • Project Leader • Contact Information • Blog: http://www.xomino.com • Email: marky@xomino.com • Twitter: @markyroden • Skype: marky.roden www.psclistens.com @pscgroup 2
  • 27. Agenda • Speeding up Domino Designer • Don’t Use Resources • Better Use of Custom Controls • Use Resources ! 3
  • 28. Agenda • Speeding Up Domino Designer?How can jQuery plugins solve my requirements 4
  • 29. Don’t use resources • All resources are loaded into designer as you work – slows you down 5
  • 30. Better use of Custom Controls • Code looks simple enough 6
  • 31. Better use of Custom Controls • Screen harder to work with 7
  • 32. Better use of Custom Controls • Use Design Definition to make XPage more readable and prevent code being loaded and rendered 8
  • 33. Use Resources ! • Move your resources to a Custom Control and using Design Definition they will not be loaded 9
  • 34. • Questions and Answers http://www.xomino.com http://demo.xomino.com twitter: @MarkyRoden
  • 35. Questions???? 7 Use the Q&A pane in WebEx to ask questions We will answer your questions verbally
  • 36. Upcoming Events: 4/23 Webcast on Mail Next with IBM 4/24 - Administration Webinar on Replication 5/7 – Wireless Wednesday with Teamstudio 5/13 – TLCC XPages Webinar 6/16-17 – Social Connections in Prague 8/27-29 – MWLug in Grand Rapids, MI Question and Answer Time! 8 Teamstudio Questions? contactus@teamstudio.com 877-228-6178 TLCC Questions? howardg@tlcc.com paul@tlcc.com 888-241-8522 or 561-953-0095 Howard Greenberg Courtney Carter #XPages @TLCCLtd @Teamstudio @PaulDN Paul Della-NebbiaMark RodenUlrich KrauseJesse Gallagher