Archive for August, 2008

Generating Attachments At Runtime/Add IO Streams in Java Mail

Posted on August 29, 2008. Filed under: Uncategorized |

I’ve recently come across a requirement where i had to create some reports at runtime while sending the mail in Java. I expect Every One to have prior knowledge of how to send a mail in java else you go through my previous post
Lets take an example where we have set of encrypted reports in [...]

Read Full Post | Make a Comment ( 1 so far )

Sending Mail In Java

Posted on August 29, 2008. Filed under: Mail | Tags: , |

Many people find it difficult sending mail from a program. This code shows how simple it is to send a mail from java Program.
package com.webaging.utils;
import java.util.Properties;
import javax.activation.DataHandler;
import javax.activation.DataSource;
import javax.activation.FileDataSource;
import javax.mail.BodyPart;
import javax.mail.Message;
import javax.mail.MessagingException;
import javax.mail.Multipart;
import javax.mail.Session;
import javax.mail.Transport;
import javax.mail.internet.AddressException;
import javax.mail.internet.InternetAddress;
import javax.mail.internet.MimeBodyPart;
import javax.mail.internet.MimeMessage;
import javax.mail.internet.MimeMultipart;
/**
* @author Ashwin
*
*/
public class MailClient {
public void sendMail(String mailServer, String from, String to,
String subject, String messageBody, [...]

Read Full Post | Make a Comment ( None so far )

Apache POI And HyperLinks

Posted on August 23, 2008. Filed under: Uncategorized |

I recently came across a requirement where i had to add hyperlink in excel Generated By Apache POI in Java. I have gone through the API and Found out that there is no API which Supports this and there is also no cell type which define something like this HSSFCell.CELL_TYPE_HYPERLINK.  I tried a lot and [...]

Read Full Post | Make a Comment ( None so far )

Xquery(Query Language For Web)

Posted on August 22, 2008. Filed under: Uncategorized |

Recently i came across an application where i need to parse as webpage and some xml’s i get from a webservice to fill up my database.  I used to do this long back in 2002 but then there was no such standard for parsing such stuff. But this time my life has become easy and [...]

Read Full Post | Make a Comment ( None so far )

Error While Downloading Files In IE

Posted on August 22, 2008. Filed under: Uncategorized | Tags: , |

I was working a PDF Dowload in my application and one fine day move my application to client test system where the application was aired over https. That screwed up my day to find out bug in my application. But finally when i googled for it i found out that IE has screwed up everything [...]

Read Full Post | Make a Comment ( None so far )

Liked it here?
Why not try sites on the blogroll...