• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
Re: java.lang.ClassCastException
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: java.lang.ClassCastException


  • Subject: Re: java.lang.ClassCastException
  • From: Jaime Magiera <email@hidden>
  • Date: Mon, 29 Sep 2008 13:37:10 -0400


On Sep 29, 2008, at 12:06 PM, WebObjects wrote:

Application:
ControlHorarios
Error:
java.lang.ClassCastException: com.webobjects.eocontrol.EOGenericRecord
Reason:
com.webobjects.eocontrol.EOGenericRecord
I have this in the code:
try {
EOQualifier qual = Empleado.E_MAIL.eq(email).and(Empleado.PASSWORD.eq(password));

emp = Empleado.fetchRequiredEmpleado(session().defaultEditingContext(), qual);
System.out.println(emp.nombre()+" y con pass "+emp.password());
this.errorMessage = "Success";

} catch (NoSuchElementException e) {
this.errorMessage ="EMail o Contrase–a Erroneos";

}catch (Exception e){
//TODO
System.out.println(emp.nombre()+" y con pass "+emp.password());
}

Hi,

If you enter invalid search information, you won't be pulling an object up. However, if you do pull a valid object up via EOQualifer fetch, it's going to be of type EOGenericRecord. You have to coerce it to the proper object type. Example...

Employee emp;

emp = (Employee )Empleado.fetchRequiredEmpleado(session().defaultEditingContext(), qual);

hope that helps,

Jaime Magiera

Sensory Research
http://www.sensoryresearch.net

_______________________________________________
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list      (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden


  • Follow-Ups:
    • Re: java.lang.ClassCastException
      • From: WebObjects <email@hidden>
References: 
 >java.lang.ClassCastException (From: WebObjects <email@hidden>)

  • Prev by Date: java.lang.ClassCastException
  • Next by Date: Re: java.lang.ClassCastException
  • Previous by thread: java.lang.ClassCastException
  • Next by thread: Re: java.lang.ClassCastException
  • Index(es):
    • Date
    • Thread