Facebook Email in response to Google Gmail Buzz

Thursday, 11 February 2010, 19:07 | Category : Fiction, Internet, News, Technology
Tags : , ,

The inevitable has finally happened. The war of Email and Social Networking between Facebook and Google has reached an all time high. Facebook, world’s no. 1 social networking website has quietly launched its dramatically new email service, the FBMail or the Facebook Mail. Some select Facebook users have reported that were surprised to find that […]

Email Marketing Tool Application

Friday, 7 September 2007, 2:10 | Category : Internet, Java, Technology
Tags : , , ,

Read the documentation Here

Sending huge data to client browser

Wednesday, 20 June 2007, 0:56 | Category : Internet, J2EE, Java, Technology
Tags :

If you want to pass huge data to the client from your servlet, user may need to wait till the ServletOutputStream or JSPWriter flushes the data. This happens generally whenever you have a number of items page and you want to pass it to the client. The better approach is to flush the data partly […]

How to send email from oracle stored procedure

Friday, 8 June 2007, 1:40 | Category : Database, Internet, Technology
Tags : ,

BEGIN UTL_MAIL.SEND ( sender => ‘[email protected]’, recipients => ‘rst@yahoo.’, subject => ‘test Oracle’, message => ‘testing orcl’); END; /

Reading Mails from secure exchange server in Java

Thursday, 26 April 2007, 16:46 | Category : Internet, J2EE, Java, Technology
Tags : , ,

1. Export the certificate for the exchange server from Internet explorer Certificate export wizard e.g. after opening https://webmail.hostname.com, (View certificate >Details > Copy to File). Say the exported file name is certificate.cer 2. Create keystore from the certificate using java keytool (which will create keystore file in current directory). It will ask for a password, […]

Export File name in servlet/jsp

Thursday, 26 April 2007, 13:49 | Category : Internet, J2EE, Java, Technology
Tags :

While giving a link for export as a file, you may also want to give it a name that should come in save-as dialog or browser. To do so, you have to just set Content-Disposition header and content type of response e.g. for saving as an excel file, following can be used:

Sample java code to read mails from your gmail account

Monday, 23 April 2007, 23:13 | Category : Internet, J2EE, Java, Technology
Tags : ,

Sample java code to read mails from your gmail account