okkadu privt

Ranch Hand
+ Follow
since Feb 07, 2005
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by okkadu privt

Thanks for reply.

For this new job i have relocated to Banglore from Hyderabad.If i join my previos one then i can also stay in Hyderabad. Please reply with yor comments.
16 years ago
Hello Friends,

I have total 3.6+ yrs exp in Java/J2EE. Recently (one week back) i have joined a new company, where i have been asked to be on bench for 3 months. 3 months is very long period to be idle so various thoughts are making me nervous:-

1) Should i ask my previous company and join the same? Will this move makes any bad impression of company on me.
2) Should i look for another job?
3) Should i continue and be on bench?

Yours thoughts and comments can help me to take the right step.
16 years ago
Hello Ranchers,

I am working as Java/J2EE developer for last 3.6 yrs, now my new company is offering to work on Oracle Fusion. Is it right to shift to oracle fusion?
Which technology has more career growth?

Regards
16 years ago
Hello Ranchers,

I have total 3.6 yrs exp all in Java/J2EE. Planning to switch to new company, which is offering me to work on Oracle Fusion.
Want some breif regarding Oracle Fusion and Career growth in the same.
16 years ago
Hi Ranchers,

I am working in a small indian based company from last 3 years. Last year in januray 2007 i had planned to switch the company but this current company offered me L1B and told "i will be in US by October 2007" and they have also made me sign 6 months Bond which will be applicable from the day of stamping done. But now, the stamping is not yet done and company is saying it will be take another 1 month for stamping get done, which means i have to be with this company another 7 months.
I want to switch the company because of less pay. What should i do? as i need more pay. But if i break the bond then i have to pay 1 lac to this company.
17 years ago
Congrates... for being what you wanted to be.
Best of luck to your new innings.
18 years ago
Hi Folks,

I have 2 yrs of exp in java/j2ee. I have also completeed SCJP and SCWCD.
I am looking to change my current job. How much salary can i expect?
My current CTC 3.2 per annum. Waiting for your reply. I am working in pune
18 years ago
Hi Folks,

I have 2 yrs of exp in java/j2ee. I have also completeed SCJP and SCWCD.
I am looking to change my current job. How much salary can i expect?
My current CTC 3.2 per annum. Waiting for your reply.
Factory Pattern is used when we don't know which class object to create. It returns the class object.

Abstract Factory Pattern returns the class object which itself has subclasses and returns that subclasses object.

In Short Abstract Factory Pattern returns the factory object and this factory object returns the subclass object.

If i am wrong, please correct me.
For understanding the concepts and for getting the types of the questions will be asked in exam, HF is good. You have to take mock exam, read materials avaiable on net and go thorugh wrox publication book ("server programming").
Hi all,
I have 1 year exp with SCJP & SCWCD.
How much the salary expectation should be according to current market in India ?
19 years ago
For coding practice, "Professional Java Server Pragramming" by wrox publication is book.
Hello,
Head First Servlet is good book for certification. I have gone through the book & i enjoyed lot.

Best Of luck in advance

Srinath
Use <jsp:forward page="/s" /> action.. for forwarding the request from jsp to servlet.

Srianth
Hi Mat,

public void doGet(HttpServletRequest req, HttpServletResponse res) throws ServletException, java.io.IOException { HttpSession session = req.getSession(); String url1 = res.encodeRedirectURL("http://localhost:8080/ELTest/view.jsp"); //Line 14boolean test = "http://localhost:8080/ELTest/view.jsp". equals(url1); //Line 15 System.out.println(test);System.out.println(url1); res.sendRedirect(url1); }


executing with this code, jsessionid is shown in url. But it is not showing when user clicks on Test Link & goes to TestJSP.jsp page.

What is the problem ?