Kodo 4.1.2 license key problem

Has anyone tried the JDO tutorial provided with Kodo 4.1.2? Everything works fine until I try to create the mappings with 'mappingtool -p jdo.properties package.jdo'. Then I get:
Exception in thread "main" com.solarmetric.license.LicenseException: No product
license key was found. Please ensure that you either have a valid "license.bea"
file in your CLASSPATH or in the directory specified by the "bea.home" environme
nt variable, or else that you have a valid license key specified in the "kodo.Li
censeKey" property of you Kodo configuration. If you need to request an evaluati
on license, please go to http://commerce.bea.com or contact [email protected]
at com.solarmetric.license.License.<init>(License.java:67)
at kodo.conf.KodoCapabilities.newLicense(KodoCapabilities.java:133)
at kodo.conf.LicenseKey.getLicense(LicenseKey.java:38)
at kodo.conf.LicenseKey.getLicense(LicenseKey.java:22)
at kodo.jdbc.meta.KodoClassMapping.validateMapping(KodoClassMapping.java
I'm running the tutorial using the kodocmd.bat and I changed the properties to point to kodo's install directory and my jdk home directory.
I've downloaded the xml document at 'http://ftpmain.bea.com/download/pub/license/kodo/kodo40/license.bea', named it license.bea and put it in kodo's install directory which is on the classpath.
I think the problem is getting Kodo to recognize the license outside of a web application. I am trying to use Kodo in a standalone application and obviously need it to recognize the license key.
Regards,
Jake

Hi Jake,
I don't think the problem is getting Kodo to recognize the license outside
the web application (I am also working on a standalone application). I think
the problem is that the code still requires the "old" solarmetric license
key next to the bea license key. I actually run into the same problem if I
don't specify both keys. Since I still have several important bugs already
open for months and registering an issue requires writing complete testcases
including manuals how to use these test cases, I actually didnt even bother
to register this one.
kind regards,
Christiaan
<Jacob Bowers> wrote in message news:[email protected]...
Has anyone tried the JDO tutorial provided with Kodo 4.1.2? Everything
works fine until I try to create the mappings with 'mappingtool -p
jdo.properties package.jdo'. Then I get:
Exception in thread "main" com.solarmetric.license.LicenseException: No
product
license key was found. Please ensure that you either have a valid
"license.bea"
file in your CLASSPATH or in the directory specified by the "bea.home"
environme
nt variable, or else that you have a valid license key specified in the
"kodo.Li
censeKey" property of you Kodo configuration. If you need to request an
evaluati
on license, please go to http://commerce.bea.com or contact [email protected].
at com.solarmetric.license.License.<init>(License.java:67)
at kodo.conf.KodoCapabilities.newLicense(KodoCapabilities.java:133)
at kodo.conf.LicenseKey.getLicense(LicenseKey.java:38)
at kodo.conf.LicenseKey.getLicense(LicenseKey.java:22)
at
kodo.jdbc.meta.KodoClassMapping.validateMapping(KodoClassMapping.java
I'm running the tutorial using the kodocmd.bat and I changed the properties
to point to kodo's install directory and my jdk home directory.
I've downloaded the xml document at
'http://ftpmain.bea.com/download/pub/license/kodo/kodo40/license.bea', named
it license.bea and put it in kodo's install directory which is on the
classpath.
I think the problem is getting Kodo to recognize the license outside of a
web application. I am trying to use Kodo in a standalone application and
obviously need it to recognize the license key.
Regards,
Jake

Similar Messages

  • Enhacer ant task license key problem

    Hi,
    I'am developing web applicaiton with workshop studio 3.0 and I use It's
    ejb3(kodo 4 EA4) mapping generator.I try to use ant task for
    enhancement,here is my build.xml file's kodoc task
         <target name="enhance">
              <echo>
    ================================================================
    Running the enhancer
    ================================================================
              </echo>
              <taskdef name="kodoc" classname="kodo.ant.PCEnhancerTask">
                   <classpath refid="cp"/>
              </taskdef>
              <kodoc>
              <fileset dir="${basedir}">
              <include name="**/com/demo/model/*.java" />
              </fileset>
              <classpath>
              <pathelement location="${basedir}/classes"/>
              <pathelement location="${basedir}/src"/>
              <pathelement path="${java.class.path}"/>
              </classpath>
              </kodoc>
         </target>
    ant task starts enhancer,finds my domain classes but gives the following
    expcetion during enhancement of first class
    [echo] ================================================================
    [echo] Running the enhancer
    [echo]
    ================================================================
    [kodoc] 611 INFO [main] kodo.Tool - Enhancer running on type "class
    com.demo.model.MyClass".
    [kodoc] com.solarmetric.license.LicenseException: No product license
    key was found. Please ensure that your license key is specified in your
    configuration file (or in the "General" tab of your IDE''s configuration
    dialog), that the key has not expired, and that it is the correct key for
    the version of the product that you are running...
    build.xml is in WEB_INF directory and my source are in src directory
    compiled classes are in classes directory,I place persistence.xml file in
    the directiory WEB-INF/META-INF/
    my license key is in persistence.xml file and it will expire 3-4 weeks
    later.Here my persistencex.xml file
    <persistence>
         <persistence-unit name="kodo">
              <provider>kodo.persistence.PersistenceProviderImpl</provider>
              <class>com.demo.model.MyClass</class>
              <properties>
         <property name="kodo.LicenseKey" value="xxxxxx"/>
              <property name="kodo.ConnectionDriverName"
    value="org.apache.derby.jdbc.ClientDriver"/>
              <property name="kodo.ConnectionURL"
    value="jdbc:derby://localhost:1527/xxxDB"/>
              <property name="kodo.ConnectionUserName" value="xxx"/>
              <property name="kodo.ConnectionPassword" value="xxxx"/>
              <property name="kodo.jdbc.Schema" value="xxxx"/>
         <property name="kodo.Log" value="DefaultLevel=WARN, Tool=INFO"/>
         </properties>
    </persistence-unit>
    </persistence>
    where should I pu my license key or persistence.xml file.
    Not:I was using previsous release of kodo (EA3),for ejb3 I set access
    property of Entity annotaion to access=AccessType.FIELD so I did not need
    to enhance and It does works but this version we do not have this
    option,Am I right.Do we always have to enhance our ejb3 entities in EA4
    release

    murat wrote:
    Hi,
    I'am developing web applicaiton with workshop studio 3.0 and I use It's
    ejb3(kodo 4 EA4) mapping generator.I try to use ant task for
    enhancement,here is my build.xml file's kodoc task
         <target name="enhance">
              <echo>
    ================================================================
    Running the enhancer
    ================================================================
              </echo>
              <taskdef name="kodoc" classname="kodo.ant.PCEnhancerTask">
                   <classpath refid="cp"/>
              </taskdef>
              <kodoc>
              <fileset dir="$">
              <include name="**/com/demo/model/*.java" />
              </fileset>
              <classpath>
              <pathelement location="$/classes"/>
              <pathelement location="$/src"/>
              <pathelement path="$"/>
              </classpath>
              </kodoc>
         </target>
    ant task starts enhancer,finds my domain classes but gives the following
    expcetion during enhancement of first class
    [echo] ================================================================
    [echo] Running the enhancer
    [echo]
    ================================================================
    [kodoc] 611 INFO [main] kodo.Tool - Enhancer running on type "class
    com.demo.model.MyClass".
    [kodoc] com.solarmetric.license.LicenseException: No product license
    key was found. Please ensure that your license key is specified in your
    configuration file (or in the "General" tab of your IDE''s configuration
    dialog), that the key has not expired, and that it is the correct key for
    the version of the product that you are running...
    build.xml is in WEB_INF directory and my source are in src directory
    compiled classes are in classes directory,I place persistence.xml file in
    the directiory WEB-INF/META-INF/
    my license key is in persistence.xml file and it will expire 3-4 weeks
    later.Here my persistencex.xml file
    <persistence>
         <persistence-unit name="kodo">
              <provider>kodo.persistence.PersistenceProviderImpl</provider>
              <class>com.demo.model.MyClass</class>
              <properties>
         <property name="kodo.LicenseKey" value="xxxxxx"/>
              <property name="kodo.ConnectionDriverName"
    value="org.apache.derby.jdbc.ClientDriver"/>
              <property name="kodo.ConnectionURL"
    value="jdbc:derby://localhost:1527/xxxDB"/>
              <property name="kodo.ConnectionUserName" value="xxx"/>
              <property name="kodo.ConnectionPassword" value="xxxx"/>
              <property name="kodo.jdbc.Schema" value="xxxx"/>
         <property name="kodo.Log" value="DefaultLevel=WARN, Tool=INFO"/>
         </properties>
    </persistence-unit>
    </persistence>
    where should I pu my license key or persistence.xml file.
    Not:I was using previsous release of kodo (EA3),for ejb3 I set access
    property of Entity annotaion to access=AccessType.FIELD so I did not need
    to enhance and It does works but this version we do not have this
    option,Am I right.Do we always have to enhance our ejb3 entities in EA4
    release

  • Adobe master collection CS3 license key problem

    hi there,, i have some problem with my adobe master collection CS3 license key,, i have 4 key for MAC to my master collection cs3,,
    i cannot  use my key on my new MAC,, because the limit activation,, i can't deactive the key from my old MAC because my old MAC was dispose,,
    what should i do? please help me...
    thanks

    Hi Whisnuprasetyo,
    Welcome to Adobe Forums.
    Thsi issue would require us to check your serial number which i would not advise you to share on Forums.
    Please contact us through chat support so that we can help you out.
    http://helpx.adobe.com/contact.html?product=creative-suite&topic=activating-my-product-or- serial-number-issues#
    Thanks

  • License key problems with database copy

    Hi all - we are refreshing ECC 6.0 QA/Test system with a database copy from our DR system that is replicated from production with MIMIX. Problem with license key is that in SLICENSE the system number is from the DR system, but the QA system should have a different system number. When I go out to OSS, the existing license doesn't work because system number doesn't match what is in system data for QA system.  We recently upgraded to ECC 6.0 from 4.6C and didn't have this problem before.
    TIA,
    -Margie

    Hi again - finally figured it out, it's the difference between Old License and New License. We got an old license to install.
    Regards,
    -Margie

  • Lync 2013 client Installation License Key Problem

    Hi,
    I have a question, I have tried to install Lync 2013 with SCCM... but found that installing Lync Client with MSP file was not working. so I found the solution and pushed Lync Client with Config.xml ...
    it went through and installed on 700 machines successfully.
    now the problem arised, Lync client is now asking for License Key and I don't know what to be done :(
    how to push License Key on all those lync clients?
    kindly help and suggest.
    BR, Phaixan

    It depend on you Lync License. If you use a VLK License or MAK you have to import the Lyncense to you License server. You have to activate the License on your KMS server
    http://technet.microsoft.com/en-US/us-us/library/ee624357(v=office.15).aspx
    regards Holger Technical Specialist UC

  • Acrobat installation license key problem

    I have been trying to install the Technical Communication Suite v1.3. The main installation of FrameMaker, RoboHelp and Captivate seems to have worked fine, accepting our license key and allowing me to register and update the software with the latest patches.
    However, when I try to install Acrobat 9 from the same DVD that Adobe supplied, I just get "Invalid License Key" (using the same key that worked fine this morning for FrameMaker etc).
    Calls to both Adobe Technical Support and Adobe Customer Service have so far produced no useful information. Does anyone have any suggestions, or at least recognise the problem?
    Thanks
    Caroline

    I've had this type of problem before :-(, although not with TCS.
    The simple solution is to invest in one of those handy-dandy CD marker pens (Faber-Castell 1513 works fine) and carefully write the install key(s) on the original Adobe CD/DVD. When installing/re-installing, copy the install key off the media using your neck-top computer and a pencil. No problems.
    Guard the CD's with your life, preferably in a CD rack in a locked cabinet, with an ID tag/bar code on the case. You do have a Master Software database with all the current CD/DVDs and the required [update from] CD's, don't you? Of course you do! And all those lovely extras that came with earlier versions, like the 220 FREE Adobe Type 1 Typefaces that came with FrameMaker 5.5.6 - you didn't throw that out, did you?
    And you do update your asset register with each new item before tax filing time? Smart operator!!!

  • UFT 12 trial version - License key problem

    Hi, I have downloaded UFTversion 12.50(Trial version) and trying to install it on a VM having OS "Windwos server 2008 R2 SP1". Installation is successful but when we launch it we are facing License Error. ESXi Server : 6.0 Please suggest me on this.  

    3111 wrote:
    Hi, I have downloaded UFTversion 12.50(Trial version) and trying to install it on a VM having OS "Windwos server 2008 R2 SP1". Installation is successful but when we launch it we are facing License Error. ESXi Server : 6.0 Please suggest me on this.  This Forum is the "Consumer Forum".  We don't deal with servers here. I suggest you ask in the Enterprise Forum:  http://h30499.www3.hp.com/ WyreNut

  • Problem removing trial version of LiveCycle Designer in order to install new and input license key

    User installed the trial version and has been using it. Now that we have a license key to enter, they have tried to remove it so they can reinstall and enter the key. They get a mesage that there is a problem with the install and it will not remove it. We have tried to reinstall it. When they do that,  they receive message that the package is corrupt. We have downloaded the package fresh a number of times now.
    How can we remove the trial version so we can get it installed with the key ?
    I set up a second system and installed the trial version. I then removed it with no issue. I used the same package the user has downloaded.

    Please try this utility : http://support.microsoft.com/mats/program_install_and_uninstall/en
    -Wasil

  • PI 7.10 Problem applying NetWeaver_ORA (Standard) License Key in ABAP

    We are attempting to license our PI 7.10 (Windows 2003 /64 on Oracle
    10.2.0.4) installation, but are having problems. This is a dual stack
    installation (of course) and I have downloaded the requested license from
    service.sap.com. This is license type Standard (NetWearver_Ora). The
    license installs correctly and shows as valid in slicense, but in the
    area above the Installed Licenses in the Database, it shows RED for
    NetWeaver_Ora and says, "A valid license key for this software product is
    required to operate this system."
    When attempting to logon as a user other than sap*, we get a license
    failure and no logon.
    saplicense -get -- returns HARDWARE KEY = 01480339654
    Old licenses tab screen is blank (no licenses installed) as I have
    deleted the temporary license, thinking that the digital license had
    installed correctly.
    Digitally-Signed Licenses screen:
    (Red traffic signal) NetWeaver_ORA A valid license key for this software
    product is required to operate this system
    Installed Licenses in the Database
    (Green traffic signal) PID 01480339654 NetWeaver_ORA 30.09.2008
    31.12.9999 Perm 0020412052 000000000311063393 Valid
    No further entries on this screen.

    Hi All - This issue was resolved. Basically, I made copies of all the current profiles used by SAP and deleted the old ones. Then, I just simply renamed them to the old profiles names of the ones I just deleted and it seemed to have worked. It was probably one of those quirky things with Windows. Thanks! - Will S.

  • Problem with License key

    I have a license key that I get through my schools webside for the Adobe Design Standard CS6 (mac)
    Is there a reason as to why I keep getting "Please enter a valid serial number"? I've downloaded off the adobe site before and never had a problem. I have a history log on both my schools website and the "my products" section to verify that all the older keys I've used match up with the keys activated on the Adobe site.  Please Help!

    Hi KRamjattan,
    I have verified the serial key and it is valid serial number of Adobe Design Standard CS6(Mac).
    Please also private message me the screenshot of the problem.
    It will help us in order to isolate the issue.
    Regards,
    Sumit Singh

  • MSCS Installation; Having problem generating temp. license key

    <b>Environment:</b>
    SAP ECC 6.0 (MSCS) installation.
    Windows 2003 Server Enterprise Edition (64 bit Itanium)
    SQL 2005
    We are having a problem with the Central Instance Installation Step at
    the point where you must generate a license key using Solution Manager.
    The installation does not accept any key generated by Solution Manager
    using the virtual host name (SAPCIGRP) - the virtual host name for the
    SAP Cluster Group.
    We greatly appreciate help on this issue so we can finish up
    installation.
    <b>Steps for the Reconstruction </b>
    MSCS Installation ERP 2005 ABAP+Java (ECC 6.0)
    Central Instance Installation Step (Step 8 Installation Guide):
    The Installation asks for Solution Manager License Key.
    In Solution Manager we created the PRD System (SMSY), then select the
    system and select the button "Generate Installation/Upgrade key".
    We enter the following:
    System ID: PRD
    System Number: 02 (also tried 00,01 with no luck)
    Message Server: SAPCIGRP
    [host names for PRD:
    Node A: sapprdci
    Node B: sapprddb
    SAP Cluster Group: sapcigrp (virtual host name)
    SQL Cluster Group: sapdbgrp (virtual host name)]
    The installation also asks for instance number (port) for the central
    instance; we are entering "02". ASCS (Central Services for ABAP)
    is "00" & SCS (Cental Services Instance) is "01".
    Thanks,
    Patrick

    Hi,
    You probably want to look two things here:
    1. Maybe some problem with the system number, I had the same problem before. I thought I should use system number 00, but it was ended up take system number 01. I still don't know why. The installation completed with my system number be 01 instead of 00 I wanted to be.
    2. Because of MSCS installation, does it want to real hostname of the node you are installing or it requires virtual name. I am wondering it is asking hostname of the current node because you should convert it to MSCS cluster after installation complete. Now it does not even know MSCS and virtual hostname etc exist yet.
    Thanks,
    Yujun Ran
    Message was edited by: Yujun Ran

  • Problem with obtaining license key#

    I purchased the Adobe CS6 Design & Web Premium package with a student discount on Amazon.  I was told that I had to download the trial package until I receive an email with my license key.  How long does that take?
    There is a number that looks like a license key inside the package, however, it does not have enough numbers and was rejected.  Who do I need to contact about this?

    Adobe - Student Edition Order Fulfillment
    Mylenium

  • Invalid License Key need help

    I just installed kodo 3.0.1 using the windows installer, I also asked it to
    install it in JBuilder9.
    Then when I went into JBuilder I saw the Configure KODO JDO under tools
    menu,
    when I click on this selefction the dialog comes up OK
    but when I try to close / OK this dialog I get an invliad license message.
    One mistake I did was that I satarted JBuilder9 before I updated the
    kodo.properties file.
    I closed JBuiulder and then updated the properties file and tried Jbuyilder
    again and got same invalid license message.
    Can you tell me how to fix this ?
    Thanks
    Mousa Shaya

    Thanks
    It wasn't clear from the documentation that I needed to do that. I am using
    3.0.0 docs and maybe that was the problem.
    Anyway I had added the license to the properties file and as you mentioned I
    added it to the General Tab and that solved the problem . I didn't see any
    project tabs.
    Thanks
    Mousa
    "Marc Prud'hommeaux" <[email protected]> wrote in message
    news:[email protected]..
    Mousa-
    There may be two separate tabs ("Project" and "Global"), both of which
    contain a license key field. If you enter the license key into both
    there fields, do you still get the error?
    If so, what exactly is the error?
    In article <bteg4f$ecn$[email protected]>, Mousa Shaya wrote:
    I just installed kodo 3.0.1 using the windows installer, I also asked it
    to
    install it in JBuilder9.
    Then when I went into JBuilder I saw the Configure KODO JDO under tools
    menu,
    when I click on this selefction the dialog comes up OK
    but when I try to close / OK this dialog I get an invliad licensemessage.
    >>
    One mistake I did was that I satarted JBuilder9 before I updated the
    kodo.properties file.
    I closed JBuiulder and then updated the properties file and triedJbuyilder
    again and got same invalid license message.
    Can you tell me how to fix this ?
    Thanks
    Mousa Shaya
    Marc Prud'hommeaux [email protected]
    SolarMetric Inc. http://www.solarmetric.com

  • About license key

    I am having problems with the license key.
    in my kodo.properties file I have
    com.solarmetric.license.License=
    But when I run my code, it is giving me error that "No license key was
    found"?
    Can you please help me with this?
    Thanks

    What version of Kodo are you using? If you're using a recent version of
    Kodo (3.0.0 or greater) then the correct property name is:
    kodo.LicenseKey
    See:
    http://www.solarmetric.com/Software/Documentation/3.1.3/docs/ref_guide_conf_kodo.html#kodo.LicenseKey
    If you're using a version of Kodo older than 3.0.0, then the correct
    property name is:
    com.solarmetric.kodo.LicenseKey
    Please see:
    http://www.solarmetric.com/Software/Documentation/2.5.8/docs/ref_guide_conf_kodo.html#com.solarmetric.kodo.LicenseKey
    Thanks,
    Greg
    "Denna Ramani" <[email protected]> wrote in message
    news:ccmn1c$3o0$[email protected]..
    I am having problems with the license key.
    in my kodo.properties file I have
    com.solarmetric.license.License=
    But when I run my code, it is giving me error that "No license key was
    found"?
    Can you please help me with this?
    Thanks

  • Evaluation license key invalid

    Web site emails license key. Kodo complains that it has expired.
    Had to use my old key

    Alex,
    First, I'd like to apologize for the inconveniences on our web site.
    Clearly, we could have tested it more thoroughly and on a wider
    selection of browsers before releasing it.
    We have fixed the license generation problem. The emailed licenses
    should now be correct.
    We have successfully tested creating a user id and retrieving an
    evaluation key and download for enterprise and standard edition
    downloads on Netscape 4.77 and Galeon on GNU/Linux and IE 5.5 on
    Windows.
    -Patrick
    Patrick Linskey [email protected]
    SolarMetric Inc. http://www.solarmetric.com

Maybe you are looking for

  • "Read table" and field symbols

    Hello all, I have a (hopefully simple) question. Let's suppose I want to do the following: loop at itab1 assigning <fs1>.   read table itab2 assigning <fs2> with table key <fs1>-field1.   if sy-subrc eq 0.     move <fs2>-field1 to ls_out-field1.   en

  • Airplay from windows-computer?

    hello is it possible to watch films from my windows-computer with airplay and appletv on the tv-screen? regards and thanks beat

  • ITunes Video Crashes

    Practically every time I watch a video, iTunes starts to stop all audio from the video, and all the sudden it stops all playback all together. I have the crash log that I don't want to post the whole thing here because it is too long. Here it is Date

  • Netbeans and Windows 2000 Server Problems

    I've tried to run netbeans on my windows 2000 server OS a few times. It usually doesn't work out and I have to go back to pcGrasp. Does anyone out there know of any issues between netbeans and this OS. Is it worth it. I'd like to move away from the .

  • Jacquie Lawson Advent Calendar app using Adobe Air

    In December I bought the Jacquie Lawson Advent Calendar and downloaded it to my laptop. It worked perfectly. When you booted up it would open up and put a snow globe on the lower right corner of your desktop. When you clicked on it choices showed and