Eclipse plug-in error - driver not found error with DB2

Hi,
i am using websphere studio developer and the kodo 3.0 implementation.
I have set up the kodo plug in and i get an error when i try to create the
database schema:
kodo.util.FatalDataStoreException: No suitable driver
It can't find the DB2 driver. This is the information I have in the kodo
properties:
javax.jdo.option.ConnectionDriverName: COM.ibm.db2.jdbc.app.DB2Driver
javax.jdo.option.ConnectionURL: jdbc:db2:baokodo
The DB2 driver jar is in the kodo eclipse plugin directory and I am
referencing this jar file in the plugin xml file.

The plug in is finding the driver class but it does not like the driver
for some reason. It tells me no suitable driver found.
Here is my plugin.xml:
<?xml version="1.0" encoding="UTF-8"?>
<plugin id="kodo"
     name="%name"
     version="1.0.1"
     provider-name="%provider-name"
     class="kodo.jdbc.integration.eclipse.KodoPlugin">
     <runtime>
          <library name="db2java.jar"/>
          <library name="kodo-jdo.jar"/>
          <library name="jakarta-commons-collections-2.1.jar"/>
          <library name="jakarta-commons-lang-1.0.1.jar"/>
          <library name="jakarta-commons-logging-1.0.3.jar"/>
          <library name="jakarta-commons-pool-1.0.1.jar"/>
          <library name="jakarta-regexp-1.1.jar"/>
          <library name="jca1.0.jar"/>
          <library name="jdbc2_0-stdext.jar"/>
          <library name="jdo-1.0.1.jar"/>
          <library name="jta-spec1_0_1.jar"/>
          <library name="xalan.jar"/>
          <library name="xercesImpl.jar"/>
          <library name="xml-apis.jar"/>
          <library name="jfreechart-0.9.13.jar"/>
          <library name="jcommon-0.8.8.jar"/>
     </runtime>
     <requires>
          <import plugin="org.eclipse.ui"/>
          <import plugin="org.eclipse.core.resources"/>
          <import plugin="org.eclipse.jdt.core"/>
          <import plugin="org.eclipse.jdt.launching"/>
     </requires>
     <extension point="org.eclipse.ui.actionSets">
          <actionSet id="kodo.jdbc.integration.eclipse.actionSet"
               label="%action-set-name"
               visible="true">
               <menu id="kodo.menu"
                    label="%group-label">
                    <separator name="baseGroup"/>
               </menu>
               <action id="kodo.removeBuilder"
                    label="%remove-builder-label"
          class="kodo.jdbc.integration.eclipse.RemoveBuilderAction"
                    tooltip="%remove-builder-tooltip"
                    menubarPath="kodo.menu/baseGroup"
                    enablesFor="1">
               </action>
               <action id="kodo.addbuilder"
                    label="%add-builder-label"
               class="kodo.jdbc.integration.eclipse.AddBuilderAction"
                    tooltip="%add-builder-tooltip"
                    menubarPath="kodo.menu/baseGroup"
                    enablesFor="1">
               </action>
               <action id="kodo.mapping.build"
                    label="%mapping-build-label"
                    tooltip="%mapping-build-tooltip"
               class="kodo.jdbc.integration.eclipse.MappingToolAction$BuildSchema"
                    icon="icons/BuildSchemaMappingTool.gif"
                    menubarPath="kodo.menu/baseGroup"
                    toolbarPath="Normal/Kodo"
                    enablesFor="1">
                    <selection class="org.eclipse.core.resources.IFile"
                         name="*.jdo">
                    </selection>
               </action>
               <action id="kodo.mapping.drop"
                    label="%mapping-drop-label"
                    tooltip="%mapping-drop-tooltip"
                    class="kodo.jdbc.integration.eclipse.MappingToolAction$Drop"
                    icon="icons/DropMappingTool.gif"
                    menubarPath="kodo.menu/baseGroup"
                    toolbarPath="Normal/Kodo"
                    enablesFor="1">
                    <selection class="org.eclipse.core.resources.IFile"
                         name="*.jdo">
                    </selection>
               </action>
               <action id="kodo.mapping.refresh"
                    label="%mapping-refresh-label"
                    tooltip="%mapping-refresh-tooltip"
          class="kodo.jdbc.integration.eclipse.MappingToolAction$Refresh"
                    icon="icons/RefreshMappingTool.gif"
                    menubarPath="kodo.menu/baseGroup"
                    toolbarPath="Normal/Kodo"
                    enablesFor="1">
                    <selection class="org.eclipse.core.resources.IFile"
                         name="*.jdo">
                    </selection>
               </action>
               <action id="kodo.enhance"
                    label="%enhance-label"
                    icon="icons/EnhancerAction.gif"
               class="kodo.jdbc.integration.eclipse.EnhancerAction"
                    tooltip="%enhance-tooltip"
                    menubarPath="kodo.menu/baseGroup"
                    toolbarPath="Normal/Kodo"
                    enablesFor="1">
                    <selection class="org.eclipse.core.resources.IFile"
                         name="*.jdo">
                    </selection>
               </action>
          </actionSet>
     </extension>
     <!-- lock our actions into the base perspective -->
     <extension point="org.eclipse.ui.perspectiveExtensions">
          <perspectiveExtension targetID="org.eclipse.ui.resourcePerspective">
               <actionSet
                    id="kodo.jdbc.integration.eclipse.actionSet">
               </actionSet>
          </perspectiveExtension>
     </extension>
     <!-- put our extensions in -->
     <extension point="org.eclipse.ui.preferencePages">
          <page name="%preference-name"
               class="kodo.jdbc.integration.eclipse.KodoPreferencePage"
               id="kodo.jdbc.integration.eclipse.preferences.KodoPreferencePage">
          </page>
     </extension>
     <!-- lock in our eclipse-generated xml editor -->
     <extension point="org.eclipse.ui.editors">
          <editor name="%mappingeditor-name" extensions="mapping"
               icon="icons/mapping.gif"
               contributorClass="org.eclipse.ui.texteditor.BasicTextEditorActionContributor"
               class="kodo.jdbc.integration.eclipse.editor.XMLEditor"
               id="kodo.jdbc.integration.eclipse.editor.XMLEditorMapping">
          </editor>
          <editor name="%editor-name" extensions="jdo,schema"
               icon="icons/metadata.gif"
               contributorClass="org.eclipse.ui.texteditor.BasicTextEditorActionContributor"
               class="kodo.jdbc.integration.eclipse.editor.XMLEditor"
               id="kodo.jdbc.integration.eclipse.editor.XMLEditor">
          </editor>
     </extension>
     <!-- lock in our "view" -->
     <extension point="org.eclipse.ui.views">
          <view id="kodo.jdbc.integration.eclipse.KodoView"
               name="%view-name"
               category="org.eclipse.jdt.ui.java"
               icon="icons/kodosmall.gif"
               class="kodo.jdbc.integration.eclipse.KodoView">
          </view>
     </extension>
     <!-- lock in our builder -->
     <extension point="org.eclipse.core.resources.builders"
          id="kodo.jdbc.integration.eclipse.EnhancerBuilder"
          name="%builder-name">
          <builder>
               <run
               class="kodo.jdbc.integration.eclipse.EnhancerBuilder">
               </run>
          </builder>
     </extension>
     <!-- put our view onto the bottom bar -->
     <extension point="org.eclipse.ui.perspectiveExtensions">
          <perspectiveExtension
               targetID="org.eclipse.debug.ui.DebugPerspective">
               <view id="kodo.jdbc.integration.eclipse.KodoView"
                    relative="org.eclipse.debug.ui.ExpressionView"
                    relationship="stack"/>
               <viewShortcut id="org.eclipse.jdt.debug.ui.DisplayView"/>
          </perspectiveExtension>
     </extension>
</plugin>
Here is the kodo.properties file:
# Kodo JDO Properties configuration
# To evaluate or purchase a license key, visit http://www.solarmetric.com
kodo.LicenseKey: xxxxxxx
javax.jdo.PersistenceManagerFactoryClass:
kodo.jdbc.runtime.JDBCPersistenceManagerFactory
javax.jdo.option.ConnectionDriverName: COM.ibm.db2.jdbc.app.DB2Driver
javax.jdo.option.ConnectionUserName: db2admin
javax.jdo.option.ConnectionPassword: db2admin
javax.jdo.option.ConnectionURL: jdbc:db2:baokodo
javax.jdo.option.Optimistic: true
javax.jdo.option.RetainValues: true
javax.jdo.option.NontransactionalRead: true
# By default, Kodo stores object-relational mapping information in .mapping
# files. Other common options are storing the information in a special
# database table Kodo creates or as extensions in JDO metadata. Uncomment
# one of the properties below to use one of these options. See the
reference
# guide for a full list of mapping factories to choose from.
#kodo.jdbc.MappingFactory: db
#kodo.jdbc.MappingFactory: metadata
# Kodo provides a management / monitoring capability. It can be enabled
# locally (in the same JVM) by setting the kodo.ManagementUI property to
# "gui". Remote management / monitoring can be enabled by setting the
# kodo.ManagementServer property, and by running the remotemanagementtool
# in another process.
# kodo.ManagementUI: gui
# kodo.ManagementServer: true(host="localhost",port=1234)
Stephen Kim wrote:
Can you post your plugin.xml? We have tested against WebSphere Studio 4
and 5.
TD wrote:
I am specifying a properties file in the preferences pane.
Still not sure why this doesn't work...
Have you been able to get it to work in websphere studio.
Stephen Kim wrote:
The plugin does not use any kodo.properties by default. You have to
configure it through the Preferences pane (which you can point to your
kodo.properties file)
TD wrote:
Hi,
i am using websphere studio developer and the kodo 3.0 implementation.
I have set up the kodo plug in and i get an error when i try to create the
database schema:
kodo.util.FatalDataStoreException: No suitable driver
It can't find the DB2 driver. This is the information I have in the kodo
properties:
javax.jdo.option.ConnectionDriverName: COM.ibm.db2.jdbc.app.DB2Driver
javax.jdo.option.ConnectionURL: jdbc:db2:baokodo
The DB2 driver jar is in the kodo eclipse plugin directory and I am
referencing this jar file in the plugin xml file.
Steve Kim
[email protected]
SolarMetric Inc.
http://www.solarmetric.com
Steve Kim
[email protected]
SolarMetric Inc.
http://www.solarmetric.com

Similar Messages

  • Boot drive not found (folder with blinking ?, etc)

    Ok, I'll give some background. I may be misquoting some of the error messages, but I'll try to be as close as possible...
    This is on a Early 2011 15" MBP running 10.9.1. Harddrive has been replaced with an SSD.
    I was running low on space so I deleted a bunch of stuff - all form my home folder. Noticed that the free space wasn't there and I figured, hey, Filevault, so I rebooted to give it a chance. No problem,rebooted and there was a lot more disk space. For some reason I then decided it'd be a good idea to run Disk Utility and do a Verify on the disk. That's when the problems started.
    Verify told me I should run a repair, so I did. Repair told me it can't repair the disk right now, but that I should reboot, hold down CMD+R and use the Disk Utility from THERE to do the repair.
    So I did. Rebooted, CMD+R, Recovery, Disk Utility, Repair.
    The Repair in there told me "Live File System Repair is not supported" or something to that effect.
    So I figured I'd reboot and google that.
    Only after that, I get the flashing question-mark folder.
    So I figure it just forgot where the startup disk is. I power off and power back on while holding Option.
    And the only option it gives me is "Internet Recovery".
    I tried a whole bunch of times. Nothing. Eventually I went into Internet Recovery, ran THAT Disk Utility. That sees my drive just fine. I can double-click and enter the password tolet it access it, and I was even able to run the repair then! (it found a couple of very minor things). I ran repair permissions, too, just for good measure.
    When I quit recovery it told me I might want ot choose a startup disk. Perfect! And the only one offered is my drive (even has it custom icon). I choose that and recovery tells me it's "About to boot 10.9.1 from Mr. Harddrive".
    ...and then I get the flashing questionmark again, and Option-boot does not show that drive. Oh, I tried resetting the PROM at some point, too.
    Right now I've got that machine booted from an external drive which happens to have OS X on it. I can fully access the system drive, all the data is intact, no problems at all. But I'd still like to, you know, be able to boot from it.
    Anyone have any ideas?

    Here you go; the drive that I can't get too boot is /dev/disk3 (Mr SSD) but it looks like it's showing up as /dev/disk0 too?... I have no other 256GB drives in the system. I'm not sure why it's showing up like that and with slightly different sizes (maybe filevault?)
    jethro1138@wyvern:/Users/jethro1138% diskutil list
    /dev/disk0
       #:                       TYPE NAME                    SIZE       IDENTIFIER
       0:      GUID_partition_scheme                        *256.1 GB   disk0
       1:                        EFI                         209.7 MB   disk0s1
       2:          Apple_CoreStorage                         255.2 GB   disk0s2
       3:                 Apple_Boot Boot OS X               650.0 MB   disk0s3
    /dev/disk1
       #:                       TYPE NAME                    SIZE       IDENTIFIER
       0:      GUID_partition_scheme                        *1.0 TB     disk1
       1:                        EFI                         209.7 MB   disk1s1
       2:                  Apple_HFS Terry                   999.2 GB   disk1s2
       3:                 Apple_Boot Recovery HD             784.2 MB   disk1s3
    /dev/disk2
       #:                       TYPE NAME                    SIZE       IDENTIFIER
       0:      GUID_partition_scheme                        *500.1 GB   disk2
       1:                        EFI                         209.7 MB   disk2s1
       2:                  Apple_HFS iMovies                 499.8 GB   disk2s2
    /dev/disk3
       #:                       TYPE NAME                    SIZE       IDENTIFIER
       0:                  Apple_HFS Mr SSD                 *254.9 GB   disk3
    jethro1138@wyvern:/Users/jethro1138% diskutil cs list
    CoreStorage logical volume groups (1 found)
    |
    +-- Logical Volume Group 827A34E0-BE5D-4678-9B5A-B3DAAEA6985E
        =========================================================
        Name:         Mr SSD
        Status:       Online
        Size:         255200755712 B (255.2 GB)
        Free Space:   16777216 B (16.8 MB)
        |
        +-< Physical Volume EFB59769-CF0A-4EC5-800A-22D7F2CB88C0
        |   ----------------------------------------------------
        |   Index:    0
        |   Disk:     disk0s2
        |   Status:   Online
        |   Size:     255200755712 B (255.2 GB)
        |
        +-> Logical Volume Family 6C64D757-9450-4FFF-A0E3-B46BFBCA367B
            Encryption Status:       Unlocked
            Encryption Type:         AES-XTS
            Conversion Status:       Complete
            Conversion Direction:    -none-
            Has Encrypted Extents:   Yes
            Fully Secure:            Yes
            Passphrase Required:     Yes
            |
            +-> Logical Volume 02280DA6-34C2-4205-A4C6-28D2B8669060
                Disk:               disk3
                Status:             Online
                Size (Total):       254865207296 B (254.9 GB)
                Size (Converted):   -none-
                Revertible:         Yes (unlock and decryption required)
                LV Name:            Mr SSD
                Volume Name:        Mr SSD
                Content Hint:       Apple_HFS
    jethro1138@wyvern:/Users/jethro1138% mount
    /dev/disk1s2 on / (hfs, local, journaled)
    devfs on /dev (devfs, local, nobrowse)
    map -hosts on /net (autofs, nosuid, automounted, nobrowse)
    map auto_home on /home (autofs, automounted, nobrowse)
    localhost:/tQ3kz_0exBlmC1ciTfhsr0 on /Volumes/MobileBackups (mtmfs, nosuid, read-only, nobrowse)
    /dev/disk2s2 on /Volumes/iMovies (hfs, local, nodev, nosuid, journaled, noowners)
    /dev/disk3 on /Volumes/Mr SSD (hfs, local, journaled)

  • Core Audio: Selected Driver not found. (-10202) error message and speakers don't work

    Apple just replaced my hard drive and now I'm noticing that I have no sound coming out of my internal speakers or earphone jack.  When I try to use garage band I get the following error message:
    Core Audio:
    Selected Driver not found (-10202)
    I read their article on the subject; I go to system preferences, sound then output devices where I'm supposed to select my device except there are none listed.  I tried to fix the problem by reinstalling the operating system using the CD's that came with the MacBook Air but that didn't work either.
    Here's the other problem, when I download the software update the update never loads.  The status bar just sits there even when I let my pc alone over night. 
    Any suggestions??
    FYI, i can't easily walk into a mac store for assistance.. gotta catch a plane to a different island.

    Update your Apogee and Symphony drivers to Mountain Lion versions...
    But the bigger question is.. How did you install Mountain Lion on a G5?

  • Why do I get a boot drive not found error only when laptop lid has been closed?

    I've got a HP Mini 210 P/Number: VX818EA with Windows 7 Starter.
    It works fine when turning on after shutdown, but when I've put it to sleep by closing the lid it won't 'wake up', and I get a blank screen. On restarting the computer I get a 'boot drive not found' error, (3F0) which can be resolved by following the steps on this page: http://h10025.www1.hp.com/ewfrf/wc/document?docname=c01443463&tmp_task=solveCategory&lc=en&dlc=en&cc...
    I've run disk check etc as suggested on that link, no errors are found, but nothing seems to resolve the problem more than temporarily. Seems odd that this only happens if I close the lid (sleep mode with the lid up is fine, doesn't crash the computer).
    Can anyone advise?
    Thanks

    Hello,
     Very strange, can you go to BIOS and reset the setting " By Default " ?. How did you check the disk ?
    This is an unusual probleme Hp Mini 210 . And notice me after your reset the bios settings.

  • Error msg. 1327 Drive not found REALLY NEED HELP

    Hello,
    I recently installed iTunes and ever since then whenever I try to install new software from a website I.E. Adobe.com "Reader" I get an error message saying F:\ drive not found, which there is not F:\ drive.
    I have gone to administrative tools but have only found C:\ drive. Now, when I go to "Run" in the Start menu I see in the browse menu "F:\iTunes.exe and iTunesHelper.exe
    My iTunes does work properly but on start-up do get an msg. saying it was not installed proberly and to re-install.
    I do not want to re-install iTunes for fear I will get the same msg. and not be able to complete install.
    Really need help on this because I need to install Acrobat Reader for work.
    Thanks
    Mark
    [email protected]

    Doublechecking something.
    Could you confirm for us both that error message number and message?
    Checking, because the 1327 error message number usually comes with an "invalid drive" message rather than a "drive not found" message.

  • SAP Design Studio ODBC Driver Not Found error while creating HANA connection.

    Hi,
    While creating SAP HANA ODBC connection in Design Studio via Tools > Preference > Application Design > Backend Connection. I am getting error ODBC Driver Not Found. Error screen shot is attached.
    My Design Studio version is 1.3 win 32 bit
    My OS Win 7 64 bit
    I have installed both HANA client 32 bit and 64 bit.
    I have tried creating DSN ODBC connection via "C:\Windows\SysWOW64\odbcad32.exe" and via Control Panel > Administrative tools > Data Sources(ODBC). But it does not detect it either.
    I am not sure what needs to change to let Design Studio know which HANA client driver to use.
    Please help!.

    Hi Rohit,
    This seems to be a known bug with Design Studio. Please see the SAP Note below on this.
    1774480 - Fix launching of ODBC Data Source Administrator
    Regards,
    Abhijit

  • Getting error code 2 and also "selected driver not found (-10202)" when trying to change output/input in garage band. Driver issue?

    Garage band newbie here...Been trying to record using PreSonus as my interface..having nothing but problems when I try to bring up
    garageband. Multible restarts did help at first but now I can get no sound and cant seem to load the drivers at all in output/input...any help with this problem?

    YES!!! YES!!! YES!!!
    I got it!!! Yes!!!
    Guys, I've solved my problem about that error -10202 (Selected driver not found).
    I have installed in my Mac Pro (OS X 10.5.8) a document with an extension ".rsrc" to correct the position of the accents in my keyboard, like acute accent, tilde and circumflex.
    That file is called "U.S. - International.rsrc" and it's stored in the following path:
    "Macintosh HD/Library/Keyboard Layouts"
    So, when it's properly installed, I can choose 2 country flags on the right side of the menu bar (U.S. - International and Brazilian).
    That's the clue!
    When I pick up "U.S. - International", my keyboard works fine with the accents, >>>BUT<<< Logic Pro 9 doesn't recognize my audio driver; and when I pick up "Brazilian", my keyboard doesn't work with the accents exactly as it shows me on each key, BUT Logic Pro 9 DOES recognize my audio driver.
    So, when I want to write anything out, I will pick up the "US - International" and when I want to work on the Logic Pro 9, I will pick up "Brazilian".
    I hope I can help all of you.
    Regards,
    Renato Veiga.

  • Can some one help me with diagnostic test result " apple mobile device driver not found"?

    I bought an iPhone 4gs 32gb from Singapore. iso 4. I'm living in Chennai, India. To connect it to my computer (windows XP,), I have downloaded iTunes 10.6.1.7. Unfortunately iTunes is not recognizing my iPhone.  I had tried to troubleshoot it by reinstalling iTunes (2 times). I have restarted the apple mobile device from control panel. I try connecting my iphone in another usb port. but no use. I don't know what am I missing?.  iTunes opens on my computer. but doesn't recognize my device. when I click on help. it says an "unknown error has occurred. your computer is not connected to internet. please check your internet connection and try again later". I don't know what to do? could you please help me? thank you so much for your help and time.
    when I update the usb driver (C:\Program Files\Common Files\Apple\Mobile Device Support\Drivers.Double-click the usbaapl file.) I followed the procedure from this site. http://support.apple.com/kb/TS1538 when I finished, it says "the specified location does not contain information about your software"
    I did the apple's diagnostics test on my computer. I'm pasting the result for your info.
    Microsoft Windows XP Professional Service Pack 3 (Build 2600)
    System manufacturer System Product Name
    iTunes 10.6.3.25
    QuickTime not available
    FairPlay 1.14.43
    Apple Application Support 2.1.9
    iPod Updater Library 10.0d2
    CD Driver 2.2.0.1
    CD Driver DLL 2.1.1.1
    Apple Mobile Device 5.2.0.6
    Apple Mobile Device Driver not found.
    Bonjour 3.0.0.10 (333.10)
    Gracenote SDK 1.9.6.502
    Gracenote MusicID 1.9.6.115
    Gracenote Submit 1.9.6.143
    Gracenote DSP 1.9.6.45
    iTunes Serial Number 0013AC2C08548378
    Current user is an administrator.
    The current local date and time is 2012-06-28 15:23:45.
    iTunes is not running in safe mode.
    WebKit accelerated compositing is enabled.
    HDCP is not supported.
    Core Media is supported.
    Video Display Information
    Intel(R) G41 Express Chipset
    **** External Plug-ins Information ****
    No external plug-ins installed.
    **** Network Connectivity Tests ****
    Network Adapter Information
    Adapter Name:        {D85300A1-330D-41ED-AC5A-EC032B22FBF0}
    Description:            Atheros AR8121/AR8113/AR8114 PCI-E Ethernet Controller - Packet Scheduler Miniport
    IP Address:             192.168.1.3
    Subnet Mask:          255.255.255.0
    Default Gateway:    192.168.1.1
    DHCP Enabled:      Yes
    DHCP Server:         192.168.1.1
    Lease Obtained:     Thu Jun 28 15:17:19 2012
    Lease Expires:       Fri Jun 29 03:17:19 2012
    DNS Servers:         192.168.1.1
    Active Connection: LAN Connection
    Connected:             Yes
    Online:                    Yes
    Using Modem:        No
    Using LAN:             Yes
    Using Proxy:           No
    Firewall Information
    Windows Firewall is on.
    iTunes is enabled in Windows Firewall.
    Connection attempt to Apple web site was unsuccessful.
    The network connection timed out.
    Basic connection to the store failed.
    The network connection timed out.
    Connection attempt to Gracenote server was successful.
    The network connection timed out.
    iTunes has never successfully accessed the iTunes Store.
    **** CD/DVD Drive Tests ****
    No drivers in LowerFilters.
    UpperFilters: GEARAspiWDM (2.2.0.1),
    G: Optiarc DVD RW AD-7220A, Rev 1.01
    Drive is empty.
    **** Device Connectivity Tests ****
    iPodService 10.6.3.25 is currently running.
    iTunesHelper 10.6.3.25 is currently running.
    Apple Mobile Device service 3.3.0.0 is currently running.
    Universal Serial Bus Controllers:
    Intel(R) N10/ICH7 Family USB Universal Host Controller - 27C8.  Device is working properly.
    Intel(R) N10/ICH7 Family USB Universal Host Controller - 27C9.  Device is working properly.
    Intel(R) N10/ICH7 Family USB Universal Host Controller - 27CA.  Device is working properly.
    Intel(R) N10/ICH7 Family USB Universal Host Controller - 27CB.  Device is working properly.
    Intel(R) N10/ICH7 Family USB2 Enhanced Host Controller - 27CC.  Device is working properly.
    No FireWire (IEEE 1394) Host Controller found.
    **** Device Sync Tests ****
    No iPod, iPhone, or iPad found.

    I have the same problem. I think that someone tried my iphone before me because when I want to reset it, I'm invited to enter a password that I didn't set. Also, when I go the Map application, the iphone indicate that I'm locateded in China while I'm in Tunisia. Now, I can't connect to my iphone to itunes, and I can't reset it because it ask me to enter a password that I didn't set.
    This is my post:
    https://discussions.apple.com/thread/4063223
    Please, we need your help.

  • Apple Mobile Device Driver not found. ...

    Nor Itunes neither my PC can view my Iphone, what is more, it is completely discharged.. Here's the diagnostics...
    iTunes 10.3.1.55
    QuickTime 7.6.9
    FairPlay 1.11.17
    Apple Application Support 1.5.2
    iPod Updater Library 10.0d2
    CD Driver 2.2.0.1
    CD Driver DLL 2.1.1.1
    Apple Mobile Device 3.4.1.2
    Apple Mobile Device Driver not found.
    Bonjour 2.0.5.0 (214.3)
    Gracenote SDK 1.8.2.457
    Gracenote MusicID 1.8.2.89
    Gracenote Submit 1.8.2.123
    Gracenote DSP 1.8.2.34
    iTunes Serial Number 0012B2100AAF8C28
    Current user is not an administrator.
    The current local date and time is 2011-06-30 20:40:04.
    iTunes is not running in safe mode.
    WebKit accelerated compositing is enabled.
    HDCP is not supported.
    Core Media is supported.
    Video Display Information
    NVIDIA, NVIDIA GeForce GT 220M  
    **** External Plug-ins Information ****
    Plug-in Name:          MiniLyrics Visualizer
    Plug-in Loaded:          Yes
    Plug-in Version:          0.8
    Plug-in File Version:          Unknown
    Plug-in Path:          C:\Program Files\iTunes\Plug-ins\iTunesMinilyrics.dll
    Plug-in Name:          Last.fm AudioScrobbler
    Plug-in Loaded:          Yes
    Plug-in Version:          1.0.4
    Plug-in File Version:          3.0.4.0
    Plug-in Path:          C:\Program Files\iTunes\Plug-ins\itw_scrobbler.dll
    Genius ID: 46b8dbeb48d2ea73f185160d9ef3debd
    **** Device Connectivity Tests ****
    iPodService 10.3.1.55 is currently running.
    iTunesHelper 10.3.1.55 is currently running.
    Apple Mobile Device service 3.3.0.0 is currently running.
    Note: I simply unnistalled all apple programms, when my Iphone had errors, and installed the newer version... Maybe it is the reason why my Iphone is not being seen...

    I have the same problem. I think that someone tried my iphone before me because when I want to reset it, I'm invited to enter a password that I didn't set. Also, when I go the Map application, the iphone indicate that I'm locateded in China while I'm in Tunisia. Now, I can't connect to my iphone to itunes, and I can't reset it because it ask me to enter a password that I didn't set.
    This is my post:
    https://discussions.apple.com/thread/4063223
    Please, we need your help.

  • JDBC Driver not found when connecting to Data Federator XI 3.0 SP3

    Hello,
    I am trying to connect Crystal 2008 to Data Federator however I am getting the Error
    Failed to open connection.
    Details: JDBC Driver not found.
    The JDBC Drivers are installed and working for the Universe Designer, however I am unable to get it working for Crystal. I am using the following connection parameters on Crystal:
    Connection URL: jdbc:datafederator://<<servername>>:3055/<<catalog>>
    Database Classname: com.businessobjects.datafederator.jdbc.DataFederatorDriver
    Any Advice on what I may have missed?

    The issue was solved, thanks to Patric Wan:
    u201CFailed to open the connection. Details: JDBC driver not found.u201D
    This means Data Federator JDBC driver was not added to:
    C:\Program Files\Business Objects\common\<version>\java\CRConfig.xml
    How to connect the Data Federator Server using JDBC?
    1. Retrieve the following files from the machine where Data Federator is installed, from the directory [data-federator-installation-dir]/JdbcDriver/lib.
        - thindriver.jar
        - avalon-framework-4.1.5.jar
        - jacorb.jar
        - log4j-1.2.8.jar
        - logkit-1.2.jar
    2. Copy these files to a directory of your choice ([your-jdbc-driverdirectory]).
    3. Add [your-jdbc-driver-directory]/thindriver.jar to CRConfig.xml   <Add to Classpath tag, you can refer to original sample.CRConfig.xml should be at: C:\Program Files\Business Objects\Common\4.0\java\CRConfig.xml, or search your BOBJ products install to find this file>
    4. URL: jdbc:leselect://<host>[:<port>][/[<catalog>]][[;param-name=value]*]
    Class Name : LeSelect.ThinDriver.ThinDriver
    Edited by: Craig Sander on Feb 12, 2011 8:22 PM

  • Drive not found in library database

    Greetings.
    I'm new to OSB and am having tape drive, volume problems.
    File system backups only complete successfully when drive (IBM4_0_0_1_1) is used. When OSB attempts to use other drives in the library it logs the following errors listed in "Transcript".
    I'm running OSB (10.4.0.3.0) on a Linux server (Oracle Linux Server release 6.0) with a SL500 library controller by a ACSLS(8.3.0) server.
    Please advise.
    Transcript:
    2014/04/23.11:44:01 ______________________________________________________________________
      2014/04/23.11:44:01
      2014/04/23.11:44:01 Transcript for job admin/83.1 running on x4440a
      2014/04/23.11:44:01
      2014/04/23.11:44:01 ---
      2014/04/23.11:44:01 No volume could be found in SL500 (for drive HP6_0_0_3_1) to use for job admin/83.1.
      2014/04/23.11:44:01 The problem using HP6_0_0_3_1 and the volume it contains, if any, is
      2014/04/23.11:44:01 drive not found in library database (library manager)
      2014/04/23.11:45:01 ______________________________________________________________________
      2014/04/23.11:45:01
      2014/04/23.11:45:01 Transcript for job admin/83.1 running on x4440a
      2014/04/23.11:45:01
      2014/04/23.11:45:01 ---
      2014/04/23.11:45:01 No volume could be found in SL500 (for drive HP5_0_0_2_4) to use for job admin/83.1.
      2014/04/23.11:45:01 The problem using HP5_0_0_2_4 and the volume it contains, if any, is
      2014/04/23.11:45:01 drive not found in library database (library manager)
      2014/04/23.11:46:01 ______________________________________________________________________
      2014/04/23.11:46:01
      2014/04/23.11:46:01 Transcript for job admin/83.1 running on x4440a
      2014/04/23.11:46:01
      2014/04/23.11:46:01 ---
      2014/04/23.11:46:01 No volume could be found in SL500 (for drive IBM5_0_0_1_2) to use for job admin/83.1.
      2014/04/23.11:46:01 The problem using IBM5_0_0_1_2 and the volume it contains, if any, is
      2014/04/23.11:46:01 drive not found in library database (library manager)
      2014/04/23.11:48:01 ______________________________________________________________________
      2014/04/23.11:48:01
      2014/04/23.11:48:01 Transcript for job admin/83.1 running on x4440a
      2014/04/23.11:48:01
      2014/04/23.11:48:01 ---
      2014/04/23.11:48:01 No volume could be found in SL500 (for drive HP4_0_0_2_2) to use for job admin/83.1.
      2014/04/23.11:48:01 The problem using HP4_0_0_2_2 and the volume it contains, if any, is
      2014/04/23.11:48:01 drive not found in library database (library manager)
      2014/04/23.11:49:01 ______________________________________________________________________
      2014/04/23.11:49:01
      2014/04/23.11:49:01 Transcript for job admin/83.1 running on x4440a
      2014/04/23.11:49:01
      2014/04/23.11:49:01 ---
      2014/04/23.11:49:01 No volume could be found in SL500 (for drive IBM5_0_0_2_1) to use for job admin/83.1.
      2014/04/23.11:49:01 The problem using IBM5_0_0_2_1 and the volume it contains, if any, is
      2014/04/23.11:49:01 drive not found in library database (library manager)
      2014/04/23.11:50:01 ______________________________________________________________________
      2014/04/23.11:50:01
      2014/04/23.11:50:01 Transcript for job admin/83.1 running on x4440a
      2014/04/23.11:50:01
      2014/04/23.11:50:01 ---
      2014/04/23.11:50:01 No volume could be found in SL500 (for drive HP5_0_0_2_3) to use for job admin/83.1.
      2014/04/23.11:50:01 The problem using HP5_0_0_2_3 and the volume it contains, if any, is
      2014/04/23.11:50:01 drive not found in library database (library manager)
      2014/04/23.12:00:01 ______________________________________________________________________
      2014/04/23.12:00:01
      2014/04/23.12:00:01 Transcript for job admin/83.1 running on x4440a
      2014/04/23.12:00:01
      2014/04/23.12:00:01 ---
      2014/04/23.12:00:01 No volume could be found in SL500 (for drive HP6_0_0_3_1) to use for job admin/83.1.
      2014/04/23.12:00:01 The problem using HP6_0_0_3_1 and the volume it contains, if any, is
      2014/04/23.12:00:01 drive not found in library database (library manager)
      2014/04/23.12:01:01 ______________________________________________________________________
      2014/04/23.12:01:01
      2014/04/23.12:01:01 Transcript for job admin/83.1 running on x4440a
      2014/04/23.12:01:01
      2014/04/23.12:01:01 ---
      2014/04/23.12:01:01 No volume could be found in SL500 (for drive HP5_0_0_2_4) to use for job admin/83.1.
      2014/04/23.12:01:01 The problem using HP5_0_0_2_4 and the volume it contains, if any, is
      2014/04/23.12:01:01 drive not found in library database (library manager)
      2014/04/23.12:01:24 ______________________________________________________________________
      2014/04/23.12:01:24
      2014/04/23.12:01:24 Transcript for job admin/83.1 running on x4440a
      2014/04/23.12:01:24
      2014/04/23.12:01:25 ---
      2014/04/23.12:01:25 No volume could be found in SL500 (for drive IBM5_0_0_1_2) to use for job admin/83.1.
      2014/04/23.12:01:25 The problem using IBM5_0_0_1_2 and the volume it contains, if any, is
      2014/04/23.12:01:25 drive not found in library database (library manager)
      2014/04/23.12:04:01 ______________________________________________________________________
      2014/04/23.12:04:01
      2014/04/23.12:04:01 Transcript for job admin/83.1 running on x4440a
      2014/04/23.12:04:01
      2014/04/23.12:04:01 ---
      2014/04/23.12:04:01 No volume could be found in SL500 (for drive HP4_0_0_2_2) to use for job admin/83.1.
      2014/04/23.12:04:01 The problem using HP4_0_0_2_2 and the volume it contains, if any, is
      2014/04/23.12:04:01 drive not found in library database (library manager)
      2014/04/23.12:05:01 ______________________________________________________________________
      2014/04/23.12:05:01
      2014/04/23.12:05:01 Transcript for job admin/83.1 running on x4440a
      2014/04/23.12:05:01
      2014/04/23.12:05:01 ---
      2014/04/23.12:05:01 No volume could be found in SL500 (for drive IBM5_0_0_2_1) to use for job admin/83.1.
      2014/04/23.12:05:01 The problem using IBM5_0_0_2_1 and the volume it contains, if any, is
      2014/04/23.12:05:01 drive not found in library database (library manager)
      2014/04/23.12:05:21 ______________________________________________________________________
      2014/04/23.12:05:21
      2014/04/23.12:05:21 Transcript for job admin/83.1 running on x4440a
      2014/04/23.12:05:21
      Backup started on Wed Apr 23 2014 at 12:05:51
      Volume label:
      Volume tag: LEV018
      Volume UUID: 203f144a-ad72-1031-9e4c-002128001bbe
      Volume ID: mf_2min-000025
      Volume sequence: 1
      Volume set owner: root
      Volume set created: Wed Apr 23 12:05:51 2014
      Volume set expires: Wed Apr 23 12:07:51 2014
      Media family: mf_2min
      Original UUID: 203f144a-ad72-1031-9e4c-002128001bbe
      Archive label:
      File number: 1
      File section: 1
      Owner: root
      Client host: x4440a
      Backup level: 0
      S/w compression: no
      Archive created: Wed Apr 23 12:05:51 2014
      Encryption: off
      Dumping all files in /etc
      Backup complete on Wed Apr 23 2014 at 12:06:03
      Backup statistics:
      status 0
      devices IBM4_0_0_1_1
      devices 1
      volumes mf_2min-000025
      voltags LEV018
      file 1
      host x4440a
      encryption off
      start_time Wed Apr 23 2014 at 12:05:51 (1398276351)
      end_time Wed Apr 23 2014 at 12:06:06 (1398276366)
      backup_time Wed Apr 23 2014 at 12:05:51 (1398276351)
      entries_scanned 3373
      kbytes_scanned 40556
      entries_excluded 0
      entries_skipped 0
      mount_points_skipped 0
      files 2047
      directories 315
      hardlinks 0
      symlinks 1011
      sparse_files 0
      filesys_errors 0
      unknown_type 0
      file_kbytes 39264
      dev_kbytes 35977
      dev_iosecs 2
      dev_iorate 18.4 MB/S
      wrt_iosecs 15
      wrt_iorate 2.5 MB/S
      physical_blks_written 1102
      write_errors 0
      physical_blks_read 2
      read_errors 0
      error_rate 0%
      path /etc completed, status 0
    [root@x4440a backup]# obtool lsdev -lvg
    SL500:
         Device type:            library (ACSLS)
         In service:             yes
         Debug mode:             no
         Barcode reader:         yes
         Barcodes required:      yes
         Unload required:        yes
         Ejection type:          auto
         Min writable volumes:   0
         UUID:                   e0b58224-a1a4-1031-8c0f-002128001bbe
         Attachment 1:
             Host:               x4440a
             ACSLS server:       v215f
             ACSLS port:         0
             ACS id:             0
             ACSLS access id:    acsss
         Reservation 1:
             Component:          obacslibd
             Host:               x4440a
             Process:            32195
         Element counts / addresses:
            10 mte: 1 - 10
           281 se : 1 - 281
             1 iee: 1
             1 dte: 1
         Moves:
            From mte, to: mte 0   se 0   iee 0   dte 0
            From  se, to: mte 0   se 0   iee 1   dte 1
            From iee, to: mte 0   se 0   iee 0   dte 0
            From dte, to: mte 0   se 1   iee 0   dte 0
         Ok_ops: move=1, reserve=1 sense_dev=1, sense_ele=0, unload_any=1, sense_dev_range=0
         State of barcode reader: enabled
    IBM4_0_0_1_1:
         Device type:            tape (ACSLS)
         In service:             yes
         Library:                SL500
         LSM:                    0
         Panel:                  1
         Drive:                  1
         Automount:              yes
         Error rate:             8
         Query frequency:        131072KB (134217728 bytes) (from driver)
         Debug mode:             no
         Blocking factor:        (default)
         Max blocking factor:    (default)
         Current tape:           [unknown]
         Drive usage:            14 minutes, 58 seconds
         UUID:                   179eb954-a1a5-1031-8c0f-002128001bbe
         Attachment 1:
             Host:               x4440a
             Raw device:         /dev/sg18
         Connection type:        SCSI
         Inquiry data:
             Vendor:             IBM
             Product:            ULTRIUM-TD4
             Firmware:           C7Q0
             Serial number:      1310127325
         Tape state:             offline
         Hardware compression:   on
         Last read was:          uncompressed
         Hardware encryption:    available
         Maximum block size:     2097152
    IBM5_0_0_2_1:
         Device type:            tape (ACSLS)
         In service:             yes
         Library:                SL500
         LSM:                    0
         Panel:                  2
         Drive:                  1
         Automount:              yes
         Error rate:             8
         Query frequency:        131072KB (134217728 bytes) (from driver)
         Debug mode:             no
         Blocking factor:        (default)
         Max blocking factor:    (default)
         Current tape:           [unknown]
         Drive usage:            [not set]
         UUID:                   7498ff66-a1a5-1031-8c0f-002128001bbe
         Attachment 1:
             Host:               x4440a
             Raw device:         /dev/sg16
         Connection type:        SCSI
         Inquiry data:
             Vendor:             IBM
             Product:            ULTRIUM-TD5
             Firmware:           D8D4
             Serial number:      1168002114
         Tape state:             offline
         Hardware compression:   on
         Last read was:          uncompressed
         Hardware encryption:    available
         Maximum block size:     2097152
    HP6_0_0_3_1:
         Device type:            tape (ACSLS)
         In service:             yes
         Library:                SL500
         LSM:                    0
         Panel:                  3
         Drive:                  1
         Automount:              yes
         Error rate:             8
         Query frequency:        131072KB (134217728 bytes) (from driver)
         Debug mode:             no
         Blocking factor:        (default)
         Max blocking factor:    (default)
         Current tape:           [unknown]
         Drive usage:            [not set]
         UUID:                   cd20d3fc-a1a5-1031-8c0f-002128001bbe
         Attachment 1:
             Host:               x4440a
             Raw device:         /dev/sg21
         Connection type:        SCSI
         Inquiry data:
             Vendor:             HP
             Product:            Ultrium 6-SCSI
             Firmware:           J39S
             Serial number:      HU1233PPNN
         Tape state:             offline
         Hardware compression:   on
         Last read was:          uncompressed
         Hardware encryption:    available
         Maximum block size:     2097152
    IBM5_0_0_1_2:
         Device type:            tape (ACSLS)
         In service:             yes
         Library:                SL500
         LSM:                    0
         Panel:                  1
         Drive:                  2
         Automount:              yes
         Error rate:             8
         Query frequency:        131072KB (134217728 bytes) (from driver)
         Debug mode:             no
         Blocking factor:        (default)
         Max blocking factor:    (default)
         Current tape:           [unknown]
         Drive usage:            [not set]
         UUID:                   5b6cf420-a1a5-1031-8c0f-002128001bbe
         Attachment 1:
             Host:               x4440a
             Raw device:         /dev/sg15
         Connection type:        SCSI
         Inquiry data:
             Vendor:             IBM
             Product:            ULTRIUM-TD5
             Firmware:           D8D4
             Serial number:      1068002447
         Tape state:             offline
         Hardware compression:   on
         Last read was:          uncompressed
         Hardware encryption:    available
         Maximum block size:     2097152
    HP4_0_0_2_2:
         Device type:            tape (ACSLS)
         In service:             yes
         Library:                SL500
         LSM:                    0
         Panel:                  2
         Drive:                  2
         Automount:              yes
         Error rate:             8
         Query frequency:        131072KB (134217728 bytes) (from driver)
         Debug mode:             no
         Blocking factor:        (default)
         Max blocking factor:    (default)
         Current tape:           [unknown]
         Drive usage:            [not set]
         UUID:                   8bd3659a-a1a5-1031-8c0f-002128001bbe
         Attachment 1:
             Host:               x4440a
             Raw device:         /dev/sg13
         Connection type:        SCSI
         Inquiry data:
             Vendor:             HP
             Product:            Ultrium 4-SCSI
             Firmware:           H64S
             Serial number:      HU1803168E
         Tape state:             offline
         Hardware compression:   on
         Last read was:          uncompressed
         Hardware encryption:    not available
         Maximum block size:     2097152
    HP5_0_0_2_3:
         Device type:            tape (ACSLS)
         In service:             yes
         Library:                SL500
         LSM:                    0
         Panel:                  2
         Drive:                  3
         Automount:              yes
         Error rate:             8
         Query frequency:        131072KB (134217728 bytes) (from driver)
         Debug mode:             no
         Blocking factor:        (default)
         Max blocking factor:    (default)
         Current tape:           [unknown]
         Drive usage:            [not set]
         UUID:                   9ee7dbd4-a1a5-1031-8c0f-002128001bbe
         Attachment 1:
             Host:               x4440a
             Raw device:         /dev/sg23
         Connection type:        SCSI
         Inquiry data:
             Vendor:             HP
             Product:            Ultrium 5-SCSI
             Firmware:           I67S
             Serial number:      HU19477NFE
         Tape state:             offline
         Hardware compression:   on
         Last read was:          uncompressed
         Hardware encryption:    not available
         Maximum block size:     2097152
    HP5_0_0_2_4:
         Device type:            tape (ACSLS)
         In service:             yes
         Library:                SL500
         LSM:                    0
         Panel:                  2
         Drive:                  4
         Automount:              yes
         Error rate:             8
         Query frequency:        131072KB (134217728 bytes) (from driver)
         Debug mode:             no
         Blocking factor:        (default)
         Max blocking factor:    (default)
         Current tape:           [unknown]
         Drive usage:            [not set]
         UUID:                   b45b889e-a1a5-1031-8c0f-002128001bbe
         Attachment 1:
             Host:               x4440a
             Raw device:         /dev/sg24
         Connection type:        SCSI
         Inquiry data:
             Vendor:             HP
             Product:            Ultrium 5-SCSI
             Firmware:           I67S
             Serial number:      HU19477NBF
         Tape state:             offline
         Hardware compression:   on
         Last read was:          uncompressed
         Hardware encryption:    available
         Maximum block size:     2097152
    [root@x4440a backup]#
    [root@x4440a backup]# obtool lsvol -L SL500 -l
    Inventory of library SL500:
         in    1:             barcode F50216, oid 100
         in    2:             barcode I50116, oid 101
         in    3:             barcode LEV008, oid 102, mediainfo hw encryptable
         in    4:             barcode LEV010, oid 103, mediainfo hw encryptable
         in    5:             barcode LEV017, oid 104, mediainfo hw encryptable
         in    6:             volume mf_2min-000025, barcode LEV018, oid 155, 781232128 kb remaining, expired, mediainfo hw encryptable
         in    7:             barcode LEV049, oid 106
         in    8:             barcode LEV058, oid 107
         in    9:             barcode PQ4196, oid 108
         in    10:            barcode PQ4883, oid 109
         in    11:            barcode S50282, oid 110
         in    12:            barcode S50290, oid 111
         in    13:            barcode S50291, oid 112
         in    14:            barcode S50292, oid 113
         in    15:            barcode S50300, oid 114
         in    16:            barcode S60111, oid 115
         in    17:            barcode S60113, oid 116
         in    18:            barcode SF6410, oid 117
         in    19:            barcode SF6411, oid 118
         in    20:            barcode SF6412, oid 119
         in    21:            barcode SF6413, oid 120
         in    22:            barcode SF6414, oid 121
         in    23:            barcode SF6416, oid 122
         in    24:            barcode SF6417, oid 123
         in    25:            barcode SF6418, oid 124
         in    26:            barcode SF6419, oid 125
         in    27:            vacant
         in    28:            vacant
         in    29:            vacant
         in    30:            vacant
         in    31:            vacant
         in    274:           vacant
         in    275:           vacant
         in    276:           vacant
         in    277:           vacant
         in    278:           vacant
         in    279:           vacant
         in    280:           vacant
         in    281:           vacant
         in    iee:           vacant
         in    dte:           vacant
    [root@x4440a backup]#

    Rich
    Thanks for your response.
    ACSLS is part of the configuration requirements I need to have in this OBS environment.
    I'm going to re install OBS just to see if anything changes.
    Thanks again.
    Update:
    When configuring devices in OSB that are ACSLS in nature it is a requirement to restart the obacslibd after mkdev or certain chdev commands are preformed.
    After the daemon was restarted I was able to use the attached tape drives.

  • After downloading osx 10.9.2 when i open my logic pro 9 and begin to audition loops that came with lp9 i get a message that says "audio device has been removed  and then a second message the " select driver not found(-10202). my interface is a apogee duet

    after downloading osx 10.9.2 when i open my logic pro 9 and begin to audition loops that came with lp9 i get a message that says "audio device has been removed  and then a second message the " select driver not found(-10202). my interface is a apogee duet. Can anyone provide a solution to this problem. Thanks

    YES!!! YES!!! YES!!!
    I got it!!! Yes!!!
    Guys, I've solved my problem about that error -10202 (Selected driver not found).
    I have installed in my Mac Pro (OS X 10.5.8) a document with an extension ".rsrc" to correct the position of the accents in my keyboard, like acute accent, tilde and circumflex.
    That file is called "U.S. - International.rsrc" and it's stored in the following path:
    "Macintosh HD/Library/Keyboard Layouts"
    So, when it's properly installed, I can choose 2 country flags on the right side of the menu bar (U.S. - International and Brazilian).
    That's the clue!
    When I pick up "U.S. - International", my keyboard works fine with the accents, >>>BUT<<< Logic Pro 9 doesn't recognize my audio driver; and when I pick up "Brazilian", my keyboard doesn't work with the accents exactly as it shows me on each key, BUT Logic Pro 9 DOES recognize my audio driver.
    So, when I want to write anything out, I will pick up the "US - International" and when I want to work on the Logic Pro 9, I will pick up "Brazilian".
    I hope I can help all of you.
    Regards,
    Renato Veiga.

  • Driver class 'org.gjt.mm.mysql.Driver' not Found JSP

    OS ->Windows XP Pro
    Tomcat version ->4.0.1
    jdk version -> 1.3.1
    database -> mysql
    Classpath = .;C:\jakarta-tomcat-4.0.1\common\lib\servlet.jar;C:\jakarta-tomcat-4.0.1\common\lib\mm.mysql.jdbc-1.2c\mysql_uncomp.jar;
    I am trying to run a function in a javabean to startup up a connection to a database. Code as follows...
    public void connect() throws ClassNotFoundException,
    SQLException,
    Exception {
    try {
    Class.forName("org.gjt.mm.mysql.Driver").newInstance();
    con = DriverManager.getConnection(
    "jdbc:mysql://localhost/Wrox ?user=root&password=lunchbox ");
    } catch (ClassNotFoundException cnfe) {
    error = "ClassNotFoundException: Could not locate DB driver.";
    throw new ClassNotFoundException(error);
    } catch (SQLException cnfe) {
    error = "SQLException: Could not connect to database.";
    throw new SQLException(error);
    } catch (Exception e) {
    error = "Exception: An unknown error occurred while connecting " +
    "to database.";
    throw new Exception(error);
    I call it from my jsp page code as follows.. connect in bold
    <%@ page language="java"
    import="java.sql.*, java.io.*, java.util.*, com.wrox.databases.*"
    errorPage="error.jsp" %>
    <jsp:useBean id="book" class="com.wrox.databases.Books" />
    <html>
    <head>
    <title> Wrox Press Ltd. </title>
    </head>
    <body>
    <h1> Wrox Press Ltd.</h1>
    <h2> List of Books </h2>
    <b>Add More Books</b>
    <form action="delete.jsp" method="post">
    <table border="1">
    <tr>
    <td><b>ID:</b></td>
    <td><B>Title:</b></td>
    <td><B>Price:</b></td>
    </tr>
    <%
    book.connect();
    ResultSet rs = book.viewBooks();
    while (rs.next()) {
    %>
    <tr>
    <td>
    <input type="checkbox" name="pkey"
    value="<%= rs.getString("Title_ID") %>" />
    </td>
    <td><%= rs.getString("Title") %></td>
    <td><%= rs.getString("Price") %></td>
    </tr>
    <%
    %>
    </table>
    Check books for deletion.<BR>
    <input type="submit" value="Delete All Checked Books">
    </form>
    <% book.disconnect(); %>
    </body>
    </html>
    The name of the bean is correct and so is the package it is stored under. I tried it in the bean and got "ClassNotFoundException" Could not locate DB driver". I tried it with DBtags and got
    Driver class 'org.gjt.mm.mysql.Driver' not Found
    any help would be really appreciated.

    When using any 3rd party library with tomcat. the jar file of that library has to be put in the WEB-INF/lib directory of your application. Then only tomcat will find it.
    So the my-sql driver would have come in a jar file. just put that jar file in the WEB-INF/lib directory.
    After that things should work. If they don't please post again.
    hope this helps.
    regards,
    Abhishek.

  • "valid dvd driver not found"

    I have a Powerbook G4 12"--has always worked without problem.
    However, this am tried to play DVD--got the error message "valid DVD drive not found". No driver seen in system profiler.
    There is no CD or DVD stuck.
    Have gone through the workarounds suggested in discussions--open firmware ejects etc...
    Has anyone found a solution other than paying $500 to replace the drive?
    Many thanks

    First see if the issue is user or system related. Go to Apple menu -> System Preferences -> Accounts and add an administrator account, and log into it after logging out from the Apple menu.
    If that doesn't work, try locating a preference in the System/Library or Hard Drive -> Library for com.apple.dvdplayer and removing it. Same for cache files.
    If it still doesn't work, try VideoLan Client:
    http://www.videolan.org/vlc/

  • Linux: driver not found

    The java program i made has been tested under windows XP with mySQL. I tried running the same program with a linux OS with J Connector installed, and I installed the RPM of ODBC.
    I receive an error when executing my script:
    mySQL exception: driver not found
    Are there any missing prerequesites for running my mysql program?
    I have not touched the DSN on linux aka obdc.ini because I do not know what to do, Is this a problem, and how would I alter it if this is the problem?
    Thank You

    I thought JConnector was a type IV JDBC driver that didn't use ODBC. You don't need a DSN for that, just a valid database URL.
    "Driver not found" - sure you don't just have a CLASSPATH problem here?

  • Old iPod mini can't be recognized after formatting, and iTunes 'Apple Mobile Device Driver not found.'

    My roommate gave me an old iPod Mini a few days ago. It was working fine 'til I plugged it into my computer and it asked me to format it. I did, and now it cannot be recognized by iTunes or my computer. My computer views it as a "removable disk" which cannot be accessed. In devices, it is listed as an Apple iPod though, so I'm hoping not all is lost. I have tried many quick fixes I've read on internet (including changing disk letter) but to no avail. I have reinstalled the new iTunes and now that is telling me it has not installed properly, and when I ran diagnostics, it reads that the Apple Mobile Device Driver not found. I will copy & paste all the info from the diagnostic run below, and if anybody can help me with my new (old) iPod, I'd be everly greatful!
    Thanks!!
    Microsoft Windows 7 x64 Home Premium Edition Service Pack 1 (Build 7601)
    TOSHIBA Satellite L775D
    iTunes 11.0.1.12
    QuickTime 7.7.3
    FairPlay 2.2.32
    Apple Application Support 2.3.2
    iPod Updater Library 10.0d2
    CD Driver Not Available
    CD Driver DLL 2.1.3.1
    Apple Mobile Device 6.0.1.3
    Apple Mobile Device Driver not found.
    Bonjour 3.0.0.10 (333.10)
    Gracenote SDK 1.9.6.502
    Gracenote MusicID 1.9.6.115
    Gracenote Submit 1.9.6.143
    Gracenote DSP 1.9.6.45
    iTunes Serial Number
    Current user is not an administrator.
    The current local date and time is 2013-01-08 11:16:27.
    iTunes is not running in safe mode.
    WebKit accelerated compositing is enabled.
    HDCP is supported.
    Core Media is supported.
    Video Display Information
    ATI Technologies Inc., AMD Radeon(TM) HD 6520G   
    **** External Plug-ins Information ****
    No external plug-ins installed.
    **** Device Connectivity Tests ****
    iPodService 11.0.1.12 (x64) is currently running.
    iTunesHelper 11.0.1.12 is currently running.
    Apple Mobile Device service 3.3.0.0 is currently running.
    Universal Serial Bus Controllers:
    Standard OpenHCD USB Host Controller.  Device is working properly.
    Standard Enhanced PCI to USB Host Controller.  Device is working properly.
    No FireWire (IEEE 1394) Host Controller found.
    Most Recent Devices Not Currently Connected:
    iPod mini running firmware version 1.4.1
    Serial Number:    JQ******S42
    <Edited By Host>

    OMG same thing here; rather annoyed and now have set up accounts on 2 comps(both 64 vista ultimate); about to try my 32 bit vista on my lappy; we'll see... i don;t have high hopes thoush.
    What i knew about iPhone before buying it:
    What You Need
    To use iPhone, you need:
    A new two-year wireless service plan with AT&T
    A Mac or a PC with a USB 2.0 port and one of the following operating systems:
    Mac OS X version10.4.10 or later
    Windows XP Home or Professional with Service Pack 2 or later
    Windows Vista Home Premium, Business, Enterprise, or Ultimate edition
    iTunes 7.3 or later, available at www.itunes.com
    An iTunes Store account
    An Internet connection
    You must be at least 18 years old to open a new AT&T wireless account. You will need a
    major credit card to open a new iTunes Store account.
    Yeahyeah check all that stuff;
    Oh well; just when i thought i'd finally cross over to the beautiful packaging of APPLE. I remember in design school that form follows function. Thanks.
      Windows Vista  

Maybe you are looking for

  • Open order -report

    Hi, i'm trying to create a query that gives open qty. suppose in sales order line item 1      100        --delivered -50     -balance is 50      line item 2      200        -not delivered      -balance is 200    i've tried creating query using table

  • Wont open after CS6 install

    I have read the discussion on http://forums.adobe.com/message/5014352 and tried all three solutions.  I get an error code 3 instead of the 0.  Any idea what that means other than it didn't work.

  • Recovering data from a water damaged MacBook Pro

    A week ago I managed to rather carelessly spill a glass of water over my Late 2013 rMBP (no pun intended). I took the laptop to the Genius bar where they told me the motherboard was fried and the laptop was dead. Considering the extent of the damage

  • Ipod touch won't charge/show up in itunes or on pc. What to do?

    My ipod touch battery was low, so i tried to charge it. But it won't charge, i also tried a USB Wall charger. Then i tried to connect it to my pc (windows vista). But it won't show up, not in itunes neither on my computer. It just doesn't recognize m

  • Block internet access in accounts?

    Hi I'm trying to make one account where I can use the web, and one where I can't use the web. But everytime I deactivate the Airport the other account remembers it. Is there a way to make it work?