Re: Very Confused : Part 2 :)

2005-05-18 Thread Nathan Maves
Dave,First off I would try to get things working in a plain old java environment.  This means leave the servlet and web stuff out first.Second off the error you are getting is a common java error.  A NoClassDefFoundError means only one thing, you are missing a jar file.  Make sure that you have all

Re: Very Confused : Part 2 :)

2005-05-18 Thread Clinton Begin
Dave, I seriously recommend you learn JUnit before attempting to go any further.  Simple unit tests to verify each layer of your application's functionality will make your life a lot easier and your learning experience a lot more enjoyable. Cheers, Clinton On 5/18/05, Dave Guzda <[EMAIL PROTECT

Very Confused : Part 2 :)

2005-05-18 Thread Dave Guzda
Hello,   Thanks for the replies to my Ibatis inquiry...   My OS is Windows 2000, I'm using Java version "1.5.0_03", I do my compiling/coding with Eclipse V3.02.   I'm really just interested in getting the most basic query functional and working from there...   I'll look at the links already g

Re: Very Confused.

2005-05-17 Thread Brice Ruth
Hi Dave, If you're new to Java, I wouldn't suggest trying to setup jPetstore ... that can be kinda tricky even for folks who've been around Java for a while. I would suggest setting up your SqlMap.xml and sql-map-config.xml files, as provided in the tutorial, and then creating a SqlConfig file th

Re: Very Confused.

2005-05-17 Thread Matt Raible
I've created a couple of web applications designed to help you get started using frameworks like iBATIS quickly. http://equinox.dev.java.net http://appfuse.dev.java.net Let me know if you'd like me to build one with a particular web framework (Struts, JSF, Spring, WebWork or Tapestry) and I'll

Re: Very Confused.

2005-05-17 Thread Brandon Goodin
It is difficult to give you advice on this sort of proble. Check your logs and make sure you aren't getting an exception. Also, please post your environment and give more detail on your setup. What Servlet container are you running, what version of ibatis jpetstore, what version of jdk etc... Than

Very Confused.

2005-05-17 Thread Dave Guzda
Hello,   I'm trying to get *anything* to work with the iBatis setup and I'm having very little success...   I've tried to follow the tutorial and setup the PetStore example but nothing runs for me. I'm sure it is some sort of configuration issue...   I'm very new to Java ... so I'm sure tha