Google Scholar Search Add-On
Citeseer Search Add-OnInstalling: Copy the xml files into C:\Program Files\Mozilla Firefox\searchplugins
Google Scholar Search Add-On
Citeseer Search Add-OnWhat is SSH? It stands for "Secure SHell", a kind of Telnet but where the data is encrypted. By default, sshd, the SSH daemon is running on the Linux box on port 22. The idea is to have sshd also listening on port 443, so that we can connect from behind firewall.
Aache webserver is running HTTPS on port 443. We need to stop this service.
#vi /etc/httpd/conf.d/ssl.conf
Comment out "Listen 443"
#/etc/init.d/httpd restart
Next run another instance of sshd on port 443: Leave the default service running on 22 so that others can access it
#/usr/sbin/sshd -p 443
Incase we want to change the default port of sshd, this is the way to do it:
#vi /etc/ssh/sshd_config
Comment out Port 22 and add Port 443
#Port 22
Port 443
Now restart the SSH daemon:
$/etc/init.d/sshd restart

Date: 18 Nov' 2006 This example adds "Export Sources" menu item to File Menu in the IDE. Onclicking it displays a message box and creates an output tab and writes into in.
Dialogs API, I/O API, Utilities API
|
Download the JAR domino-1.1.jar and place in class path
http://domingo.sourceforge.net/installation.html
Source Code
import de.bea.domingo.DDocument;
import java.util.Date;
import java.util.Iterator;
import de.bea.domingo.DDatabase;
import de.bea.domingo.DNotesException;
import de.bea.domingo.DNotesFactory;
import de.bea.domingo.DSession;
import de.bea.domingo.DView;
import de.bea.domingo.DViewEntry;
import lotus.notes.addins.util.MailMessage;
//http://www-128.ibm.com/developerworks/lotus/library/ls-Java_Mail_Forwarding_Agent/index.html
public class LotusMailer {
public static void main(String[] args) throws DNotesException {
// get an instance of the domingo factory
DNotesFactory factory = DNotesFactory.getInstance();
// create a session to the local Lotus Notes client
DSession session = factory.getSession();
// get the local database names.nsf
//DDatabase database = session.getDatabase("", "names.nsf");//names.nsf
DDatabase database = session.getDatabase("SERVER", "path\\to\\mailbox.nsf");
//MailMessage
System.out.println(database.getTitle());
DView view = database.getView("($Inbox)");
Iterator allEntries = view.getAllEntries();
System.out.println("Content of view ($Inbox)");
while (allEntries.hasNext())
{
DViewEntry entry = (DViewEntry) allEntries.next();
System.out.println("Entry :: " + entry.getDocument().getAuthors());
for (int i = 0; i < entry.getColumnValues().size(); i++)
{
System.out.println(i + "." +
entry.getColumnValues().get(i).getClass().getName() + " : " +
":" + entry.getColumnValues().get(i));
}
break;
}
DDocument d = database.createDocument();
d.setSaveMessageOnSend(true);
d.appendItemValue("Subject", "Automail");
d.appendItemValue("Body", "Today " + new Date());
d.appendItemValue("SentTo", "anyone@mail.com");
d.send("anyone@mail.com");
System.out.println("Mail sent !!!");
}
}