# It appends the newly typed name to the previously saved string.
# The string is maintained as an attribute in the Session scope object
* Hint: You get HttpSession object through the following code
fragment
o HttpSession session = request.getSession();
* Hint: You might want to change the setName() method as following
o public void setName(String name) {
if (this.name == null) {
this.name = name;
}
else {
this.name = this.name + name;
}
}
Con lo anterior sólo me basto agregar ese código en la clase
NameHandler y funciono todo OK.
¿Eso es todo lo que hay que hacer? ¿Me salté algúna parte???
Desde ya gracias