Kodo not recovering from bad connection in new MySQL driver

Hi,
     I'm using kodo 2.4.1 and the latest stable MySQL driver 3.0.6. After
leaving the application inactive for a few hours, the connection to
mysql is no longer usable. This did not occur with MySQL version 2.0.14
(as I believe Kodo weren't reusing the connections).
     Are there any properties that I could set, so Kodo can keep the
connection active or recover from the problem?
Makas

Ok, thanks Marc, like I said though, I am now re-using MySQL 2.0.14
driver. I'm not sure if I'm gaining any advantages with MySQL 3.0.6 anyway.
But I'll probably upgrade it after the next Kodo is released.
Makas
Marc Prud'hommeaux wrote:
Makas-
Sorry ... I didn't test the property I sent. The problem is that our
options parsing does not deal with spaces (this will be fixed in the
next release).
Instead of ValidateConnectionSQL="SELECT 1", you should be able to use
ValidateConnectionSQL=SELECT(1), which does not contain spaces.
In article <[email protected]>, Makas Tzavellas wrote:
Marc,
Using the properties you wrote, kodo doesn't seems to be able to parse
it. I've also tried various other combinations with no success. I'm now
going to use the older mysql driver.
Marc Prud'hommeaux wrote:
Makas-
Kodo should be re-using the MySQL Connection in exactly the same way,
regardless of the version. The problem is that it looks like MySQL people
slipped in an "optimization" into 3.0.6 whereby Connection.isClosed()
does not actually test the state of the Connection, but instead just
returns true if and only if Connection.close() has been invoked.
You can get around this by specifying some SQL to validate the
Connections. The following property should do the trick:
com.solarmetric.kodo.impl.jdbc.DictionaryProperties=\
ValidateConnections=true \
ValidateConnectionSQL="SELECT 1"
Please let us know if the problem persists.
In article <[email protected]>, Makas Tzavellas wrote:
Hi Marc,
     Here're the stack trace of the exception and the kodo properties. There
isn't any long running transaction. The application is basically left
idle for some time and subsequent connections fails. It could be
connections obtained from the pool, but I'm not sure.
     I will re-use mysql 2.0.14 for now. Please let me know if I'm missing
any other properties or if you need more info.
# Kodo JDO Properties configuration
# To evaluate or purchase a license key, visit http://www.solarmetric.com
com.solarmetric.kodo.CacheReferenceSize=1000
com.solarmetric.kodo.ee.ManagedRuntimeProperties=TransactionManagerName=java:/TransactionManager
javax.jdo.PersistenceManagerFactoryClass=com.solarmetric.kodo.impl.jdbc.JDBCPersistenceManagerFactory
javax.jdo.option.ConnectionDriverName=org.gjt.mm.mysql.Driver
javax.jdo.option.ConnectionUserName=
javax.jdo.option.ConnectionPassword=
javax.jdo.option.ConnectionURL=jdbc:mysql://hostname/database?useUnicode=true&characterEncoding=UTF-8&autoReconnect=true
javax.jdo.option.MinPool=0
javax.jdo.option.MaxPool=20
javax.jdo.option.Optimistic=true
javax.jdo.option.RetainValues=true
javax.jdo.option.NontransactionalRead=false
com.solarmetric.kodo.impl.jdbc.ConnectionTestTimeout=10
com.solarmetric.kodo.impl.jdbc.AutoReturnTimeout=10
com.solarmetric.kodo.impl.jdbc.DictionaryClass=com.solarmetric.kodo.impl.jdbc.schema.dict.MySQLDictionary
com.solarmetric.kodo.DataCacheProperties=Port=5555
Addresses=repository2.kl.ewarna.com:5555;repository.kl.ewarna.com:5555
CacheSize=5000
com.solarmetric.kodo.DataCacheClass=com.ewarna.pdm.sessions.PDMCache
=========== Stack Trace ================================
Communication link failure: java.io.IOException [code=0;state=08S01]
NestedThrowables:
com.solarmetric.kodo.impl.jdbc.sql.SQLExceptionWrapper:
[SQL=SELECT t0.M_IDX, t3.JDOCLASSX, t3.JDOLOCKX, t3.M_CREATIONDATEX,
t3.M_DELETEDDATEX, t3.M_HOSTADDRESSX, t3.M_LASTMODIFIEDDATEX,
t3.M_NAMEX, t3.M_OLDIDX, t3.M_ID_M_OWNERX, t0.M_ID_M_ACCOUNTX,
t0.M_FULLNAMEX, t0.M_PASSWORDX, t0.M_PASSWORDEXPIRYDATEX, t3.M_NAMEX
>>>>FROM ABSTRACTENTITYX t2, ABSTRACTENTITYX t3, Accounts t1, Users t0 WHERE>>>>>>>((((((t2.M_NAMEX = 'development' AND t3.M_NAMEX = 'ewarna') AND>>>>(t3.M_DELETEDDATEX IS NULL)) AND (t2.M_DELETEDDATEX IS NULL)) AND>>>>(t3.M_DELETEDDATEX IS NULL)) AND t3.JDOCLASSX =>>>>'com.ewarna.pdm.entities.storage.UserPE') AND t0.M_IDX = t3.M_IDX AND>>>>t0.M_ID_M_ACCOUNTX = t1.M_IDX AND t1.M_IDX = t2.M_IDX) ORDER BY>>>>t3.M_NAMEX ASC
[PRE=SELECT t0.M_IDX, t3.JDOCLASSX, t3.JDOLOCKX, t3.M_CREATIONDATEX,
t3.M_DELETEDDATEX, t3.M_HOSTADDRESSX, t3.M_LASTMODIFIEDDATEX,
t3.M_NAMEX, t3.M_OLDIDX, t3.M_ID_M_OWNERX, t0.M_ID_M_ACCOUNTX,
t0.M_FULLNAMEX, t0.M_PASSWORDX, t0.M_PASSWORDEXPIRYDATEX, t3.M_NAMEX
>>>>FROM ABSTRACTENTITYX t2, ABSTRACTENTITYX t3, Accounts t1, Users t0 WHERE>>>>>>>((((((t2.M_NAMEX = ? AND t3.M_NAMEX = ?) AND (t3.M_DELETEDDATEX IS>>>>NULL)) AND (t2.M_DELETEDDATEX IS NULL)) AND (t3.M_DELETEDDATEX IS NULL))>>>>AND t3.JDOCLASSX = ?) AND t0.M_IDX = t3.M_IDX AND t0.M_ID_M_ACCOUNTX =>>>>t1.M_IDX AND t1.M_IDX = t2.M_IDX) ORDER BY t3.M_NAMEX ASC
Communication link failure: java.io.IOException
     at
com.solarmetric.kodo.impl.jdbc.runtime.SQLExceptions.throwDataStore(SQLExceptions.java:23)
     at
com.solarmetric.kodo.impl.jdbc.runtime.JDBCStoreManager.executeQuery(JDBCStoreManager.java:742)
     at
com.solarmetric.kodo.impl.jdbc.runtime.JDBCQuery.executeQuery(JDBCQuery.java:92)
     at com.solarmetric.kodo.query.QueryImpl.executeWithMap(QueryImpl.java:792)
     at
com.ewarna.pdm.sessions.BasicQuery.getByAdvancedFormula(BasicQuery.java:137)
     at
com.ewarna.pdm.sessions.BasicQuery.getByAdvancedFormula(BasicQuery.java:65)
     at com.ewarna.pdm.sessions.BasicQuery.getByFormula(BasicQuery.java:205)
     at
com.ewarna.handlers.storage.SessionHandler$1.execute(SessionHandler.java:116)
     at
com.ewarna.pdm.sessions.JDOCallBackExecutor.execute(JDOCallBackExecutor.java:40)
     at
com.ewarna.handlers.storage.SessionHandler.login(SessionHandler.java:140)
     at
com.ewarna.pdm.soap.AbstractSoapService.login(AbstractSoapService.java:44)
     at
com.ewarna.pdm.soap.xfs.SoapServiceXFSImpl.login(SoapServiceXFSImpl.java:1199)
     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
     at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
     at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
     at java.lang.reflect.Method.invoke(Method.java:324)
     at org.apache.soap.server.RPCRouter.invoke(RPCRouter.java:146)
     at
org.apache.soap.providers.RPCJavaProvider.invoke(RPCJavaProvider.java:129)
     at
org.apache.soap.server.http.RPCRouterServlet.doPost(RPCRouterServlet.java:354)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
     at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247)
     at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
     at
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:260)
     at
org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
     at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
     at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
     at
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
     at
org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
     at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
     at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
     at
org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2396)
     at
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180)
     at
org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
     at
org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:170)
     at
org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
     at
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:172)
     at
org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
     at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
     at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
     at
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:174)
     at
org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
     at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
     at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
     at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:223)
     at
org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:405)
     at
org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:380)
     at
org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:508)
     at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:533)
     at java.lang.Thread.run(Thread.java:536)
NestedThrowablesStackTrace:
java.sql.SQLException: Communication link failure: java.io.IOException
     at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:1606)
     at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:886)
     at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:945)
     at com.mysql.jdbc.Connection.execSQL(Connection.java:1809)
     at
com.mysql.jdbc.PreparedStatement.executeQuery(PreparedStatement.java:1458)
     at
com.solarmetric.datasource.PreparedStatementWrapper.executeQuery(PreparedStatementWrapper.java:93)
     at
com.solarmetric.kodo.impl.jdbc.SQLExecutionManagerImpl.executePreparedQueryInternal(SQLExecutionManagerImpl.java:769)
     at
com.solarmetric.kodo.impl.jdbc.SQLExecutionManagerImpl.executeQueryInternal(SQLExecutionManagerImpl.java:692)
     at
com.solarmetric.kodo.impl.jdbc.SQLExecutionManagerImpl.executeQuery(SQLExecutionManagerImpl.java:373)
     at
com.solarmetric.kodo.impl.jdbc.SQLExecutionManagerImpl.executeQuery(SQLExecutionManagerImpl.java:357)
     at
com.solarmetric.kodo.impl.jdbc.ormapping.ClassMapping.selectPrimaryMappings(ClassMapping.java:1221)
     at
com.solarmetric.kodo.impl.jdbc.runtime.JDBCStoreManager.executeQuery(JDBCStoreManager.java:717)
     at
com.solarmetric.kodo.impl.jdbc.runtime.JDBCQuery.executeQuery(JDBCQuery.java:92)
     at com.solarmetric.kodo.query.QueryImpl.executeWithMap(QueryImpl.java:792)
     at
com.ewarna.pdm.sessions.BasicQuery.getByAdvancedFormula(BasicQuery.java:137)
     at
com.ewarna.pdm.sessions.BasicQuery.getByAdvancedFormula(BasicQuery.java:65)
     at com.ewarna.pdm.sessions.BasicQuery.getByFormula(BasicQuery.java:205)
     at
com.ewarna.handlers.storage.SessionHandler$1.execute(SessionHandler.java:116)
     at
com.ewarna.pdm.sessions.JDOCallBackExecutor.execute(JDOCallBackExecutor.java:40)
     at
com.ewarna.handlers.storage.SessionHandler.login(SessionHandler.java:140)
     at
com.ewarna.pdm.soap.AbstractSoapService.login(AbstractSoapService.java:44)
     at
com.ewarna.pdm.soap.xfs.SoapServiceXFSImpl.login(SoapServiceXFSImpl.java:1199)
     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
     at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
     at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
     at java.lang.reflect.Method.invoke(Method.java:324)
     at org.apache.soap.server.RPCRouter.invoke(RPCRouter.java:146)
     at
org.apache.soap.providers.RPCJavaProvider.invoke(RPCJavaProvider.java:129)
     at
org.apache.soap.server.http.RPCRouterServlet.doPost(RPCRouterServlet.java:354)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
     at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247)
     at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
     at
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:260)
     at
org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
     at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
     at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
     at
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
     at
org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
     at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
     at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
     at
org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2396)
     at
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180)
     at
org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
     at
org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:170)
     at
org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
     at
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:172)
     at
org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
     at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
     at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
     at
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:174)
     at
org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
     at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
     at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
     at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:223)
     at
org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:405)
     at
org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:380)
     at
org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:508)
     at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:533)
     at java.lang.Thread.run(Thread.java:536)
Marc Prud'hommeaux wrote:
Makas-
Is Kodo idle during a long-running transaction, or does the error occur
when a new Connection is allocated? If the former, then there is nothing
we can do: MySQL shouldn't be dropping an open Connection while a
transaction is active. If the latter, then the property
com.solarmetric.kodo.impl.jdbc.ConnectionTestTimeout specified the
number of seconds between which the connection should be tested for
valididty when removed from the pool.
See also:
http://docs.solarmetric.com/manual.html#com.solarmetric.kodo.impl.jdbc.ConnectionTestTimeout
If this does not help, can you let us know your properties and some
details about your application?
In article <[email protected]>, Makas Tzavellas wrote:
Hi,
     I'm using kodo 2.4.1 and the latest stable MySQL driver 3.0.6. After
leaving the application inactive for a few hours, the connection to
mysql is no longer usable. This did not occur with MySQL version 2.0.14
(as I believe Kodo weren't reusing the connections).
     Are there any properties that I could set, so Kodo can keep the
connection active or recover from the problem?
Makas

Similar Messages

  • How to recover from bad development of masterhead or layout or nav panel

    Hi all:
          I begin to modify framework of our portal,  but I am new to it, my question is how to recover from bad development of masterhead or layout or nav panel, there is error in my development.
    thank you very much for your reply

    Hi,
    ARe you able to access Content admin and system admin from your portal now?
    What is the error its occuring.
    Try to modify the rule collection to point to default desktop.
    Best Wishes
    Idhaya R

  • DVD Player encountered an error it could not recover from

    When I try to play a disk that has been burned on a VCR/DVD combo machine, I very often get an error message that says:
    "DVD Player encountered an error it could not recover from
    There was an error reading from disc. It might be scratched or dirty. [-36]"
    and then it quits. Sometimes I have been able to play a disc, after several tries, as it errors later and later, but also sometimes not.
    PowerBook G4   Mac OS X (10.3.9)   Processor: 1.25 GHz PowerPC G4; Memory: 512 MB SDRAM

    When the player quit yesterday one time it brought up the report to Apple window, so I got the error code. Here it is:
    Date/Time: 2007-04-05 17:23:45 -0500
    OS Version: 10.3.9 (Build 7W98)
    Report Version: 2
    Command: DVD Player
    Path: /Applications/DVD Player.app/Contents/MacOS/DVD Player
    Version: 4.0 (4.0)
    PID: 603
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNINVALIDADDRESS (0x0001) at 0xf47c0800
    Thread 0 Crashed:
    0 <<00000000>> 0xf47c0800 0 + 0xf47c0800
    1 com.apple.DVDPlayer 0x0003f8c4 0x1000 + 0x3e8c4
    2 com.apple.CoreFoundation 0x901c45f8 __CFRunLoopDoTimer + 0xf4
    3 com.apple.CoreFoundation 0x901c1958 __CFRunLoopRun + 0x5c8
    4 com.apple.CoreFoundation 0x901c5e6c CFRunLoopRunSpecific + 0x148
    5 com.apple.HIToolbox 0x92885f60 RunCurrentEventLoopInMode + 0xac
    6 com.apple.HIToolbox 0x9288c6c8 ReceiveNextEventCommon + 0x17c
    7 com.apple.HIToolbox 0x928ae1a0 AcquireNextEventInMode + 0x48
    8 com.apple.HIToolbox 0x928e2514 _TrackMouseLocationReturningEvent + 0x120
    9 com.apple.HIToolbox 0x9292dd28 _ZN6HIView18BasicTrackInternalERK7CGPointmsPFvP16OpaqueControlRefsEhPK10GlyphSt atePm + 0x258
    10 com.apple.HIToolbox 0x92916928 _ZN6HIView9TrackSelfEP14OpaqueEventRefPs + 0x1d8
    11 com.apple.HIToolbox 0x92884958 _ZN6HIView12EventHandlerEP25OpaqueEventHandlerCallRefP14OpaqueEventRefPv + 0x828
    12 com.apple.HIToolbox 0x92881fa0 DispatchEventToHandlers + 0x150
    13 com.apple.HIToolbox 0x92882214 SendEventToEventTargetInternal + 0x174
    14 com.apple.HIToolbox 0x92886694 SendEventToEventTargetWithOptions + 0x28
    15 com.apple.HIToolbox 0x9291fa2c _Z19SendControlDefTrackP6HIViewRK7CGPointPmPFvP16OpaqueControlRefsEPs + 0xdc
    16 com.apple.HIToolbox 0x92945308 _ZN6HIView13ClickInternalERK7CGPointmPFvP16OpaqueControlRefsEb + 0x5c
    17 com.apple.HIToolbox 0x9294b05c _ZN6HIView9ClickSelfEP14OpaqueEventRef + 0x124
    18 com.apple.HIToolbox 0x92885944 _ZN6HIView12EventHandlerEP25OpaqueEventHandlerCallRefP14OpaqueEventRefPv + 0x1814
    19 com.apple.HIToolbox 0x92881fa0 DispatchEventToHandlers + 0x150
    20 com.apple.HIToolbox 0x92882214 SendEventToEventTargetInternal + 0x174
    21 com.apple.HIToolbox 0x928946bc SendEventToEventTarget + 0x28
    22 com.apple.HIToolbox 0x9294ae10 _ZN6HIView5ClickEP14OpaqueEventRef + 0x10c
    23 com.apple.HIToolbox 0x92999394 HIViewClick + 0x38
    24 com.apple.HIToolbox 0x92966a74 HandleClickAsHIView + 0x9c
    25 com.apple.HIToolbox 0x92934bd4 HandleWindowClick + 0x204
    26 com.apple.HIToolbox 0x92915f40 HandleMouseEvent + 0x1b8
    27 com.apple.HIToolbox 0x928d7c60 StandardWindowEventHandler + 0xa8
    28 com.apple.HIToolbox 0x92881fa0 DispatchEventToHandlers + 0x150
    29 com.apple.HIToolbox 0x92882214 SendEventToEventTargetInternal + 0x174
    30 com.apple.HIToolbox 0x928946bc SendEventToEventTarget + 0x28
    31 com.apple.HIToolbox 0x928a2d3c _Z25HandleMouseEventForWindowP15OpaqueWindowPtrP14OpaqueEventReft + 0x144
    32 com.apple.HIToolbox 0x929c3524 _Z16HandleMouseEventP14OpaqueEventRef + 0x170
    33 com.apple.HIToolbox 0x92892c5c _Z29ToolboxEventDispatcherHandlerP25OpaqueEventHandlerCallRefP14OpaqueEventRefP v + 0x1e8
    34 com.apple.HIToolbox 0x9288205c DispatchEventToHandlers + 0x20c
    35 com.apple.HIToolbox 0x92882214 SendEventToEventTargetInternal + 0x174
    36 com.apple.HIToolbox 0x928946bc SendEventToEventTarget + 0x28
    37 com.apple.HIToolbox 0x928985d8 ToolboxEventDispatcher + 0x5c
    38 com.apple.HIToolbox 0x928b57e4 HLTBEventDispatcher + 0x10
    39 com.apple.HIToolbox 0x928ab680 RunApplicationEventLoop + 0x98
    40 com.apple.DVDPlayer 0x0005b104 0x1000 + 0x5a104
    41 com.apple.DVDPlayer 0x00013a4c 0x1000 + 0x12a4c
    42 com.apple.DVDPlayer 0x00013a00 0x1000 + 0x12a00
    43 com.apple.DVDPlayer 0x000097c0 0x1000 + 0x87c0
    44 com.apple.DVDPlayer 0x00009634 0x1000 + 0x8634
    Thread 1:
    0 libSystem.B.dylib 0x90018e18 semaphoretimedwait_signaltrap + 0x8
    1 libSystem.B.dylib 0x9000e9d4 pthread_condwait + 0x268
    2 com.apple.dvdplayback 0x8a70ec14 DVDWakeUp + 0x35874
    3 com.apple.dvdplayback 0x8a70cc94 DVDWakeUp + 0x338f4
    4 com.apple.dvdplayback 0x8a70efb4 DVDWakeUp + 0x35c14
    5 com.apple.dvdplayback 0x8a6cfeb8 dyldstub_bindinghelper + 0x8c6a8
    6 libSystem.B.dylib 0x90024910 pthreadbody + 0x28
    Thread 2:
    0 libSystem.B.dylib 0x90007878 machmsgtrap + 0x8
    1 libSystem.B.dylib 0x900073f8 mach_msg + 0x38
    2 com.apple.CoreFoundation 0x901c16e0 __CFRunLoopRun + 0x350
    3 com.apple.CoreFoundation 0x901c5e6c CFRunLoopRunSpecific + 0x148
    4 com.apple.audio.CoreAudio 0x90762f80 _ZN10HALRunLoop9OwnThreadEPv + 0x104
    5 com.apple.audio.CoreAudio 0x907691e0 ZN9CAPThread5EntryEPS + 0x30
    6 libSystem.B.dylib 0x90024910 pthreadbody + 0x28
    Thread 3:
    0 libSystem.B.dylib 0x900147a8 semaphorewaittrap + 0x8
    1 com.apple.dvdplayback 0x8a6cf9f8 dyldstub_bindinghelper + 0x8c1e8
    2 com.apple.dvdplayback 0x8a6630a4 dyldstub_bindinghelper + 0x1f894
    3 com.apple.dvdplayback 0x8a68486c dyldstub_bindinghelper + 0x4105c
    4 com.apple.dvdplayback 0x8a6cfeb8 dyldstub_bindinghelper + 0x8c6a8
    5 libSystem.B.dylib 0x90024910 pthreadbody + 0x28
    Thread 4:
    0 libSystem.B.dylib 0x900147a8 semaphorewaittrap + 0x8
    1 com.apple.dvdplayback 0x8a6cf9f8 dyldstub_bindinghelper + 0x8c1e8
    2 com.apple.dvdplayback 0x8a664278 dyldstub_bindinghelper + 0x20a68
    3 com.apple.dvdplayback 0x8a6cfeb8 dyldstub_bindinghelper + 0x8c6a8
    4 libSystem.B.dylib 0x90024910 pthreadbody + 0x28
    PPC Thread State:
    srr0: 0xf47c0800 srr1: 0x4200f030 vrsave: 0x00000000
    cr: 0x24222422 xer: 0x20000002 lr: 0x0006de08 ctr: 0xf47c0803
    r0: 0x00000000 r1: 0xbfffe250 r2: 0x0004c57b r3: 0x018ff200
    r4: 0xbfffe294 r5: 0x00000054 r6: 0x00000000 r7: 0x448ac000
    r8: 0x444a0000 r9: 0xa28a8670 r10: 0x929455e4 r11: 0x44222224
    r12: 0xf47c0803 r13: 0x00000000 r14: 0x00000000 r15: 0x00000001
    r16: 0x00000000 r17: 0x00000000 r18: 0xa01c13a8 r19: 0x00000000
    r20: 0x00000000 r21: 0x00000000 r22: 0x0040aa90 r23: 0x0040aba8
    r24: 0xa01c450c r25: 0xa00016b4 r26: 0x0000003f r27: 0x34ab91ed
    r28: 0x004e7390 r29: 0x018ff200 r30: 0x00000000 r31: 0x0045e460
    Binary Images Description:
    0x1000 - 0xf3fff com.apple.DVDPlayer 4.0 /Applications/DVD Player.app/Contents/MacOS/DVD Player
    0x76f000 - 0x770fff com.apple.aoa.halplugin 2.5.0 /System/Library/Extensions/IOAudioFamily.kext/Contents/PlugIns/AOAHALPlugin.bun dle/Contents/MacOS/AOAHALPlugin
    0x427a000 - 0x431dfff com.apple.audio.units.Components 1.3.2 /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x439f000 - 0x43dbfff com.apple.iSightAudio 6.5.2 /Library/Audio/Plug-Ins/HAL/iSightAudio.plugin/Contents/MacOS/iSightAudio
    0x4966000 - 0x4966fff com.apple.applescript.component 1.9.3 /System/Library/Components/AppleScript.component/Contents/MacOS/AppleScript
    0x497c000 - 0x4982fff com.apple.ATIRadeon9700GA 1.3.42 (3.4.2) /System/Library/Extensions/ATIRadeon9700GA.plugin/Contents/MacOS/ATIRadeon9700G A
    0x498c000 - 0x498e7fa cssloader2Í PEF binary: cssloader2Í
    0x49c0000 - 0x4a18fff com.apple.AppleVADriver 2.3.13 /System/Library/Extensions/AppleVADriver.bundle/Contents/MacOS/AppleVADriver
    0x4a83000 - 0x4adbfff com.apple.AppleVADriver 2.3.13 /System/Library/Extensions/AppleVADriver.bundle/Contents/MacOS/AppleVADriver
    0x4b46000 - 0x4b9efff com.apple.AppleVADriver 2.3.13 /System/Library/Extensions/AppleVADriver.bundle/Contents/MacOS/AppleVADriver
    0x80830000 - 0x8090efff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x8a640000 - 0x8a7a3fff com.apple.dvdplayback 4.1.5 (4150) /System/Library/Frameworks/DVDPlayback.framework/Versions/A/DVDPlayback
    0x8b6e0000 - 0x8b6e3fff com.apple.VSP.framework 2.1 /System/Library/PrivateFrameworks/VSP.framework/VSP
    0x8be9d000 - 0x8bea2fff com.apple.AppleVAFramework 2.3.13 /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x8f000000 - 0x8f00afff com.apple.DVDFramework 3.3.0 /System/Library/PrivateFrameworks/DVD.framework/DVD
    0x8f060000 - 0x8f105fff com.apple.applescript 1.9.3 /System/Library/PrivateFrameworks/AppleScript.framework/Versions/A/AppleScript
    0x8fe00000 - 0x8fe4ffff dyld /usr/lib/dyld
    0x90000000 - 0x9014ffff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x901c0000 - 0x9026dfff com.apple.CoreFoundation 6.3.7 (299.35) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x902b0000 - 0x90529fff com.apple.CoreServices.CarbonCore 10.3.7 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x905a0000 - 0x90610fff com.apple.framework.IOKit 1.3.6 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90640000 - 0x906c8fff com.apple.CoreServices.OSServices 3.0.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x9071d000 - 0x9072cfff libPSRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libPSRIP.A.dylib
    0x90733000 - 0x90740fff com.apple.CommonPanels 1.2.1 (1.0) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x90750000 - 0x907b7fff com.apple.audio.CoreAudio 2.1.2 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x90810000 - 0x90810fff com.apple.ApplicationServices 1.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x90860000 - 0x908cffff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x908f5000 - 0x90912fff com.apple.audio.SoundManager 3.8 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x90940000 - 0x909b3fff com.apple.DesktopServices 1.2.4 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x90a20000 - 0x90b7bfff com.apple.Foundation 6.3.6 (500.58) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x90c70000 - 0x90c8afff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x90cb0000 - 0x90d12fff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x90d40000 - 0x90d40fff com.apple.Carbon 10.3 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x90d50000 - 0x90d6bfff com.apple.SystemConfiguration 1.7.1 (???) /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x90d7c000 - 0x90d8cfff com.apple.speech.recognition.framework 3.3 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x90db0000 - 0x90dbbfff com.apple.opengl 1.3.8 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x90ec0000 - 0x90ec0fff com.apple.Cocoa 6.3 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x910e0000 - 0x91133fff com.apple.bom 1.2.5 (63.2) /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x91141000 - 0x91141fff com.apple.CoreServices 10.3 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x91251000 - 0x9125afff com.apple.DiskArbitration 2.0.5 /System/Library/PrivateFrameworks/DiskArbitration.framework/Versions/A/DiskArbi tration
    0x912e0000 - 0x912f7fff com.apple.LangAnalysis 1.5.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x913a0000 - 0x9145ffff ColorSync /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x914ad000 - 0x9156ffff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x915e0000 - 0x91699fff com.apple.QD 3.4.67 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x916f0000 - 0x91728fff com.apple.AE 1.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x91760000 - 0x917f3fff com.apple.print.framework.PrintCore 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x91890000 - 0x918aafff com.apple.openscripting 1.2.1 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x918d0000 - 0x918e0fff com.apple.ImageCapture 2.1.5 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x91970000 - 0x919befff com.apple.print.framework.Print 3.3 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x919e7000 - 0x91a1ffff com.apple.LaunchServices 10.3.5 (98.4) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x91a40000 - 0x91ab3fff com.apple.NavigationServices 3.3.3 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x91b10000 - 0x91b10fff com.apple.audio.units.AudioUnit 1.3.2 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x91b30000 - 0x91b44fff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x91b60000 - 0x91b6bfff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x91bb0000 - 0x91d45fff com.apple.QuickTime 6.5.2 /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x92070000 - 0x92096fff com.apple.FindByContent 1.4 (1.2) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x92170000 - 0x92357fff com.apple.security 2.4 (179) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x927f0000 - 0x92827fff com.apple.CFNetwork 1.2.2 (7) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x9283f000 - 0x92859fff libPDFRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libPDFRIP.A.dylib
    0x92880000 - 0x92c05fff com.apple.HIToolbox 1.3.6 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x92de0000 - 0x92e30fff com.apple.HIServices 1.4.1 (0.0.1d1) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x92e70000 - 0x9336ffff com.apple.AppKit 6.3.7 (743.36) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x93680000 - 0x93958fff com.apple.CoreGraphics 1.203.30 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x939d0000 - 0x939d4fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x93a50000 - 0x93a64fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x93a6a000 - 0x93a84fff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x93c00000 - 0x93ca3fff com.apple.audio.toolbox.AudioToolbox 1.3.2 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x93cec000 - 0x93d04fff com.apple.WebServices 1.1.1 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x94580000 - 0x9458bfff com.apple.securityhi 1.2 (90) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x94593000 - 0x9459ffff com.apple.help 1.0.1 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x945b0000 - 0x945b9fff libz.1.dylib /usr/lib/libz.1.dylib
    0x94650000 - 0x946affff com.apple.SearchKit 1.0.2 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x946ed000 - 0x94700fff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x94800000 - 0x9488cfff com.apple.ink.framework 101.1.4 (55.12) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x94e0b000 - 0x94e1efff com.apple.speech.synthesis.framework 3.2 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x954c0000 - 0x95ac6fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x95b20000 - 0x95df0fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x95f00000 - 0x95f20fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x968d0000 - 0x969b2fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x96a04000 - 0x96a6dfff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x96aa0000 - 0x96acefff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x96b50000 - 0x96bdffff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x96cb0000 - 0x96d9efff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x96de0000 - 0x96df0fff com.apple.vecLib 3.0.3 (vecLib 3.0.3) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x96ee0000 - 0x96ee8fff libbsm.dylib /usr/lib/libbsm.dylib
    0x97345000 - 0x973b2fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib

  • IOS8.1 does not recover from soft reset on iPhone 6

    My iPhone 6 does not recover from a soft reset (holding the home and power key until you see the apple).  It stays in the white screen with the black apple and never returns.  The reset was necessary due to a profile change request. What is the solution and how are correct resets performed?

    Hello jeffrey281,
    Thanks for using Apple Support Communities.
    To troubleshoot this issue where your iPhone will not boot past the Apple logo, please follow the steps in the article linked to below.
    iOS: Not responding or does not turn on
    Take care,
    Alex H.

  • Help! Help! Help! Can not reinstal vista after replacing a new hard drive

    Can not reinstal vista after replacing a new hard drive (1TB WD 10EZEX) in HP Pavilion a6658f Desktop PC with recovery disc.
    I saw in the screen:
    "Windows setup could not configure windows to run on this computer's hardware"
    Product:
    HP Pavilion a6658f Desktop PC
    OS: pre-installed window vista with sp1 
    Product number:   FK575AA
    Bought in Canada
    Thank you.

    Thank you so much Lisa27,
    win vista installed to new WD 1tb hard drive. How?
    1. use  http://support.wd.com/product/download.asp?groupid=606&lang=en
    >Data Lifeguard for Windows  , write zero and to test the new hard drive,
    2. use Acronics true image 2013 to do partition on the new HD, and then to clone from the old HD to new HD.
    3. down load Intel Rapid Storage Tech to fix the Issues with Windows Vista* and Intel® RAID  (without it, Window mail can not be opened.
    Thank you very much for all your guys again and the support form WD support team.

  • Can bad PRAM (CMOS) battery be "guilty" for MBP not recovering from sleep?

    I have MBP 4.1 (last with removable battery) and it wont recover from sleep... i tried reseting SMC but no effect (three months ago SMC reset worked well for me). I tried removing/inserting RAM, HDD, CMOS Battery but nothing can make my MBP recover from sleep . Does anyone have expirience similar to mine? Solutions? Suggestions?

    I would not expect a dead PRAM battery to casue that. If it did, zapping the PRAM would restore function until the computer was again deprived of all power--wall and main battery.
    Can the computer run at all? If you can get it to wake up, that is a different set of issues than one that will not wake up at all.
    If it won't wake up at  all: Remember that the MacBook Pro 4,1 had the dreaded "Nvidea curse." The Geforce 8600M GT video chipset was prone to failure due to improper manufacturing by Nvidea. Apple had a repair program to fix this at no cost to you but it expired in Dec 2012. Mine waited until June 2013 to die. It's still dead.
    The only cure for the "Curse" is a new logic board. An Apple service provider may still have the hardware tester that positively identifies if the video chipset has failed.
    If you can get the computer running: there was a sleep issue with mine (3,1 but same logic board architecture) but it went away when I upgraded from 10.5 to 10.6. Still, worth checking if you get the comptuer running. Open Network preferences and select Wi-Fi. When that screen comes up, click the Advanced button--it should come up with the WiFi tab active; if not, make is so.
    Now delete any wireless networks you don't use on at least a weekly basis. My old MBP refused to wake from sleep and required a restart. A check of the system log showed the computer was trying to a connect to the wifi network at a lodge I'd stayed in a month before and 50 miles away. Deleting that "remembered network" cured the problem

  • I have installed a new hard drive but can not recover from the HP 2 recovery disks

    My computer: HP Pavilion dv9825nr
    Windows Vista Home Premiu. SP 1
    My old computer (I have a new HP  laptop) had a bad hard drive so I bought a new hard drive  - 488599-001, as recommended by HP.
    When I try to restore using the diskds I bought from HP, I get an error: 0x400110020000100A.
    Windows does not recognize the hard drive and I read somewhere tghat the Vista restore disks are problematic.
    I'd appreciate any help you can give me. Good timing for expert day :-)

    Hi:
    If you think you did something in the BIOS, just set it to its defaults, save and exit.
    Here is what you need to do to make your own vista disk...
    If you're up to a slight but rewarding challenge you can make your own if you can read your 25 character Vista product key on the PC.
    Just download the 3 files you need at the link below, and read all of the instructions to create a bootable DVD installation disk using imageburn.
    Disregard the part of the text under the first screen shot about "extract the files to the Vista folder."
    The files were already extracted to that folder when you ran the X14.exe file by reading the text on top of the first screen shot.
    The other thing I noticed is on the 4th screen shot, where it shows Developer ID Microsoft Corporation. I had to type Microsoft Corporation in myself, and then the other codes automatically populated.
    When I went to compile the ISO file, ImageBurn gave a message that about a WIM file and ISO, and if I wanted to burn it in a different format.
    I selected No, make the ISO file.
    It was not that hard to do. I burned both the 64 bit disk and the 32 bit disk in case I ever need them.
    I tested both of them on my hp dc7100 CMT desktop PC, they worked perfectly.
    When you enter the product key, it knows what version of Vista you have.
    http://en.community.dell.com/support-forums/software-os/w/microsoft_os/3317.2-3-microsoft-windows-v....
    After you successfully install Vista, you can then install the drivers from your PC's support and driver page.
    Paul

  • Moving iTunes library from a hard disk with bad sectors to new hard drive

    I have tried to move my itunes library using the method proposed by Apple in the support section but it does not work because of a bad hard drive.
    I change the itunes folder in preferences. I let itunes organize my music. However, when I select consolidate music everything starts OK but stops when it hits the bad sectors on the old hard drive.
    I can copy the rest of the music to the new hard drive manually using finder. However, the music is not recognized in the new location only the old location.
    I have tried many things including moving music to another hard drive and naming it the same as the old hard drive and then trying to consolidate it. That does not work. I have tried the method of changing the library.xml file to reflect the new folder. That does not work. I am at a stand still. I have invested much time rating the music and I do not want to lose that.
    Any suggestions?
    Tom

    tonybassplayer wrote:
    Thank Chris I have just done that. How do I now get them in to Itunes ?
    If you simply copy the iTUnes folder to /Music/ and launch iTUnes, everythign will be there. No need to import anything.
    This will work the same with iPhoto.
    Simply copy the Photo library to /Pictures/ folder and launch iPhoto.

  • HP Officejet pro 8500A plus can not print from ethernet connect computer

    Setup:
    HP Officjet Pro 8500A Plus connected to a netgear wireless router using wired ethernet.
    Desktop with windows7 connected to the same netgear wireless router using wired ethernet.
    Can print from other computers connected to the the wireless router using wifi but can not print from this desktop connected using the wired ethernet.
    Can not print from the Windows7 PC which is connected to router over wired Ethernet. Printer is connected to the same router using wired Ethernet. Other notebook connected to the router over wireless prints.
    Windows7 device & Printerhows printer is ok.
     Once  a job is sent to printer, show status printing for a while after the status will show error.
    Now the status shows error
    HP Print and Scan doctors shows printer ok.
    But if you try to print the test page, unable to communicate to printer error comes.
    Tool box can read all information about the printer

    Please reload the drivers and software on the Win7 PC.  Reconfigure and try again. 
    Say thanks by clicking the Kudos Thumbs Up to the right in the post.
    If my post resolved your problem, please mark it as an Accepted Solution ...
    I worked for HP but now I'm retired!

  • Mac Pro display does not recover from sleep

    Hello,
    I have a Mac Pro Mid 2010 with two graphics cards (ATI 5770 & nVidia Geoforce GT 120) and three displays.  After intense use of the GPUs with graphics processing jobs, and after the screen goers to sleep, they do not recover.  The computer is accessible via the network (ping, ssh, etc) however, the screens blank out and no longer recover from sleep.  The only resolution is to reboot.
    I have already run memtest all just to make sure there isn't a memory issue.  All tests passed.  Also, this issue has ocurred with Mountain Lion and Mavericks.
    Does anyone have any suggestions or experiences with regard to this iussue?
    Thanks

    Update -- I now can reproduce the issue at will and it is definitely related to the sleep feature and has gotten much worse under OS X Mavericks.  Side Rant -- First let me note how disappointing Mavericks is as a platform.  Apple's output seems to be getting progressively less thought out, reliable and buggy. 
    Now back to the issue.  I created a hot corner that puts my display to sleep.  Every time I active the hot corner the system display is lost -- that is the system continues to function and respond via network (ping, ssh, etc) but no joy on un-sleeping the displays. 
    I have Mac Pro Mid 2010 w/ 2x 2.4Ghz Quad Core, 32GB RAM, ATI 5770 and NVidia Geoforce GT 120 using three displays (2x 27" Apple and 1x Panasonic 1080P HD TV) running OS X 10.9.1 (13B42).

  • MBP not recovering from sleep / Strange 'freezing' crashing...

    I'm having a VERY strange issue here.
    Over the past week, my MBP (only 4 months old?) has become suddenly unable to recover from sleep. I'll be watching a movie in FrontRow, 'sleep' it from my Apple remote, and then when it re-awakens, the screen fires up but it's black (as in, the backlight is obviously on and drive/fan spins up, but no image on display).
    Then, just tonight, I've been working on some websites, nothing too intensive, maybe running iTunes and Safari in the background alongside 'DreamWeaver', and the whole system just FROZE. I can't type, I can't move the cursor, the screen is completely frozen. I kept waiting for the familiar 'kernel panic' screen to appear or something, but I've never seen any Apple machine do this before...
    It's kinda worrying as I'm not particularly stressing the machine or anything.... any ideas??

    Try setting your SMC controller - especially if its a wake and sleep related issue.
    http://support.apple.com/kb/HT3964
    Likewise in Utilities, open 'Console' to look at your logs. There will be diagnostic messages (I hope) about the crash.
    You could also run the activity monitor to make sure processes aren't topping out and hogging the CPU.

  • TS3682 apps not transferring from old iPhone to new one

    does anyone know why im not able to sync my apps from old iPhone to new one through itunes?

    the apps also need to be downloaded into itunes have you checked that?

  • MBP not recovering from sleep

    I updated to Mavericks almost one month ago the day it was released and now my mbp doesn't recover from sleep mode, I have to force shut it down and when I turn it on again firevault says that I'm already logged in and I return to the session, like if it wasn't even shut down. This used to happen when I bought for the first time this mac and got the screen replaced and the problem was solved but now it has returned.
    Basic specs:
    OSX 10.9
    MBP Late 2011
    2.4 Core i5
    8gb ram 1333mhz ddr3
    What should I do?

    I'm trying this, it was posted on another thread by e.MinaTTi and seems to be working.
    Launch Terminal (/Applications/Utilities/Terminal.app)
    run pmset -g | grep hibernatemode
    If you see "hibernatemode     3", you may go on the process, or else you need tostop and try other solution
    run sudo pmset hibernatemode 0
    Enter your admin password

  • Transferring songs from iPod to computer (new hard drive)

    My hard drive crashed and won't be able to backup all my music/songs that are not purchased from iTunes. How would I transfer all the songs from my iPod to my new hard drive (PC)? Is there any possibility?

    Be very careful when connecting an iPod full of music to an empty iTunes library.There is very real risk of permanently losing all the music.
    To prevent auto sync, before you connect the iPod go to the iTunes preferences and select "devices", then select "disable automatic syncing for iPhones and iPods".
    An alternative method is to connect the iPod whilst holding down the 'control+shift' keys and do not let them go until your iPod appears in iTunes.
    If you see a message that your iPod is associated with a different library and asks if you want to link to a new one, make sure you press "Cancel".
    If you should click on "Erase and Sync" will erase all the content currently on your iPod and it will be replaced with the content of the iTunes library you just connected to.
    When you've pressed cancel your iPod should appear in the iTunes source list under "devices" and allow you to change the update setting to manage the iPod content manually, and that will let you use your iPod for the time being without the risk of accidentally erasing the contents.
    Then do any of the following to transfer your music from iPod back to the computer/iTunes.
    For iTunes version 7 or later, then you can transfer purchased iTunes store music from the iPod to an authorized computer by using the "file/transfer purchases from iPod" menu. Note that the maximum of 5 authorized computers applies here.
    Find out how to do that here.
    How to copy iTunes purchases from an iPod or iPhone to a computer.
    For all other non purchased content (your own CDs etc), check out the instructions/suggestions here.
    Music from iPod to computer (using option 2). This a manual method using "hidden folders" and although it works, it is a little more involved than other methods.
    Much easier ways are to use one of the many 3rd party programs that copy music from the iPod to the computer.
    One of the most recommended is Yamipod. This is a free program that transfers music from iPod back to the computer. However, it does not transfer playcounts/ratings etc.
    Other free programs are Pod Player, SharePod and Floola and iDump and iPodRobot.
    If you want to recover just the structure of playlists from the iPod (and not the actual song files themselves), there's iRepo for Windows. which I understand has this feature along with all the standard features for these programs.
    iPodRip also has the feature enabling you to reconstruct playlists.
    There is also CopyTrans. This does preserve ratings/playcounts etc if those are important to you but this program is not free. It also supports video transfer.
    More information is contained here.
    Copying content from your iPod to your computer - The Definitive Guide.

  • 3rd gen iPod will not complete the RESTORE process with new Hard Drive

    I have an 3rd gen iPod and I have replaced the hard drive with a newer MK2006GAL. The drive formats fine with a USB cable, formating Mac OS Extended Journaled. It will not complete a "restore" when connected via FireWire in iTunes or with any ipod updater utility. this happens on any mac (we have several). It will not even see the iPod updater when connected via USB and it says MUST CONNECT WITH A FIREWIRE CABLE. It will not format with Disk Utility when connected with the Apple FireWire cable only USB. This is the second new hard drive I have tried. I thought the first "replacement drive" was bad. Turns out it must be something else. Does this sound like a bad battery or motherboard or bad FireWire cable to you? The connectors look fine (under magnification). other problems, while this iPod will not Restore properly, it also will not turn off.
    Would like to know if anyone else has seen this trouble.
    thanks.
    Powermac G4 1.25 MDD, OS9/OSX, 3rd gen iPod   Mac OS X (10.3.9)  
    Powermac G4 1.25 MDD, OS9/OSX, 3rd gen iPod   Mac OS X (10.3.9)  
    Powermac G4 1.25 MDD, OS9/OSX, 3rd gen iPod   Mac OS X (10.3.9)  

    Hmm now getting this message.
    "The ipod "ipod" could not be restored.An Unknown Error occured (1429)".
    It still will not format. Does anyone know what a 1429 error is?
    Powermac G4 1.25 MDD, OS9/OSX Mac OS X (10.3.9)

Maybe you are looking for