52014Aug

Half Girlfriend

Chetan Bhagat again bang with his new novel “Half Girlfriend” The story is all about a Bihari Boy who is not good in english and a Girl who is very good in english. So with this beautiful love story this novel tries to cheer you up for how to your dreams. Buy this book at Flipkart…

Read More
262014Jul

Sometimes We Need A Kick To Slog

I use to think brain is most important organ of my body but wait a minute who is telling me this, again my brain so don’t always follow him. Here it is described by well know Author Chetan Bhagat Sometimes, I look back and wonder, how on earth did all this happen? I remember my days…

Read More
252014Jul

Process Steps When We Deploy Any Web Application On Server

When we are creating and deploying any web application on server, the following tasks happened on server side. Step 1:- web.xml parsed by using SAX Parser and stores in to memory. Step 2:- ServletContext object will be created and initialized by sevletContext parameter specified in web.xml. <context-param>………</context-param> Step 3:- Thread Pool will be created. Step 4:- Servlet…

Read More
232014Jul

Advance CakePHP Interview Questions

Here is the list of advance Cakephp interview questions that every Cakephp developer should know before going for interview. And here I am just giving overview of answers so for complete answers you should go through respective documentation. Question – How many different type of Cache CakePHP Supports? FileCache ApcCache Wincache XcacheEngine MemcacheEngine RedisEngine FileEngine is always…

Read More
222014Jul

Difference between init() & init(ServletConfig)

Question-What’s the difference between init() & init(ServletConfig) and Which is better ? Answer- Before start we have to understand the servlet flow. For example you have servlet LoginServlet which extends HttpServlet public class LoginServlet extends HttpServlet{ } And your HttpServlet internally extends GenericServlet. public abstract class GenericServlet implements Servlet, ServletConfig, Serializable { public GenericServlet() {…

Read More
172014Jul

JDBCConnectionException while deploying Ear Sterling OMS

ErrorCode=”com.sterlingcommerce.woodstock.util.frame.jdbc.JDBCConnectionException This is the most common error we get while deploying Sterling Ear in Jboss. So to solve this error go to following location. << Jboss Installation Folder >>/bin/run.bat and open run.bat in text editor. After that find JAVA_OPTS variable and replace that variable and its value with this line. set JAVA_OPTS=%JAVA_OPTS% -Dsun.rmi.dgc.client.gcInterval=3600000 -Dsun.rmi.dgc.server.gcInterval=3600000 -Dvendor=shell -DvendorFile=<<sterling…

Read More
72014Jul
Cake PHP Url Rewriting

Cake PHP Url Rewriting

CakePHP Url Rewriting Some developers don’t like CakePhp Url structure because controller name should end with “s” and that cause a lot of dissatisfaction fro developers while developing with cakephp. For this CakePhp provides a simple and effective way to rewrite url in seo friendly way and according to client requirement. So how to write…

Read More
62014Jul

Dare to Do!!!

Dare to dream and you will find how aspiring the world is… Dare to start and you will find how beautiful beginning is… Dare to ask and you will find how less you know… Dare to say and you will find how strong your views are… Dare to share and you will find how caring…

Read More
152014Jun

CakePhp Association With Example

CakePhp Association Example CakePhp provides a very powerfull mechanism to handle relation between models ( i.e foreign key relationship between database tables ) by itself with the call of just one function. The four association types in CakePHP are: hasOne, hasMany, belongsTo, and hasAndBelongsToMany (HABTM). Here I am giving expamle for hasOne association in CakePhp. There will…

Read More
72014Jun

Software Requirement To Install ATG

Software requirement to install ATG 10.2 with Common Reference Store And Endeca :- Softwares related to ATG and Endeca can be downloaded from https://edelivery.oracle.com but you have to first sign up as oracle user to download all these softwares. Basic S/W —OS: 64bit Windows OS with at least 4GB RAM —Java: JDK 1.7 (64bit) —Application…

Read More