Mail for ?????
Technical infomation for this Web Application
This app is a fork of one made for an IBM AlphaWorks article:
"Working with jQuery, Part 1:
Bringing desktop applications to the browser".
This version has been enhanced to include Login features, and has had serverside
technologies changed to use Pico Web Remoting rather than JSON libraries and a
custom servlet. You can mimick the remoting methods that JQuery invokes with these URLs:
- json/Inbox/read?msgId=1 - read a message (and have it marked as read on the backend)
- json/Inbox/messages - see the contents of the inbox
- json/Sent/messages - see the contents of the sent box
- json/Sent/send?to=fred&subject=hello&message=goodbye - see send an email (this is normally a POST operation)
- json/Auth/logIn?userName=Gill%20Bates&password=1234 - to log in (this is normally a POST operation)
- json/Auth/logOut - to log in (this is normally a POST operation)
- json/Auth/whoIsLoggedIn - check with server to see who is logged in
See also, the Ruby output for the same. Replace /json/ for /ruby/ in the URLs above.