MANIFEST.MF included with kodo-persistence.rar

The MANIFEST.MF included with the kodo-persistence.rar in kodo 4.1.1 has only info about "JDO" and not "JPA". Was it incorrectly packaged? Is there another kodo-persistence.rar that can be downloaded for JCA? Here are the contents of the MANIFEST.MF in kodo-4.1.1/jca/persistence/META-INF/kodo-persistence.rar
Premain-Class: kodo.enhance.PCEnhancerAgent
Main-Class: kodo.enhance.PCEnhancer
Built-By: BEA Systems, Inc.
Implementation-Vendor: BEA Systems, Inc.
Implementation-Version: 4.1.1
OpenTools-UI: kodo.jdbc.integration.jbuilder.KodoTools
OpenTools-Build: kodo.jdbc.integration.jbuilder.KodoBuilder
OpenIDE-Module: kodo.jdbc.integration.netbeans/1
OpenIDE-Module-Name: Kodo
OpenIDE-Module-Short-Description: Kodo for SunOne-NetBeans
OpenIDE-Module-Install: kodo/jdbc/integration/netbeans/KodoModule.class
OpenIDE-Module-Module-Dependencies: org.netbeans.modules.java/1 > 1.7
OpenIDE-Module-Layer: kodo/jdbc/integration/netbeans/kodo-layer.xml
Name: kodo/
Specification-Title: Java Data Objects
Specification-Vendor: Sun
Implementation-Vendor: BEA Systems, Inc.
Specification-Version: 2.0.0
Implementation-Version: 4.1.1
Implementation-Title: kodo
Name: kodo/jdbc/integration/netbeans/KodoMenuAction.class
OpenIDE-Module-Class: Action
Name: kodo/jdbc/integration/netbeans/MappingDataLoader.class
OpenIDE-Module-Class: Loader
Install-Before: org.openide.loaders.XMLDataObject, org.netbeans.module
s.xml.core.XMLDataObject
Name: kodo/jdbc/integration/netbeans/JDODataLoader.class
OpenIDE-Module-Class: Loader
Install-Before: org.openide.loaders.XMLDataObject, org.netbeans.module
s.xml.core.XMLDataObject

The manifest should be seen only as a file that can contain information about the files packaged in a JAR file. There is no requirement to contain information about all the files packaged in the jar.
You are using the correct rar file.
Laurent

Similar Messages

  • * newbie alert * kodo persistence problem

    Trying to follow this oh so easy example:
    http://download.oracle.com/otn_hosted_doc/jdeveloper/11gdemos/JDev11gExperience/JDev11gExperience.html
    Here's the last few lines of the exception error...
    The following providers:
    kodo.persistence.PersistenceProviderImpl
    org.apache.openjpa.persistence.PersistenceProviderImpl
    Returned null to createEntityManagerFactory.
         at javax.persistence.Persistence.createEntityManagerFactory(Persistence.java:154)
         at javax.persistence.Persistence.createEntityManagerFactory(Persistence.java:83)
         at sample.model.JavaServiceFacade.<init>(JavaServiceFacade.java:12)
         at sample.model.JavaServiceFacade.main(JavaServiceFacade.java:19)
    Process exited with exit code 1.
    Connecting through an JDBC-ODBC bridge to an Ingres database (other locking issues make it difficult to connect using native ODBC driver)
    fairly simple logic... connect to a single table then display one field out of the table to the console
    [Tuserprof.java]
    @Entity
    @NamedQueries({
    @NamedQuery(name = "TUserprof.findAll", query = "select o from TUserprof o")
    [JavaServiceFacade.java]
    public static void main(String [] args) {
    final JavaServiceFacade javaServiceFacade;
    javaServiceFacade = new JavaServiceFacade();
    // TODO: Call methods on javaServiceFacade here...
    List<TUserprof> emps = javaServiceFacade.getTUserprofFindAll();
    for (TUserprof tUserprof : emps) {
    System.out.println(tUserprof.getFirst_name());
    Here's the persistence.xml file
    <?xml version="1.0" encoding="windows-1252" ?>
    - <persistence xmlns="http://java.sun.com/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd" version="1.0">
    - <persistence-unit name="Model-1" transaction-type="RESOURCE_LOCAL">
    <provider>org.eclipse.persistence.jpa.PersistenceProvider</provider>
    <class>sample.model.TUserprof</class>
    - <properties>
    <property name="eclipselink.jdbc.driver" value="sun.jdbc.odbc.JdbcOdbcDriver" />
    <property name="eclipselink.jdbc.url" value="jdbc:odbc:sys10 sql" />
    <property name="eclipselink.jdbc.user" value="report" />
    <property name="eclipselink.jdbc.password" value="C21EECE0FBC5CC41A77C390BE52548ED" />
    <property name="eclipselink.logging.level" value="FINER" />
    <property name="eclipselink.target-server" value="WebLogic_10" />
    </properties>
    </persistence-unit>
    - <persistence-unit name="Model">
    <provider>org.eclipse.persistence.jpa.PersistenceProvider</provider>
    <jta-data-source>java:/app/jdbc/jdbc/sys10sqlDS</jta-data-source>
    <class>sample.model.TUserprof</class>
    - <properties>
    <property name="eclipselink.target-server" value="WebLogic_10" />
    <property name="javax.persistence.jtaDataSource" value="java:/app/jdbc/jdbc/sys10sqlDS" />
    </properties>
    </persistence-unit>
    </persistence>
    NO CLUE on how to solve the error... any assistance would be appreciated...
    Edited by: shawnc on Mar 14, 2011 2:58 PM

    NO CLUE on how to solve the errorFirst step STOP using a JEE server to figure out the problem.
    Write a simple Java console app to test your ODBC set up. If you can't get that to work then you can't get it to work in JEE.

  • Kodo.persistence.ArgumentException: You cannot perform operation persist on...

    Hello,
    I'm doing the following:
    User user = new User("Dave", "[email protected]");
    dao.begin(); // calls entityManager.getTransaction().begin();
    dao.create(user); // calls entityManager.persist(object);
    dao.commit(); // calls entityManager.getTransaction().commit();
    And I get the following stack trace:
    Feb 19, 2006 11:26:12 PM org.springframework.web.servlet.FrameworkServlet
    processRequest
    SEVERE: Could not complete request
    <4|false|4.0.0EA3> kodo.persistence.ArgumentException: You cannot perform
    operation persist on detached object "sofa.model.User@36e7a9". This
    operation only applies to managed objects.
    FailedObject: sofa.model.User@36e7a9
         at kodo.kernel.BrokerImpl.getDetachedException(BrokerImpl.java:2481)
         at kodo.kernel.BrokerImpl.persist(BrokerImpl.java:2426)
         at kodo.kernel.BrokerImpl.persistSafe(BrokerImpl.java:2379)
         at kodo.kernel.BrokerImpl.persist(BrokerImpl.java:2366)
         at kodo.kernel.DelegatingBroker.persist(DelegatingBroker.java:1275)
         at kodo.persistence.EntityManagerImpl.persist(EntityManagerImpl.java:
    519)
         at sofa.jpa.JpaDao.create(JpaDao.java:23)
         at sofa.controller.SignUpController.processFormSubmission
    (SignUpController.java:42)
    ... and so on
    My User class:
    @Entity(access=AccessType.FIELD)
    public class User {
         @Id(generate=GeneratorType.AUTO)
         private Long id;
         private String name;
         private String emailAddress;
         private String password;
         public User(String name, String emailAddress) {
              this.id = System.currentTimeMillis(); // workaround for bug
              this.name = name;
              this.emailAddress = emailAddress;
    ... getters and setters
    Any ideas?
    thanks,
    dave

    The problem is that "id" is auto-generated, but you're initializing it
    to a non-default value. This makes Kodo think that this is an existing
    database object.
    I suggest downloading EA 4 from www.solarmetric.com. It solves previous
    issues with null primary key values, so you should be able to leave "id"
    null and therefore avoid confusing Kodo by initializing "id" yourself.
    (Note, however, that EA 4 implements the public draft of the spec, and
    there have been changes to some annotations.)

  • How many 'seats' are included with Adobe Creative Cloud for teams?

    How many 'seats' are included with Adobe Creative Cloud for teams?

    Hi Mrfrodo,
    There isn't a set number, you purchase the number you would need based on the size of your organization.
    This section of the FAQ might also be helpful for you to learn more about team too.
    http://www.adobe.com/products/creativecloud/faq.html#ccm-teams
    -Dave

  • Why aren't apps like weather, stocks, etc. on my new iPad? Also, It's curious that Siri wasn't included with ios5... Shouldn't an iPad 2 with the A5 be able to handle it?

    Why aren't apps like weather, stocks, etc. on my new iPad? Also, It's curious that Siri wasn't included with ios5... Shouldn't an iPad 2 with the A5 be able to handle it?

    Next time an app update gets stuck try a reset. Press and hold both the home and power buttons for10-15 seconds till the Apple logo appears. Then release both buttons. Wait till your iPad starts on it's own. Try now. Also YouTube is still available. If you can't find it the the app store go to the bottom of the app store page and tap purchased. All your deleted apps will be listed and you can reinstall YouTube from there.

  • Idvd was not included with my mac mini how do I burn movies?

    dvd was not included with my mac mini how do I burn movies?

    It is now confirmed that iDVD and iWeb have been discontinued by Apple. This is evidenced by the fact that new Macs are shipping with iLife 11 installed but without iWeb and iDVD.
    In addition the iLife suite of applications offered on disc is now a discontinued product and the remaining supported iApps will only be available thru the App Store from now on.
    HOWEVER, the iLife 11 boxed version that is still available at the online Apple Store (Store button at the top of the page) and those copies still on the shelves of retailers will include iWeb and iDVD.
    You can purchase the iLife 11 boxed disk at the online Apple Store while supplies last or possible at Amazon.com or eBay.com.
    Happy New Year

  • HT201272 I spend a considerable amount of time in Asia and am finding the ability to download previous purchases now shown on my iCloud account.  Music appears fine and most movies are OK but I have problems with all music videos included with album purch

    I am finding the ability to download previous purchases now shown on my iCloud account to be difficult.  Music appears fine and most movies are OK but I have problems with all music videos included with album purchases.  Any ideas?

    Phillip_dc wrote:
    Firstly, I purchased my first iPhone a few years ago, since then there have been a lot of apps released, a lot which I downloaded for free, tried and deleted from both my phone and my iTune 'Apps' Panel. What bothers me is when I do get a new iOS device, iPad and/or iPhone 5, and I don't want to just copy the back-up of my current iOS device to the new one, then to get the apps I want I will have to scroll through countless useless 'trash' applications in my purchase history to 'cloud download' the ones I want.
    Just sync the apps you want from your computer. You don't need to redownload them directly on the iPhone Purchased list.
    Will Apple be employing such a feature, a 'permanently delete/un-purchase' feature?
    Dunno.
    Send suggestions here -> http://www.apple.com/feedback/

  • GenerationType.AUTO doesn't work correctly with Kodo and MySQL

    Greetings,
    I'm migrating applications from JBoss/Hibernate to WebLogic/Kodo. The following column annotation:
    @Id
    @Column(name="CUSTOMER_ID")
    @GeneratedValue(strategy = GenerationType.AUTO)
    public long getCustomerId()
    is supposed to generate auto-increment primary key in mysql. This is what happens with Hibernate. With Kodo, this seems to be equivalent with GenerationType.TABLE as a table named openjpa_sequence_table is created, containing sequence values. So what should one do in order to be able to use true auto-increment strategy with MySQL and Kodo ?
    Many thanks in advance,
    Nicolas

    Hi Nicolas,
    By setting the generation strategy to AUTO, you're essentially letting the JPA provider choose which strategy to use. It looks like Kodo is using the TABLE strategy by default and Hibernate is using the IDENTITY strategy here. You can set the strategy to IDENTITY if you want Kodo to behave similarly to Hibernate. However, it's worth pointing out that there may be a reason for Kodo not using the IDENTITY strategy by default.
    The docs at: http://edocs.bea.com/wls/docs103/kodo/full/html/ref_guide_pc_oid.html#ref_guide_pc_oid_pkgen_autoinc
    point out the following:
    "Statements inserting into tables with auto-increment / identity columns cannot be batched. After each insert, Kodo must go back to the database to retrieve the last inserted auto-increment value to set back in the persistent object. This can have a negative impact on performance. "
    - Matt

  • HI , I, ON THE MONTH TO MONTH BILLING FOR Ps AND Lr ($9.99) ... i downloaded Ps but now want to download Lr ... how do i do that because it only gives me the option to take it on a month to month wit the $9.99 .... isn't it included with the package im cu

    HI , I, ON THE MONTH TO MONTH BILLING FOR Ps AND Lr ($9.99) ... i downloaded Ps but now want to download Lr ... how do i do that because it only gives me the option to take it on a month to month wit the $9.99 .... isn't it included with the package im currently on ??

    Niel.v.d.h please utilize the steps listed in Install and update apps - https://helpx.adobe.com/creative-cloud/help/install-apps.html to install Photoshop Lightroom through the Creative Cloud Desktop application.

  • Are email addresses included with free accounts for Muse subscribers?

    Are email addresses included with free accounts for Muse subscribers? Maybe not, huh? How would I upgrade to include an email address? Since the basic service is included with the subscription, would I have to pay full-fare for an upgrade just to get an email address? I'm worried, because I get messages saying that some servers will block forms that are sent to an address other than from the domain, and we have a form on our site.

    Unfortunately, email accounts are not included in the complimentary plan (Web Basics). For that, you will need to upgrade to the next plan which is WebBasics+.

  • How can I get the digital booklet included with the albums I am purchasing from iTunes directly on my iPad?

    How can I get the digital booklet included with the albums I am purchasing from iTunes directly on my iPad?  My MacBook died about 6 months ago, so now I just have an iPhone and iPad.  I would like to be able to see the Digital Booklet in my iPad when I download the album.  I do not have any other computer to download the booklet to and sync to my iPad.

    Apparently, you have to download the booklet to iTunes on a computer first, fiddle with the file type, then sync it as a book to your iPad. See http://support.apple.com/kb/HT4194 for details.

  • I just purchased retail version of PS Elements 13 and there is no serial number included with it.

    I just purchased retail version of PS Elements 13 and there is no serial number included with it.

    Hello,
    I purchased from Amazon.com in a factory sealed retail package. There is no serial number on the sleeve as this link suggests:
    Find your serial number quickly
    Adobe is closed today for phone and chat. Can anyone help me? There IS an 8 digit code on the sleeve where the serial number is supposed to be. Am I supposed to do something with that?

  • What types of samples are included with the EXSP?

    I'm considering purchasing Logic Express, but wanted to know what types of samples (orchestral, synth, drum, keyboard, etc) are included with the EXSP player. Can anyone owning Logic Express tell me what types of samples are included?
    Mac G5   Mac OS X (10.3)  

    Hello, Jeb247.
    This is merely a matter of personal opinion, but I believe that the included samples for EXSP are among the better features of the program. Granted, there are some cases where you have several instruments loosely based on the same samples run through different filters, but you are likely to find a decent array of what you need.
    You get all the Garageband instruments, as well as the ability to load the Jam Packs into EXSP. While the following list probably contains some overlap with those samples, it will still give you an idea of what's out there:
    The top-level hierarchy lists 41 different groups of sounds. After each listing, I'll note the approximate number of 'instruments' in each group:
    Piano (10)
    Guitars (11)
    Bass (5)
    Strings (9)
    Horns & Winds (9)
    Ethnic Instruments (2)
    Voices & Choir (3)
    Drum Kits (12)
    Effects(~50)
    Percussion & Specials (2)
    Analog: Bass (45), Leads (20), Pads (17), Percussive Waves (44), SpectrumSQ (25), Sweeps (30), Synthcomp (33), Waveforms (50+)
    Digital Chromatic Kits (12), Initial Waveforms (60+), Motion & FX (36), Pad Synths (46), Percussive Waves (23), Synths (31)
    FM Bass (17)
    Synth Atmospheres Layers (31), Singles (40)
    Synth Bass (45), Brass (12), Chords (21), Leads & Hooks (30), LFO Synths (21), Multi Sequence (6), Pads (44), Percussive Synths (44), Poly (28), Sidechain Chords (14), Spacious Effects (40), Strings (16), Sweeps & Swells (32), Vocalish (25)
    Now, as to the quality of the sounds... your mileage may vary. For orchestral stuff, nothing appeals to my ears like the Kurzweil -- largely because of those smooooooooooth output filters. That's not to say that the EXSP stuff isn't worth checking out; I just happen to use it for electronic textures and percussion rather than acoustic emulations. The drums simply don't cut it for me -- not nearly enough punch. But -- as I've mentioned before, you ears may report different pleasure levels.
    Suffice it to say that the EXSP comes with a substantial array of music-making potential. For the money (a freebie w/ Logic Express) it's a really good deal. Shortcomings in its sound set can be overcome by the careful purchase of additional material where your ears report unsatisfactory sounds. If you don't like the drums, iDrum or Battery might be a good idea (or my personal favorite: an outboard drum machine with dead-short latency...); if the orchestra stuff is weak, there are alternatives there, too.
    And your options for synth textures are beyond counting -- though I can specifically recommend the utterly astounding (and free!) Alphakanal "Automat". And you can have a pile of fun with the (equally free) NUSofting daHornet. And... and... the list goes on.
    Cheers,
    Michael

  • What version of Acrobat is included with Creative Suite 6 Design and Web Premium?

    I was under the impression that some version of Acrobat Pro was included with CS6,   But I don't see it, and the CS6 keycode does not work with any version of Acrobat Pro that I can download.  What are my options for getting Acrobat Pro installed and licensed?
    Thanks,
    Peter

    Thanks for your response.  So Acrobat X Pro is on the list, that's what I thought.  Yet, since it was not included in the CS6 installation package, I separately downloaded the Acrobat X package, and it does not accept the CS6 serial number, and that is the only serial number I was issued.  Any idea where I get a serial number for my Acrobat X software?  Any idea how I can talk to a live person at Adobe about this?
    Thanks again,
    Peter

  • HT204266 is wave burner included with the download of Logic Studio from the app store?

    is wave burner included with the download of Logic Studio from the app store?

    Hi HandletheTruth.
     I will be able to assist you.
    The MF Toolbox 4.9 software supports scanning in the document using OCR processing; however, you will need a separate OCR software that will allow you to edit the software.
    I hope this information is helpful to you.  Should you need further assistance, please contact us at 1-800-OK-CANON (1-800-652-2666).
    Did this answer your question? Please click the Accept as Solution button so that others may find the answer as well.

Maybe you are looking for

  • Default position

    When we do leaving action for an employee, position in 0001 is getting defaulted to 99999999 and vacancy infotype is getting triggered. But when we do Retirement action, position is not getting defaulted. How and where do we do this defaulting of pos

  • How to use a form to insert in differents schemas?

    Hi! I have three differents schemas, one per company (schema a, b, c) and I have a table of articles in each schema. This table must be the same in all the schemas. I have one form in the schema 'a'. How can I make an insert in the three schemas with

  • An Email in progress leaves me with 5-8-10 drafts of the same email in my draft folder

    Now, when i am working on an email for awhile, and then finally send it, I find 5-8-10 drafts of the email in my draft folder. Previously it saved periodically and once the em was sent, the draft disappeared. Now I have to cintinually clean out the d

  • Unicode in SQLite and AIR

    Hi guys I want certain columns in my SQLite database to be able to accept unicode characters such as • and accented characters such as á. Is this possible in the SQLite version that AIR uses? If so, what do I need to use when setting up my tables...

  • ?Why is the sorting feature in Libray mode so limited?

    I truly love to work with lighroom However, I hope that in the next adbobe update , that a more advanced but fundamental search/sort feature is added to the library mode. specifically - in Library mode --under folders -- there is no way to sort the f