Running JDO 1.0 TCK suite with Kodo 2.3.1

Hi folks,
to get a picture of Kodo 2.3.1 JDO 1.0 compliance I tried to run the TCK
and got a security exception when the PeristenceManagerFactoy is created
(see below). Is there a way to prevent the DefaultConfiguration accessing
the system properties or make the TCK test harness install a different
security manager? I can run a single test case of the suite via the main
method (But that would be tedious to do for all test cases of the test
suite.).
Here's the security exception text:
Executing command via 127.0.0.1,port=3974,localport=1907
Assertion A10.4-2 (AccessingFieldsInPredelete) unexpected exception
javax.jdo.JDOFatalUserException: Exception thrown by
getPersistenceManagerFactory(Properties)
NestedThrowables:
java.lang.reflect.InvocationTargetException
javax.jdo.JDOFatalUserException: Exception thrown by
getPersistenceManagerFactory(Properties)
NestedThrowables:
java.lang.reflect.InvocationTargetException
     at javax.jdo.JDOHelper.getPersistenceManagerFactory(Unknown Source)
     at javax.jdo.JDOHelper.getPersistenceManagerFactory(Unknown Source)
     at com.sun.jdotck.JDO_Test.getPMF(JDO_Test.java:202)
     at
com.sun.jdotck.api.instancecallbacks.AccessingFieldsInPredelete.run2(AccessingFieldsInPredelete.java:116)
     at
com.sun.jdotck.api.instancecallbacks.AccessingFieldsInPredelete.run(AccessingFieldsInPredelete.java:103)
     at
com.sun.javatest.lib.ExecStdTestSameJVMCmd.run(ExecStdTestSameJVMCmd.java:104)
     at com.sun.javatest.agent.Agent$Task.executeCommand(Agent.java:826)
     at com.sun.javatest.agent.Agent$Task.execute(Agent.java:757)
     at com.sun.javatest.agent.Agent$Task.handleRequest(Agent.java:615)
     at com.sun.javatest.agent.Agent.handleRequestsUntilClosed(Agent.java:384)
     at com.sun.javatest.agent.Agent.access$0(Agent.java:362)
     at com.sun.javatest.agent.Agent$1.run(Agent.java:262)
     at java.lang.Thread.run(Thread.java:484)
NestedThrowablesStackTrace:
java.lang.reflect.InvocationTargetException: java.lang.SecurityException:
Action forbidden by JavaTest: checkPropertiesAccess
     at
com.sun.javatest.JavaTestSecurityManager.checkPropertiesAccess(JavaTestSecurityManager.java:97)
     at java.lang.System.getProperties(System.java:488)
     at
com.solarmetric.kodo.conf.DefaultConfiguration.loadProperties(DefaultConfiguration.java:92)
     at
com.solarmetric.kodo.conf.DefaultConfiguration.loadDefaults(DefaultConfiguration.java:55)
     at
com.solarmetric.kodo.conf.SimpleConfiguration.<init>(SimpleConfiguration.java:82)
     at
com.solarmetric.kodo.conf.SimpleConfiguration.<init>(SimpleConfiguration.java:69)
     at
com.solarmetric.kodo.impl.jdbc.JDBCSimpleConfiguration.<init>(JDBCSimpleConfiguration.java:53)
     at
com.solarmetric.kodo.impl.jdbc.JDBCPersistenceManagerFactory.getPersistenceManagerFactory(JDBCPersistenceManagerFactory.java:54)
     at java.lang.reflect.Method.invoke(Native Method)
     at javax.jdo.JDOHelper.getPersistenceManagerFactory(Unknown Source)
     at javax.jdo.JDOHelper.getPersistenceManagerFactory(Unknown Source)
     at com.sun.jdotck.JDO_Test.getPMF(JDO_Test.java:202)
     at
com.sun.jdotck.api.instancecallbacks.AccessingFieldsInPredelete.run2(AccessingFieldsInPredelete.java:116)
     at
com.sun.jdotck.api.instancecallbacks.AccessingFieldsInPredelete.run(AccessingFieldsInPredelete.java:103)
     at
com.sun.javatest.lib.ExecStdTestSameJVMCmd.run(ExecStdTestSameJVMCmd.java:104)
     at com.sun.javatest.agent.Agent$Task.executeCommand(Agent.java:826)
     at com.sun.javatest.agent.Agent$Task.execute(Agent.java:757)
     at com.sun.javatest.agent.Agent$Task.handleRequest(Agent.java:615)
     at com.sun.javatest.agent.Agent.handleRequestsUntilClosed(Agent.java:384)
     at com.sun.javatest.agent.Agent.access$0(Agent.java:362)
     at com.sun.javatest.agent.Agent$1.run(Agent.java:262)
     at java.lang.Thread.run(Thread.java:484)

Christian-
We use out own junit to javatest adaptor to run the TCK, which is
why we never identified this problem. Version 2.3.2 (which will
be released very soon) will catch SecurityExceptions when trying
to do System.getProperties(), so you should be able to run it in
Sun's javatest harness.
In the meantime, you should be able to run it by doing one of the
following:
1. Specifying the property javatest.security.noSecurityManager=true
when running javatest, or
2. Set javatest.security.allowPropertiesAccess=true
In article <[email protected]>, Christian Huter wrote:
Hi folks,
to get a picture of Kodo 2.3.1 JDO 1.0 compliance I tried to run the TCK
and got a security exception when the PeristenceManagerFactoy is created
(see below). Is there a way to prevent the DefaultConfiguration accessing
the system properties or make the TCK test harness install a different
security manager? I can run a single test case of the suite via the main
method (But that would be tedious to do for all test cases of the test
suite.).
Here's the security exception text:
Executing command via 127.0.0.1,port=3974,localport=1907
Assertion A10.4-2 (AccessingFieldsInPredelete) unexpected exception
javax.jdo.JDOFatalUserException: Exception thrown by
getPersistenceManagerFactory(Properties)
NestedThrowables:
java.lang.reflect.InvocationTargetException
javax.jdo.JDOFatalUserException: Exception thrown by
getPersistenceManagerFactory(Properties)
NestedThrowables:
java.lang.reflect.InvocationTargetException
     at javax.jdo.JDOHelper.getPersistenceManagerFactory(Unknown Source)
     at javax.jdo.JDOHelper.getPersistenceManagerFactory(Unknown Source)
     at com.sun.jdotck.JDO_Test.getPMF(JDO_Test.java:202)
     at
com.sun.jdotck.api.instancecallbacks.AccessingFieldsInPredelete.run2(AccessingFieldsInPredelete.java:116)
     at
com.sun.jdotck.api.instancecallbacks.AccessingFieldsInPredelete.run(AccessingFieldsInPredelete.java:103)
     at
com.sun.javatest.lib.ExecStdTestSameJVMCmd.run(ExecStdTestSameJVMCmd.java:104)
     at com.sun.javatest.agent.Agent$Task.executeCommand(Agent.java:826)
     at com.sun.javatest.agent.Agent$Task.execute(Agent.java:757)
     at com.sun.javatest.agent.Agent$Task.handleRequest(Agent.java:615)
     at com.sun.javatest.agent.Agent.handleRequestsUntilClosed(Agent.java:384)
     at com.sun.javatest.agent.Agent.access$0(Agent.java:362)
     at com.sun.javatest.agent.Agent$1.run(Agent.java:262)
     at java.lang.Thread.run(Thread.java:484)
NestedThrowablesStackTrace:
java.lang.reflect.InvocationTargetException: java.lang.SecurityException:
Action forbidden by JavaTest: checkPropertiesAccess
     at
com.sun.javatest.JavaTestSecurityManager.checkPropertiesAccess(JavaTestSecurityManager.java:97)
     at java.lang.System.getProperties(System.java:488)
     at
com.solarmetric.kodo.conf.DefaultConfiguration.loadProperties(DefaultConfiguration.java:92)
     at
com.solarmetric.kodo.conf.DefaultConfiguration.loadDefaults(DefaultConfiguration.java:55)
     at
com.solarmetric.kodo.conf.SimpleConfiguration.<init>(SimpleConfiguration.java:82)
     at
com.solarmetric.kodo.conf.SimpleConfiguration.<init>(SimpleConfiguration.java:69)
     at
com.solarmetric.kodo.impl.jdbc.JDBCSimpleConfiguration.<init>(JDBCSimpleConfiguration.java:53)
     at
com.solarmetric.kodo.impl.jdbc.JDBCPersistenceManagerFactory.getPersistenceManagerFactory(JDBCPersistenceManagerFactory.java:54)
     at java.lang.reflect.Method.invoke(Native Method)
     at javax.jdo.JDOHelper.getPersistenceManagerFactory(Unknown Source)
     at javax.jdo.JDOHelper.getPersistenceManagerFactory(Unknown Source)
     at com.sun.jdotck.JDO_Test.getPMF(JDO_Test.java:202)
     at
com.sun.jdotck.api.instancecallbacks.AccessingFieldsInPredelete.run2(AccessingFieldsInPredelete.java:116)
     at
com.sun.jdotck.api.instancecallbacks.AccessingFieldsInPredelete.run(AccessingFieldsInPredelete.java:103)
     at
com.sun.javatest.lib.ExecStdTestSameJVMCmd.run(ExecStdTestSameJVMCmd.java:104)
     at com.sun.javatest.agent.Agent$Task.executeCommand(Agent.java:826)
     at com.sun.javatest.agent.Agent$Task.execute(Agent.java:757)
     at com.sun.javatest.agent.Agent$Task.handleRequest(Agent.java:615)
     at com.sun.javatest.agent.Agent.handleRequestsUntilClosed(Agent.java:384)
     at com.sun.javatest.agent.Agent.access$0(Agent.java:362)
     at com.sun.javatest.agent.Agent$1.run(Agent.java:262)
     at java.lang.Thread.run(Thread.java:484)
Marc Prud'hommeaux [email protected]
SolarMetric Inc. http://www.solarmetric.com
Kodo Java Data Objects Full featured JDO: eliminate the SQL from your code

Similar Messages

  • I have a PC running Windows XP (yes an antique) with CS3 Photoshop and InDesign and lightroom 2 (yes all antiques). I have acquired a PC running Windows 7 with no programs. I also have a MacBook pro  with full CS5 suite. The programs were already loaded w

    I have a PC running Windows XP (yes an antique) with CS3 Photoshop and InDesign and lightroom 2 (yes all antiques). I have acquired a PC running Windows 7 with no programs. I also have a MacBook pro  with full CS5 suite. The programs were already loaded with I got it as a gift. Question 1. If I find serial numbers used to download programs to the old PC, can those CS3 programs be put on the newer PC. Question 2. I really want to put CS5 suite on PC machines. Is that possible? Especially since my MacBook is showing some hard drive problems.

    You should be able to get the CS3 programs installed and running on the new pc since CS3 is spec-ed for Windows 7 Service Pack 1.  Downloading the programs does not require a serial number.  You can find them here:  Download CS3 products  but you will need the serial number to activate the programs.  You might be able to find that thru your Adobe account online.
    You will not be able to install the CS5 Mac version on a PC and you won't be able to trade it to a PC version either due to it being an older version.  Trades are allowed only for the latest version (CS6)

  • What's the Best Open Source DB for use with Kodo?

    Hi everyone,
    In terms of ease of setup and use, tools to view info in the database, and least difficulty in
    running with Kodo, what is the best open source database to use? I'm use to using Oracle and
    SQLPlus. I need to use an open source DB for a learning environment, and I'd like your informed
    opinion.
    Thanks,
    David Ezzio

    I have been using postgresql 7.1 with Kodo for a while with mostly positive results, and currently
    have it deployed with Kodo 2.2.3. I prefer it to mysql because its feature set is a little richer,
    and supports transactions natively. My experience with mysql (without jdo - I haven't tried it with)
    is good, but there were little things missing in mysql 3.x, e.g. the ability do do a join in a
    DELETE statement.
    BTW, there are some severe problems somewhere in the 2.2.4 release with postgresql if you intend to
    eventually deploy on it. It also apparently has some problems invoking postgresql's indices, making
    it a little less than optimal. But as a learning environment, it's what I'd recommend.
    -Mike
    Marc Prud'hommeaux wrote:
    David-
    Here is the rundown of the databases I have experience with:
    MySQL: Fairly simple to install (especially if you run Debian Linux), but
    configuration, especially adding users, can be a pain. A separate open
    source project called "mysql-navigator" makes it fairly easy to do
    simple queries, inserts, etc. In most of my tests it outperforms
    PostgreSQL, but your mileage will vary. It has a sane CLI that supports
    modern features like line history, etc (unlike the horrific SQLPlus).
    PostgreSQL: People often say that it is a more "academically
    correct" database than MySQL. I've also found it to be quite a bit
    easier to set up. Their GUI (called "pgaccess") is simplistic, but does
    most things you need. Has a CLI similiar to MySQL's.
    HypersonicSQL: By far the easiest to set up (just drop the jar in your
    CLASSPATH), but is java only, can be rather slow, and has no GUI tools
    available that I know of (except various free vanilla-JDBC GUI tools).
    We feel that Kodo works quite well with all these DBs. The MySQL JDBC
    driver seems a bit less buggy than Postgres', but their transaction
    support is very recent and not very well tested. If I had to pick one or
    the other, I would probably go with MySQL.
    David Ezzio <[email protected]> wrote:
    Hi everyone,
    In terms of ease of setup and use, tools to view info in the database, and least difficulty in
    running with Kodo, what is the best open source database to use? I'm use to using Oracle and
    SQLPlus. I need to use an open source DB for a learning environment, and I'd like your informed
    opinion.
    Thanks,
    David Ezzio--
    Marc Prud'hommeaux [email protected]
    SolarMetric Inc. http://www.solarmetric.com
    Kodo Java Data Objects Full featured JDO: eliminate the SQL from your code--
    Mike Bridge

  • Office or Creative Suite with site licensing on Lion Server

    Can Office or Creative Suite with site licensing reside on a mac mini server for the network to use or do the applications need to be on each computer in the network?

    The big software makers constantly winge about customers must ensure they are legal regarding software licensing. However they not only don't make this easy, they actually go out of their way to make it hard in terms of purchasing, license management and auditing. We will ignore the separate issue of some of them actively ripping customers off over pricing (I am looking at you Adobe).
    I can say that it was technically possible with Office 2004 for Mac to install a single volume-license version of Office on a server and run it sumultaneously on multiple client logins. I have not had the opportunity to try this with Office 2012 for Mac.
    Note: I had more than enough individual Office 2004 licenses to cover the number of clients when I did this.
    Another approach to investigate is the use of KeyServer from Sassafras Software. This can take a standard version of an application and wrap it with extra license management code. The KeyServer software then controls how many simultaneous copies can be run, you can even book copies out for use on a laptop you are taking out of the office. The booking would be for a fixed time limit after which it is released and no longer works until you contact the license server again.
    See http://www.sassafras.com/licensing.html
    I believe in the past and maybe still now, that Sassafras worked with the major software developers to enable this. I don't know whether Adobe, Microsoft, etc. are still enabling this or whether they have continued to show their stupidity by stopping this and making license management even harder. I suggest you contact Sassafras to discuss this.
    Note: Even though FileMaker has serial numbers and user licenses, it is possible to easily manage things using a single serial key as FileMaker let you buy a volume license key and you are simply allowed to run up to a that specific number of simultaneous copies, there is none of the stupid hassle of product activation etc. linked to individual hardware devices.

  • Backup/Restore from PC Suite with N71 worthless

    Hi,
    I have used Backup from PC Suite (Version 6.82.22.0) to backup my N71 data before I gave the N71 to a repair shop. The N71 camera was not working.
    After four weeks I got a N71 replacement. A brand new N71 with a different serial number which is not good because some S60 apps now no longer work.
    But anyway the real surprise I got was after I run Restore from PC Suite to get all data back. The Restore finished without any error but almost nothing useful was restored!!
    No Contacts, No Messages, No phone Setup (Themes, Bluetooth Config, Apps).
    Huh???
    Is this really how Backup/Restore from PC Suite with a Symbian S60 3rd Nokia N71 us supposed to work??
    If yes, than Backup is utterly worthless!!
    I am not aware that I did something wrong. I have used Backup regularly and never got any error messages.
    But it is painfully obvious that the most important data from the phone are not saved!
    All the Restore did was restore some audio and image files and the Notes contents.
    Regards,
    Gagome

    you can check the backup log for the details of the backuped content. or try this tool to view the content of the .nbu.
    What's the law of the jungle?

  • Integration - SOA suite with jdeveloper

    Hello!
    Iam totally new user with oracle products. I have only used oracle database but this was very little.
    Iam still a student and professor told me that i need to use SOA suite and jdeveloper, to make a bussiness process.
    I have d/l oracle SOA suite 10.1.3.1 and Jdeveloper 10.1.3.3.0. Now i would like to start but i dont know how to.
    I have installed soa suite and unziped jdeveloper in to the same directory.
    10.1.3.1
    |->jdevstudio10133
    |->OracleAS_1
    When i run jdeveloper i can not make new BPEL project (options to make new file is disabled). How can i integrate oracle soa suite with jdeveloper?

    Learn About All Things SOA:: SOA India 2007:: IISc, Bangalore (Nov 21-23)
    Aligning IT systems to business needs and improving service levels within the constraints of tight budgets has for long been the topmost challenge for CIOs and IT decision makers. Service-oriented Architecture (SOA) provides a proven strategy to clearly address both of these objectives. Creating more agile information systems and making better use of existing infrastructure are two leading factors that are boosting SOA adoption across large, medium, and small Indian industries from the BFSI, Retail, Telecom, Manufacturing, Pharma, Energy, Government and Services verticals in India. If you are an IT decision maker belonging to any of these verticals, SOA India 2007 (IISc, Bangalore, Nov 21-23 2007) presents a unique opportunity to gather cutting-edge business and technical insights on SOA and other related areas such as BPM, BPEL, Enterprise 2.0, SaaS, MDM, Open Source, and more.
    At SOA India 2007, acclaimed SOA analysts, visionaries, and industry speakers from across the world will show you how to keep pace with change and elevate your IT infrastructure to meet competition and scale effectively. The organisers are giving away 100 FREE tickets worth INR 5000 each to the first 100 qualified delegates belonging to the CxO/IT Decision Maker/Senior IT Management profile, so hurry to grab this opportunity to learn about all things SOA. You can send your complete details, including your designation, e-mail ID, and postal address directly to Anirban Karmakar at [email protected] to enrol in this promotion that is open until 12 October 2007.
    SOA India 2007 will also feature two half-day workshops on SOA Governance (by Keith Harrison-Broninski) and SOA Architecture Deep Dive (by Jason Bloomberg). If you are an IT manager, software architect, project leader, network & infrastructure specialist, or a software developer, looking for the latest information, trends, best practices, products and solutions available for building and deploying successful SOA implementations, SOA India 2007’s technical track offers you immense opportunities.
    Speakers at SOA India include:
    •     Jason Bloomberg, Senior Analyst & Managing Partner, ZapThink LLC
    •     Keith Harrison-Broninski, Independent consultant, writer, researcher, HumanEdJ
    •     John Crupi, CTO, JackBe Corporation
    •     Sandy Kemsley, Independent BPM Analyst, column2.com
    •     Prasanna Krishna, SOA Lab Director, THBS
    •     Miko Matsumara, VP & Deputy CTO, SoftwareAG
    •     Atul Patel, Head MDM Business, SAP Asia Pacifc & Japan
    •     Anil Sharma, Staff Engineer, BEA Systems
    •     Coach Wei, Chairman & CTO, Nexaweb
    •     Chaitanya Sharma, Director EDM, Fair Isaac Corporation
    A partial list of the sessions at SOA India 2007 include:
    •     EAI to SOA: Radical Change or Logical Evolution?
    •     BPEL: Strengths, Limitations & Future!
    •     MDM: Jumpstart Your SOA Journey
    •     Governance, Quality, and Management: The Three Pillars of SOA Implementations
    •     Building the Business Case for SOA
    •     Avoiding SOA Pitfalls
    •     SOA Governance and Human Interaction Management
    •     Business Intelligence, BPM, and SOA Handshake
    •     Enterprise 2.0: Social Impact of Web 2.0 Inside Organizations
    •     Web 2.0 and SOA – Friends or Foe?
    •     Achieving Decision Yield across the SOA-based Enterprise
    •     Governance from day one
    •     Demystifying Enterprise Mashups
    •     Perfecting the Approach to Enterprise SOA
    •     How to Build Cost Effective SOA. “Made in India” Really Works!
    For more information, log on to http://www.soaindia2007.com/.

  • Installing Oracle SOA Suite with the WebLogic Server

    Hi all,
    I am trying to install Oracle SOA Suite with the WebLogic Server. After following the step-by-step instruction in the "Installing Oracle SOA Suite with the WebLogic Server" document, I ran into the following situation: I have a working WebLogic Server with all applications deployed. However the BPELPM application is in Failed state.
    When I try to run the application, I get following exception (AdminServer.log):
    ####<Mar 30, 2009 9:46:43 AM EEST> <Warning> <Deployer> <javadev2> <AdminServer> <[STANDBY] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1238395603163> <BEA-149004> <Failures were detected while initiating start task for application 'BPELPM'.>
    ####<Mar 30, 2009 9:46:43 AM EEST> <Warning> <Deployer> <javadev2> <AdminServer> <[STANDBY] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1238395603164> <BEA-149078> <Stack trace for message 149004
    weblogic.application.ModuleException: [HTTP:101216]Servlet: "cxloader" failed to preload on startup in Web application: "/orabpel".
    javax.servlet.ServletException:
    ORABPEL START-UP ERROR!!!!!!!!
    OraBPEL run-time system failed to start due to exception:
    Bean is already undeployed.
    at com.collaxa.cube.admin.CXLoaderServlet.init(CXLoaderServlet.java:87)
    at javax.servlet.GenericServlet.init(GenericServlet.java:256)
    at weblogic.servlet.internal.StubSecurityHelper$ServletInitAction.run(StubSecurityHelper.java:278)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at weblogic.servlet.internal.StubSecurityHelper.createServlet(StubSecurityHelper.java:64)
    at weblogic.servlet.internal.StubLifecycleHelper.createOneInstance(StubLifecycleHelper.java:58)
    at weblogic.servlet.internal.StubLifecycleHelper.<init>(StubLifecycleHelper.java:48)
    at weblogic.servlet.internal.ServletStubImpl.prepareServlet(ServletStubImpl.java:507)
    at weblogic.servlet.internal.WebAppServletContext.preloadServlet(WebAppServletContext.java:1723)
    at weblogic.servlet.internal.WebAppServletContext.loadServletsOnStartup(WebAppServletContext.java:1700)
    at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1620)
    at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:2761)
    at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:889)
    at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:333)
    at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:204)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:26)
    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:60)
    at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:200)
    at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:117)
    at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:204)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:26)
    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:60)
    at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:26)
    at weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.java:635)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:26)
    at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:212)
    at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:154)
    at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:80)
    at weblogic.deploy.internal.targetserver.operations.AbstractOperation.activate(AbstractOperation.java:566)
    at weblogic.deploy.internal.targetserver.operations.ActivateOperation.activateDeployment(ActivateOperation.java:136)
    at weblogic.deploy.internal.targetserver.operations.ActivateOperation.doCommit(ActivateOperation.java:104)
    at weblogic.deploy.internal.targetserver.operations.StartOperation.doCommit(StartOperation.java:139)
    at weblogic.deploy.internal.targetserver.operations.AbstractOperation.commit(AbstractOperation.java:320)
    at weblogic.deploy.internal.targetserver.DeploymentManager.handleDeploymentCommit(DeploymentManager.java:815)
    at weblogic.deploy.internal.targetserver.DeploymentManager.activateDeploymentList(DeploymentManager.java:1222)
    at weblogic.deploy.internal.targetserver.DeploymentManager.handleCommit(DeploymentManager.java:433)
    at weblogic.deploy.internal.targetserver.DeploymentServiceDispatcher.commit(DeploymentServiceDispatcher.java:161)
    at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.doCommitCallback(DeploymentReceiverCallbackDeliverer.java:181)
    at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.access$100(DeploymentReceiverCallbackDeliverer.java:12)
    at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer$2.run(DeploymentReceiverCallbackDeliverer.java:67)
    at weblogic.work.ServerWorkManagerImpl$WorkAdapterImpl.run(ServerWorkManagerImpl.java:518)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:181)
    at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:891)
    at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:333)
    at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:204)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:26)
    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:60)
    at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:200)
    at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:117)
    at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:204)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:26)
    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:60)
    at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:26)
    at weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.java:635)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:26)
    at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:212)
    at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:154)
    at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:80)
    at weblogic.deploy.internal.targetserver.operations.AbstractOperation.activate(AbstractOperation.java:566)
    at weblogic.deploy.internal.targetserver.operations.ActivateOperation.activateDeployment(ActivateOperation.java:136)
    at weblogic.deploy.internal.targetserver.operations.ActivateOperation.doCommit(ActivateOperation.java:104)
    at weblogic.deploy.internal.targetserver.operations.StartOperation.doCommit(StartOperation.java:139)
    at weblogic.deploy.internal.targetserver.operations.AbstractOperation.commit(AbstractOperation.java:320)
    at weblogic.deploy.internal.targetserver.DeploymentManager.handleDeploymentCommit(DeploymentManager.java:815)
    at weblogic.deploy.internal.targetserver.DeploymentManager.activateDeploymentList(DeploymentManager.java:1222)
    at weblogic.deploy.internal.targetserver.DeploymentManager.handleCommit(DeploymentManager.java:433)
    at weblogic.deploy.internal.targetserver.DeploymentServiceDispatcher.commit(DeploymentServiceDispatcher.java:161)
    at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.doCommitCallback(DeploymentReceiverCallbackDeliverer.java:181)
    at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.access$100(DeploymentReceiverCallbackDeliverer.java:12)
    at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer$2.run(DeploymentReceiverCallbackDeliverer.java:67)
    at weblogic.work.ServerWorkManagerImpl$WorkAdapterImpl.run(ServerWorkManagerImpl.java:518)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:181)
    Any help would be highly appreciated.
    Boris

    Hi Boris,
    Looks like you have not run the post upgrade script for 10.1.3.4.
    You need to install SOA 10.1.3.4 Basic Installation. Then start following : http://download.oracle.com/docs/cd/E12524_01/core.1013/e13058/weblogic.htm#BHCIIBFB
    You basically, first install 10.1.3.4 basic SOA install, Apply the Opatch 7337034 (HOTPLUG: SOASUITE 10.1.3.4 ON WEBLOGIC 9.2 - CHANGES FOR HOTPLUGGABILITY). Install WLS 9.2 MP3.
    Now, Download the Oracle SOA Suite 10.1.3.4 WebLogic Server 9.2 : patch : 7490612.
    Then , Modify the following mandatory installation properties in the Weblogic_SOA10134_Base\SOADomain.properties file as per the documentation above.
    Cheers
    Anirudh Pucha

  • Xdoclets with Kodo 4.1.4

    I want to migrate from Kodo 3.0.3 tod 4.1.4, which means that I change to JDO 2.0
    I have my business objects created with a generator that works fine with JDO 1.0 doclet parsing.
    But using the jdoclet task with the jdo spec 2.0 leads, when enhancing, to the following warning (ANT task):
    [mappingtool] 14:44:21,574 [ INFO] openjpa.MetaData - The metadata for "com.oepag.kdms.common.domain.DateiTypDomain" declares the "persistence-capable-superclass" attribute. This attribute is no longer used. Ignoring.
    The DateiTypDomain looks as follows:
    * DateiTypDomain
    * @jdo.persistence-capable persistence-capable-superclass="com.framework.common.ndomain.AbstractDomain" identity-type="application" objectid-class="com.framework.common.ndomain.AbstractDomain$AbstractDomainID"
    public final class DateiTypDomain extends AbstractDomain
    The AbstractDomain looks as follows:
    * @jdo.persistence-capable identity-type="application"
    * objectid-class="com.framework.common.ndomain.AbstractDomain$AbstractDomainID"
    * @jdo.class-vendor-extension vendor-name="kodo" key="data-cache"
    * value="full-cache"
    public abstract class AbstractDomain implements NDomain, Comparable
    The recreation of the database tables indicates that the mapping strategies (here flat mapping) were not interpreted well.
    My question: Do I have to change the doclets created in the classes, and if how or do I also have to create the mapping files (jdo) with my generator to create JDO 2.0 standard

    If the same exact app and code works with 4.0 with the same ForeignKeyDeleteAction setting, I suggest that you open a case with support.
    This property hasn't changed since 4.0
    http://e-docs.bea.com/kodo/docs41/full/html/ref_guide_mapping_defaults.html
    Laurent

  • Nokia OVI Suite with proxy

    Hi,
    How can I connect the Nokia OVI Suite with a proxy server behind? I am not able to download the maps because the Suite cannot connect to the Maps server.
    Best regards,
    José

    Hi ESerieUser,
    If your PCSuite works fine, even your OVi suite should work fine without proxy entry in the application.
    You can try reinstallation of the OViSuite application after uninstalling even the PC Suite.
    Follow the below steps to re-install OVi suite and then try connecting the device.
    Uninstall PCSuite
    Run pc suite cleaner by downloading from http://europe.nokia.com/support/download-software/pc-suites/how-to/nokia-pc-suite-cleaner
    Run the msi cleaner ( installer file msicuu2.tst is attached, rename the file to msicuu2.exe)
    With the help of msi cleaner remove the following programs.
    Nokia Connectivity Cable Driver
    Nokia Ovi Suite
    PC Connectivity Solution
    Goto Computer Managerment -> Device Manager -> Ports and delete all the ports creted for Nokia devices.
    Goto the following path and delete all the folders inside the 'NokiaInstallerCache' folder
    C:\ProgramData\NokiaInstallerCache
    Later after restarting the PC, download and install the latest OVi Suite from the following location.
    http://www.ovi.com/suite
    After installation, restart the PC once again, then connect the device and wait for the drivers to get installed on own.
    After the drivers installation, start the OVi Suite application and connect the device from the application screen.
    Regards,
    Diwa
    If you like my post, kindly acknowlege the same by giving a kudos to me
    Attachments:
    msicuu2.txt ‏352 KB

  • How To Install Oralce SOA Suite with peoplesoft.

    HI
    I completed the environment setup with People Tools 8.49, FSCM 9.0 Application, Tuxedo 9.1 and Weblogic 9.2 with Oracle 10g Database.
    But now i want to install Oracle 10g SOA Suite with Advanced Installation (J2EE Server, Webserver and SOA Suite).
    Please provide or guide me the steps to install SOA Suite for my peoplesoft application.What things i have to configure and how to configure to use BPEL Process manager and XML Publisher like things.
    thanks
    srikanth

    The install guide is in the CD itself. There are some on the internet but they may be too complicated for what you are after.
    ubuntu is not supported but I believe it is doable, So it should only be used for dev and testing purposes. there are a few hits if you search on ubuntu. If you want linux these are the certified options
    Oracle Enterprise Linux: as part of the Oracle Unbreakable Linux Program, Oracle offers for download or on CD:
    Oracle Enterprise Linux 4 fully compatible with RedHat Enterprise Linux 4 AS/ES
    Oracle Enterprise Linux 5 fully compatible with Red Hat Linux 5 Server and Advanced Platform.
    Oracle continues to work with Linux vendors to certify Oracle products running on
    Red Hat Enterprise Linux
    SUSE Linux Enterprise Server
    Asianux
    good luck
    cheers
    James

  • Unable to get SQL Server Agent to run after installing SQL 2012 Standard with SP1

    I am unable to get SQL Server Agent to run after installing SQL 2012 Standard with SP1. Log message is as follows:
    Attempting to load library 'xplog70.dll' into memory. This is an informational message only. No user action is required.
    Failed to verify Authenticode signature on DLL 'C:\Program Files\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQL\Binn\xplog70.dll'.
    Error: 17750, Severity: 16, State: 0.
    Could not load the DLL xplog70.dll, or one of the DLLs it references. Reason: (null).

    Hi JFriedley,
    According to your error message, there might three reasons for this issue.
    xplog70.dll is corrupt, you need to check if you have any SQL Server running on same file version and same production
     edition. If xplog70.dll is corrupt, you can copy it from the new server where agent is running fine to your problematic server.
    Native client not installed properly. If you try applying any latest Service Pack or Cumulative Update then check if the SQL Server Agent can start, if that also doesn’t solve issue then try to reinstalling SQL Server Native client from SQL Server setup
    files.
    There is a similar issue about error 17750, you can review the following article.
    http://blogs.lostincreativity.com/sqldba/sqlserver-error-17750-could-not-load-the-dll-xpstar90-dll/
    Regards,
    Sofiya Li
    If you have any feedback on our support, please click here.
    Sofiya Li
    TechNet Community Support

  • The report l runs very night and gets ended with error

    Dear all,
    I am facing a problem in solution manger. There is an report (Program/Command  RDSMOPSOL_MONIREFRESH ) will runs very night and get ended with error and there is Run-time error "MESSAGE_TYPE_X".
    Please suggest how to solve the problem.
    Is this report is necessary   for the system because it is not mention in the sap stand jobs.
    SM37 log
    Job started
    Step 001 started (program RDSMOPSOL_MONIREFRESH, variant &0000000000875, user ID BASIS)
    Opening and closing session started. Session SM2000000000065
    Opening and closing the session was successful. Session: SM2000000000065
    Opening and closing session started. Session SM2000000000005
    ABAP/4 processor: MESSAGE_TYPE_X
    Job cancelled
    SM:CSA SESSION REFRESH
    No. Program/Command       Prog. type Spool list Parameter      User  Lang.
    1  RDSMOPSOL_MONIREFRESH ABAP                  &0000000000876 BASIS EN
    Sm21 log
    00:00:50 DIA 00 000 SAPSYS            EEA OPERATION MODES: Switch to operation mode Normal triggered
    00:30:57 BTC 08 200 BASIS             R68 Perform rollback
    00:30:57 BTC 08 200 BASIS             AB0 Run-time error "MESSAGE_TYPE_X" occurred
    00:30:57 BTC 08 200 BASIS             AB1 > Short dump "081112 003057 sapsm BASIS " generated
    00:30:57 BTC 08 200 BASIS             D01 Transaction Canceled 00 671 ( MESSAGE_TYPE_X 20081112003057sapsm BASIS 2001 )
    00:30:57 BTC 08 200 BASIS             R68 Perform rollback
    00:30:57 BTC 08 200 BASIS             AB0 Run-time error "MESSAGE_TYPE_X" occurred
    Details
    Recording at local and central time........................ 12.11.2008 00:30:57
    Task................ 05312 . 08 B8 BTC background processor No. 08
    User................ BASIS
    Client.............. 200
    Terminal............
    Session............. 1
    Transaction code....
    Program name........
    Problem class....... T    Transaction Problem
    Development class... SABP
    Further details for this message type
    Module name......... abdynpro
    Line................ 1133
    Error text.......... ab_jmess
    Documentation for system log message AB 0 :
    The specified runtime error has occurred in the system.
    Parameter
      a.. MESSAGE_TYPE_X
    Technical details
    File................ 000048
    Position............ 0000253620
    Entry type.......... l      ( Error (Module, Row)            )
    Message ID.......... AB 0
    Variable parts...... ab_jmess                                            abdynpro1133
    Time     Ty. Nr Cl. User         Tcod MNo Text                                                                    Date : 12.11.08
    00:30:57 BTC 08 200 BASIS             AB1 > Short dump "081112 003057 sapsm BASIS " generated
    etails
    ecording at local and central time........................ 12.11.2008 00:30:57
    ask................ 05312 . 08 B8 BTC background processor No. 08
    ser................ BASIS
    lient.............. 200
    erminal............
    ession............. 1
    ransaction code....
    rogram name........
    roblem class....... K    SAP Web AS Problem
    evelopment class... SABP
    BAP Mini dump
    ate................ 20081112
    ime................ 003057
    ost................ sapsm
    ser................ BASIS
    ocumentation for system log message AB 1 :
    A short dump was generated for the specified program termination.
    You can analyze this short dump in the system log evaluation by
    selecting this line or evaluating Table SNAP (Transaction ST22).
    echnical details
    ile................ 000048
    osition............ 0000253800
    ntry type.......... s      ( ABAP Runtime Error             )
    essage ID.......... AB 1
    ariable parts...... 081112003057sapsm   BASIS
    Time     Ty. Nr Cl. User         Tcod MNo Text                                                                    Date : 12.11.08
    00:30:57 BTC 08 200 BASIS             D01 Transaction Canceled 00 671 ( MESSAGE_TYPE_X 20081112003057sapsm BASIS 2001 )
    Details
    Recording at local and central time........................ 12.11.2008 00:30:57
    Task................ 05312 . 08 B8 BTC background processor No. 08
    User................ BASIS
    Client.............. 200
    Terminal............
    Session............. 1
    Transaction code....
    Program name........
    Problem class....... K    SAP Web AS Problem
    Development class... SDYN
    Module name.........
    Location............
    T100................ 00                  671
    Parameters..........
    Documentation for system log message D0 1 :
    The transaction has been terminated.  This may be caused by a
    termination message from the application (MESSAGE Axxx) or by an
    error detected by the SAP System due to which it makes no sense to
    proceed with the transaction.  The actual reason for the termination
    is indicated by the T100 message and the parameters.
    Additional documentation for message 00                  671
    ABAP/4 processor: &
    No documentation exists for message 00671
    Parameter
      a.. MESSAGE_TYPE_X
    00:30:57 BTC 08 200 BASIS             R68 Perform rollback
    Details
    Recording at local and central time........................ 12.11.2008 00:30:57
    Task................ 05312 . 08 B8 BTC background processor No. 08
    User................ BASIS
    Client.............. 200
    Terminal............
    Session............. 1
    Transaction code....
    Program name........
    Problem class....... W    Warning
    Development class... STSK
    Further details for this message type
    Module name......... thxxhead
    Line................ 1240
    Error text..........
    Caller.............. ThIRoll
    Reason/called....... roll ba
    Documentation for system log message R6 8 :
    An error has causes an SAP rollback.  All database updates are reset.
    Technical details
    File................ 000048
    Position............ 0000254520
    Entry type.......... m      ( Error (Function,Module,Row)    )
    Message ID.......... R6 8
    Variable parts......                                       ThIRollroll bathxxhead1240
    Regards,
    Shiva

    Hi karteek,
    I have check there is Switch of operation mode but when I have checked the t-code sm63 there is no new mode are in normal mode.
    There is  one thing I want to ask dose this report (Program/Command RDSMOPSOL_MONIREFRESH )  run   in your system or any one server because I have think there is some problem in job shued
    and is also not mention in the sap stand jobs.
    there is an error in sm21 in job.
    BASIS        SM36 EFK BP_CHECK_REPORT_VALUES: Invalid program values found. Reason:
    BASIS        SM36 EFC > Program RDSMOPSOL_MONIREFRESH has no variants, but a variant was specified
    Is this SM37 log
    Job started
    Step 001 started (program RDSMOPSOL_MONIREFRESH, variant &0000000000875, user ID BASIS)
    Opening and closing session started. Session SM2000000000065
    Opening and closing the session was successful. Session: SM2000000000065
    Opening and closing session started. Session SM2000000000005
    ABAP/4 processor: MESSAGE_TYPE_X
    Job cancelled
    Sm21 log
    SAPSYS            EEA OPERATION MODES: Switch to operation mode Normal triggered
    BASIS             R68 Perform rollback
    BASIS             AB0 Run-time error "MESSAGE_TYPE_X" occurred
    BASIS             AB1 > Short dump "081111 003056 sapsm BASIS " generated
    BASIS             D01 Transaction Canceled 00 671 ( MESSAGE_TYPE_X 20081111003056sapsm BASIS 2001 )
    BASIS             R68 Perform rollback
    BASIS             R49 Communication error, CPIC return code 017, SAP return code 223
    BASIS             R64 > CPI-C function: CMINIT(SAP)
    *BASIS        SM36 EFK BP_CHECK_REPORT_VALUES: Invalid program values found. Reason:*
    *BASIS        SM36 EFC > Program RDSMOPSOL_MONIREFRESH has no variants, but a variant was*
    specified
    BASIS             R68 Perform rollback
    BASIS             AB0 Run-time error "MESSAGE_TYPE_X" occurred
    BASIS             AB1 > Short dump "081111 220948 sapsm BASIS " generated
    BASIS             D01 Transaction Canceled 00 671 ( MESSAGE_TYPE_X 20081111220948sapsm BASIS 2001 )
    Details Page 2 Line 6 System Log: Local Analysis of sapsm                     1
    Time     Ty. Nr Cl. User         Tcod MNo Text
    00:00:51 DIA 00 000 SAPSYS            EEA OPERATION MODES: Switch to operation mode Normal triggered
    Details
    Recording at local and central time........................ 13.11.2008 00:00:51
    Task................ 04100 . 00 D0 Dialog work process No. 00
    User................ SAPSYS
    Client.............. 000
    Terminal............
    Session............. 1
    Transaction code....
    Program name........
    Problem class....... S    Operation Trace
    Development class... SBTC
    Sm63
      Start/end time   Name of the active operation mode
       00.00 - 01.00    Normal
       01.00 - 02.00    Normal
       02.00 - 03.00    Normal
       03.00 - 04.00    Normal
       04.00 - 05.00    Normal
       05.00 - 06.00    Normal
       06.00 - 07.00    Normal
       07.00 - 08.00    Normal
       08.00 - 09.00    Normal
       09.00 - 10.00    Normal
       10.00 - 11.00    Normal
       11.00 - 12.00    Normal
       12.00 - 13.00    Normal
       13.00 - 14.00    Normal
       14.00 - 15.00    Normal
       15.00 - 16.00    Normal
       16.00 - 17.00    Normal
       17.00 - 18.00    Normal
       18.00 - 19.00    Normal
       19.00 - 20.00    Normal
       20.00 - 21.00    Normal
       21.00 - 22.00    Normal
       22.00 - 23.00    Normal
       23.00 - 00.00    Normal
    Regards,

  • I tried down loading mozilla firefox to use as a web browser. It was downloaded 100% then when prompted to "run" the error message comes up with a red cross and the message'This file is corrupted" and won't let me proceed. What do I do now?

    I tried down loading mozilla firefox to use as a web browser. It was downloaded 100% then when prompted to "run" An error message comes up with a red cross and the message'This file is corrupted" and won't let me proceed. What do I do now?

    It is possible that your anti-virus software is corrupting the downloaded files or otherwise interfering with downloading files by Firefox.<br />
    You can try to disable the real-time (live) scanning of files in your anti-virus software temporarily to see if that makes downloading work.
    See http://kb.mozillazine.org/Unable_to_save_or_download_files

  • Anyone know which render format I should use, my film will be used on a video wall (12 screens) and I need super quality. My footage format is 1080p HD resolution 1920x1080. I will be running the project from a mac with a direct line to video wall. Thanks

    Anyone know which render format I should use, my film will be used on a video wall (12 screens) and I need super quality. My footage format is 1080p HD resolution 1920x1080. I will be running the project from a mac with a direct line to video wall. Thanks in advance.

    I do some VJ-type work, involving playback of QuickTime files from the computer to projections, and I get good results using ProRes 422. That's convenient, because ProRes 422 is such a great editing codec, too.
    Traditionally, VJs use PhotoJPEG codec, which also works well, but it's a bad editing codec. So you would have to export an edited master, then convert.
    If you want it to look as good as possible, definitely schedule some time to test the footage on the wall. You may want to change the color correction of your footage to match the projectors. And if you feed the video wall some flat gray, you can see if any of the projectors need to be  adjusted.
    I'm not sure what application you're using for playback, but QuickTime Player 7 works well. It has an option to play fullscreen on an external monitor (View > Present Movie…).

  • My 3 year-old macbook pro is very slow. I have run disk utility and virus scan with no improvement. The "beach ball" will spin for minutes at a time when opening, closing or changing windows. Apple Store looked at it a few months ago with no help.

    my 3 year-old macbook pro is very slow. I have run disk utility and virus scan with no improvement. The "beach ball" will spin for minutes at a time when opening, closing or changing windows. Apple Store looked at it a few months ago with no help. What can I do?

    Under CPU: 3.5% user; 5% system; 91% idle; 441 threads; 90 processes.
    Under System: out of 2GB - 54.7MB free; 530MB wired; 603MB active; 862MB inactive; 1.95GB used.
    Is too much of the system memory tied up? If so, what can I do to free some up?

Maybe you are looking for