App identity w/ inheritance

This post is a repeat from the other forum. I'm having trouble using
inheritance (class-column and persistence-capable-superclass attrs) with
app identity. When I convert to datastore identity, Kodo correctly
gives me an instance of the subclass named in the class-column. When I
use app identity, it tries to create an instance of the superclass and
ignores the class-column. Is this a known issue, or am I just missing
something?
Jerry Pulley
Sr. Developer
Commerce Technologies, Inc.
21 Corporate Drive
Clifton Park, NY 12065
518.886.0700 x3876 Phone
518.886.0701 Fax

See answer in kodo.developer newsgroup.

Similar Messages

  • Appidtool and horizontal inheritance

    Hi,
    The "appidtool" doesn't generate id objects for persistent subclasses
    whose superclass is horizontally mapped. Right now I have to write all the
    id objects by hand and it is a pain. In the manual, under "Horizontal
    Inheritance", it says
    "Rather than having a single application identity class associated
    with the entire class hierarchy, each subclass declares its own
    application identity class. The inheritance hierarchy of the application
    identity classes must exactly match the inheritance hierarchy of the
    persistent classes they represent. This enables Kodo to unambiguously
    identify which subclass a specific application identity instance
    represents."
    Is there any intention to implement auto app id generation for horizontal
    subclasses, or am I doing something wrong here?
    Thanks,
    Gene

    I used appidtool -ignoreErrors true <.jdo file> but the id classes still
    don't get generated. When it encounters a subclass, it still logs the
    following:
    Type <class name> does not have metadata, does not use application
    identity, or inherits the identity class from its superclass; skipping.
    Stephen Kim wrote:
    You should be able to use the ignoreErrors flag to bypass the superclass
    check.
    Gene Chan wrote:
    Hi,
    The "appidtool" doesn't generate id objects for persistent subclasses
    whose superclass is horizontally mapped. Right now I have to write all the
    id objects by hand and it is a pain. In the manual, under "Horizontal
    Inheritance", it says
    "Rather than having a single application identity class associated
    with the entire class hierarchy, each subclass declares its own
    application identity class. The inheritance hierarchy of the application
    identity classes must exactly match the inheritance hierarchy of the
    persistent classes they represent. This enables Kodo to unambiguously
    identify which subclass a specific application identity instance
    represents."
    Is there any intention to implement auto app id generation for horizontal
    subclasses, or am I doing something wrong here?
    Thanks,
    Gene
    Steve Kim
    [email protected]
    SolarMetric Inc.
    http://www.solarmetric.com

  • Cannot install/uninstall/debug my app

    Hi,
    when I was trying to install my app from Store yesterday, WP8.1 Silverlight app on Lumia 1520 with 8.1 Dev Preview, the installation got stucked and I had to restart my phone. After the restart
    I can no longer install this app from Store, it always ends with the same error. I cannot even install this app from Visual Studio.
    Error 6
    Installation of the application failed. The application is already installed, or update or uninstall is running.
    Note I can install and uninstall other apps from Store, another phone restart and Soft Reset has not fixed this. The app is also not listed in the installed app list.
    I know that changing the app identity in manifest should work for deploying from Visual Studio, but the problem is here installation of the app from Store. I need to test the functionality of the actually published and that's not possible right now.
    Is there anything I can do, is there maybe some installation cleanup utility or tool to use? Hard Reset is really not an option here since it's my primary device for daily use.
    Thanks

    How about a soft reset? Hold the lock button and volume down button at the same time for 5-10 seconds.
    Matt Small - Microsoft Escalation Engineer - Forum Moderator
    If my reply answers your question, please mark this post as answered.
    NOTE: If I ask for code, please provide something that I can drop directly into a project and run (including XAML), or an actual application project. I'm trying to help a lot of people, so I don't have time to figure out weird snippets with undefined
    objects and unknown namespaces.

  • Application identity tool error

    I'm getting the following error when I run the appidtool from ant (kodo
    3.0.1):
    kodo.util.FatalUserException: Type "class
    com.correlat.intranet.news.NewsItem" does not have metadata, does not use
    application identity, or inherits the identity class from its superclass.
    My jdo definitions are:
    <package name="com.correlat.intranet.news">
    <class name="NewsItem"
    persistence-capable-superclass="net.sundog.news.NewsItem"
    identity-type="application">
    <extension vendor-name="kodo" key="jdbc-class-map"
    value="flat"/>
    <field name="postedBy">
    <extension vendor-name="kodo" key="jdbc-field-map"
    value="one-one">
    <extension vendor-name="kodo" key="column.id_i"
    value="postedby_person_id_i"/>
    </extension>
    </field>
    <field name="lastUpdatedBy">
    <extension vendor-name="kodo" key="jdbc-field-map"
    value="one-one">
    <extension vendor-name="kodo" key="column.id_i"
    value="lastupdatedby_person_id_i"/>
    </extension>
    </field>
    <field name="relevantOrganizations">
    <collection
    element-type="com.correlat.intranet.directory.Organization"/>
    <extension vendor-name="kodo" key="jdbc-field-map"
    value="many-many">
    <extension vendor-name="kodo" key="element-column.id_i"
    value="organization_id_i"/>
    <extension vendor-name="kodo" key="table"
    value="t_map_newsitem_organization"/>
    <extension vendor-name="kodo" key="ref-column.id_i"
    value="newsitem_id_i"/>
    </extension>
    </field>
    </class>
    AND
    <package name="net.sundog.news">
    <class name="NewsItem" objectid-class="NewsItemId">
    <extension vendor-name="kodo" key="jdbc-class-map" value="base">
    <extension vendor-name="kodo" key="table" value="t_news"/>
    <extension vendor-name="kodo" key="pk-column" value="id_i"/>
    </extension>
    <extension vendor-name="kodo" key="jdbc-version-ind"
    value="version-number">
    <extension vendor-name="kodo" key="column"
    value="rowversion_i"/>
    </extension>
    <extension vendor-name="kodo" key="jdbc-class-ind"
    value="in-class-name">
    <extension vendor-name="kodo" key="column"
    value="classtype_id_vc"/>
    </extension>
    <field name="id" primary-key="true">
    <extension vendor-name="kodo" key="jdbc-field-map"
    value="value">
    <extension vendor-name="kodo" key="column"
    value="id_i"/>
    </extension>
    </field>
    <field name="title">
    <extension vendor-name="kodo" key="jdbc-field-map"
    value="value">
    <extension vendor-name="kodo" key="column"
    value="title_vc"/>
    </extension>
    </field>
    <field name="summary">
    <extension vendor-name="kodo" key="jdbc-size" value="-1"/>
    <extension vendor-name="kodo" key="jdbc-field-map"
    value="clob">
    <extension vendor-name="kodo" key="column"
    value="summary_clob"/>
    </extension>
    </field>
    <field name="text">
    <extension vendor-name="kodo" key="jdbc-size" value="-1"/>
    <extension vendor-name="kodo" key="jdbc-field-map"
    value="clob">
    <extension vendor-name="kodo" key="column"
    value="text_clob"/>
    </extension>
    </field>
    <field name="newsDate">
    <extension vendor-name="kodo" key="jdbc-field-map"
    value="value">
    <extension vendor-name="kodo" key="column"
    value="newsdate_dt"/>
    </extension>
    </field>
    <field name="lastUpdated">
    <extension vendor-name="kodo" key="jdbc-field-map"
    value="value">
    <extension vendor-name="kodo" key="column"
    value="lastupdated_dt"/>
    </extension>
    </field>
    <field name="relatedUrl">
    <extension vendor-name="kodo" key="jdbc-field-map"
    value="value">
    <extension vendor-name="kodo" key="column"
    value="relatedurl_vc"/>
    </extension>
    </field>
    <field name="active">
    <extension vendor-name="kodo" key="jdbc-field-map"
    value="value">
    <extension vendor-name="kodo" key="column"
    value="active_b"/>
    </extension>
    </field>
    <field name="image">
    <extension vendor-name="kodo" key="jdbc-field-map"
    value="blob">
    <extension vendor-name="kodo" key="column"
    value="image_blob"/>
    </extension>
    </field>
    <field name="imageMimeType">
    <extension vendor-name="kodo" key="jdbc-field-map"
    value="value">
    <extension vendor-name="kodo" key="column"
    value="imagemimetype_vc"/>
    </extension>
    </field>
    </class>
    My ant task is:
    <taskdef name="appidtool" classname="kodo.ant.ApplicationIdToolTask">
    <classpath path="${base.classpath}"/>
    </taskdef>
    <appidtool ignoreErrors="false" directory="${src.dir}/java">
    <fileset dir="src/java">
    <include name="**/*.jdo"/>
    </fileset>
    <codeformat spaceBeforeParen="true" braceOnSameLine="false"/>
    <config licenseKey="${kodo.license}"/>
    </appidtool>
    Nathan

    I don't think using ant's filesets would work because I have one .jdo file
    per package. There are multiple class definitions in each .jdo file, some
    of which inherit while others don't.
    Nathan
    "Marc Prud'hommeaux" <[email protected]> wrote in message
    news:[email protected]..
    Nathan-
    Is there any other errors that won't be listed now that actually are
    errors?
    >
    There are other possible error conditions that will be ignored if
    ignoreErrors is true.
    We recommend keeping ignoreErrors to false, and only running the tool on
    those classes for which you really do want the appid classes to be
    generated. ant's fileset directives are pretty flexible; there are
    many different ways you can configure it to include only those files you
    want.
    In article <bu8re6$u2e$[email protected]>, Nathan Voxland wrote:
    That solves it, thanks.
    Is there any other errors that won't be listed now that actually are
    errors?
    >>
    Nathan
    "Abe White" <[email protected]> wrote in message
    news:bu76si$nct$[email protected]..
    Running the task on a class that doens't use application identity or
    inherits its application identity class (and therefore doesn't need one
    gernated) is considered an error. By setting the task's "ignoreError"
    property to "false", you're telling it to throw an exception when it
    encounters such a case.
    Marc Prud'hommeaux [email protected]
    SolarMetric Inc. http://www.solarmetric.com

  • Package identity error when submitting

    Hi,
    in a new beta app submission of a WP8 app that was migrated to WP8.1 Silverlight, I get the error
    "The package identity associated with this update doesn't match what's in the uploaded package"
    followed by the app identity value in the newly created Package.appxmanifest file.
    Some ideas?
    Thomas

    The kicker here is to edit the package.appxmanifest as code.
    in other words scrap the visual editor.
    When you open it as text you'll see one  of the top lines in it:
      <Identity Name="___" Publisher="_____" Version="1.0.0.0" />Replace the ___ parts with what it shows for your app after you fill out the App Info area during submission.B
    http://about.me/bc3tech

  • Transfer of PURCHASED apps

    Is it possible to permanently move/transfer PURCHASED apps from an inherited iPad onto my iPad so that I can then erase the inherited iPad in order to sell it.  The PURCHASED apps on the inherited iPad were gifts that were paid for with my credit card.  Technically those apps belong to me but were assigned to someone else (temporarily as it turns out).  What are the necessary steps to accomplish this?

    For apps (iPad):
    Tap the App Store icon from the iPad’s home screen.
    Tap the “Purchased” tab at the bottom of the display, just to the left of “Updates.”
    Now you’ll see a sortable list of all the apps purchased through your iTunes account. Tap the “Sort by” button to sort by app name or most-recently purchased apps. You can also filter by tapping the “Not On This iPad” tab, or see only apps designed specifically for iPad by tapping the “iPad/iPhone” toggle to the left.
    See an app you’d like to red-download? Tap its cloud icon.
    For music or TV shows (iPad):
    Tap the App Store icon from the home screen, then tap the “Purchased” tab at the bottom of the screen.
    On the next screen, you’ll see a list of all your purchased songs from iTunes. Tap the “Albums” tab at the top of the display to see your music grouped by album, or search using the form in the top-left corner. To see only the music that isn’t on your iPad, tap the “Not On This iPad” tab.
    Want to see your purchased TV shows or movies? Tap the “View: Music” button in the top-left corner of the screen and choose either “TV shows” or “Movies” from the menu.
    <Link Edited by Host>

  • Identity Restriction Not subscribed please turn off the feature and try again

    Hi, I have BB Curve 9300 and I am getting this error since I landed in mumbai. This is preventing me to make calls. 

    Hi and Welcome to the Community!
    Having no idea where you came "from", we can only guess that you are presently roaming on a different carrier and/or have shifted from your home carrier SIM to a local one in Mumbai. As such, the message is likely quite clear...you have configured, in the settings for your phone app, identity restriction, but it is not supported by the carrier you are presently operating on. You need to go into the phone app settings and turn it off.
    Good luck!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Need help in re-architecting an environment

    We have 6 Solaris servers running multiple instances of BEA WLS 8.1SP3. We have about 30 instances spread out over these 6 servers. Each app instance has it's own admin and managed server(Don't ask me why we have a seperate admin server for each app since I inherited the environment). We are now trying to explore options for consolidating the app instances on fewer servers. One of the options that is on the table is to put the apps (i.e. the domains) on NetApp filers (or other NAS storage). The thought process is that this will allow us to do the following:
    - consolidate the app instances on fewer boxes (barring the memory restrictions of the server)and thus also saving on the licensing cost.
    - allow us to migrate the instances to a different server, in case we need to perform maintenance on a particular server, with minimal down time
    I know BEA clustering could be a possible candidate but cost is a major factor.
    Here are the questions that I have:
    - will this strategy work?
    - how are the instances tied to the license? Once we migrate an instance to a different box we are now using a different license.
    - I am slightly skeptical on whether we will just be able to mount up the filer volume on a different box and bring up the managed instance (since the admin server will not know about the managed server).
    - if we were to choose to migrate both the admin and managed servers (since each app has its own admin & managed server) will this strategy work?
    - can you suggest any other options?
    I am really hoping that the BEA gurus can provide me some good insight on this.
    thanks and regards,
    Vishal

    This is the Structure.
    <majorLine LineID = "123456">--> there will be only one Major Line
    <itemNamme>MajorLineItem</itemName>
    <quantity>2</quantity>
         <serviceLine> ---> there can be more than one service or No service for this Major line
              <lineId>123456<lineId>
              <itemNamme>serviceOfmajor</itemName>
              <quantity>2</quantity>
         </serviceLine>
         <minorLine LineID = "456789"> ---> there can be more than one minor lines for this Major line
         <itemNamme>first_MinorlineItem</itemName>
         <quantity>7</quantity>
               <serviceLine>---> there can be more than one or NO service lines for one Minor line
                   <lineId>11212<lineId>
                   <itemNamme>First_serivceOfMinor</itemName>
                   <quantity>2</quantity>     
               </serviceLine>
               <serviceLine>---> there can be more than one service lines or No service line for one Minor line
                   <lineId>1347657<lineId>
                   <itemNamme>second_serivceOfMinor</itemName>
                   <quantity>2</quantity>     
               </serviceLine>
           <minorLine LineID = "477838"> ---> there can be more than one minor lines or no minor line for this Major line
         <itemNamme>second_MinorlineItem</itemName>
         <quantity>3</quantity>
    </majorLine>

  • IMovie '13 "dumbed down" compared to iMovie '11

    It appears that Apple has decided to make the Mac versions of iLife and iWorks apps identical to the IOS versions on the iPad. This required a "dumbing down" of the Mac versions which they did in the newly released versions. I see this in iMovie '13 which among other missing old features is the ability to group Projects into folders (like Family, Vacations, etc.) which is extremely important when you have a few dozen or more projects.
    In another forum, it is clear they did the same thing with iWorks:
    As a dedicated user of the iWork applications I looked forward to seeing what new features Apple was going to support. I cannot tell you how disappointed I am - all three represent regressions IMHO. Read through the discussion about Pages, Keynote and Numbers, and you will see right away that people are deeply puzzled with the features that have vanished. It sure seems in an effort to make the iWork apps more like their iOS cousins that Apple has dumbed down and severely limited the OS X versions.
    From missing vertical rulers and loss of merge fields in Pages to the loss of a number of transitions and actions in Keynote the lists go on and on. I am certainly glad that installing the new apps does not remove the old - as I am really forced to stay with the older versions to keep the level of features I have been used to. Those of you who value the advanced features of the previous version of iWork *please* avoid dumping the old apps until you *really* get a chance to see what isn't there in the new versions. Lots of flash and less substance!

    Just tried to do my first project with the new version after upgrading from iMovie '09.
    Video import.. no option to move files into the Event.. thats annoying.
    Screen layout is designed to take up the full screen width of my 13" MBP. This causes issues with my preferred use of the dock on the right side as opposed to the bottom. I either have to make the dock auto-hide or go to full screen when using it. The shot below shows the settings button being clipped out by the dock.
    You can make that window bigger but not reduce it or change the relative size of the other sections to allow it fit into the width I'm giving. Its not a maximizse/restore issue at hand here.
    Then onto transitions. I don't use themes as such but when I would edit video, I'd go to the Theme selection, select none but select a default transition of wipe left (ala star Wars). Then I'd just add title screens and start assembling the timeline with the same transition being automatically inserted for me.
    That now no longer works. I can go to Movie Properies (⌘-J), select settings and then check auto-content. But it adds a default disolve and does not let me select the transition I'd prefer.
    Whats worse, I can change transitions individually, but not if I select the whole lot. And to add to this insult, the visual representation of the transition icon remains the same as opposed to changing to reflect the style of transition you selected.
    They switched out a visually intuitive application with a more simplified version that for me is just full of compromises. For now I'll have to stick with the old version.

  • Getting a Save Error on Themes page when trying to update/remove theme

    This is the error I'm getting. Even after refreshing the page, trying a different browser (used IE and Opera), and logging out and logging back in, I'm still getting this error.

    I'm getting the same error when I try to save ANYTHING on my app. I was able to add data to my data collection but anything else: delete/add themes, RSS Feed, additional content, etc I get that error. It does not seem to apply to my other apps in App Studio,
    however so maybe it has to do with the data collections, not sure.
    I have been updating this app over the past months but as of 2015, nothing works and I cannot make changes. The App Identity: 52723EProsper.HotSpotMiami

  • Web Composer Admin Customization:'Authorization check failed' error

    Hi,
    The purpose of Web Composer Admin Customization is to enable the administration link in the UI pages so that the administrator will be able to customize the pages.
    The steps to be followed to enable admin customization in the required pages are given in the following link under the subheading 'Web Composer Admin Customization':
    https://stbeehive.oracle.com/teamcollab/wiki/Fusion+Applications+Technical+Architecture:Enabling+Customizations
    I ensured that:
    The jazn-data.xml file has a privilege role "FND_VIEW_ADMIN_LINK_PRIV", and a grant to access the admin menu.
    A duty role "FND_ADMINISTRATION_LINK_VIEW_DUTY" had been defined, and was a member of FND_VIEW_ADMIN_LINK_PRIV.
    The FND_ADMINISTRATION_LINK_VIEW_DUTY is inherited by the administrator enterprise role.
    A new privilege role (Customize <Family> UI) had been created.
    I then granted the 'customize' and 'personalize' actions on the pages and the corresponding task flows (for which customization had to be enabled) to the new privilege role.
    Also, ensured that:
    A new app role (Customize <Family> UI) was created and was a member of the new privilege role. The app role was inherited by the administrator enterprise role.
    The testing administrator role has both the administrator enterprise role and the enterprise role that has view access to the page.
    Now, when i tried to run one of the pages (for which customize and personalize actions were granted to the new privilege role) from JDeveloper, i got the following error:
    oracle.adf.controller.security.AuthorizationException: ADFC-0619: Authorization check failed: 'oracle.jbo.uicli.binding.JUFormDef@d94f3e' 'VIEW'.
    at oracle.adf.controller.internal.security.AuthorizationEnforcer.handleFailure(AuthorizationEnforcer.java:180)
    at oracle.adf.controller.internal.security.AuthorizationEnforcer.internalCheckPermission(AuthorizationEnforcer.java:160)
    at oracle.adf.controller.internal.security.AuthorizationEnforcer.checkPermission(AuthorizationEnforcer.java:114)
    at oracle.adfinternal.controller.state.ControllerState.checkPermission(ControllerState.java:632)
    at oracle.adfinternal.controller.state.ControllerState.initializeUrl(ControllerState.java:669)
    at oracle.adfinternal.controller.state.ControllerState.synchronizeStatePart2(ControllerState.java:447)
    at oracle.adfinternal.controller.application.SyncNavigationStateListener.afterPhase(SyncNavigationStateListener.java:46)
    at oracle.adfinternal.controller.lifecycle.ADFLifecycleImpl$PagePhaseListenerWrapper.afterPhase(ADFLifecycleImpl.java:531)
    at oracle.adfinternal.controller.lifecycle.LifecycleImpl.internalDispatchAfterEvent(LifecycleImpl.java:120)
    at oracle.adfinternal.controller.lifecycle.LifecycleImpl.dispatchAfterPagePhaseEvent(LifecycleImpl.java:168)
    at oracle.adfinternal.controller.faces.lifecycle.ADFPhaseListener$PhaseInvokerImpl.dispatchAfterPagePhaseEvent(ADFPhaseListener.java:124)
    at oracle.adfinternal.controller.faces.lifecycle.ADFPhaseListener.afterPhase(ADFPhaseListener.java:70)
    at oracle.adfinternal.controller.faces.lifecycle.ADFLifecyclePhaseListener.afterPhase(ADFLifecyclePhaseListener.java:53)
    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:398)
    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:185)
    When i granted the view action on the page ( in addition to the customize and personalize actions) to the new privilege role and ran the page from JDeveloper, the page came up fine but the administration link that is supposed to appear was not seen.
    Can any of you please provide suggestions regarding the cause of the above error and how i should go about debugging it.
    Thanks,
    Rohan

    Posted it in the forum suggested by Frank.

  • Stopped threads waiting on DriverManager.getConnection()?

    Solaris 5.8, Sun JDK 1.3.1-b24
    RMI based application with the server piece running as a Java app on Solaris. After a few hours of use, with 100-150 users, the server app appears to hang from the client. If I do a kill -3 on the server process, I see a whole buttload of threads (over 100) stuck on DriverManager.getConnection() method (see below). The trace doesn't show anything deeper than that, but it is Oracle thin client being used. Our DBAs don't see any connections being attempted in the listeners log, and in fact, the number of the connections I see to the DB box via netstat jives exactly with the number of sessions I see on the Oracle side (in V$SESSION). While this is going on, I can connect to the DB box from the app server box all day long using a small class I wrote that just does a connection open and close.
    This app was working fairly flawlessly until about a week ago. Nothing in terms of drivers or JVM version has changed, but there has been slightly more user load lately. It seems that every new user request that comes in after a certain point ends up with a thread blocked like this. What is the thread stopped in getConnection() indicative of? Has anyone seen anything like this?
    Much appreciated,
    Mike
    Tons of these show in the thread dump (kill -3):
    Wed May 19 11:40:04 EDT 2004:ExecGroup-0:out:"RMI TCP Connection(11307)-10.160.96.220" daemon prio=5 tid=0x4946d0 nid=0x2e7b waiting for monitor entry [0xd4480000..0xd44819e0]
    Wed May 19 11:40:04 EDT 2004:ExecGroup-0:out:     at java.sql.DriverManager.getConnection(DriverManager.java:193)
    Wed May 19 11:40:04 EDT 2004:ExecGroup-0:out:     at sched_MT.rmiSched_MTImpl.getLocation(rmiSched_MTImpl.java:556)
    Wed May 19 11:40:04 EDT 2004:ExecGroup-0:out:     at java.lang.reflect.Method.invoke(Native Method)
    Wed May 19 11:40:04 EDT 2004:ExecGroup-0:out:     at sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:241)
    Wed May 19 11:40:04 EDT 2004:ExecGroup-0:out:     at sun.rmi.transport.Transport$1.run(Transport.java:152)
    Wed May 19 11:40:04 EDT 2004:ExecGroup-0:out:     at java.security.AccessController.doPrivileged(Native Method)
    Wed May 19 11:40:04 EDT 2004:ExecGroup-0:out:     at sun.rmi.transport.Transport.serviceCall(Transport.java:148)
    Wed May 19 11:40:04 EDT 2004:ExecGroup-0:out:     at sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:465)
    Wed May 19 11:40:04 EDT 2004:ExecGroup-0:out:     at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:706)

    Yes - it is roughly 1 user : 1 DB connection. No pooling. Rogue app that we inherited. Ack. While it's blocking users, I can connect to the DBs fine (there are 2) from another app on the same box using the same DB logins and the same DBs, so my impression is that it's not DB related, but at this point, I am not completely sure about that. Our DBA says TNS is not getting any connect attempts during this time, so it seems like the driver is not even attempting.

  • ObjectId class

    Hello,
    I was using ObjectId class with Kodo 2.1.x (there was no App identity at
    that time)
    Now implementation has changed the ObjectId class was made nested class of
    ObjectIds and there is no constructor which takes (long id, Class clazz) to
    create it any more. To make my transition to App Identity easer I would like
    to be able to continue using internal Kodo Object ID implementation for a
    while. Could you please suggest a way to do so.
    Alex

    I think that may be a problem. Does this mean that
    PersistenceManager.getObjectById(Object,boolean) is useless? Or am I using
    it incorrecly? I like to query object
    by object's data stored id. How do I do that without creating the ObjectId
    object?
    Or does this force user to use application identity?
    If we use application identity, is there a easy way to get unique id from
    database or some sort?
    thanks,
    Benjamin
    "Abe White" <[email protected]> wrote in message
    news:[email protected]..
    There isn't an equivalent of the old ObjectId class in the new release of
    Kodo. Unless you are using application identity, Kodo creates and loads
    a dynamic id type at runtime for each base persistent type.
    Among other reasons, this was done to discourage users from trying to
    control object id's, which should be completely opaque. If control over
    ids is required, application identity should be used.
    Sorry there isn't better news... perhaps you can be comforted in the fact
    that you are now forced to used id's in the 'correct' way? Probably
    not... :)
    In article <9pvfe4$aan$[email protected]>, "Alex Roytman"
    <[email protected]> wrote:
    Hello,
    I was using ObjectId class with Kodo 2.1.x (there was no App identity at
    that time)
    Now implementation has changed the ObjectId class was made nested class
    of ObjectIds and there is no constructor which takes (long id, Class
    clazz) to create it any more. To make my transition to App Identity
    easer I would like to be able to continue using internal Kodo Object ID
    implementation for a while. Could you please suggest a way to do so.
    Alex

  • Accessing jars

    Using oracle AS 9.04. An app I have inherited used to access some jars via
    <library path="../applications/<app_name>/<example.jar>" /> in server.xml.
    Can I do the same at 10g by moving the xml configuration to the system application file?
    thanks

    Which version of 10g -- there's R2 (10.1.2) and R3 (10.1.3).
    The tag is still valid in R3, but I'd encourage you to look at using shared-libraries instead of this approach -- you can deploy your JAR(s) as a named/versioned shared-library and then import them into the default application (ie j2ee/home/config/application.xml).
    We don't recommend modifying the system-application.xml file -- it's largely an internal construct. Use the application.xml file instead which is the config file of the default application and thus the visible parent of all deployed applications.
    cheers
    -steve-

  • Looking for an example from app gallery that uses WAAD for identity

    I'm looking for an example from the app gallery (http://azure.microsoft.com/en-us/gallery/active-directory/) that uses WAAD for identity. I need one the show our business what the process would look like for an organization signing up for a SaaS offering
    via the App Gallery. I know all the Microsoft applications use WAAD but I was hoping to find a third-party example.  What I mean is an app where all tenant and user identity is done using WAAD as opposed to federated identity.

    I doubt that what you are looking for exists yet.
    Cheers,
    Markus
    Markus Vilcinskas, Knowledge Engineer, Microsoft Corporation

Maybe you are looking for

  • Is the IPhone 4GS capable of printing to my printer via WiFi? My laptop and printer uses WiFi connection

    Is the iPhone 4G is capable of printing via Wi-Fi to my printer

  • IMac 24" Buzz

    Hi. I just purchased a new iMac 24" and in the last week or so it has developed a buzz. The buzzing is strange because as far as I can tell, it is not associated with the brightness of the screen. It is also not a steady sound but one that comes and

  • My G4 AGP won't startup after turning on firewire target disk mode

    Can any one help me on this? I have a G4 AGP Graphics Mac running 10.4.11. I turned on firewire target disk mode in the startup utilities to transfer files to my G5. The G4 started up in Firewire just fine and I could open it up as a drive on my G5,

  • 11g ADF Business Component Browser + ADF BC security

    Hi gang I was hoping somebody could help me out with the ADF BC security features as outlined section 28.4.3 of the Fusion Developer's Guide for JDev 11g. 1) I note once you've defined a Policy Store via the ADF Security wizard, each time you run the

  • Dbxml doesn't build on mac os x

    Hi, i just downloaded dbxml-2.4.16.tar.gz; untar'd it with tar xvxf dbxml-2.4.16.tar.gz; cd'd into the directory and executed the build with the following line and results. Any clues would be great. This is the first release i've had any problems wit