Showing posts with label webshpere. Show all posts
Showing posts with label webshpere. Show all posts

Wednesday, March 13, 2013

comment_icon 0 Web.XML Explained

The web.xml Deployment Descriptor file tell about that how application will be deployed in the server or servlet container such as TOMCAT This file is Required for every application which will be deployed on Tomcat/Apache . The location of Web.XML is always Application-root/WEB-INF/web.xml or WebContent/WEB-INF/web.xml There is minimum one tag is required in web.xml that is  <web-app> TAG. This  contains following information  <?xml version="1.0" encoding="ISO-8859-1"?> <web-app xmlns="http://java.sun.com/xml/ns/j2ee"      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"      xsi:schemaLocation="http://java.sun.com/xml/ns/javaee...

Sunday, February 26, 2012

comment_icon 5 Sending E-Mail via G-mail using Java

package mymail; import java.util.Properties; import javax.mail.Message; import javax.mail.MessagingException; import javax.mail.Session; import javax.mail.Transport; import javax.mail.internet.AddressException; import javax.mail.internet.InternetAddress; import javax.mail.internet.MimeMessage; public class Mymail { public Mymail(){ super(); } /*REMOVE THIS TO TEST AS JAVA APPLICATION public static void main(String args[]) throws AddressException, MessagingException{ Mymail m =new Mymail(); m.GmailSend("coolasr@gmail.com", "hello", "hello"); }*/ public boolean GmailSend (String to,String subject,String messageText) throws...

Monday, February 20, 2012

comment_icon 0 Installing the WASCE WTP Server Adapter

The WASCE Web Tools Platform (WTP) server adapter is a tool for deploying and testing Java EE assets to a WebSphere Application Server Community Edition server. Use the Eclipse Update Manger to install the WASCE WTP server adapter from the Eclipse Update Site for IBM WebSphere Application Server Community Edition.NOTE: same process is followed for WASCE 3.0 JUST DOWNLOAD 3.0 adapter Click to Download Adapter Information about this tool can be obtained from the Geronimo development tools site and from the tool's on-line help. The following tips supplement that information.See Developing...

Thursday, November 24, 2011

comment_icon 40 Creating A simple DB2 Database Application with jsp

in this session we are going to see that How to Create A simple DB2 Database Application with JSP (java server pages) . Application which we are going to build is login form Topics Covered : 1. creating database for an application 2.Creating A form and sending data to server 3. connection to database with jsp Steps to Follow 1.    Create database"VOTERS...

Tuesday, November 22, 2011

comment_icon 5 Installing and Integration DB2 ,Web-Shpere With Eclipse

This Presentation shows that 1.How to install websphere and then How to Integrate that    with Eclipse (Same steps are required for RAD). 2.How To Install DB2 3. Everything is shown step by step...