Sorry, comments for this entry are closed at this time.
-
-
Collaboration Today- New Documentation: Getting Started with the IBM Social Business Toolkit May 21, 2013 Niklas Heidloff
- Writing a single library for SSJS and CSJS validation – failed attempt #1 May 21, 2013 Mark Roden
- HAPPY!!! first full featured xPage application productive! May 21, 2013 Michael Zischeck
- How I Got XPiNC Run-On-Server With SSO Working May 21, 2013 Jesse Gallagher
- Fancy Dojo Widget: A Simple Image with Lazy-Loading Tooltip Content May 21, 2013 Arne Menting
- In the Future, CMO buys more than the CIO. 2017 right around the corner. Per Gartner. May 21, 2013 Sandy Carter
- Q&A from Optimize Your Mobile Delivery: Implementing IBM WebSphere Portal Responsive Web Design Features May 20, 2013 SocialBiz User Group
- Using JSF Framework Development Standards for XPages Project (Part One: Rethinking the Approach to XPage Development) May 20, 2013 Pipalia
- Automate the deployment of an IBM Worklight customization WAR file on IBM WebSphere Application Server May 20, 2013 IBM developerWorks
- Portico is a Social Business! May 20, 2013 Sandy Carter
Archive
-
Recent Posts
Recent Comments
- Sven Hasselbach on [FollowUp] jQuery Mobile Seems incompatible with XPages in Domino 9.0
- Stephan H. Wissel on Unable to open https sites with self signed certificate on IE 10
- René Winkelmeyer on Unable to open https sites with self signed certificate on IE 10
- Nick Wall on Unable to open https sites with self signed certificate on IE 10
- Luka on Aus Stolz die Insolvenz verschleppt ?
IdeaJam- Notes Client / Other: Give us @commands for splitting & joining table cells, and hence smarticons for the same
- Domino Administrator / Admin Tools: Please make the 'Database Users' view collapsible
- Notes Client / Mail: Have an option to copy an URL from an e-mail (or other)
- Domino Designer / : Integrated ICS OneUI Editor for Designer
- Domino Server / Other: System wide Web Query Save
- Domino Designer / : Add server and database as optional parameters for @GetProfileField and @SetProfileField
- Domino Designer / : Agent context menu in editor tab eg. "Run Agent"
Little Helpers
Planet Lotus- Notes Client / Other: Give us @commands for splitting & joining table cells, and hence smarticons for the same
- Domino Administrator / Admin Tools: Please make the 'Database Users' view collapsible
- Notes Client / Mail: Have an option to copy an URL from an e-mail (or other)
- Domino Designer / : Integrated ICS OneUI Editor for Designer
- Domino Server / Other: System wide Web Query Save
- Domino Designer / : Add server and database as optional parameters for @GetProfileField and @SetProfileField
- Domino Designer / : Agent context menu in editor tab eg. "Run Agent"
- Notes Client / Core/Frameworks (Incl. sidebar, rich text editor): Simplification of the preference menu
- Domino Administrator / Admin Tools: New toolbar widget "Console Command"
- Notes Client / Other: Simplify the use of notes plugin for web browsers
Last referers
Visitors Online
- 09 visitor(s) online
- powered by WassUp



2 Responses to “Use @Transform to build JSON and consume the output in an XAgent”
Setting NotesViewNavigator.VN_ENTRYOPT_NOCOLUMNVALUES as an entry option is not a good idea in this case. This lets the ViewNavigator only read a few ViewEntry properties and no column values. But in your loop, you read the column values via entry.getColumnValues(), which leads to another server transaction to fetch that missing data.
Setting nav.setEntryOptions(NotesViewNavigator.VN_ENTRYOPT_NOCOUNTDATA) should produce a better performance.
By Karsten Lehmann on Jun 1, 2012
Thx, Karsten. Updated the snippet
By Ulrich Krause on Jun 1, 2012