Your computer is running slow!
Please click here to speed it up.
Please click here to speed it up.
Posts Tagged ‘Creating’
Learning ColdFusion Chapter 3 - Creating A ColdFusion Page
Thursday, March 26th, 2009Learning ColdFusion Chapter 3 - Creating the App Structure
Thursday, March 26th, 2009Creating StateFUL Session Beans (SFSB) with IRAD / WebSphere
Wednesday, December 24th, 2008Looks like I mixed the SFSB and SLSB tutorials up. Well, this is the real SFSB tutorial. Sorry about the mix up. Everything is in proper order on my website, so if you want to see the full screen, high resolution video, just go there:
http://jpa.thebookonhibernate.com/j2ee/sunjavasamplecodetutorialsmockexams.jsp?link=10Astatefulsessionbean
Creating Stateful Session Beans (SFSB)
This free, multimedia tutorial shows you how to use IBM’s Rational Application Developer (IRAD) 6.0 to create a Stateful Session EJB Bean (SFSB) that mimics the functionality of the Timer JavaBean created in an earlier tutorial. The next tutorial will demonstrate how to remove the state from the timer, and create a StatelessSession (SLSB)Bean with essentially the same functionality.
If you found something helpful here, please do your part and help support the site. Link to us, buy some books, support our sponsors, tell your developer friends about us, and remember: Happy Java!

Creating a Simple J2EE Servlet Using IRAD for WebSphere
Wednesday, December 24th, 2008You can see the full screen, high resolution tutorial, here:
http://www.thebookonhibernate.com/j2e…
Creating a Simple Servlet Using IRAD
This free, multimedia tutorial shows you how to use IBM’s Rational Application Developer (IRAD) to create a J2EE project, a Servlet, and a WebSphere Test Server on which you can proudly run your newly birthed Servlet.
If you found something helpful here, please do your part and help support the site. Link to us, buy some books, support our sponsors, tell your developer friends about us, and remember: Happy Java!
package com.examscam.servlet;
import java.io.IOException;
import javax.servlet.Servlet;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
public class CountrySnooper extends HttpServlet implements Servlet {
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
String country = request.getLocale().getCountry();
if (!country.equals(”CA”)){
response.getWriter().print(”Hey, lets go for a Tim Hortons coffee!”);
}
else {
response.getWriter().print(”Ugh…Guess we settle for Starbucks”);
}
}
}
http://www.thebookonhibernate.com/j2e…
Please check out my SCJA Java Certification Mock Exam website:
http://www.scja.com/associate/
And for Hibernate and JPA tutorials, check out: http://www.thebookonhibernate.com
Category: Education
Tags:
IRAD IBM WebSphere Tutorial Java J2EE Rational Application Developer Servlet



