----- Original Message Follows -----
> how can you get it from the session in the action class(not in the jsp).
> as http wrappers return only strings or string arrays.
> 

first i make one big class like:
import java.io.Serializable;

public class User implements Serializable {
        
        private String imeK;

        public String getImeK() {
                return imeK;
        }

        public void setImeK(String imeKTemp) {
                imeK = imeKTemp;
        }
}

than in action class after population data and passing validation:

user.setImeK(form.getImeK());

than this value you can get in application anywhere you want :-)

Stanislav

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to