Link to home
Start Free TrialLog in
Avatar of makuletski
makuletski

asked on

Web-Enabled Lotus Application

Where can i find tutorials or articles that can guide me in web enabling my lotus application?

I have a background in Lotus Notes database running in Notes environment only but i have zero, as in zero, idea on how to develop web-enabled applications.

Please send me some dummy's guide or advices from you gurus on the above topic.

Your prompt replies will be much appreciated.

Thanks a lot in advance.
Avatar of Bozzie4
Bozzie4
Flag of Belgium image

Check out the redbooks section of the ibm website :
http://www.ibm.com/redbooks

cheers,

Tom
You can web enabled Lotus Notes database easily with few steps.
Any Lotus Script won't run(All UI), so run it through agent and call it in WebQueryOpen/WebQuerySave.
Some formulas won't work. like: @IsDocSaved, etc.,

just let us know what type of application u want to web enable.
Avatar of makuletski
makuletski

ASKER

Redbooks are too advanced...do we have other sites or materials which is more simple?

Maddy,
What are the easy steps you're referring to?

Thanks

you can directly open Notes forms on web.

http://yourServername/dbpath/dbname.nsf/formname?openform

if the the form is not displayed, then you would be using @DbLookups/dbcolumns. Remove them and test.
AND don't use any Scripts. call then through agents.

u should be familiar with Java Script and HTML.

Thats why I want to know the basic concept of your database. is it very huge?

U can copy the notes form and name it as $$ViewTemplate for yourformname. alias should be the formname which ur using in notes.

Open the $$ViewTemplate for yourformname on web and look for result.
and for views:
$$ViewTemplate for yourviewname.

or for views create a $$ViewTemplateDefault form and place a field in that (call $$ViewBody)

u can play with this. check for notes help for more info.
SOLUTION
Avatar of RanjeetRain
RanjeetRain

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Check this tutorials from lotus
http://www-10.lotus.com/ldd/lbytes.nsf

~Hemanth
ASKER CERTIFIED SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
How about html and javascript?...What is its connection with web-enabled applications?

Thanks :)

SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
HTML and JS...

Web browsers do not understand anything else!  They don't know anything about Domino.  So, Domino generates a page containing HTML to represent a particular piece of a view or folder, or to display a particular form/document.  HTML is not programmable, it is a language for displaying formatted information, collection data in fields, and pushing the field data to a web server on submit.  Domino adds some Javascript automatically to most pages, to make this process a little easier for itself (e.g., so it can tell whether the user pressed a button labelled SUBMIT or CANCEL).

Sometimes, what Domino generates isn't "good enough."  For example, users don't like the way validations work -- you get the error message in a new page, and haveto press the BACK button to get back to the data (and sometimes, the data disapears when you do that).  So, programmers sometimes add Javascript to pre-check the user's input BEFORE submitting the input to the server.

Or, you might have a little UI in Notes that pops up a box (@DialogBox) to guide the user through some questions, and puts the results back in simplified format on the main screen.  The web doesn't have this, so you can code your own HTML and Javascript to simulate that.

I use lots of "little bits of HTML" to improve Domino's formatting, and the occasional bit of Javascript for a more dynamic experience (DHTML, validations, pop-ups), but I try to avoid it.  Why?  A big part of the beauty of Domino is that you get decent stuff done quickly in Notes, with minimum of time, effort, cost, and fuss.  You get a lot of the same with the browser.  But once the sponsor starts asking you to fiddle with it a lot to make a cleaner interface, it starts getting bogged down, and the costs, time, effort, and fussiness can easily triple.  At that point, Domino has lost much of its edge, while still leaving youwith Domino "baggage" (non-relational, non-locking, platform density).
qwaletee, thanks for that great explanation

maddy and the others, tnx as well...ill be venturing into web enabled applications soon and i hope i can still count on you guys for help

tnx again!!
oh!! i forgot to ask...how about webspere? what is it all about?