<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Sending an e-mail using WebSphere Mail session settings.</title>
	<atom:link href="http://www.albeesonline.com/blog/2008/10/27/sending-an-e-mail-using-websphere-mail-session-settings/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.albeesonline.com/blog/2008/10/27/sending-an-e-mail-using-websphere-mail-session-settings/</link>
	<description>Something about JEE and WebSphere. Java, JEE and WebSphere tips and tutorials</description>
	<lastBuildDate>Mon, 30 Jan 2012 13:08:13 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
	<item>
		<title>By: fnarz</title>
		<link>http://www.albeesonline.com/blog/2008/10/27/sending-an-e-mail-using-websphere-mail-session-settings/comment-page-1/#comment-64013</link>
		<dc:creator>fnarz</dc:creator>
		<pubDate>Fri, 05 Feb 2010 20:25:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.albeesonline.com/blog/?p=255#comment-64013</guid>
		<description>Looking up the MailSession is ok with EJB 2.1 but using EJB3 I&#039;d like to get the Session injected using something like:

@Resource(name=&quot;mail/DefaultMailSession&quot;)
privat Session mailSession;

Did you ever try to get that working from within an EJB 3.0 Session Bean. I&#039;am unable to because there is no way do define the Reference without having a DeploymentDeskriptor for my Beans. But EJB 3.0 doesn&#039;t require any DD.</description>
		<content:encoded><![CDATA[<p>Looking up the MailSession is ok with EJB 2.1 but using EJB3 I&#8217;d like to get the Session injected using something like:</p>
<p>@Resource(name=&#8221;mail/DefaultMailSession&#8221;)<br />
privat Session mailSession;</p>
<p>Did you ever try to get that working from within an EJB 3.0 Session Bean. I&#8217;am unable to because there is no way do define the Reference without having a DeploymentDeskriptor for my Beans. But EJB 3.0 doesn&#8217;t require any DD.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Albin Joseph</title>
		<link>http://www.albeesonline.com/blog/2008/10/27/sending-an-e-mail-using-websphere-mail-session-settings/comment-page-1/#comment-46743</link>
		<dc:creator>Albin Joseph</dc:creator>
		<pubDate>Tue, 28 Apr 2009 07:37:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.albeesonline.com/blog/?p=255#comment-46743</guid>
		<description>Cool, glad you got it working.</description>
		<content:encoded><![CDATA[<p>Cool, glad you got it working.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sav</title>
		<link>http://www.albeesonline.com/blog/2008/10/27/sending-an-e-mail-using-websphere-mail-session-settings/comment-page-1/#comment-46742</link>
		<dc:creator>Sav</dc:creator>
		<pubDate>Tue, 28 Apr 2009 07:34:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.albeesonline.com/blog/?p=255#comment-46742</guid>
		<description>Hi Albin, thanks for the suggestions in your mail. I checked that it was not the smtp server name but the firewall that was the issue.Disabled the firewall and it works fine.</description>
		<content:encoded><![CDATA[<p>Hi Albin, thanks for the suggestions in your mail. I checked that it was not the smtp server name but the firewall that was the issue.Disabled the firewall and it works fine.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Albin Joseph</title>
		<link>http://www.albeesonline.com/blog/2008/10/27/sending-an-e-mail-using-websphere-mail-session-settings/comment-page-1/#comment-46723</link>
		<dc:creator>Albin Joseph</dc:creator>
		<pubDate>Tue, 28 Apr 2009 04:23:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.albeesonline.com/blog/?p=255#comment-46723</guid>
		<description>@Sav, Not sure what exactly the problem is. May be a connectivity issue. Is your SMTP host name correct?</description>
		<content:encoded><![CDATA[<p>@Sav, Not sure what exactly the problem is. May be a connectivity issue. Is your SMTP host name correct?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sav</title>
		<link>http://www.albeesonline.com/blog/2008/10/27/sending-an-e-mail-using-websphere-mail-session-settings/comment-page-1/#comment-45935</link>
		<dc:creator>Sav</dc:creator>
		<pubDate>Thu, 23 Apr 2009 17:34:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.albeesonline.com/blog/?p=255#comment-45935</guid>
		<description>Hi, I am new to using the Java mail.But have a requirment to send email notification from an MDB.This MDB typically listens on a queue.Everytime an error message is sent to the queue,the MDB onMessage should send across an email notification.I am working this out in WPS/WID 6.1.2.I configured the mail session from Process Server - Admin Console and tried using this code to send the mail from the onMessage method of the MDB but ends up in the erro below.

nested exception is:
	class javax.mail.MessagingException: Exception reading response;
  nested exception is:
	java.net.SocketException: Connection reset
[4/23/09 22:48:27:156 IST] 000000a5 SystemErr     R javax.mail.SendFailedException: Sending failed;
  nested exception is:
	class javax.mail.MessagingException: Exception reading response;
  nested exception is:
	java.net.SocketException: Connection reset
[4/23/09 22:48:27:156 IST] 000000a5 SystemErr     R 	at javax.mail.Transport.send0(Transport.java:218)
[4/23/09 22:48:27:156 IST] 000000a5 SystemErr     R 	at javax.mail.Transport.send(Transport.java:80)</description>
		<content:encoded><![CDATA[<p>Hi, I am new to using the Java mail.But have a requirment to send email notification from an MDB.This MDB typically listens on a queue.Everytime an error message is sent to the queue,the MDB onMessage should send across an email notification.I am working this out in WPS/WID 6.1.2.I configured the mail session from Process Server &#8211; Admin Console and tried using this code to send the mail from the onMessage method of the MDB but ends up in the erro below.</p>
<p>nested exception is:<br />
	class javax.mail.MessagingException: Exception reading response;<br />
  nested exception is:<br />
	java.net.SocketException: Connection reset<br />
[4/23/09 22:48:27:156 IST] 000000a5 SystemErr     R javax.mail.SendFailedException: Sending failed;<br />
  nested exception is:<br />
	class javax.mail.MessagingException: Exception reading response;<br />
  nested exception is:<br />
	java.net.SocketException: Connection reset<br />
[4/23/09 22:48:27:156 IST] 000000a5 SystemErr     R 	at javax.mail.Transport.send0(Transport.java:218)<br />
[4/23/09 22:48:27:156 IST] 000000a5 SystemErr     R 	at javax.mail.Transport.send(Transport.java:80)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Prabeen</title>
		<link>http://www.albeesonline.com/blog/2008/10/27/sending-an-e-mail-using-websphere-mail-session-settings/comment-page-1/#comment-8953</link>
		<dc:creator>Prabeen</dc:creator>
		<pubDate>Tue, 02 Dec 2008 11:04:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.albeesonline.com/blog/?p=255#comment-8953</guid>
		<description>Hi this looks good.
 I tried this but having some problem.

Before trying this option , I have a done the java mail program without using jndi naming. that works fine.
now when I try to use the above methodology , I am getting an invalid address exception. Pls help
I have pasted my error below

[12/2/08 16:19:49:977 IST] 4a25f935 SystemOut     O DEBUG SMTP RCVD: 550 5.7.1 Unable to relay for xx.bb@bank.com

[12/2/08 16:19:49:977 IST] 4a25f935 SystemOut     O Invalid Addresses
[12/2/08 16:19:49:977 IST] 4a25f935 SystemOut     O   xx.bb@bank.com
[12/2/08 16:19:49:977 IST] 4a25f935 SystemOut     O DEBUG SMTPTransport: Sending failed because of invalid destination addresses
[12/2/08 16:19:49:977 IST] 4a25f935 SystemOut     O DEBUG SMTP SENT: RSET
[12/2/08 16:19:50:196 IST] 4a25f935 SystemOut     O DEBUG SMTP RCVD: 250 2.0.0 Resetting

[12/2/08 16:19:50:196 IST] 4a25f935 SystemErr     R javax.mail.SendFailedException: Sending failed;
  nested exception is: 
	javax.mail.SendFailedException: Invalid Addresses;
  nested exception is: 
	javax.mail.SendFailedException: 550 5.7.1 Unable to relay for xx.bb@bank.com


[12/2/08 16:19:50:196 IST] 4a25f935 SystemErr     R 	at javax.mail.Transport.send0(Transport.java:219)
[12/2/08 16:19:50:196 IST] 4a25f935 SystemErr     R 	at javax.mail.Transport.send(Transport.java:81)
[12/2/08 16:19:50:196 IST] 4a25f935 SystemErr     R 	at com.bac.esb.utilities.DataSourcePlugin.init(DataSourcePlugin.java:69)
[12/2/08 16:19:50:196 IST] 4a25f935 SystemErr     R 	at org.apache.struts.action.ActionServlet.initModulePlugIns(ActionServlet.java:869)
[12/2/08 16:19:50:196 IST] 4a25f935 SystemErr     R 	at org.apache.struts.action.ActionServlet.init(ActionServlet.java:336)
[12/2/08 16:19:50:196 IST] 4a25f935 SystemErr     R 	at javax.servlet.GenericServlet.init(GenericServlet.java:258)
[12/2/08 16:19:50:196 IST] 4a25f935 SystemErr     R 	at com.ibm.ws.webcontainer.servlet.StrictServletInstance.doInit(StrictServletInstance.java:82)
[12/2/08 16:19:50:196 IST] 4a25f935 SystemErr     R 	at com.ibm.ws.webcontainer.servlet.StrictLifecycleServlet._init(StrictLifecycleServlet.java:147)
[12/2/08 16:19:50:196 IST] 4a25f935 SystemErr     R 	at com.ibm.ws.webcontainer.servlet.PreInitializedServletState.init(StrictLifecycleServlet.java:270)
[12/2/08 16:19:50:196 IST] 4a25f935 SystemErr     R 	at com.ibm.ws.webcontainer.servlet.StrictLifecycleServlet.init(StrictLifecycleServlet.java:113)
[12/2/08 16:19:50:196 IST] 4a25f935 SystemErr     R 	at com.ibm.ws.webcontainer.servlet.ServletInstance.init(ServletInstance.java:189)
[12/2/08 16:19:50:196 IST] 4a25f935 SystemErr     R 	at javax.servlet.GenericServlet.init(GenericServlet.java:258)
[12/2/08 16:19:50:196 IST] 4a25f935 SystemErr     R 	at com.ibm.ws.webcontainer.webapp.WebAppServletManager.addServlet(WebAppServletManager.java:870)
[12/2/08 16:19:50:196 IST] 4a25f935 SystemErr     R 	at com.ibm.ws.webcontainer.webapp.WebAppServletManager.loadServlet(WebAppServletManager.java:224)
[12/2/08 16:19:50:196 IST] 4a25f935 SystemErr     R 	at com.ibm.ws.webcontainer.webapp.WebAppServletManager.loadAutoLoadServlets(WebAppServletManager.java:542)
[12/2/08 16:19:50:196 IST] 4a25f935 SystemErr     R 	at com.ibm.ws.webcontainer.webapp.WebApp.loadServletManager(WebApp.java:1270)
[12/2/08 16:19:50:196 IST] 4a25f935 SystemErr     R 	at com.ibm.ws.webcontainer.webapp.WebApp.init(WebApp.java:277)
[12/2/08 16:19:50:196 IST] 4a25f935 SystemErr     R 	at com.ibm.ws.webcontainer.srt.WebGroup.loadWebApp(WebGroup.java:396)
[12/2/08 16:19:50:196 IST] 4a25f935 SystemErr     R 	at com.ibm.ws.webcontainer.srt.WebGroup.init(WebGroup.java:216)
[12/2/08 16:19:50:196 IST] 4a25f935 SystemErr     R 	at com.ibm.ws.webcontainer.WebContainer.addWebApplication(WebContainer.java:984)
[12/2/08 16:19:50:196 IST] 4a25f935 SystemErr     R 	at com.ibm.ws.runtime.component.WebContainerImpl.install(WebContainerImpl.java:136)
[12/2/08 16:19:50:196 IST] 4a25f935 SystemErr     R 	at com.ibm.ws.runtime.component.WebContainerImpl.start(WebContainerImpl.java:356)
[12/2/08 16:19:50:196 IST] 4a25f935 SystemErr     R 	at com.ibm.ws.runtime.component.ApplicationMgrImpl.start(ApplicationMgrImpl.java:415)
[12/2/08 16:19:50:196 IST] 4a25f935 SystemErr     R 	at com.ibm.ws.runtime.component.DeployedApplicationImpl.fireDeployedObjectStart(DeployedApplicationImpl.java:787)
[12/2/08 16:19:50:196 IST] 4a25f935 SystemErr     R 	at com.ibm.ws.runtime.component.DeployedModuleImpl.start(DeployedModuleImpl.java:351)
[12/2/08 16:19:50:196 IST] 4a25f935 SystemErr     R 	at com.ibm.ws.runtime.component.DeployedApplicationImpl.start(DeployedApplicationImpl.java:575)
[12/2/08 16:19:50:196 IST] 4a25f935 SystemErr     R 	at com.ibm.ws.runtime.component.ApplicationMgrImpl.startApplication(ApplicationMgrImpl.java:268)
[12/2/08 16:19:50:196 IST] 4a25f935 SystemErr     R 	at com.ibm.ws.runtime.component.ApplicationMgrImpl.start(ApplicationMgrImpl.java:246)
[12/2/08 16:19:50:196 IST] 4a25f935 SystemErr     R 	at com.ibm.ws.runtime.component.ContainerImpl.startComponents(ContainerImpl.java:543)
[12/2/08 16:19:50:196 IST] 4a25f935 SystemErr     R 	at com.ibm.ws.runtime.component.ContainerImpl.start(ContainerImpl.java:418)
[12/2/08 16:19:50:196 IST] 4a25f935 SystemErr     R 	at com.ibm.ws.runtime.component.ApplicationServerImpl.start(ApplicationServerImpl.java:117)
[12/2/08 16:19:50:196 IST] 4a25f935 SystemErr     R 	at com.ibm.ws.runtime.component.ContainerImpl.startComponents(ContainerImpl.java:543)
[12/2/08 16:19:50:196 IST] 4a25f935 SystemErr     R 	at com.ibm.ws.runtime.component.ContainerImpl.start(ContainerImpl.java:418)[12/2/08 16:19:50:196 IST] 4a25f935 SystemOut     O DEBUG SMTP SENT: QUIT
[12/2/08 16:19:50:196 IST] 4a25f935 SystemOut     O  ** Invalid Addresses
[12/2/08 16:19:50:196 IST] 4a25f935 SystemOut     O  xx.bb@bank.com

[12/2/08 16:19:50:211 IST] 4a25f935 SystemErr     R 	at com.ibm.ws.runtime.component.ServerImpl.start(ServerImpl.java:183)
[12/2/08 16:19:50:211 IST] 4a25f935 SystemErr     R 	at com.ibm.ws.runtime.WsServer.start(WsServer.java:128)
[12/2/08 16:19:50:211 IST] 4a25f935 SystemErr     R 	at com.ibm.ws.runtime.WsServer.main(WsServer.java:225)
[12/2/08 16:19:50:211 IST] 4a25f935 SystemErr     R 	at java.lang.reflect.Method.invoke(Native Method)
[12/2/08 16:19:50:211 IST] 4a25f935 SystemErr     R 	at com.ibm.ws.bootstrap.WSLauncher.main(WSLauncher.java:94)
[12/2/08 16:19:50:211 IST] 4a25f935 SystemErr     R 	at com.ibm.etools.websphere.tools.runner.api.ServerRunnerV5$1.run(ServerRunnerV5.java:97)</description>
		<content:encoded><![CDATA[<p>Hi this looks good.<br />
 I tried this but having some problem.</p>
<p>Before trying this option , I have a done the java mail program without using jndi naming. that works fine.<br />
now when I try to use the above methodology , I am getting an invalid address exception. Pls help<br />
I have pasted my error below</p>
<p>[12/2/08 16:19:49:977 IST] 4a25f935 SystemOut     O DEBUG SMTP RCVD: 550 5.7.1 Unable to relay for <a href="mailto:xx.bb@bank.com">xx.bb@bank.com</a></p>
<p>[12/2/08 16:19:49:977 IST] 4a25f935 SystemOut     O Invalid Addresses<br />
[12/2/08 16:19:49:977 IST] 4a25f935 SystemOut     O   <a href="mailto:xx.bb@bank.com">xx.bb@bank.com</a><br />
[12/2/08 16:19:49:977 IST] 4a25f935 SystemOut     O DEBUG SMTPTransport: Sending failed because of invalid destination addresses<br />
[12/2/08 16:19:49:977 IST] 4a25f935 SystemOut     O DEBUG SMTP SENT: RSET<br />
[12/2/08 16:19:50:196 IST] 4a25f935 SystemOut     O DEBUG SMTP RCVD: 250 2.0.0 Resetting</p>
<p>[12/2/08 16:19:50:196 IST] 4a25f935 SystemErr     R javax.mail.SendFailedException: Sending failed;<br />
  nested exception is:<br />
	javax.mail.SendFailedException: Invalid Addresses;<br />
  nested exception is:<br />
	javax.mail.SendFailedException: 550 5.7.1 Unable to relay for <a href="mailto:xx.bb@bank.com">xx.bb@bank.com</a></p>
<p>[12/2/08 16:19:50:196 IST] 4a25f935 SystemErr     R 	at javax.mail.Transport.send0(Transport.java:219)<br />
[12/2/08 16:19:50:196 IST] 4a25f935 SystemErr     R 	at javax.mail.Transport.send(Transport.java:81)<br />
[12/2/08 16:19:50:196 IST] 4a25f935 SystemErr     R 	at com.bac.esb.utilities.DataSourcePlugin.init(DataSourcePlugin.java:69)<br />
[12/2/08 16:19:50:196 IST] 4a25f935 SystemErr     R 	at org.apache.struts.action.ActionServlet.initModulePlugIns(ActionServlet.java:869)<br />
[12/2/08 16:19:50:196 IST] 4a25f935 SystemErr     R 	at org.apache.struts.action.ActionServlet.init(ActionServlet.java:336)<br />
[12/2/08 16:19:50:196 IST] 4a25f935 SystemErr     R 	at javax.servlet.GenericServlet.init(GenericServlet.java:258)<br />
[12/2/08 16:19:50:196 IST] 4a25f935 SystemErr     R 	at com.ibm.ws.webcontainer.servlet.StrictServletInstance.doInit(StrictServletInstance.java:82)<br />
[12/2/08 16:19:50:196 IST] 4a25f935 SystemErr     R 	at com.ibm.ws.webcontainer.servlet.StrictLifecycleServlet._init(StrictLifecycleServlet.java:147)<br />
[12/2/08 16:19:50:196 IST] 4a25f935 SystemErr     R 	at com.ibm.ws.webcontainer.servlet.PreInitializedServletState.init(StrictLifecycleServlet.java:270)<br />
[12/2/08 16:19:50:196 IST] 4a25f935 SystemErr     R 	at com.ibm.ws.webcontainer.servlet.StrictLifecycleServlet.init(StrictLifecycleServlet.java:113)<br />
[12/2/08 16:19:50:196 IST] 4a25f935 SystemErr     R 	at com.ibm.ws.webcontainer.servlet.ServletInstance.init(ServletInstance.java:189)<br />
[12/2/08 16:19:50:196 IST] 4a25f935 SystemErr     R 	at javax.servlet.GenericServlet.init(GenericServlet.java:258)<br />
[12/2/08 16:19:50:196 IST] 4a25f935 SystemErr     R 	at com.ibm.ws.webcontainer.webapp.WebAppServletManager.addServlet(WebAppServletManager.java:870)<br />
[12/2/08 16:19:50:196 IST] 4a25f935 SystemErr     R 	at com.ibm.ws.webcontainer.webapp.WebAppServletManager.loadServlet(WebAppServletManager.java:224)<br />
[12/2/08 16:19:50:196 IST] 4a25f935 SystemErr     R 	at com.ibm.ws.webcontainer.webapp.WebAppServletManager.loadAutoLoadServlets(WebAppServletManager.java:542)<br />
[12/2/08 16:19:50:196 IST] 4a25f935 SystemErr     R 	at com.ibm.ws.webcontainer.webapp.WebApp.loadServletManager(WebApp.java:1270)<br />
[12/2/08 16:19:50:196 IST] 4a25f935 SystemErr     R 	at com.ibm.ws.webcontainer.webapp.WebApp.init(WebApp.java:277)<br />
[12/2/08 16:19:50:196 IST] 4a25f935 SystemErr     R 	at com.ibm.ws.webcontainer.srt.WebGroup.loadWebApp(WebGroup.java:396)<br />
[12/2/08 16:19:50:196 IST] 4a25f935 SystemErr     R 	at com.ibm.ws.webcontainer.srt.WebGroup.init(WebGroup.java:216)<br />
[12/2/08 16:19:50:196 IST] 4a25f935 SystemErr     R 	at com.ibm.ws.webcontainer.WebContainer.addWebApplication(WebContainer.java:984)<br />
[12/2/08 16:19:50:196 IST] 4a25f935 SystemErr     R 	at com.ibm.ws.runtime.component.WebContainerImpl.install(WebContainerImpl.java:136)<br />
[12/2/08 16:19:50:196 IST] 4a25f935 SystemErr     R 	at com.ibm.ws.runtime.component.WebContainerImpl.start(WebContainerImpl.java:356)<br />
[12/2/08 16:19:50:196 IST] 4a25f935 SystemErr     R 	at com.ibm.ws.runtime.component.ApplicationMgrImpl.start(ApplicationMgrImpl.java:415)<br />
[12/2/08 16:19:50:196 IST] 4a25f935 SystemErr     R 	at com.ibm.ws.runtime.component.DeployedApplicationImpl.fireDeployedObjectStart(DeployedApplicationImpl.java:787)<br />
[12/2/08 16:19:50:196 IST] 4a25f935 SystemErr     R 	at com.ibm.ws.runtime.component.DeployedModuleImpl.start(DeployedModuleImpl.java:351)<br />
[12/2/08 16:19:50:196 IST] 4a25f935 SystemErr     R 	at com.ibm.ws.runtime.component.DeployedApplicationImpl.start(DeployedApplicationImpl.java:575)<br />
[12/2/08 16:19:50:196 IST] 4a25f935 SystemErr     R 	at com.ibm.ws.runtime.component.ApplicationMgrImpl.startApplication(ApplicationMgrImpl.java:268)<br />
[12/2/08 16:19:50:196 IST] 4a25f935 SystemErr     R 	at com.ibm.ws.runtime.component.ApplicationMgrImpl.start(ApplicationMgrImpl.java:246)<br />
[12/2/08 16:19:50:196 IST] 4a25f935 SystemErr     R 	at com.ibm.ws.runtime.component.ContainerImpl.startComponents(ContainerImpl.java:543)<br />
[12/2/08 16:19:50:196 IST] 4a25f935 SystemErr     R 	at com.ibm.ws.runtime.component.ContainerImpl.start(ContainerImpl.java:418)<br />
[12/2/08 16:19:50:196 IST] 4a25f935 SystemErr     R 	at com.ibm.ws.runtime.component.ApplicationServerImpl.start(ApplicationServerImpl.java:117)<br />
[12/2/08 16:19:50:196 IST] 4a25f935 SystemErr     R 	at com.ibm.ws.runtime.component.ContainerImpl.startComponents(ContainerImpl.java:543)<br />
[12/2/08 16:19:50:196 IST] 4a25f935 SystemErr     R 	at com.ibm.ws.runtime.component.ContainerImpl.start(ContainerImpl.java:418)[12/2/08 16:19:50:196 IST] 4a25f935 SystemOut     O DEBUG SMTP SENT: QUIT<br />
[12/2/08 16:19:50:196 IST] 4a25f935 SystemOut     O  ** Invalid Addresses<br />
[12/2/08 16:19:50:196 IST] 4a25f935 SystemOut     O  <a href="mailto:xx.bb@bank.com">xx.bb@bank.com</a></p>
<p>[12/2/08 16:19:50:211 IST] 4a25f935 SystemErr     R 	at com.ibm.ws.runtime.component.ServerImpl.start(ServerImpl.java:183)<br />
[12/2/08 16:19:50:211 IST] 4a25f935 SystemErr     R 	at com.ibm.ws.runtime.WsServer.start(WsServer.java:128)<br />
[12/2/08 16:19:50:211 IST] 4a25f935 SystemErr     R 	at com.ibm.ws.runtime.WsServer.main(WsServer.java:225)<br />
[12/2/08 16:19:50:211 IST] 4a25f935 SystemErr     R 	at java.lang.reflect.Method.invoke(Native Method)<br />
[12/2/08 16:19:50:211 IST] 4a25f935 SystemErr     R 	at com.ibm.ws.bootstrap.WSLauncher.main(WSLauncher.java:94)<br />
[12/2/08 16:19:50:211 IST] 4a25f935 SystemErr     R 	at com.ibm.etools.websphere.tools.runner.api.ServerRunnerV5$1.run(ServerRunnerV5.java:97)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Atishay Jain</title>
		<link>http://www.albeesonline.com/blog/2008/10/27/sending-an-e-mail-using-websphere-mail-session-settings/comment-page-1/#comment-8691</link>
		<dc:creator>Atishay Jain</dc:creator>
		<pubDate>Sun, 23 Nov 2008 22:25:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.albeesonline.com/blog/?p=255#comment-8691</guid>
		<description>Great and very useful tutorial on a resource which is less told about. Thanks a lot. :razz:</description>
		<content:encoded><![CDATA[<p>Great and very useful tutorial on a resource which is less told about. Thanks a lot. <img src='http://www.albeesonline.com/blog/wp-includes/images/smilies/icon_razz.gif' alt=':razz:' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>

