Hi,
 
Is there anyone in this list that has tried (and succeeded) in getting JBoss to work with Turbine Developement Kit and Catalina? For the past two days i've been getting an error: protocol unknown:jndi. I can create and find the Home Object and the connection to the db works but when i to something like:
Enumeration enum = home.findByName(naam);
   System.out.println("got enum");
   while(enum.hasMoreElements())
   {
    Product prod = (Product) enum.nextElement();
    System.out.println(prod);
    description = prod.getDescription();
}
i get the error (MalformedURLException protocol unknwon: jndi. From a standalone-class everything works but a call through TDK it doesn't.
 
Anyone familair with the problem or has a solution? I Already followed the JBoss howto on Jakarta.
 
Thanks,
Maarten

Reply via email to