Murali gopal

Greenhorn
+ Follow
since Oct 10, 2006
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Murali gopal

Hi Friends
I am happy to say you that i have cleared SCEA Part one with 93%. I have prepared for one month to clear this exam. The books and notes used are :

SCEA for J2EE StudyGuide by paul allen and joseph bambara.
SCEAStudyGuide by Cade_Roberts
Yahoo group scea forums
Exforsys mock exam simulator
whizlabs free mockexam simulator
moelholm free applet mock exams
harish chander scea mockexam
scea model questions from geekinterview.com

I wish you all the best for taking the exam.

Thanks & Regards
K.Murali gopal
17 years ago
You can download the JDO book by Robin M.Roos (Addison wesley pub) from www.esnips.com by searching JDO.

You can use the JNDI name to look up home interface . The code is given below for your reference. If you are new to EJB then study the Mastering EJB by Ed Roman. You can dowload this pdf for free in theServerside.com.

Hashtable h = new Hashtable();
h.put(Context.INITIAL_CONTEXT_FACTORY,
"weblogic.jndi.WLInitialContextFactory");
h.put(Context.PROVIDER_URL, "t3://localhost:7001");

/*
* Obtain the JNDI initial context.
*
* The initial context is a starting point for
* connecting to a JNDI tree. We choose our JNDI
* driver, the network location of the server, etc
* by passing in the environment properties.
*/
Context ctx = new InitialContext(h);

/*
* Get a reference to the home object - the
* factory for Hello EJB Objects
*/
Object obj = ctx.lookup("HelloHome");


/*
* Home objects are RMI-IIOP objects, and so
* they must be cast into RMI-IIOP objects
* using a special RMI-IIOP cast.
*
* See Appendix X for more details on this.
*/
HelloHome home = (HelloHome)
javax.rmi.PortableRemoteObject.narrow(
obj, HelloHome.class);

/*
* Use the factory to create the Hello EJB Object
*/
Hello hello = home.create();
System.out.println(hello.hello());
You can use the log4j.properties File and Max back up index properties .
I have added tools.jar in the Global entries of ant runtime. For me its
working.
17 years ago
You can run this IBATIS Petstore application using any database like pointbase by changing the JPetStore-5.0\src\properties\database.properties file.
Hi
you can download a petstore application using IBatis and struts from web site http://ibatis.apache.org/javadownloads.html .


Regards
K.Murali gopal
Hi
To solve this problem add tools.jar file in window->preferences->ant-> runtime .

Regards
K.Murali gopal
17 years ago