Book Image

Domino 7 Application Development

Book Image

Domino 7 Application Development

Overview of this book

Written by Lotus insiders, the book provides a practical guide to developing applications making use of the important features and enhancements introduced in Notes/Domino 7. These experienced experts use their own experiences to map out the benefits you could gain, and the dangers you may face, as you develop Domino applications in your business. Written by specific experts, edited and overseen by Lotus content generator Dick McCarrick, this book is the definitive guide to developing Domino 7 applications. TECHNOLOGY Domino is an application server that can be used as a standalone web server or as the server component of IBM's Lotus Domino product which provides a powerful collaborative platform for development of customized business applications. It also provides enterprise-grade email, messaging, and scheduling capabilities.
Table of Contents (18 chapters)
Domino 7 Application Development
Credits
Foreword
About the Authors
About the Reviewer
Preface
Free Chapter
1
A Short History of Notes and Domino

Creating a Simple Web Service Using Domino Designer 7


Let's examine the process for creating a simple functional web‑service provider using Domino Designer 7. For this example, we will create the following Company Profile document type:

We will also load several Company Profiles into the database to demonstrate the use of the web service:

To begin creating the web‑service provider interface for this application, open Domino Designer 7 to the Web Service Design view by clicking Shared Code | Web Services:

From the Web Service design view, click New Web Service:

This opens the Web Service design editor. In either case, the web service must define a class that receives and processes the requests made by a web service client. This class name is defined in the web service's PortType class field in the Basics tab of the web service's properties. The web service can define other classes that are used internally, but the PortType class defines the web‑service's interface. The public methods of...