RajaDelhiwala Babu

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

Recent posts by RajaDelhiwala Babu

Manmohan Singh ji:

Better opportunity.


Delhiwala Babu
19 years ago
I vote for I Flex too.I have worked with Iflex ,they have very good project specially in development not maintainance and support one.
You would get full SDLC exposure there.
Also domain knowledge which you would gain be very useful for you too,capgemini as I have heard mostly have support/maintainance work.
Iflex is very work oriented company ,culture is nice ,and there are onsite opportunities too.

RDB
19 years ago
Manmohan:

I am not asking about the question,as I wrote I want to know about the process,whether it is diffrent from other IT company interviews.
How many rounds are there? Also about the questions whether it banking domain specific or more java/j2ee specific.
How much role your academics play? I want to know about all this .
I hope now you got it.

Raja Babu
19 years ago
Hi:
I want to know more about goldman sach technical interview(Java/J2ee) ,I have interview in 2-3 days.
Any information ,would be deeply appreciated
19 years ago
Hi :


I am getting following exception when running my struts example:

E SRVE0026E: [Servlet Error]-[No getter method for property lastname of bean mybean]: javax.servlet.jsp.JspException: No getter method for property lastname of bean mybean
at org.apache.struts.util.RequestUtils.lookup(RequestUtils.java:968)
at org.apache.struts.taglib.bean.WriteTag.doStartTag(WriteTag.java:286)
at org.apache.jsp._test._jspService(_test.java:118)

my jsp looks like this :


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>
<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %>
<%@ page

import="com.abc.action.TestBean"

%>
<bean efine id="mybean" value="com.abc.action.TestBean" />
<bean:write name="mybean" property="lastname" />
<html:form action="com/abc/in.do">
</html:form>

I am also writing my bean code too:

public class TestBean {
private String lastname,firstname;
/**
* @return
*/
public String getFirstname() {
return firstname;
}

/**
* @return
*/
public String getLastname() {
return lastname;
}

/**
* @param string
*/
public void setFirstname(String string) {
firstname = string;
}

/**
* @param string
*/
public void setLastname(String string) {
lastname = string;
}

}

I am unable to understand why this is happening,even I have checked the case of property lastname,this is exactly what is in the jsp.
please help

19 years ago