Quartz

I have the same code that running gooood in Oracle!, but I'm tring to run quartz with MS SQL SERVER 2005 (with jtds-1.2.2.jar driver) and I got this exception:
17-07-2008 15:46:11 (com.eglue.batch.scheduler.implementation.AlertsExpiredSchedulerImpl:69) INFO  EglueLogger - [I25] The AlertsExpiredSchedulerImpl.schedule() method started.
org.quartz.JobPersistenceException: Couldn't remove trigger: Invalid object name 'QRTZ_BLOB_TRIGGERS'. [See nested exception: java.sql.SQLException: Invalid object name 'QRTZ_BLOB_TRIGGERS'.]
        at org.quartz.impl.jdbcjobstore.JobStoreSupport.removeTrigger(JobStoreSupport.java:1073)
        at org.quartz.impl.jdbcjobstore.JobStoreTX.removeTrigger(JobStoreTX.java:372)
        at org.quartz.core.QuartzScheduler.unscheduleJob(QuartzScheduler.java:723)
        at org.quartz.impl.StdScheduler.unscheduleJob(StdScheduler.java:285)
        at com.eglue.batch.scheduler.implementation.AlertsExpiredSchedulerImpl.schedule(AlertsExpiredSchedulerImpl.java:85)
        at com.eglue.listener.ContextListener.contextInitialized(ContextListener.java:23)
        at weblogic.servlet.internal.EventsManager$FireContextListenerAction.run(EventsManager.java:376)
        at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
        at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
        at weblogic.servlet.internal.EventsManager.notifyContextCreatedEvent(EventsManager.java:82)
        at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1608)
        at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:2750)
        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.BasicDeployment.activate(BasicDeployment.java:181)
        at weblogic.deploy.internal.targetserver.BasicDeployment.activateFromServerLifecycle(BasicDeployment.java:358)
        at weblogic.management.deploy.internal.DeploymentAdapter$1.doActivate(DeploymentAdapter.java:52)
        at weblogic.management.deploy.internal.DeploymentAdapter.activate(DeploymentAdapter.java:186)
        at weblogic.management.deploy.internal.AppTransition$2.transitionApp(AppTransition.java:30)
        at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:233)
        at weblogic.management.deploy.internal.ConfiguredDeployments.activate(ConfiguredDeployments.java:169)
        at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:123)
        at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:173)
        at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:89)
        at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
        at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
        at weblogic.work.ExecuteThread.run(ExecuteThread.java:181)
* Nested Exception (Underlying Cause) ---------------
java.sql.SQLException: Invalid object name 'QRTZ_BLOB_TRIGGERS'
I have this table in the DB, QRTZ_BLOB_TRIGGERS
I tried to set dbo.qrtz_ to the property, but nothing.. (default is: qrtz_
org.quartz.jobStore.tablePrefix=dbo.qrtz_
I have these properties to:
# Configure Main Scheduler Properties
org.quartz.scheduler.instanceName=EglueClusteredScheduler
org.quartz.scheduler.instanceId=AUTO
# Configure ThreadPool 
org.quartz.threadPool.class=org.quartz.simpl.SimpleThreadPool
org.quartz.threadPool.threadCount=5
org.quartz.threadPool.threadPriority=5
# Configure JobStore
org.quartz.jobStore.class=org.quartz.impl.jdbcjobstore.JobStoreTX
org.quartz.jobStore.dataSource=eglueSchedularDS
org.quartz.jobStore.isClustered=false
org.quartz.jobStore.clusterCheckinInterval=20000
org.quartz.jobStore.driverDelegateClass=org.quartz.impl.jdbcjobstore.StdJDBCDelegate
# Configure Datasources
org.quartz.dataSource.eglueSchedularDS.jndiURL=jdbc.EglueMSAny ideas for solve this problem pleaseeeee?
Thank's alooooot!!!

Hi, after I run this from my code without the quarts:
select * from QRTZ_BLOB_TRIGGERS
I got this error:
java.sql.SQLException: Invalid object name 'QRTZ_BLOB_TRIGGERS'.
        at net.sourceforge.jtds.jdbc.SQLDiagnostic.addDiagnostic(SQLDiagnostic.java:368)
        at net.sourceforge.jtds.jdbc.TdsCore.tdsErrorToken(TdsCore.java:2816)
        at net.sourceforge.jtds.jdbc.TdsCore.nextToken(TdsCore.java:2254)
        at net.sourceforge.jtds.jdbc.TdsCore.getMoreResults(TdsCore.java:631)
        at net.sourceforge.jtds.jdbc.JtdsStatement.executeSQLQuery(JtdsStatement.java:477)
        Truncated. see log file for complete stacktrace
I run else table (not qurtz table) and else qurtz table from java and the results was good!
UM_GROUPS table
QRTZ_CALENDARS table
What's wong with the QRTZ_BLOB_TRIGGERS table??
From the developer tools for my DB this quary running good, but not from java:
select * from QRTZ_BLOB_TRIGGERS The full error:
<Jul 19, 2008 11:10:25 AM UTC> <Warning> <HTTP> <BEA-101162> <User defined listener com.eglue.listener.ContextListener failed: org.springframework.jdbc.BadSqlGrammarException: StatementCallback; bad SQL grammar [select * from QRTZ_BLOB_TRIGGERS]; nested exception is java.sql.SQLException: Invalid object name 'QRTZ_BLOB_TRIGGERS'..
org.springframework.jdbc.BadSqlGrammarException: StatementCallback; bad SQL grammar [select * from QRTZ_BLOB_TRIGGERS]; nested exception is java.sql.SQLException: Invalid object name 'QRTZ_BLOB_TRIGGERS'.
        at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.translate(SQLErrorCodeSQLExceptionTranslator.java:230)
        at org.springframework.jdbc.core.JdbcTemplate.execute(JdbcTemplate.java:353)
        at org.springframework.jdbc.core.JdbcTemplate.query(JdbcTemplate.java:404)
        at org.springframework.jdbc.core.JdbcTemplate.queryForRowSet(JdbcTemplate.java:447)
        at com.eglue.infra.utils.db.EglueJdbcTemplate.queryForRowSet(EglueJdbcTemplate.java:36)
        Truncated. see log file for complete stacktrace
java.sql.SQLException: Invalid object name 'QRTZ_BLOB_TRIGGERS'.
        at net.sourceforge.jtds.jdbc.SQLDiagnostic.addDiagnostic(SQLDiagnostic.java:368)
        at net.sourceforge.jtds.jdbc.TdsCore.tdsErrorToken(TdsCore.java:2816)
        at net.sourceforge.jtds.jdbc.TdsCore.nextToken(TdsCore.java:2254)
        at net.sourceforge.jtds.jdbc.TdsCore.getMoreResults(TdsCore.java:631)
        at net.sourceforge.jtds.jdbc.JtdsStatement.executeSQLQuery(JtdsStatement.java:477)
        Truncated. see log file for complete stacktrace
>
<Jul 19, 2008 11:10:25 AM UTC> <Error> <Deployer> <BEA-149231> <Unable to set the activation state to true for the application 'eGlueEAR-0'.
weblogic.application.ModuleException:
        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)
        Truncated. see log file for complete stacktrace
java.sql.SQLException: Invalid object name 'QRTZ_BLOB_TRIGGERS'.
        at net.sourceforge.jtds.jdbc.SQLDiagnostic.addDiagnostic(SQLDiagnostic.java:368)
        at net.sourceforge.jtds.jdbc.TdsCore.tdsErrorToken(TdsCore.java:2816)
        at net.sourceforge.jtds.jdbc.TdsCore.nextToken(TdsCore.java:2254)
        at net.sourceforge.jtds.jdbc.TdsCore.getMoreResults(TdsCore.java:631)
        at net.sourceforge.jtds.jdbc.JtdsStatement.executeSQLQuery(JtdsStatement.java:477)
        Truncated. see log file for complete stacktrace
>
<Jul 19, 2008 11:10:25 AM UTC> <Notice> <Log Management> <BEA-170027> <The server initialized the domain log broadcaster successfully. Log messages will now be broadcasted to the domain log.>
<Jul 19, 2008 11:10:27 AM UTC> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to ADMIN>
<Jul 19, 2008 11:10:27 AM UTC> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to RESUMING>
Exception in thread "thinClientLogQueueMessageListenerContainer-2" java.lang.NoClassDefFoundError: org/springframework/jms/support/JmsUtils
        at org.springframework.jms.listener.DefaultMessageListenerContainer$AsyncMessageListenerInvoker.clearResources(DefaultMessageListenerContainer.java:899)
        at org.springframework.jms.listener.DefaultMessageListenerContainer$AsyncMessageListenerInvoker.run(DefaultMessageListenerContainer.java:824)
        at java.lang.Thread.run(Thread.java:595)
Exception in thread "kpiQueueMessageListenerContainer-3" java.lang.NoClassDefFoundError: org/springframework/jms/support/JmsUtils
        at org.springframework.jms.listener.DefaultMessageListenerContainer$AsyncMessageListenerInvoker.clearResources(DefaultMessageListenerContainer.java:899)
        at org.springframework.jms.listener.DefaultMessageListenerContainer$AsyncMessageListenerInvoker.run(DefaultMessageListenerContainer.java:824)
        at java.lang.Thread.run(Thread.java:595)
Exception in thread "dcQueueMessageListenerContainer-5" Exception in thread "kpiQueueMessageListenerContainer-5" java.lang.NoClassDefFoundError: org/springframework/jms/support/JmsUtils
        at org.springframework.jms.listener.DefaultMessageListenerContainer$AsyncMessageListenerInvoker.clearResources(DefaultMessageListenerContainer.java:899)
        at org.springframework.jms.listener.DefaultMessageListenerContainer$AsyncMessageListenerInvoker.run(DefaultMessageListenerContainer.java:824)
        at java.lang.Thread.run(Thread.java:595)
java.lang.NoClassDefFoundError: org/springframework/jms/support/JmsUtils
        at org.springframework.jms.listener.DefaultMessageListenerContainer$AsyncMessageListenerInvoker.clearResources(DefaultMessageListenerContainer.java:899)
        at org.springframework.jms.listener.DefaultMessageListenerContainer$AsyncMessageListenerInvoker.run(DefaultMessageListenerContainer.java:824)
        at java.lang.Thread.run(Thread.java:595)
Exception in thread "kpiQueueMessageListenerContainer-2" Exception in thread "thinClientLogQueueMessageListenerContainer-3" java.lang.NoClassDefFoundError: org/springframework/jms/support/JmsUtils
        at org.springframework.jms.listener.DefaultMessageListenerContainer$AsyncMessageListenerInvoker.clearResources(DefaultMessageListenerContainer.java:899)
        at org.springframework.jms.listener.DefaultMessageListenerContainer$AsyncMessageListenerInvoker.run(DefaultMessageListenerContainer.java:824)
        at java.lang.Thread.run(Thread.java:595)
java.lang.NoClassDefFoundError: org/springframework/jms/support/JmsUtils
        at org.springframework.jms.listener.DefaultMessageListenerContainer$AsyncMessageListenerInvoker.clearResources(DefaultMessageListenerContainer.java:899)
        at org.springframework.jms.listener.DefaultMessageListenerContainer$AsyncMessageListenerInvoker.run(DefaultMessageListenerContainer.java:824)
        at java.lang.Thread.run(Thread.java:595)
Exception in thread "kpiQueueMessageListenerContainer-1" java.lang.NoClassDefFoundError: org/springframework/jms/support/JmsUtils
        at org.springframework.jms.listener.DefaultMessageListenerContainer$AsyncMessageListenerInvoker.clearResources(DefaultMessageListenerContainer.java:899)
        at org.springframework.jms.listener.DefaultMessageListenerContainer$AsyncMessageListenerInvoker.run(DefaultMessageListenerContainer.java:824)
        at java.lang.Thread.run(Thread.java:595)
Exception in thread "thinClientLogQueueMessageListenerContainer-1" java.lang.NoClassDefFoundError: org/springframework/jms/support/JmsUtils
        at org.springframework.jms.listener.DefaultMessageListenerContainer$AsyncMessageListenerInvoker.clearResources(DefaultMessageListenerContainer.java:899)
        at org.springframework.jms.listener.DefaultMessageListenerContainer$AsyncMessageListenerInvoker.run(DefaultMessageListenerContainer.java:824)
        at java.lang.Thread.run(Thread.java:595)
Exception in thread "thinClientLogQueueMessageListenerContainer-5" Exception in thread "dcQueueMessageListenerContainer-3" Exception in thread "kpiQueueMessageListenerContainer-4" Exception in thread "dcQueueMessageListenerContainer-1" java.lang.NoClassDefFoundError: org/springframework/jms/support/JmsUtils
        at org.springframework.jms.listener.DefaultMessageListenerContainer$AsyncMessageListenerInvoker.clearResources(DefaultMessageListenerContainer.java:899)
        at org.springframework.jms.listener.DefaultMessageListenerContainer$AsyncMessageListenerInvoker.run(DefaultMessageListenerContainer.java:824)
        at java.lang.Thread.run(Thread.java:595)
java.lang.NoClassDefFoundError: org/springframework/jms/support/JmsUtils
        at org.springframework.jms.listener.DefaultMessageListenerContainer$AsyncMessageListenerInvoker.clearResources(DefaultMessageListenerContainer.java:899)
        at org.springframework.jms.listener.DefaultMessageListenerContainer$AsyncMessageListenerInvoker.run(DefaultMessageListenerContainer.java:824)
        at java.lang.Thread.run(Thread.java:595)
java.lang.NoClassDefFoundError: org/springframework/jms/support/JmsUtils
        at org.springframework.jms.listener.DefaultMessageListenerContainer$AsyncMessageListenerInvoker.clearResources(DefaultMessageListenerContainer.java:899)
        at org.springframework.jms.listener.DefaultMessageListenerContainer$AsyncMessageListenerInvoker.run(DefaultMessageListenerContainer.java:824)
        at java.lang.Thread.run(Thread.java:595)
java.lang.NoClassDefFoundError: org/springframework/jms/support/JmsUtils
        at org.springframework.jms.listener.DefaultMessageListenerContainer$AsyncMessageListenerInvoker.clearResources(DefaultMessageListenerContainer.java:899)
        at org.springframework.jms.listener.DefaultMessageListenerContainer$AsyncMessageListenerInvoker.run(DefaultMessageListenerContainer.java:824)
        at java.lang.Thread.run(Thread.java:595)
Exception in thread "dcQueueMessageListenerContainer-2" java.lang.NoClassDefFoundError: org/springframework/jms/support/JmsUtils
        at org.springframework.jms.listener.DefaultMessageListenerContainer$AsyncMessageListenerInvoker.clearResources(DefaultMessageListenerContainer.java:899)
        at org.springframework.jms.listener.DefaultMessageListenerContainer$AsyncMessageListenerInvoker.run(DefaultMessageListenerContainer.java:824)
        at java.lang.Thread.run(Thread.java:595)
Exception in thread "dcQueueMessageListenerContainer-4" java.lang.NoClassDefFoundError: org/springframework/jms/support/JmsUtils
        at org.springframework.jms.listener.DefaultMessageListenerContainer$AsyncMessageListenerInvoker.clearResources(DefaultMessageListenerContainer.java:899)
        at org.springframework.jms.listener.DefaultMessageListenerContainer$AsyncMessageListenerInvoker.run(DefaultMessageListenerContainer.java:824)
        at java.lang.Thread.run(Thread.java:595)
Exception in thread "thinClientLogQueueMessageListenerContainer-4" java.lang.NoClassDefFoundError: org/springframework/jms/support/JmsUtils
        at org.springframework.jms.listener.DefaultMessageListenerContainer$AsyncMessageListenerInvoker.clearResources(DefaultMessageListenerContainer.java:899)
        at org.springframework.jms.listener.DefaultMessageListenerContainer$AsyncMessageListenerInvoker.run(DefaultMessageListenerContainer.java:824)
        at java.lang.Thread.run(Thread.java:595)
<Jul 19, 2008 11:10:29 AM UTC> <Notice> <Security> <BEA-090171> <Loading the identity certificate and private key stored under the alias DemoIdentity from the jks keystore file C:\bea\WEBLOG~1\server\lib\DemoIdentity.jks.>
<Jul 19, 2008 11:10:30 AM UTC> <Notice> <Security> <BEA-090169> <Loading trusted certificates from the jks keystore file C:\bea\WEBLOG~1\server\lib\DemoTrust.jks.>
<Jul 19, 2008 11:10:30 AM UTC> <Notice> <Security> <BEA-090169> <Loading trusted certificates from the jks keystore file C:\bea\JDK150~1\jre\lib\security\cacerts.>
<Jul 19, 2008 11:10:30 AM UTC> <Warning> <Server> <BEA-002611> <Hostname "dx507.advantech.co.il", maps to multiple IP addresses: 10.10.2.217, 127.0.0.1>
<Jul 19, 2008 11:10:30 AM UTC> <Notice> <Server> <BEA-002613> <Channel "Default[1]" is now listening on 127.0.0.1:7001 for protocols iiop, t3, ldap, http.>
<Jul 19, 2008 11:10:30 AM UTC> <Notice> <Server> <BEA-002613> <Channel "Default" is now listening on 10.10.2.217:7001 for protocols iiop, t3, ldap, http.>
<Jul 19, 2008 11:10:30 AM UTC> <Warning> <Server> <BEA-002611> <Hostname "localhost", maps to multiple IP addresses: 10.10.2.217, 127.0.0.1>
<Jul 19, 2008 11:10:30 AM UTC> <Notice> <Server> <BEA-002613> <Channel "DefaultSecure" is now listening on 10.10.2.217:7002 for protocols iiops, t3s, ldaps, https.>
<Jul 19, 2008 11:10:30 AM UTC> <Notice> <Server> <BEA-002613> <Channel "DefaultSecure[1]" is now listening on 127.0.0.1:7002 for protocols iiops, t3s, ldaps, https.>
<Jul 19, 2008 11:10:30 AM UTC> <Notice> <WebLogicServer> <BEA-000331> <Started WebLogic Admin Server "WLEglueLocalServer" for domain "eglue_domain" running in Development Mode>
<Jul 19, 2008 11:10:30 AM UTC> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to RUNNING>
<Jul 19, 2008 11:10:30 AM UTC> <Notice> <WebLogicServer> <BEA-000360> <Server started in RUNNING mode>

Similar Messages

  • I just updated my RAM and I keep getting a crash report. I have a 21.5 Inch mid 2010 imac. I also am experiencing slow load times and when I try to open Final Cut it says that quartz extreme is not compatible and that I have no VRAM even though I do.

    I just updated my RAM (replaced the two 2 gig cards with two Corsair 8 gig cards) and I keep getting a crash report. I have a 21.5 Inch mid 2010 imac. I also am experiencing slow load times with Photoshop and when I try to open Final Cut it says that quartz extreme is not compatible and that I have no VRAM even though I do.
    Here is the crash report:
    Interval Since Last Panic Report:  5426204 sec
    Panics Since Last Report:          2
    Anonymous UUID:                    2DD57DDB-BB42-5614-395A-CA6225BDAFD9
    Wed Mar 20 11:36:53 2013
    panic(cpu 0 caller 0xffffff801aa43d8e): "a freed zone element has been modified in zone: maps"@/SourceCache/xnu/xnu-2050.18.24/osfmk/kern/zalloc.c:219
    Backtrace (CPU 0), Frame : Return Address
    0xffffff81eb0eb950 : 0xffffff801aa1d626
    0xffffff81eb0eb9c0 : 0xffffff801aa43d8e
    0xffffff81eb0eba00 : 0xffffff801aa435d2
    0xffffff81eb0ebae0 : 0xffffff801aa663f7
    0xffffff81eb0ebb20 : 0xffffff801aa67398
    0xffffff81eb0ebc70 : 0xffffff801aa6887c
    0xffffff81eb0ebd20 : 0xffffff801ad5b8fe
    0xffffff81eb0ebf50 : 0xffffff801ade182a
    0xffffff81eb0ebfb0 : 0xffffff801aaced33
    BSD process name corresponding to current thread: launchd
    Mac OS version:
    Not yet set
    Kernel version:
    Darwin Kernel Version 12.2.0: Sat Aug 25 00:48:52 PDT 2012; root:xnu-2050.18.24~1/RELEASE_X86_64
    Kernel UUID: 69A5853F-375A-3EF4-9247-478FD0247333
    Kernel slide:     0x000000001a800000
    Kernel text base: 0xffffff801aa00000
    System model name: iMac11,2 (Mac-F2238AC8)
    System uptime in nanoseconds: 1070542822
    last loaded kext at 707348380: com.apple.driver.AppleIRController    320.15 (addr 0xffffff7f9c53e000, size 28672)
    loaded kexts:
    at.obdev.nke.LittleSnitch    3908
    com.apple.driver.AppleIRController    320.15
    com.apple.driver.AppleUSBCardReader    3.1.0
    com.apple.driver.AppleFileSystemDriver    3.0.1
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless    1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib    1.0.0d1
    com.apple.BootCache    34
    com.apple.iokit.SCSITaskUserClient    3.5.1
    com.apple.driver.XsanFilter    404
    com.apple.iokit.IOAHCIBlockStorage    2.2.2
    com.apple.driver.AppleUSBHub    5.2.5
    com.apple.driver.AppleFWOHCI    4.9.6
    com.apple.driver.AirPort.Atheros40    600.70.23
    com.apple.driver.AppleUSBEHCI    5.4.0
    com.apple.driver.AppleAHCIPort    2.4.1
    com.apple.iokit.AppleBCM5701Ethernet    3.2.5b3
    com.apple.driver.AppleUSBUHCI    5.2.5
    com.apple.driver.AppleEFINVRAM    1.6.1
    com.apple.driver.AppleACPIButtons    1.6
    com.apple.driver.AppleRTC    1.5
    com.apple.driver.AppleHPET    1.7
    com.apple.driver.AppleSMBIOS    1.9
    com.apple.driver.AppleACPIEC    1.6
    com.apple.driver.AppleAPIC    1.6
    com.apple.driver.AppleIntelCPUPowerManagementClient    196.0.0
    com.apple.nke.applicationfirewall    4.0.39
    com.apple.security.quarantine    2
    com.apple.driver.AppleIntelCPUPowerManagement    196.0.0
    com.apple.iokit.IOUSBHIDDriver    5.2.5
    com.apple.iokit.IOSCSIBlockCommandsDevice    3.5.1
    com.apple.iokit.IOUSBMassStorageClass    3.5.0
    com.apple.driver.AppleUSBMergeNub    5.2.5
    com.apple.driver.AppleUSBComposite    5.2.5
    com.apple.iokit.IOSCSIMultimediaCommandsDevice    3.5.1
    com.apple.iokit.IOBDStorageFamily    1.7
    com.apple.iokit.IODVDStorageFamily    1.7.1
    com.apple.iokit.IOCDStorageFamily    1.7.1
    com.apple.iokit.IOAHCISerialATAPI    2.5.0
    com.apple.iokit.IOSCSIArchitectureModelFamily    3.5.1
    com.apple.iokit.IOUSBUserClient    5.2.5
    com.apple.iokit.IOFireWireFamily    4.5.5
    com.apple.iokit.IO80211Family    500.15
    com.apple.iokit.IOAHCIFamily    2.2.1
    com.apple.iokit.IOEthernetAVBController    1.0.2b1
    com.apple.iokit.IONetworkingFamily    3.0
    com.apple.iokit.IOUSBFamily    5.4.0
    com.apple.driver.AppleEFIRuntime    1.6.1
    com.apple.iokit.IOHIDFamily    1.8.0
    com.apple.iokit.IOSMBusFamily    1.1
    com.apple.security.sandbox    220
    com.apple.kext.AppleMatch    1.0.0d1
    com.apple.security.TMSafetyNet    7
    com.apple.driver.DiskImages    344
    com.apple.iokit.IOStorageFamily    1.8
    com.apple.driver.AppleKeyStore    28.21
    com.apple.driver.AppleACPIPlatform    1.6
    com.apple.iokit.IOPCIFamily    2.7.2
    com.apple.iokit.IOACPIFamily    1.4
    com.apple.kec.corecrypto    1.0
    Model: iMac11,2, BootROM IM112.0057.B00, 2 processors, Intel Core i3, 3.2 GHz, 16 GB, SMC 1.64f5
    Graphics: ATI Radeon HD 5670, ATI Radeon HD 5670, PCIe, 512 MB
    Memory Module: BANK 0/DIMM1, 8 GB, DDR3, 1333 MHz, 0x029E, 0x434D5341384758334D314131333333433920
    Memory Module: BANK 1/DIMM1, 8 GB, DDR3, 1333 MHz, 0x029E, 0x434D5341384758334D314131333333433920
    AirPort: spairport_wireless_card_type_airport_extreme (0x168C, 0x8F), Atheros 9280: 4.0.70.23-P2P
    Bluetooth: Version 4.0.9f33 10885, 2 service, 18 devices, 0 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: ST31000528AS, 1 TB
    Serial ATA Device: HL-DT-STDVDRW  GA32N
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfd100000 / 2
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0xfd120000 / 4
    USB Device: Built-in iSight, apple_vendor_id, 0x8502, 0xfd110000 / 3
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfa100000 / 2
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 4
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8215, 0xfa111000 / 6
    USB Device: Internal Memory Card Reader, apple_vendor_id, 0x8403, 0xfa120000 / 3

    There have been a few reports on here where Corsair RAM seems to have caused users a lot of grief with crashes.
    The recommendation on here, mostly, is to only buy RAM from macsales.com or crucial.com as they guarantee their modules will work and offer a no quibble lifetime guarantee.
    I'd put the original RAM back in, return the Corsair chips for a refund and re-order from one of those two companies.
    http://eshop.macsales.com/shop/apple/memory/iMac
    http://www.crucial.com/

  • Oracle 11g  Quartz Scheduler 1.8.5 running under JBOSS 5.1

    Basically I'm getting this error when running Quartz configured for the jobStore
    org.quartz.jobStore.class = org.quartz.impl.jdbcjobstore.JobStoreCMT
    I've got two data sources setup.
    One data source is setup to be looked up via JNDI (presumably for the one that may participate in distributed JTA XA transactions) and one that
    supposedly is not to participate in JTA transactions in which quartz can call commit/rollback on it's own.
    The problem I'm seeing with the interaction of the two is the following exception:
    05:21:27,292 ERROR [TxPolicy] javax.ejb.EJBTransactionRolledbackException: SqlMapClient operation; uncategorized SQLException for SQL []; SQL state [9
    9999]; error code [29875];
    --- The error occurred in XXXXX_COORDINATE_SqlMap.xml.
    --- The error occurred while applying a parameter map.
    --- Check the XXXX_COORDINATE.insert-InlineParameterMap.
    --- Check the statement (update failed).
    --- Cause: java.sql.SQLException: ORA-29875: failed in the execution of the ODCIINDEXINSERT routine
    ORA-29400: data cartridge error
    ORA-14450: attempt to access a transactional temp table already in use
    ORA-06512: at "MDSYS.SDO_INDEX_METHOD_10I", line 720
    ORA-06512: at "MDSYS.SDO_INDEX_METHOD_10I", line 225
    ; nested exception is com.XXXXXibatis.common.jdbc.exception.NestedSQLException:
    --- The error occurred in XXXXX_COORDINATE_SqlMap.xml.
    --- The error occurred while applying a parameter map.
    --- Check the XXXXX_COORDINATE.insert-InlineParameterMap.
    --- Check the statement (update failed).
    --- Cause: java.sql.SQLException: ORA-29875: failed in the execution of the ODCIINDEXINSERT routine
    ORA-29400: data cartridge error
    ORA-14450: attempt to access a transactional temp table already in use
    ORA-06512: at "MDSYS.SDO_INDEX_METHOD_10I", line 720
    ORA-06512: at "MDSYS.SDO_INDEX_METHOD_10I", line 225
    Has anyone seen this error before with the following configuration of Quartz 1.8.5, Oracle 11g, Oracle Spatial?
    I've googled and seen reference to Oracle spatial using temp tables and not compatible with transactions... but not sure
    exactly how to solve this problem.
    Thanks in advacce.

    Hi;
    Can any one advise me where and how can I download proper RPM packages and how do I resolve swap space requirement failure as mentioned above. Please let me know if further information required.You can find all related rpm from your DVD. For rpm please see below thread:
    RPM confirmation
    Re: Package install for oracle11gr2
    For swap:
    swap size increase-linux
    How to increase swap size?
    Regard
    Helios

  • I am having trouble with iTunes (possible Quartz Composer Visualizer problem) but have no idea how to fix it.

    I tried to use my iTunes but the icon didn't show up and instead I get a folder. The folder is titled TunesApp and in it is another folder called Contents. Contents contains: _CodeSignature, Frameworks, Info.plist, MacOS, PkgInfo, Resources, and version.plist. In the folder MacOS is my iTunes and I can use it, but I get this message:
    Last login: Sun Feb 24 13:13:15 on ttys000
    unknown705681bcc901:~ kathrynbarber$ /TunesApp/Contents/MacOS/iTunes ; exit;
    2013-02-24 13:13:20.988 The plugin 'Quartz Composer Visualizer' failed to load because it has the wrong CPU architecture for this version of iTunes. (3585)
    Version from driver for Certificates 1
    I can only use my iTunes as long as I keep the message open. When I close the message it tells me: "Closing this window will terminate the running processes: login, bash, iTunes." I have no idea what is going on with it as it was working not too long ago. I do not think I updated it recently but I could be wrong. Any help would be much appreciated.
    Thank you!

    Sounds like your computer is having additional issues.  I suggest taking it to your nearest Apple Store.

  • FCP does not work after sleep - asking for quartz extreme card

    Hi all,
    Well my 2 x 2.266 Dual Core Intel xeon with 5 gig memory is getting a little long in the tooth and I have started coming up against what I suspect is hardware issues.
    The OSX is 10.5.8
    It has a blackmagic HD card as well as an ESATA rocketraid card.
    I have a sohoraid attached as well as a Drobo (via firewire).
    In the last couple of months I l've had a bunch of issues that I wonder if are at all related.
    Firstly the DVD player app now freezes the whole computer if I try and start it.
    when it first did this I spent forever rebuilding the system for it to only fall over again a month or so later.
    2) In the last couple of weeks, when I wake from sleep the mouse icon is gone and what is in its place is a small area of distorted,broken pixels. Still works as a mouse (the distorted pixels move round like an arrow) and the arrow returns when I tab through to another application. Weird...
    3) In that same time when I have started Final Cut Pro it immediately gives me a warning saying a quartz extreme video vard is required to run application and refuses to open. Restarting computer fixes this but this is a new development.
    4) I ran into an issue at beginning of the year with my soho 5bay raid where it said a drive failed and then couldn't rebuild with a new drive, took it to shop and it blinked into life on their computer. Drive was never broken. Its now back and running as it should, like it always did, but they couldn't see what went wrong.
    These of course could be a unrelated but I somehow suspect not.
    Any first 'go-to's" you would recommend to just try and trouble shoot this?
    THANK YOU!!!!

    Try these in this order:
    1. Set Mac to NEVER SLEEP. No exceptions.
    2. Repair Permissions on all drives.
    3. Trash Preferences for offending apps.
    4. Wipe and re-install fresh OS and apps every 6-18 months.
    Tim

  • Job submission failed : error occurred while scheduling the job. org.quartz.objectalreadyexistsexception: unable to store job with name

    Experts,
    Please help me out here,Am facing this issue while scheduling a job in BIPublisher.
    job submission failed : error occurred while scheduling the job. org.quartz.objectalreadyexistsexception: unable to store job with name
    Thanks,

    You are probably installing on a hardened machine.
    The "installation guide" says that if you are doing so, you need to create a file named libx11.so.4 and update your LD_LIBRARY_PATH (see http://docs.iplanet.com/docs/manuals/messaging/ims52/ig/unix/overview.htm)but:
    1- the library name is libX11.so.4 and
    2- for jre a common file is not enough, you need to install SUNWxwplt at least. This will install the library on /usr/openwin/lib.
    You can check the results running <server-root>/bin/base/jre/bin/jre
    Hope that helps and sorry about my poor english.

  • Keynote and Quartz Composer

    I am fairly new to Quartz Composer, that being said I have built several animations that I want to add to Keynote presentations, but everytime I try to add them into Keynote they only last :30 sec.  I have tried exporting as a .mov file and each time I do I am prompted to give the file an end time, I have tried several different times, and yet Keynote still gives it a :30 sec runtime.  I have looked at the exported file in Quicktime and it also says the file is only :30 sec.  I have been searching forums for some time now with no luck, but I have found that I am not the only one with this problem.
    How can I get the QC file to last longer than :30 sec?  Any help in this area would be greatly appreciated as this is really starting to wear on me.  Thanks.

    Welcome to the discussions, agentdavo.
    I don't think it is. I tried the same thing (to try to get around QuickTime's 3 second limitation) and Keynote isn't allowing access to the video hardware.

  • New GFX card, Quartz Extreme error, and suddenly FCP 6 will not run. Help me fix this problem please!

    Model Name: Mac Pro Model Identifier: MacPro1,1 Processor Name: Dual-Core Intel Xeon Processor Speed: 3 GHz Number Of Processors: 2 Total Number Of Cores: 4 L2 Cache (per processor): 4 MB Memory: 7 GB Bus Speed: 1.33 GHz
    My old GFX card nVidia GeForce 7300GT which is busted.
    I replaced it with a nVidia NVIDIA Quadro FX 4500 from a Mac Pro of the same generation.
    I'm now getting a Quartz Extreme error whenever I try to run Final Cut Pro 6 or Compressor. "This system does not meet the following minimum requirements: Final Cut Pro 6 requires that your system have a Quartz Extreme capable video card."
    Well, I checked the specs of the card and it does support Quartz Extreme. So why isn't FCP 6 running?
    Looking under the System Profiler > Graphics/Displays, it doesn't say the Cinema HD Display supports Quartz Extreme, but how could that be, because the Quadro 4500's specs online says it does?!! This was the better GFX card made for the same generation of Mac Pro but somehow doesn't work!
    This is also effecting my DVD player App with an error: "A valid video device could not be found for playback: -70017". Which has never happened before either.
    I've researched online and can't find anything that works.
    The card has power running to it and the monitor is hooked into the closest DVI port to the logic board which most of people with the same problem have done to fix this. I've also gone into the Disk Utility and ran both Verify and Repair permissions and the same for the boot disk.
    Nothing. I'm stumped. Short of trying to flash the ROM on the GFX card I'm not sure what to do. And I'm not comfortable doing that. Help please?
    I'm using Final Cut Pro 6 and subsequent older versions of Motion and Compressor, not FCP X or companion series.
    HELP!!!!

    You should go to the Mac Pro community to get a better audience.
    https://discussions.apple.com/community/desktop_computers/mac_pro

  • How can I use multiple cameras in Quartz Composer?

    Good morning, all. This is a quartz composer question, but I can't see a quartz-composer specific forum to ask it...
    As part of a school project at ACAD we are building a rig to record the output from three video cameras to build a panoramic video. I have played with Quartz Composer to do the melding of videos recorded with this setup into a single image, and it worked very well.
    However, to do so live is the intention for this project as well, so we can build the composite video for recording (the timing of three different cameras is a bit awkward) as well as line up the cameras without having to do so separately.
    In Quartz Composer, however, the video-in plugin only reads the camera model number, not the unique GUID as seen in the System Profiler, so three identical cameras will not be read properly... you can only choose the model number, not the specific id of the camera.
    Is this a bug in Quartz Composer? Is there some top-secret plugin that is hiding somewhere that will allow you to choose the individual camera id's as seen in the system profiler? (Cameras tested have been firewire handycams streamed live, and usb cameras. identical model numbers can't be chosen as individual cameras properly)
    Thanks muchly, and please shuffle this question to the proper forum as necessary.

    I am working on a project where I need the same functionality. But even though I'm using different webcams, and can clearly select them in the menu, still only one camera works at a time. Even if I run two separate patches, with two different camera inputs, only one of them works.
    If you find any solution to this problem, I would really appreciate if you could share it.

  • Apply Quartz filter to a PDF from command line

    Hello
    I'm trying to apply a quartz filter to a PDF document via the command line. I know it's possible with Python and there's a script at /Developer/Examples/Quartz/Python/filter-pdf.py that does just that. The problem with this is that the script is Python 2.3 and my OS X 10.5.8 is running Python 2.5 - so I'm getting the error message:
    +<Error>: The function `CGPDFDocumentGetMediaBox' is obsolete and will be removed in an upcoming update. Unfortunately, this application, or a library it uses, is using this obsolete function, and is thereby contributing to an overall degradation of system performance. Please use `CGPDFPageGetBoxRect' instead.+
    I don't know Pyton but I checked the file and I grep'ed the Developer folder to see if I can find where CGPDFDocumentGetMediaBox is being used, but no matter what I changed, I didn't manage to get the script working.
    So I guess my question is one of the following:
    How can I update the developer example to a new, functioning version?
    or how do I get rid of the deprecated functions that script is using?
    or is there any other way to apply a quartz filter to a PDF via the command line? (I've read that SIPS is able to accomplish this, but I couldn't find out how..)
    Thank you for any help!
    Cheers

    There a quartz filter printer hidden in OS X which makes applying a quartz filter to a PDF file on the command line a piece of cake. This is the syntax:
    +/System/Library/Printers/Libraries/./quartzfilter inputfile filterpath outputfile+
    So if I wanted to convert big.pdf to small.pdf it would go like this:$
    +/System/Library/Printers/Libraries/quartzfilter big.pdf /System/Library/Filters/Reduce\ File\ Size.qfilter small.pdf+
    The "Reduce File Size" filter isn't that great though when it comes to reducing the file size for printing. Jerome Colas wrote a nice article about quartz filters though: http://discussions.apple.com/thread.jspa?messageID=6109445&tstart=0
    You can also create your own with the ColorSync utility in Mac OS X. A Quartz filter is nothing but an XML, so you could also generate one on the fly if necessary.
    Resource: http://macscripter.net/viewtopic.php?id=25916

  • How to specify timezone in quartz scheduler

    Hi,
    I want to initiate a job at a particular time - 6 AM EST every Monday. The cron expression can help me do "6 AM every Monday" part, but not the EST part. How do I specify a timezone. I could not find any examples pertaining to doing this in quartz used in a web application. I found some links that talked about doing this in spring framework - http://forum.springsource.org/archive/index.php/t-16381.html
    My web.xml currently looks like this:
    <?xml version = '1.0' encoding = 'windows-1252'?>
    <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
    version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee">
    <description>Empty web.xml file for Web Application</description>
    <!--servlet>
    <servlet-name>QuartzInitializer</servlet-name>
    <servlet-class>org.quartz.ee.servlet.QuartzInitializerServlet</servlet-class>
    <load-on-startup>1</load-on-startup>
    <init-param>
    <param-name>config-file</param-name>
    <param-value>bpel_quartz.properties</param-value>
    </init-param>
    </servlet-->
    <servlet>
    <servlet-name>BPELSchedulerServlet</servlet-name>
    <servlet-class>com.otn.samples.BPELSchedulerServlet</servlet-class>
    <init-param>
    <param-name>cronExpr</param-name>
    <param-value>0 0 6 ? * MON</param-value>
    </init-param>
    <load-on-startup>2</load-on-startup>
    </servlet>
    <servlet-mapping>
    <servlet-name>BPELSchedulerServlet</servlet-name>
    <url-pattern>/bpelschedulerservlet</url-pattern>
    </servlet-mapping>
    <session-config>
    <session-timeout>35</session-timeout>
    </session-config>
    <mime-mapping>
    <extension>html</extension>
    <mime-type>text/html</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>txt</extension>
    <mime-type>text/plain</mime-type>
    </mime-mapping>
    </web-app>
    TIA
    Amit

    Thanks, I followed your suggestion and was able to make this work. Here is what I have done.
    In Web.xml, added a new init parameter, timezone.
    <servlet>
    <servlet-name>BPELSchedulerServlet</servlet-name>
    <servlet-class>com.otn.samples.BPELSchedulerServlet</servlet-class>
    <init-param>
    <param-name>cronExpr</param-name>
    <param-value>0 30 6 ? * MON</param-value> <!--Mondays 6:30amEST -->
    </init-param>
    <init-param>
    <param-name>timezone</param-name>
    <param-value>EST</param-value>
    </init-param>
    <load-on-startup>2</load-on-startup>
    </servlet>
    then in the scheduler servlet,
    String cronExprFromWebXml = null;
    // Get the cron Expression as an Init parameter
    cronExprFromWebXml = getInitParameter("cronExpr");
    String timezone = getInitParameter("timezone");
    String cronExpr = convertCronExpr(cronExprFromWebXml,timezone);
    and I wrote a function in the same file,
    public String convertCronExpr(String inputCronExpr, String desiredTimezone)
    String outputCronExpr="";
    String[] inputCronArray = inputCronExpr.split(" ");
    String dateInDesiredFormat = inputCronArray[0]+":"+inputCronArray[1]+":"+inputCronArray[2]+":"+desiredTimezone;
    String dateInServerFormat;
    DateFormat genFormat = new SimpleDateFormat("s:m:k:z");
    Date specifiedTime;
    try
    specifiedTime = genFormat.parse(dateInDesiredFormat);
    genFormat.setTimeZone(TimeZone.getDefault());//This gets the server timezone
    dateInServerFormat = genFormat.format(specifiedTime);
    String[] outputCronArray = dateInServerFormat.split(":");
    outputCronExpr = outputCronArray[0]+" "+outputCronArray[1]+" "+outputCronArray[2]+" "+inputCronArray[3]+" "+inputCronArray[4]+" "+inputCronArray[5];
    System.out.print("inputCronExpr "+inputCronExpr);
    System.out.println(" --- In "+desiredTimezone);
    System.out.print("outputCronExpr "+outputCronExpr);
    System.out.println(" --- In soa suite timezone,"+TimeZone.getDefault().getDisplayName());
    return outputCronExpr;
    catch (ParseException e)
    return inputCronExpr;
    ofcourse I havent done any error handling here, and the code really works only for the given situation (it would fail if we use other forms of the cron expression..)
    -Amit

  • Reducing file size #2...Preview, Quartz Filter vs Adobe Pro Optimize

    Questions on reducing a pages to pdf file…I will post each question seperatly.
    2) I read that you can reduce file size of a pdf in preview with a quartz filter. I created my own filer and it worked as expected. But, I also have Adobe Acrobat Pro, with save as PDF Optimized. The pro seems to have much more capability than the quartz filters.
    Is one better that the other to use? The adobe optimize (standard settings) took it from 20 to 6 megs.
    THanks, Bob

    The Adobe Acrobat settings you chose are probably using .jpeg to reduce the file size.
    .jpegs are lossy. ie You lose detail and sharpness the more you compress the image.
    The Quartz filters are usually of very high quality, but they are a black box and you need to understand what the settings are in each one. Quartz filters are extremely powerful, fast and as I said usually high quality but I suggest you experiment and see if they meet your needs.
    Peter

  • Error in using Quartz Schedular

    Hi All,
    I am using SOA 11.1.1.6,Jdev 11.1.1.6,WL 10.3.6 and OS is linux.
    I tried to implemented quartz schedular for invoking my bpel process for every 5 min. My bpel process receives 3 variable so i used the wsdl of my process while creating quartz schedular.
    I took the help of Robert Baumgartner PDF for creating the service.
    I successfully created webproxy based on wsdl. But i run the code it is sucessfully invoking my process but in turning i am getting error message as below
    PM weblogic.wsee.jaxws.spi.WLSServiceDelegate addWsdlDefinitionFeature
    SEVERE: Failed to create WsdlDefinitionFeature for wsdl location: http://sasoah91.corp.gdglobal.ca:8001/soa-infra/services/TSStoRMS/TSStoRMSXItem/xitemprocess_client_ep?WSDL, error: com.sun.xml.ws.wsdl.parser.InaccessibleWSDLException, message: 2 counts of InaccessibleWSDLException.I am not sure why this error is coming.
    Going further i created below files
    java class for for schedule a job
    Schedulerserver java class
    Quartz property file
    web.xml
    created war file for deployment
    I am able to deploy war file into adminserver sucessfully without any error. But when i tried to open deployed schedular with thisurl http://sasoah91.corp.gdglobal.ca:7001/SOASchedular i could see message SOAScheduler @ AdminServer on the screen and also i noticed that there is no webservice under schedular war file which is i deployed under deployment in adminserver
    Is it because of above error my webservice not deployed in Adminserver??
    I need help in resolving it.I request to provide me the some light on this.
    Regards,
    Tarak.

    HI,
    Thanks for replying.
    But i am very new to java concepts. So to be little clear let me explain to your points for better understanding.
    1) While creating proxy, did you copy the wsdl into the project? Yes i copied wsdl as document steps
    2) Can you check logs and try to get more details on the error. There must be more details on the exception after that sentence "2 counts of InAccessibleWSDLException".Could you please tell me which log you talking about. I got this error *"2 counts of InAccessibleWSDLException".* in Jdev while testing. Please let me know path to see the log.
    3) Very less chances, but is the WSDL definition of security aspects to invoke service changed ? Not sure about security aspects.. Please tell me how to check it.
    4) Make <load-on-startup> value to 1 instead of zero.Please tell me steps to do this
    Regards,
    Tarak

  • Error while implementing quartz-1.8.4 in weblogic server

    Hi,
    I am working on a scenario wherein the BPEL process has to be triggered at a particular interval.
    For this, I followed a helpful url: https://blogs.oracle.com/sdhurjati/entry/ready_to_use_quartz_scheduler
    It is working fine.
    But before deploying the project to weblogic server, I changed the quartz_jobs.xml to trigger the "AnotherEchoService" after every 30 secs. For 3-4 times, it is able to trigger successfully. But, after that I am getting below exception:
    [INFO] 11 Sep 10:47:00.003 AM 'QuartzScheduler'_Worker-3 [org.quartz.plugins.his
    tory.LoggingTriggerHistoryPlugin]
    Trigger DEFAULT.AnotherEchoServiceTrigger fired job DEFAULT.AnotherEchoService a
    t: 10:47:00 09/11/2012
    [DEBUG] 11 Sep 10:47:00.003 AM 'QuartzScheduler'_Worker-3 [org.quartz.core.JobRu
    nShell]
    Calling execute on job DEFAULT.AnotherEchoService
    java.lang.UnsupportedOperationException: This class does not support SAAJ 1.1
    at weblogic.webservice.core.soap.SOAPMessageImpl.getSOAPBody(SOAPMessage
    Impl.java:631)
    at com.oracle.quartz.scheduler.WSInvocationJob.execute(WSInvocationJob.j
    ava:89)
    at org.quartz.core.JobRunShell.run(JobRunShell.java:216)
    at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.j
    ava:549)
    <11 Sep, 2012 10:47:00 AM IST> <Error> <Default> <BEA-000000> <java.lang.Unsuppo
    rtedOperationException: This class does not support SAAJ 1.1>
    [INFO] 11 Sep 10:47:00.015 AM 'QuartzScheduler'_Worker-3 [org.quartz.plugins.his
    tory.LoggingTriggerHistoryPlugin]
    Trigger DEFAULT.AnotherEchoServiceTrigger completed firing job DEFAULT.AnotherEc
    hoService at 10:47:00 09/11/2012.
    Could anyone please help me in getting the fix of it?
    Thanks in advance..

    http://lmgtfy.com/?q=SAAJ+1.1
    2nd hit:
    https://blogs.oracle.com/sravansarraju/entry/weblogic_saaj_version_problem_javalangunsupportedoperationexception_this_class_does_not_support_saaj

  • OIM DB Row LOCK Exception on Quartz tables

    I am facing db row lock error in Prod OIM due to which the Scheduler fails to kick off and an OIM Restart is required to release the lock and start the Scheduler again.
    This Error is occuring at any time when none of the scheduler( Custom as well as House Keeping) are scheduled.The OIM Version is 9.0.3.1.
    I have enabled Database logs in Debug mode but there are no logs corresponding to the table where lock occured.
    This Error was encountered long back with OIM 9.0.1 and was reported as Bug 6491465, but was suspended because of no response from Customer.
    The Error trace is as follows
    ERROR,11 Sep 2009 16:57:05,497,[org.quartz.core.ErrorLogger],An error occured while scanning for the next trigger to fire.
    org.quartz.impl.jdbcjobstore.LockException: Failure obtaining db row lock: Io exception: Connection reset [See nested exception: java.sql.SQLException: Io ex
    ception: Connection reset]
    at org.quartz.impl.jdbcjobstore.StdRowLockSemaphore.obtainLock(StdRowLockSemaphore.java:154)
    at org.quartz.impl.jdbcjobstore.JobStoreCMT.acquireNextTrigger(JobStoreCMT.java:1376)
    at org.quartz.core.QuartzSchedulerThread.run(QuartzSchedulerThread.java:231)
    * Nested Exception (Underlying Cause) ---------------
    java.sql.SQLException: Io exception: Connection reset
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:138)
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:175)
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:287)
    at oracle.jdbc.driver.T4CPreparedStatement.execute_for_describe(T4CPreparedStatement.java:515)
    at oracle.jdbc.driver.OracleStatement.execute_maybe_describe(OracleStatement.java:1029)
    at oracle.jdbc.driver.T4CPreparedStatement.execute_maybe_describe(T4CPreparedStatement.java:535)
    at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1126)
    at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3001)
    at oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatement.java:3043)
    at org.apache.commons.dbcp.DelegatingPreparedStatement.executeQuery(DelegatingPreparedStatement.java:92)
    at org.quartz.impl.jdbcjobstore.StdRowLockSemaphore.obtainLock(StdRowLockSemaphore.java:137)
    at org.quartz.impl.jdbcjobstore.JobStoreCMT.acquireNextTrigger(JobStoreCMT.java:1376)
    at org.quartz.core.QuartzSchedulerThread.run(QuartzSchedulerThread.java:231)
    Did anyone had ever encountered this error.Any Hints?

    I would check the network pieces as suggested in our internal emails. If the connection is dropping somewhere on your network, the lock would never be released.
    -Kevin

  • Quartz Compositions no longer working in Keynote

    Anyone having any luck inserting movies exported from Quartz Composer or raw .qtz files?
    We use a lot of that for backgrounds and effects, and in Keynote 5.0 all we get is a solid white rectangle instead of all that coolness.

    OK. Just discovered something interesting.
    Short version: If I set my MacBook Pro's graphics performance to "slower but more power efficient", the imported Quartz Composer clips suddenly works. If I set it to "faster but battery draining" I get the white rectangle.
    Long version: I got a new MacBook Pro, with a later version of QuickTime installed (7.5.7) than the dowloadable one. This version, I guess, has support for the special switchable graphic processors in the current MacBook Pro. It now seems that with this QuickTime version, the slower graphics chip (nVidia GeForce 9400M) can play the .qtz files in Keynote 5, but the faster one (nVidia GeForce 9600M GT) can't.
    But this is true only for Keynote 5. My old Keynote 4 plays them happily regardless of graphics setting.
    So, to use all the graphics power of my Mac, I guess I'll need a bug fix for either Keynote or QuickTime, or both.

Maybe you are looking for

  • Problem install Oracle 8i (8.1.7) on Linux Mandrake 8.1

    Hello, I want to install Oracle 8i Enterprise Edition (8.1.7) on a Linux Server (distribution : Mandrake 8.1). I do all the task execpt the kernel configuration : - swap 273Mo + a temprorary file swap 300Mo - glibx 2.1 installation (compatibility fro

  • Customer not determine in sales order

    Hi all, While i'm creating sales order,i'm getting error like "no customer exit for sold to party 7000000" . Please sort out my problem as soon as possible. I have checked entire partner determination procedure. There all setting is fine. Thanks & re

  • Consuming stateful web service via ABAP proxy

    Hi all, I´ve got the following scenario. I´ve a ABAP proxy generated based on a WSDL file. The provider is a WebService provided by a tomcat server. (no PI etc. as middleware). The problem i´ve now is that the webservice is stateful so I need a state

  • Report containing bar chart

    I am new to charts in crystal reports. In my database i am having 200 students. In that i have one coloumn which is containing the ranks of student (1,2,3,..). In the report , i need to display, 1) X-axis ->ranks should be dispalyed (1,2,3,4,5) 2) Y-

  • HTML colum format

    Trying to format a html output in sqlplus. Report out ok, 1 of my columns just doesnt want to change its width and its wrapping. The col width is varchar2 50 and can have varying sentences in it. All words are wrapping. so for example if the data has