Class not  found, Jdk1.4 matters?

Why drivers can't be loaded for this machine? Make me strugge for many hours already.
1)
Version j2sdk-1_4_2_07- (Java 2 se, 1.4)
Environment: Windows XP
I keep receiving "Class not found" exception error when running the following simple piece of codes for testing. (No complint When compiling). The code simply reads:
try {
System.out.println("driver loading test step 0 !!!....");
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
System.out.println("driver loaded 1 !!!....");
System.exit(0);
catch (ClassNotFoundException ee) {
System.out.println("Clss not found\n" + ee.getMessage());
My other simple java codes got compiled and run ok in the same enironment.
2)
I then replaced the sun jdcd-odbc bridge driver in the test with a jdbc driver (for Sql server) downloaded from DataDirect.
That is: by replacing the one line above with the following. But it gives me classNot found Exception too. I don't think it has to do with classpath as I add it in the java command line already
Class.forName("com.ddtek.jdbc.sqlserver.SQLServerDriver");
3) I moved the codes to run in my old PC (Windows NT 4) with jdk1.3, the codes are compiled and run WITHOUT Class not found Exception.
I had more than a year experience in developing Java codes (though not recently) but what I experience now is so wierd to me. What's wrong with jdk1.4 or what's wrong with this XP machine?
Thanks.

99.999% of the time, something is wrong with your classpath at execution time, or with the classname you put in your code (those class names do look right though). That the same code works on another machine almost certainly means that something has set the classpath in the environment on one machine and not the other.
.001 percent of the time, something is wrong with your machine, such as a corrupted file system or OS. If so, reformat your drive, and reinstall everything. However, always, there will be other symptoms of problems (mystery crashes, disappearing files, etc.), so don't waste your time doing this unless your computer is already flaky.
Most likely, you just don't know how to set the classpath for execution. For that, use Google.

Similar Messages

  • Class Not Found in Server Application

    I have set up a basic server application. It contains three files namely
    Arith.java (implements the Remote interface)
    ArithImpl.java (implements Arith.java the server) and
    ArithApp.java which is the client Application
    All of these are in the same package. I have compiled all of these files and I execute the rmic ArithImpl command from within the ArithImpl.java file via Runtime.getRuntime.exec(...);
    The stub and skeleton files are generated and still I get a class not found exception. I have checked the class path and these files are within the class path.
    If anyone could help me I'd greatly appreciate it. Thanks
    public class ArithImpl extends UnicastRemoteObject implements Arith{
    public static final String HOST_NAME = "localhost";
    public static final String ROOT = "C:/Work/Thesis~1/LearningRMI/";
    public static final String CLASSPATH = ROOT;
    public static final String POLICY_FILE = CLASSPATH+"policies/rmi.policy";
    public static final String RMI_LOCATION = "C:/Progra~1/java/jdk1.5.0_03/bin/";
    String objectName;
    public ArithImpl(String s) throws RemoteException{
         super();
         objectName = s;
    public int[] add(int[] a, int[] b) throws RemoteException {
         int c[] = new int[10];
         for (int i=0; i<10; i++)
              c[i] = a[i]+b;
         return c;
    public static void main(String[] args) {
         System.setProperty("java.security.policy",POLICY_FILE);
         System.setProperty("java.class.path",CLASSPATH);
    String rmic = RMI_LOCATION+"rmic -vcompat -classpath "+CLASSPATH+" "+ArithImpl.class.getName();
    String registry = RMI_LOCATION+"\\rmiregistry";
    try{
    Runtime rt = Runtime.getRuntime();
    rt.exec(rmic);
    rt.exec(registry);
    catch (IOException e){
    e.printStackTrace();
    RMISecurityManager sm = new RMISecurityManager();
    System.setSecurityManager(sm);     
    try{
    Naming.rebind("//"+HOST_NAME+"/ArithServer", obj);
    System.out.println("ArithServer bound in registry");
    catch (Exception e){
    e.printStackTrace();

    java.rmi.ServerException: RemoteException occurred in server thread; nested exception is:
         java.rmi.UnmarshalException: error unmarshalling arguments; nested exception is:
         java.lang.ClassNotFoundException: Arith
         at sun.rmi.server.UnicastServerRef.oldDispatch(UnicastServerRef.java:385)
         at sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:240)
         at sun.rmi.transport.Transport$1.run(Transport.java:153)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.rmi.transport.Transport.serviceCall(Transport.java:149)
         at sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:460)
         at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:701)
         at java.lang.Thread.run(Thread.java:595)
         at sun.rmi.transport.StreamRemoteCall.exceptionReceivedFromServer(StreamRemoteCall.java:247)
         at sun.rmi.transport.StreamRemoteCall.executeCall(StreamRemoteCall.java:223)
         at sun.rmi.server.UnicastRef.invoke(UnicastRef.java:343)
         at sun.rmi.registry.RegistryImpl_Stub.rebind(Unknown Source)
         at java.rmi.Naming.rebind(Naming.java:160)
         at ArithImpl.main(ArithImpl.java:106)
    Caused by: java.rmi.UnmarshalException: error unmarshalling arguments; nested exception is:
         java.lang.ClassNotFoundException: Arith
         at sun.rmi.registry.RegistryImpl_Skel.dispatch(Unknown Source)
         at sun.rmi.server.UnicastServerRef.oldDispatch(UnicastServerRef.java:375)
         at sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:240)
         at sun.rmi.transport.Transport$1.run(Transport.java:153)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.rmi.transport.Transport.serviceCall(Transport.java:149)
         at sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:460)
         at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:701)
         at java.lang.Thread.run(Thread.java:595)
    Caused by: java.lang.ClassNotFoundException: Arith
         at java.net.URLClassLoader$1.run(URLClassLoader.java:200)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
         at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Class.java:242)
         at sun.rmi.server.LoaderHandler.loadProxyInterfaces(LoaderHandler.java:707)
         at sun.rmi.server.LoaderHandler.loadProxyClass(LoaderHandler.java:651)
         at sun.rmi.server.LoaderHandler.loadProxyClass(LoaderHandler.java:588)
         at java.rmi.server.RMIClassLoader$2.loadProxyClass(RMIClassLoader.java:628)
         at java.rmi.server.RMIClassLoader.loadProxyClass(RMIClassLoader.java:294)
         at sun.rmi.server.MarshalInputStream.resolveProxyClass(MarshalInputStream.java:238)
         at java.io.ObjectInputStream.readProxyDesc(ObjectInputStream.java:1494)
         at java.io.ObjectInputStream.readClassDesc(ObjectInputStream.java:1457)
         at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1693)
         at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1299)
         at java.io.ObjectInputStream.readObject(ObjectInputStream.java:339)
         ... 9 more

  • Class not found error for applet.

    This is probally a really simple mistake but I've tried everything and can't find it.
    My applet works fine with applet viewer - I'm running it from JBuilder. But when I open my html file in the browser it gives me a 'Class not found' error. I've tried running other applets (my own and demos on this site) and they work fine.This is the applet tag code:
    <applet code = "Rotary.class" width = "650" height = "580" align = "top">
    <!-- coordinates of sectors -->
    <param name = "sector0" value ="234,215,244,207,154,43,125,63">
    </applet>
    The class file is in the same directory as the HTML file. Do I need to specify the codebase? I tried that too - giving it the full pathname of the class.
    In the Java console it said that it couldn't find "C:Project\Rotary\javax\swing\japplet"
    I don't think it could have anything to do with the fact that I'm using swing because the other applets I used used swing.
    Please help - I'm really running out of ideas here!

    You have a similar problem like I had.
    You seem to have a too old JAVA environment for the browser - I had a too new environment.
    For all who are experiencing the same problem!
    Problem:
    You're compiling your applets with a quiet modern compiler (i.e. Netbeans Version 3.5.1)
    You are able to compile your applets without any problems but if you try your applets in "real life", the browsers can't interpret your applets [class not found]. (I tested Internet Explorer 6.0 and Netscape Navigator 4.7)
    So you need a plugin for the new JAVA environment because the JAVA environment of the browser is older than that which the applet needs.
    Well, you have the choice to demand to every user of your applet to download the new Java Runtime Environment, but then don't wonder why nobody visits your site!
    But, don't worry: I figuered out another solution, that Netbeans (www.netbeans.org) allows to compile in different JAVA versions.
    Solution:
    What you have to do is:
    - Install a previous version of JDK (i.e. JDK 1.3 - I would suggest, lower versions don't work with Netbeans 3.5.1 and JDK 1.3 is enough for IE 6.0 and NN 4.7, which I tested)
    - Go into the "bin"-directory of Netbeans (i.e. c:/netbeans3.5.1/bin)
    - Open the file "ide.cfg" (with notepad or any other texteditor)
    - You see a line like: jdkhome "C:\java\j2sdk1.4.2" -J-Xmx96m -J-Xss1024k -J-Xms24m -J-Xverify:none
    - Change the path to your other JDK you wish, like: jdkhome "C:\java\jdk1.3" -J-Xmx96m -J-Xss1024k -J-Xms24m -J-Xverify:none
    - That's it, you can compile your applets in a previous version of JAVA so that "older" browser user don't have to install a plugin for the new JAVA environment.
    Have fun!
    If you have any questions I would be pleased to help you.
    If this tip helped you already I would be pleased if you would send me a quick email with your experience.
    My email: [email protected]

  • Error : class not found exception : com.mysql.jdbc.driver in Eclipse Tool

    Hi
    I have impoted project file in eclipse in new machine using option import from existing workbence . When i stat to debug this project ,
    i am getting error as class not found exception : com.mysql.jdbc.driver . my project folder already consist of mysql .jar file in /web appls/web-inf folder.
    Application is running successfully in other machine from where i took the application file. As this error appeared I also added jar file into project path as Project ---->properties-- build java path---libraries----add external jar file.
    kindly hep me.

    Sounds like an eclipse question - not a JDBC one.
    But since eclipse is telling you it can't find it then it means it is not in the eclipse path. So you must add it. (The fact that it is somewhere is irrelevant - all that matters is it is not in the class path.)

  • JNLPClassloader raises class not found Exception

    I have some class files which are part of a jar file. I made sure this jar is downloaded by JWS on client machine. When application is launched in stand alone mode then JNLPClassloader complains at runTime that particular class is missing.Although this class is already inside jar file.
    Did any one faced similar situation when JNLPClassloader raises "Class Not found Exception" ? How this can be avoided?

    yeah i made sure classes are put in proper folder. As i am using Eclipse,JDK1.6, jboss so when i launch application directly from Eclipse then it works fine.
    But if i launch through JWS then it does not work. I am not able to understand why JWS can not detect classes inside Jar file downloaded on client machine ?

  • HELP!! Nokia's API classes not found with j2me WTK

    I setup j2me WTK, jdk1.4.2 and also Nokia's SDK (Series_60_MIDP_SDK_for_Symbian_OS_v_1_2_1) on my Win NT 4.0 machine.
    J2ME samples (shipped with it) are working fine with ktoolbar. but when i try to build & run nokia samples, they are always giving error "FullCanvas class not found" and "package com.nokia.lcd.ui.* not found". I am sure it is the problem of placement of classes of nokia at correct place inside j2me's WTK. However, i followed the guidelines to install symbian sdk inside wtk401\wtklib\devices folder (as per instructions of forum nokia). But i am still not able to get it running. Any expert suggestions, then plz respond me , i am in urgent need to solve this issue!!!! plz help me!!!!

    Hi,
    Maybe I'm being thick but I can't get this work. I've tried zipping the com/nokia stuff into the midpapi.zip. And I've tried just replacing midapi.zip with classes.zip from the nokia emulator. But it still says:
    "package nokia.mid.ui does not exist
    import nokia.mid.ui.*;"
    I'm using ktoolbar 1.04.
    Many thanks!
    CP
    Hey, thanks for the great tip. Was also using
    KToolbar because it runs faster on my slow laptop than
    Sun One studio.
    With the later version of WTK, the paths
    C:\...\WTK21\lib contains 2 files, midpapi20.zip and
    midpapi10.zip
    The later contains classes for compiling to MIDP1.0
    standard. I think most people use this. Replace it
    the class.zip in
    C:\Nokia\Devices\Nokia_7210_MIDP_SDK_v1_0\lib if
    you're using the same SDK as I am, and don't forget to
    rename it.
    Cheers.

  • Class Not Found: JDBC driver oracle.jdbc.driver.OracleDriver

    Does anyone can help?
    When I install the OpenBravo, I get the error shown below:
    Class Not Found: JDBC driver oracle.jdbc.driver.OracleDriver could not be loaded.
    I am using the Oracle XE, jdk1.5.0_06, Apache Tomcat 5.5.17.

    include the jar file classes111.jar in your classpath, it will work
    The location would be like
    C:\Applns\oracle9204\jdbc\lib\classes111.jar;
    set the classpath with this jar in command prompt
    set CLASSPATH=%CLASSPATH%;C:\Applns\oracle9204\jdbc\lib\classes111.jar;

  • Rmic Class not found is worrying me--Help

    Hi guys I want to know if win200 prof and JDK1.3.1_01 are not friendly.
    When I run javac *.java in the dir c:\test\java\agent, it compiles fine, but When I run
    rmic AgentImpl
    I get AgentImpl class not found error
    Now I tried this:
    C:\>rmic -d <c:\test> -classpath".;c:\jdk1.3.1_01\bin;c:\test\java\agent " test.java.agent.AgentImpl
    and got Access is denied.
    Can someone help pls
    Joe

    Someone pls help on the RMIC comple problem as per below

  • Class not found only using browser.

    I can not run any of my java programs in my browsers. They work fine using the "java" command in a dos window or using the "appletviewer" command. But when I try to view them in a browser, the page appears to load fine but I get no program and the status window of the browser displays a class not found msg.
    I've checked spelling, location, capitalization. Everything works fine outside the browsers but will not view in a browser. We had the same problem in school and the instructor just said to stick with the appletviewer for class.
    I am running JDK1.2. Any suggestions?
    John

    Maybe you should try a newer JAVA version.
    I had a similar problem, but with a (too) newer JAVA version.
    Problem:
    You're compiling your applets with a quiet modern compiler (i.e. Netbeans Version 3.5.1)
    You are able to compile your applets without any problems but if you try your applets in "real life", the browsers can't interpret your applets [class not found]. (I tested Internet Explorer 6.0 and Netscape Navigator 4.7)
    So you need a plugin for the new JAVA environment because the JAVA environment of the browser is older than that which the applet needs.
    Well, you have the choice to demand to every user of your applet to download the new Java Runtime Environment, but then don't wonder why nobody visits your site!
    But, don't worry: I figuered out another solution, that Netbeans (www.netbeans.org) allows to compile in different JAVA versions.
    Solution:
    What you have to do is:
    - Install a previous version of JDK (i.e. JDK 1.3 - I would suggest, lower versions don't work with Netbeans 3.5.1 and JDK 1.3 is enough for IE 6.0 and NN 4.7, which I tested)
    - Go into the "bin"-directory of Netbeans (i.e. c:/netbeans3.5.1/bin)
    - Open the file "ide.cfg" (with notepad or any other texteditor)
    - You see a line like: jdkhome "C:\java\j2sdk1.4.2" -J-Xmx96m -J-Xss1024k -J-Xms24m -J-Xverify:none
    - Change the path to your other JDK you wish, like: jdkhome "C:\java\jdk1.3" -J-Xmx96m -J-Xss1024k -J-Xms24m -J-Xverify:none
    - That's it, you can compile your applets in a previous version of JAVA so that "older" browser user don't have to install a plugin for the new JAVA environment.
    Have fun!
    If you have any questions I would be pleased to help you.
    If this tip helped you already I would be pleased if you would send me a quick email with your experience.
    My email: [email protected]

  • Class not found. Or: THERE'S NO SUCH THING AS APPLETS

    Okay, the problem I�m having seems to be somewhat widespread judging from the forum achieves, but I wasn�t able to find any answers that worked for me. So forgive me if I�m treading old ground, but asking explicitly is my one last attempt to learn what�s going on.
    The problem is the �load: class <someclass.class> not found� gray screen whenever I try to view an applet. Now, looking around online, there are a few applets that I�ve been able to access, and many I haven�t; I�m not certain what causes some to work fine and others to gray screen, but there doesn�t seem to be a pattern to it other than the fact that if I can or can�t view one applet at a site, the same is generally true for all the other applets there as well.
    Now, as for local applets on my computer, I can�t view any of them. Not examples that come with the SDK, none that I�ve compiled myself, and none that I�ve downloaded. Needless to say, in my exasperation I�ve run through every possible permutation of html code for class and classpath and so on trying to modify code into working, but to no avail.
    Now, in the appletviewer, and in an IDE called RealJ, I can run applets just fine. It�s just those embedded in web pages that seem to give me trouble.
    I�ve uninstalled and reinstalled j2sdk 1.4.1. I�m running IE 6.0. Windows 98SE. In my Internet options, I have under Java (Sun) the �Use Java 2 v1.4.1 for applet� box checked, and under Java VM the �Java console enabled� and �JIT Compiler� boxes checked, though I have also gone through every permutation possible here, again, to no avail.
    Any idea what I can change so that I can start running applets with ease?
    Thanks in advance, I desperately appreciate whatever suggestions you can give.
    Travis

    gray screen whenever I try to view an applet.
    Now, looking around online, there are a few applets
    that I�ve been able to access, and many I haven�t; Basically it is partly your browser and partly the version of the jdk /sdk that you are viewing. Generally, IE does not support swing ie JApplet, JButton, JTextArea etc... which is a shame cos it has some pretty neat features - I particularly like the flexibility with textfields and textAreas - and my favourite: imageIcon, allows you to have the sexiest looking buttons in the known universe. For reasons like this, people who like to write Applets like to use swing ... and people who like Sun don't like windoze and IE and the like (and they definitely hate each other). So, if you change your browser to Netscape or Opera - you will see swinging applets galore.
    Shame really on a practical level, as the last survey I saw gave IE a 85 - 90 % share of the browser market. A bigger shame, when it seems to be deliberate that m-$oft do not include the latest JVM in their browser, yet they have the latest Flash plug-in. Both are in fact a good idea.
    Any idea what I can change so that I can start running
    applets with ease? Don't use swing and get a copy of something like jdk1.1.5 or even 1.1.2, if it compiles OK with this then it should be OK, keep it simple - as applets download on the client-side and can be unreliable and erratic so try and avoid images. Generally though Applets are a little bit out of vogue at the moment.

  • Class not found because browsers need newer runtime environment - or this

    For all who are experiencing the same problem!
    Problem:
    You're compiling your applets with a quiet modern compiler (i.e. Netbeans Version 3.5.1)
    You are able to compile your applets without any problems but if you try your applets in "real life", the browsers can't interpret your applets [class not found]. (I tested Internet Explorer 6.0 and Netscape Navigator 4.7)
    So you need a plugin for the new JAVA environment because the JAVA environment of the browser is older than that which the applet needs.
    Well, you have the choice to demand to every user of your applet to download the new Java Runtime Environment, but then don't wonder why nobody visits your site!
    But, don't worry: I figuered out another solution, that Netbeans (www.netbeans.org) allows to compile in different JAVA versions.
    Solution:
    What you have to do is:
    - Install a previous version of JDK (i.e. JDK 1.3 - I would suggest, lower versions don't work with Netbeans 3.5.1 and JDK 1.3 is enough for IE 6.0 and NN 4.7, which I tested)
    - Go into the "bin"-directory of Netbeans (i.e. c:/netbeans3.5.1/bin)
    - Open the file "ide.cfg" (with notepad or any other texteditor)
    - You see a line like: jdkhome "C:\java\j2sdk1.4.2" -J-Xmx96m -J-Xss1024k -J-Xms24m -J-Xverify:none
    - Change the path to your other JDK you wish, like: jdkhome "C:\java\jdk1.3" -J-Xmx96m -J-Xss1024k -J-Xms24m -J-Xverify:none
    - That's it, you can compile your applets in a previous version of JAVA so that "older" browser user don't have to install a plugin for the new JAVA environment.
    Have fun!
    If you have any questions I would be pleased to help you.
    If this tip helped you already I would be pleased if you would send me a quick email with your experience.
    My email: [email protected]

    That's very good to know of course, but correct me if I am wrong with saying that Java development not
    limited to NewBeans or any other IDE use.
    If somebody wants to deploy the applets within browser built-in JVM (which is really outdated and just
    Java 1.1.6 compliant) he or she should compile applet with Java 1.1.8 (still available from SunMicrosystems). Generated classes will be recognized by both Netscape and IE.
    Regards.

  • Urgent ! Class not found error

    Hi,
    I am new to Java RMI and i am trying lot of example from books. Iam struck in HelloWorld example and i need your help urgently to solve this problem as i have to start my coursework.
    When i compile all the class together by command "javac *.java", it compiles sucessfully but when i try to compile separtley by giving name of each class like javac HelloWorld.java, javac HelloworldImpl.java .... only the interface class compiles sucessfully. The implementation class has the error in extending UnicastRemoteObject and implementing remote interface class. But i wonder how it compiles sucessfuly when i compiled it together !
    Ok, I have decided to compile the class together but iam not able to do more than that. When i tried to create a stub and skelton class by the command "rmic HelloworldImpl", it shows an error "Class not found". My professor said that the problem could be in classpath.
    I am using XP Professional and i have set the path in system properties to C:\j2sdk1.4.2_05\bin and class path to C:\j2sdk1.4.2_05\lib but it doesn't make any difference. I have tried lot of stuff but i couldn't solve this problem. I need your advice or any suggestion to solve this problem.
    Vinesh Thomas

    hi
    above discussion about classpath variable seems strange , myself also face such type problem, but when setting classpath it works for me, even sometimes without setting classpath it works fine for me but sometimes not,
    so could any expert help us to know ,what is the permanent solution for such problems,
    and also when i remove the classpath variable and set the path variable to the
    jdk1.4\bin ( i means in the bin of any jdk)
    is classpath variable have it's default settings so that it is able to find java api classes without setting classpath
    because i never set classpath variable ......for running simple java program simple go to directory where my programs are put and run
    javac *.java and
    java ....it
    please anybody explain this behaviour of classpath variable clearly

  • Installation problem on redhat 6.0, class not found

    I have followed the instructions for installing oracle 8i. When i run runIns.sh I get the following error message:
    class not found: oracle.sysman.oii.oiic.OiicInstaller
    Does anyone know what this means? and what do i have to do?

    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by am():
    probably you don't use jre116_v5. Install it and alter all symlinks to the old jre/jdk.
    Note: Don't use any jdk at all or any jre which is newer than jre116_v5!<HR></BLOCKQUOTE>
    Thanks for the reply, but, yes, I've already done that.
    null

  • For weeks I have been viewing a doggy day care via their web cam.  This weekend I upgraded to Lion and have been unable to view the center since.  I get an error message for java webcam class not found.  All of my software is up to date--suggestions?

    For weeks I have been viewing a doggy day care center via their web cam.  This weekend I upgraded to Lion and have been unable to view the center.  I get an error message for Java plug-in 1.6.0_29 ....webcam class not found.  Any suggestions on how to fix this?

    Sorry, don't know what else to suggest unless there's a URL to the problem stream that someone here can try. Otherwise we can't test it to try and determine what might be wrong.
    BTW, make sure they're testing it with a Mac, not with a Windows system. If they test only with Windows, what they say is or is not working doesn't mean much.
    Regards.

  • "Java Class not found in classpath" Error in DESIGNER

    Hello All,
    I'm trying to connect in Designer using a JDBC connection to MS SQL Server 2008.  As per the instructions, I updated my jdbc.sbo file with the path to the existing two JAR files.  However, I still get the following error when I try and connect in Designer:  "Java Class not found in classpath : C:\Program Files\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\dataAccess\connectionServer\jdbc\Drivers\sqlsrv".  Of course, this error includes the drive path with the location to my JAR files.  Any help in resolving this nagging issue is very GREATLY appreciated.  Also, if anyone needs it I can post a copy of the jdbc.sbo file to this thread.
    Thank you,
    Pankaj

    Stratos,
    Your suggestion didn't help.  I tried to connect after restarting my machine and I still get the error.  And, I've also tried adding a connection to MS SQL Server 2005 using this JDBC driver, and that didn't help either.  Any other suggestions?  Would it help to see my "jdbc.sbo" file?  Thanks again for your and everyone else's help, and I look forward to your reply.
    Regards,
    Pankaj

Maybe you are looking for