ServerSession disconnects

I am having a problem I need some help understanding.
My application was developed with JDeveloper 10.1.3.3, JSF, ADF Faces, and Toplink, Session Facade EJB. The application is running on a Solaris 10 box and deployed with in OC4J (OAS 10gR3); it is clustered across 2 servers. the connection pool and data source are setup with OAS's default settings.
We are using Loadrunner to help us determine maximum concurrent users for our application. The first test was with 5 concurrent users which ran flawlessly for over 20 minutes. The next was with 10 concurrent users; this test produces a nullpointerexception at approximately 9 users:
[TopLink Warning]: 2008.10.08 05:48:58.790--UnitOfWork(30090810)--Thread(Thread[AJPRequestHandler-RMICallHandler-5,5,HTTPThreadGroup])--java.lang.NullPointerException
     at oracle.toplink.internal.queryframework.DatasourceCallQueryMechanism.insertObject(DatasourceCallQueryMechanism.java:213)
     at oracle.toplink.internal.queryframework.StatementQueryMechanism.insertObject(StatementQueryMechanism.java:156)
     at oracle.toplink.internal.queryframework.StatementQueryMechanism.insertObject(StatementQueryMechanism.java:170)
     at oracle.toplink.internal.queryframework.DatabaseQueryMechanism.insertObjectForWrite(DatabaseQueryMechanism.java:426)
     at oracle.toplink.queryframework.InsertObjectQuery.executeCommit(InsertObjectQuery.java:65)
     at oracle.toplink.queryframework.InsertObjectQuery.executeCommitWithChangeSet(InsertObjectQuery.java:75)
     at oracle.toplink.internal.queryframework.DatabaseQueryMechanism.executeWriteWithChangeSet(DatabaseQueryMechanism.java:251)
     at oracle.toplink.queryframework.WriteObjectQuery.executeDatabaseQuery(WriteObjectQuery.java:47)
     at oracle.toplink.queryframework.DatabaseQuery.execute(DatabaseQuery.java:620)
                ...From the logs, it appears that the ServerSession is disconnecting reconnecting at odd intevals. Sometimes it disconnects within 5 seconds of connecting and sometime within 5 minutes.
The application makes a call to persistEntity and rthe ServerSession disconnects and reconnects before persstEntity returns, which is when this nullpointer happens.
public Object persistEntity(Object entity) {
        UnitOfWork uow = getSessionFactory().acquireUnitOfWork();
        Object existingObject = uow.readObject(entity);
        if (existingObject != null)
            throw new RuntimeException("Entity already exists");
        Object newInstance = uow.mergeClone(entity);
        uow.commit();
        return newInstance;
    }So, what is causing the irregular disconnects and is their anything I can do about it?
If more information is needed, I can provide more of the logs or try to explain further.
Thanks for your help.

Thanks for reply.
Right now, I have no idea what might be causing the disconnects.
The log file is actually littered with the disconnects/reconnects. They appear to be happening at randowm intervals. Here are a few of them.
[TopLink Info]: 2008.10.08 05:48:42.845--ServerSession(9009672)--Thread(Thread[AJPRequestHandler-RMICallHandler-5,5,HTTPThreadGroup])--ODSession login successful
[TopLink Info]: 2008.10.08 05:48:57.231--ServerSession(9009672)--Thread(Thread[AJPRequestHandler-RMICallHandler-6,5,HTTPThreadGroup])--ODSession logout successful
[TopLink Info]: 2008.10.08 05:48:57.987--ServerSession(27684092)--Thread(Thread[AJPRequestHandler-RMICallHandler-6,5,HTTPThreadGroup])--ODSession login successful
[TopLink Info]: 2008.10.08 05:48:57.989--ServerSession(27684092)--Thread(Thread[AJPRequestHandler-RMICallHandler-5,5,HTTPThreadGroup])--ODSession logout successful
[TopLink Info]: 2008.10.08 05:48:58.776--ServerSession(2410561)--Thread(Thread[AJPRequestHandler-RMICallHandler-5,5,HTTPThreadGroup])--ODSession login successful
[TopLink Info]: 2008.10.08 05:48:58.779--ServerSession(2410561)--Thread(Thread[AJPRequestHandler-RMICallHandler-6,5,HTTPThreadGroup])--ODSession logout successfulThis is my sessions.xml. Would increasing the max-connections value help?
<?xml version = '1.0' encoding = 'UTF-8'?>
<!DOCTYPE toplink-configuration PUBLIC "-//Oracle Corp.//DTD TopLink Sessions 9.0.4//EN" "sessions_9_0_4.dtd">
<toplink-configuration>
   <session>
      <name>ODSession</name>
      <project-xml>META-INF/ODMap.xml</project-xml>
      <session-type>
         <server-session/>
      </session-type>
      <login>
         <driver-class>oracle.jdbc.OracleDriver</driver-class>
         <datasource>jdbc/OLVIMSDS</datasource>
         <platform-class>oracle.toplink.platform.database.oracle.Oracle10Platform</platform-class>
         <uses-external-connection-pool>true</uses-external-connection-pool>
         <uses-external-transaction-controller>true</uses-external-transaction-controller>
      </login>
      <external-transaction-controller-class>oracle.toplink.transaction.oc4j.Oc4jTransactionController</external-transaction-controller-class>
      <enable-logging>true</enable-logging>
      <logging-options>
         <print-session>true</print-session>
         <print-connection>true</print-connection>
         <print-date>true</print-date>
      </logging-options>
   </session>
</toplink-configuration>This is a chunk from the logs leading up to the nullpointer.
[TopLink Finest]: 2008.10.08 05:48:53.782--ServerSession(9009672)--Thread(Thread[AJPRequestHandler-RMICallHandler-7,5,HTTPThreadGroup])--reconnecting to external connection pool
[TopLink Fine]: 2008.10.08 05:48:53.783--ServerSession(9009672)--Connection(19858987)--Thread(Thread[AJPRequestHandler-RMICallHandler-7,5,HTTPThreadGroup])--select category_sequence, base_code, site_code, category, description
from category
where (base_code = 'BXUR' or base_code is null)
and (site_code = 'B' or site_code is null)
and description != 'NOT IN USE'
order by category
[TopLink Finer]: 2008.10.08 05:48:53.787--ClientSession(18496219)--Thread(Thread[AJPRequestHandler-RMICallHandler-7,5,HTTPThreadGroup])--client released
[TopLink Finer]: 2008.10.08 05:48:53.787--ServerSession(9009672)--Thread(Thread[AJPRequestHandler-RMICallHandler-7,5,HTTPThreadGroup])--acquire unit of work: 14449643
[TopLink Finer]: 2008.10.08 05:48:53.794--UnitOfWork(14449643)--Thread(Thread[AJPRequestHandler-RMICallHandler-7,5,HTTPThreadGroup])--release unit of work
[TopLink Finer]: 2008.10.08 05:48:53.794--UnitOfWork(25907110)--Thread(Thread[AJPRequestHandler-RMICallHandler-7,5,HTTPThreadGroup])--TX beforeCompletion callback, status=STATUS_ACTIVE
[TopLink Finer]: 2008.10.08 05:48:53.794--UnitOfWork(25907110)--Thread(Thread[AJPRequestHandler-RMICallHandler-7,5,HTTPThreadGroup])--begin unit of work commit
[TopLink Finer]: 2008.10.08 05:48:53.795--UnitOfWork(25907110)--Thread(Thread[AJPRequestHandler-RMICallHandler-7,5,HTTPThreadGroup])--TX afterCompletion callback, status=COMMITTED
[TopLink Finer]: 2008.10.08 05:48:53.795--UnitOfWork(25907110)--Thread(Thread[AJPRequestHandler-RMICallHandler-7,5,HTTPThreadGroup])--end unit of work commit
[TopLink Finer]: 2008.10.08 05:48:53.795--UnitOfWork(25907110)--Thread(Thread[AJPRequestHandler-RMICallHandler-7,5,HTTPThreadGroup])--release unit of work
[TopLink Finest]: 2008.10.08 05:48:57.230--ServerSession(9009672)--Thread(Thread[AJPRequestHandler-RMICallHandler-6,5,HTTPThreadGroup])--sequencing disconnected
[TopLink Config]: 2008.10.08 05:48:57.231--ServerSession(9009672)--Connection(18573770)--Thread(Thread[AJPRequestHandler-RMICallHandler-6,5,HTTPThreadGroup])--disconnect
[TopLink Finer]: 2008.10.08 05:48:57.231--ServerSession(9009672)--Thread(Thread[AJPRequestHandler-RMICallHandler-6,5,HTTPThreadGroup])--initialize identitymaps
[TopLink Info]: 2008.10.08 05:48:57.231--ServerSession(9009672)--Thread(Thread[AJPRequestHandler-RMICallHandler-6,5,HTTPThreadGroup])--ODSession logout successful
08/10/08 17:48:57 requesterInputText<JOE>
08/10/08 17:48:57 phoneNumberInputText<123-4567>
08/10/08 17:48:57 requiredInputDate<Wed Oct 08 17:47:00 GMT 2008>
08/10/08 17:48:57 inputText1<0>
08/10/08 17:48:57 statusInputText<0>
08/10/08 17:48:57 typeInputText<1>
[TopLink Info]: 2008.10.08 05:48:57.951--ServerSession(27684092)--Thread(Thread[AJPRequestHandler-RMICallHandler-6,5,HTTPThreadGroup])--TopLink, version: Oracle TopLink - 10g Release 3 (10.1.3.3.0) (Build 070608)
[TopLink Info]: 2008.10.08 05:48:57.952--ServerSession(27684092)--Thread(Thread[AJPRequestHandler-RMICallHandler-6,5,HTTPThreadGroup])--Server: unknown
[TopLink Config]: 2008.10.08 05:48:57.953--ServerSession(27684092)--Connection(20796893)--Thread(Thread[AJPRequestHandler-RMICallHandler-6,5,HTTPThreadGroup])--connecting(DatabaseLogin(
     platform=>Oracle10Platform
     user name=> ""
     connector=>JNDIConnector datasource name=>jdbc/OLVIMSDS
[TopLink Config]: 2008.10.08 05:48:57.954--ServerSession(27684092)--Connection(18982962)--Thread(Thread[AJPRequestHandler-RMICallHandler-6,5,HTTPThreadGroup])--Connected: jdbc:oracle:thin:@//10.1.3.21:1521/OLVIMS.uprf021
     User: VQ_USR
     Database: Oracle  Version: Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
     Driver: Oracle JDBC driver  Version: 10.1.0.5.0
[TopLink Config]: 2008.10.08 05:48:57.955--ServerSession(27684092)--Connection(11106965)--Thread(Thread[AJPRequestHandler-RMICallHandler-6,5,HTTPThreadGroup])--connecting(DatabaseLogin(
     platform=>Oracle10Platform
     user name=> ""
     connector=>JNDIConnector datasource name=>jdbc/OLVIMSDS
[TopLink Config]: 2008.10.08 05:48:57.956--ServerSession(27684092)--Connection(17381623)--Thread(Thread[AJPRequestHandler-RMICallHandler-6,5,HTTPThreadGroup])--Connected: jdbc:oracle:thin:@//10.1.3.21:1521/OLVIMS.uprf021
     User: VQ_USR
     Database: Oracle  Version: Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
     Driver: Oracle JDBC driver  Version: 10.1.0.5.0
[TopLink Finest]: 2008.10.08 05:48:57.957--ServerSession(27684092)--Thread(Thread[AJPRequestHandler-RMICallHandler-6,5,HTTPThreadGroup])--sequencing connected, state is Preallocation_NoTransaction_State
[TopLink Finest]: 2008.10.08 05:48:57.957--ServerSession(27684092)--Thread(Thread[AJPRequestHandler-RMICallHandler-6,5,HTTPThreadGroup])--sequence CATEGORY_SEQ: preallocation size 1
[TopLink Finest]: 2008.10.08 05:48:57.957--ServerSession(27684092)--Thread(Thread[AJPRequestHandler-RMICallHandler-6,5,HTTPThreadGroup])--sequence EMPLOYEE_SEQ: preallocation size 1
[TopLink Finest]: 2008.10.08 05:48:57.957--ServerSession(27684092)--Thread(Thread[AJPRequestHandler-RMICallHandler-6,5,HTTPThreadGroup])--sequence CONTROL_NUMBER_SEQ: preallocation size 1
[TopLink Finest]: 2008.10.08 05:48:57.958--ServerSession(27684092)--Thread(Thread[AJPRequestHandler-RMICallHandler-6,5,HTTPThreadGroup])--sequence GRADE_SEQ: preallocation size 1
[TopLink Finest]: 2008.10.08 05:48:57.958--ServerSession(27684092)--Thread(Thread[AJPRequestHandler-RMICallHandler-6,5,HTTPThreadGroup])--sequence PROJECT_SEQ: preallocation size 1
[TopLink Info]: 2008.10.08 05:48:57.987--ServerSession(27684092)--Thread(Thread[AJPRequestHandler-RMICallHandler-6,5,HTTPThreadGroup])--ODSession login successful
[TopLink Finer]: 2008.10.08 05:48:57.987--ServerSession(27684092)--Thread(Thread[AJPRequestHandler-RMICallHandler-6,5,HTTPThreadGroup])--client acquired
[TopLink Finest]: 2008.10.08 05:48:57.987--ServerSession(27684092)--Thread(Thread[AJPRequestHandler-RMICallHandler-5,5,HTTPThreadGroup])--sequencing disconnected
[TopLink Finest]: 2008.10.08 05:48:57.988--ClientSession(8069186)--Thread(Thread[AJPRequestHandler-RMICallHandler-6,5,HTTPThreadGroup])--Execute query ReadAllQuery(olvims.dispatch.datamodel.Employee)
[TopLink Config]: 2008.10.08 05:48:57.988--ServerSession(27684092)--Connection(25363108)--Thread(Thread[AJPRequestHandler-RMICallHandler-5,5,HTTPThreadGroup])--disconnect
[TopLink Finer]: 2008.10.08 05:48:57.988--ServerSession(27684092)--Thread(Thread[AJPRequestHandler-RMICallHandler-5,5,HTTPThreadGroup])--initialize identitymaps
[TopLink Finest]: 2008.10.08 05:48:57.989--ServerSession(27684092)--Thread(Thread[AJPRequestHandler-RMICallHandler-6,5,HTTPThreadGroup])--reconnecting to external connection pool
[TopLink Info]: 2008.10.08 05:48:57.989--ServerSession(27684092)--Thread(Thread[AJPRequestHandler-RMICallHandler-5,5,HTTPThreadGroup])--ODSession logout successful
[TopLink Fine]: 2008.10.08 05:48:57.989--ServerSession(27684092)--Connection(4978043)--Thread(Thread[AJPRequestHandler-RMICallHandler-6,5,HTTPThreadGroup])--select employee_id, base_code, site_code from employee where username = 'perf.052'
[TopLink Finer]: 2008.10.08 05:48:57.996--ClientSession(8069186)--Thread(Thread[AJPRequestHandler-RMICallHandler-6,5,HTTPThreadGroup])--client released
[TopLink Info]: 2008.10.08 05:48:58.738--ServerSession(2410561)--Thread(Thread[AJPRequestHandler-RMICallHandler-5,5,HTTPThreadGroup])--TopLink, version: Oracle TopLink - 10g Release 3 (10.1.3.3.0) (Build 070608)
[TopLink Info]: 2008.10.08 05:48:58.739--ServerSession(2410561)--Thread(Thread[AJPRequestHandler-RMICallHandler-5,5,HTTPThreadGroup])--Server: unknown
[TopLink Config]: 2008.10.08 05:48:58.740--ServerSession(2410561)--Connection(14106674)--Thread(Thread[AJPRequestHandler-RMICallHandler-5,5,HTTPThreadGroup])--connecting(DatabaseLogin(
     platform=>Oracle10Platform
     user name=> ""
     connector=>JNDIConnector datasource name=>jdbc/OLVIMSDS
[TopLink Config]: 2008.10.08 05:48:58.741--ServerSession(2410561)--Connection(18938560)--Thread(Thread[AJPRequestHandler-RMICallHandler-5,5,HTTPThreadGroup])--Connected: jdbc:oracle:thin:@//10.1.3.21:1521/OLVIMS.uprf021
     User: VQ_USR
     Database: Oracle  Version: Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
     Driver: Oracle JDBC driver  Version: 10.1.0.5.0
[TopLink Config]: 2008.10.08 05:48:58.742--ServerSession(2410561)--Connection(18143814)--Thread(Thread[AJPRequestHandler-RMICallHandler-5,5,HTTPThreadGroup])--connecting(DatabaseLogin(
     platform=>Oracle10Platform
     user name=> ""
     connector=>JNDIConnector datasource name=>jdbc/OLVIMSDS
[TopLink Config]: 2008.10.08 05:48:58.743--ServerSession(2410561)--Connection(405074)--Thread(Thread[AJPRequestHandler-RMICallHandler-5,5,HTTPThreadGroup])--Connected: jdbc:oracle:thin:@//10.1.3.21:1521/OLVIMS.uprf021
     User: VQ_USR
     Database: Oracle  Version: Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
     Driver: Oracle JDBC driver  Version: 10.1.0.5.0
[TopLink Finest]: 2008.10.08 05:48:58.743--ServerSession(2410561)--Thread(Thread[AJPRequestHandler-RMICallHandler-5,5,HTTPThreadGroup])--sequencing connected, state is Preallocation_NoTransaction_State
[TopLink Finest]: 2008.10.08 05:48:58.744--ServerSession(2410561)--Thread(Thread[AJPRequestHandler-RMICallHandler-5,5,HTTPThreadGroup])--sequence CATEGORY_SEQ: preallocation size 1
[TopLink Finest]: 2008.10.08 05:48:58.744--ServerSession(2410561)--Thread(Thread[AJPRequestHandler-RMICallHandler-5,5,HTTPThreadGroup])--sequence EMPLOYEE_SEQ: preallocation size 1
[TopLink Finest]: 2008.10.08 05:48:58.744--ServerSession(2410561)--Thread(Thread[AJPRequestHandler-RMICallHandler-5,5,HTTPThreadGroup])--sequence CONTROL_NUMBER_SEQ: preallocation size 1
[TopLink Finest]: 2008.10.08 05:48:58.744--ServerSession(2410561)--Thread(Thread[AJPRequestHandler-RMICallHandler-5,5,HTTPThreadGroup])--sequence GRADE_SEQ: preallocation size 1
[TopLink Finest]: 2008.10.08 05:48:58.744--ServerSession(2410561)--Thread(Thread[AJPRequestHandler-RMICallHandler-5,5,HTTPThreadGroup])--sequence PROJECT_SEQ: preallocation size 1
[TopLink Info]: 2008.10.08 05:48:58.776--ServerSession(2410561)--Thread(Thread[AJPRequestHandler-RMICallHandler-5,5,HTTPThreadGroup])--ODSession login successful
[TopLink Finer]: 2008.10.08 05:48:58.777--ServerSession(2410561)--Thread(Thread[AJPRequestHandler-RMICallHandler-5,5,HTTPThreadGroup])--client acquired
[TopLink Finest]: 2008.10.08 05:48:58.777--ServerSession(2410561)--Thread(Thread[AJPRequestHandler-RMICallHandler-6,5,HTTPThreadGroup])--sequencing disconnected
[TopLink Finer]: 2008.10.08 05:48:58.777--ClientSession(3848478)--Thread(Thread[AJPRequestHandler-RMICallHandler-5,5,HTTPThreadGroup])--acquire unit of work: 30090810
[TopLink Config]: 2008.10.08 05:48:58.777--ServerSession(2410561)--Connection(21979837)--Thread(Thread[AJPRequestHandler-RMICallHandler-6,5,HTTPThreadGroup])--disconnect
[TopLink Finer]: 2008.10.08 05:48:58.778--UnitOfWork(30090810)--Thread(Thread[AJPRequestHandler-RMICallHandler-5,5,HTTPThreadGroup])--TX binding to tx mgr, status=STATUS_ACTIVE
[TopLink Finer]: 2008.10.08 05:48:58.778--ServerSession(2410561)--Thread(Thread[AJPRequestHandler-RMICallHandler-6,5,HTTPThreadGroup])--initialize identitymaps
[TopLink Finest]: 2008.10.08 05:48:58.778--UnitOfWork(30090810)--Thread(Thread[AJPRequestHandler-RMICallHandler-5,5,HTTPThreadGroup])--Execute query ReadObjectQuery(olvims.dispatch.datamodel.Request)
[TopLink Info]: 2008.10.08 05:48:58.779--ServerSession(2410561)--Thread(Thread[AJPRequestHandler-RMICallHandler-6,5,HTTPThreadGroup])--ODSession logout successful
[TopLink Finest]: 2008.10.08 05:48:58.780--ServerSession(2410561)--Thread(Thread[AJPRequestHandler-RMICallHandler-5,5,HTTPThreadGroup])--reconnecting to external connection pool
[TopLink Fine]: 2008.10.08 05:48:58.780--ServerSession(2410561)--Connection(247040)--Thread(Thread[AJPRequestHandler-RMICallHandler-5,5,HTTPThreadGroup])--SELECT CONTROL_NUMBER, ESTIMATED_CARGO_WEIGHT, ESTIMATED_MILES, CREDIT_CARD_FLAG, HIGH_VISIBILITY_FLAG, RECURRING_MASTER_FLAG, REQUESTER_PHONE_NUMBER, BASE_CODE, REQUESTED_DATE, SITE_CODE, ESTIMATED_PASSENGERS, CATEGORY_SEQUENCE, PICKUP_LOCATION, RECURRING_CONTROL_NUMBER, DESTINATION, REQUEST_TYPE, LAST_UPDT_DATE, STATUS_CODE, CLOSED_DATE, COMBINED_CONTROL_NUMBER, ESTIMATED_RETURN_DATE, DISPATCHER_EMPLOYEE_ID, LAST_UPDT_USER, PROJECT_NUMBER, REQUIRED_DATE, REIMBURSABLE_CODE, REQUESTER, REQUESTER_GRADE_SEQUENCE, REMARKS, USING_ORG_CODE FROM REQUEST WHERE (CONTROL_NUMBER = NULL)
[TopLink Finest]: 2008.10.08 05:48:58.784--UnitOfWork(30090810)--Thread(Thread[AJPRequestHandler-RMICallHandler-5,5,HTTPThreadGroup])--Merge clone olvims.dispatch.datamodel.Request@1b47245
[TopLink Finer]: 2008.10.08 05:48:58.786--UnitOfWork(30090810)--Thread(Thread[AJPRequestHandler-RMICallHandler-5,5,HTTPThreadGroup])--TX beforeCompletion callback, status=STATUS_ACTIVE
[TopLink Finer]: 2008.10.08 05:48:58.787--UnitOfWork(30090810)--Thread(Thread[AJPRequestHandler-RMICallHandler-5,5,HTTPThreadGroup])--begin unit of work commit
[TopLink Finer]: 2008.10.08 05:48:58.788--ClientSession(3848478)--Thread(Thread[AJPRequestHandler-RMICallHandler-5,5,HTTPThreadGroup])--TX beginTransaction, status=STATUS_ACTIVE
[TopLink Finest]: 2008.10.08 05:48:58.788--UnitOfWork(30090810)--Thread(Thread[AJPRequestHandler-RMICallHandler-5,5,HTTPThreadGroup])--Execute query InsertObjectQuery(olvims.dispatch.datamodel.Request@1ba2981)
[TopLink Warning]: 2008.10.08 05:48:58.790--UnitOfWork(30090810)--Thread(Thread[AJPRequestHandler-RMICallHandler-5,5,HTTPThreadGroup])--java.lang.NullPointerException
     at oracle.toplink.internal.queryframework.DatasourceCallQueryMechanism.insertObject(DatasourceCallQueryMechanism.java:213)
     at oracle.toplink.internal.queryframework.StatementQueryMechanism.insertObject(StatementQueryMechanism.java:156)
     at oracle.toplink.internal.queryframework.StatementQueryMechanism.insertObject(StatementQueryMechanism.java:170)
     at oracle.toplink.internal.queryframework.DatabaseQueryMechanism.insertObjectForWrite(DatabaseQueryMechanism.java:426)
     at oracle.toplink.queryframework.InsertObjectQuery.executeCommit(InsertObjectQuery.java:65)
     at oracle.toplink.queryframework.InsertObjectQuery.executeCommitWithChangeSet(InsertObjectQuery.java:75)
     at oracle.toplink.internal.queryframework.DatabaseQueryMechanism.executeWriteWithChangeSet(DatabaseQueryMechanism.java:251)
     at oracle.toplink.queryframework.WriteObjectQuery.executeDatabaseQuery(WriteObjectQuery.java:47)
     at oracle.toplink.queryframework.DatabaseQuery.execute(DatabaseQuery.java:620)
     at oracle.toplink.queryframework.DatabaseQuery.executeInUnitOfWork(DatabaseQuery.java:542)
     at oracle.toplink.queryframework.ObjectLevelModifyQuery.executeInUnitOfWorkObjectLevelModifyQuery(ObjectLevelModifyQuery.java:100)
     at oracle.toplink.queryframework.ObjectLevelModifyQuery.executeInUnitOfWork(ObjectLevelModifyQuery.java:72)
     at oracle.toplink.publicinterface.UnitOfWork.internalExecuteQuery(UnitOfWork.java:2604)
     at oracle.toplink.publicinterface.Session.executeQuery(Session.java:993)
     at oracle.toplink.publicinterface.Session.executeQuery(Session.java:950)
     at oracle.toplink.internal.sessions.CommitManager.commitNewObjectsForClassWithChangeSet(CommitManager.java:243)
     at oracle.toplink.internal.sessions.CommitManager.commitAllObjectsWithChangeSet(CommitManager.java:162)
     at oracle.toplink.publicinterface.Session.writeAllObjectsWithChangeSet(Session.java:3193)
     at oracle.toplink.publicinterface.UnitOfWork.commitToDatabase(UnitOfWork.java:1293)
     at oracle.toplink.publicinterface.UnitOfWork.commitToDatabaseWithChangeSet(UnitOfWork.java:1389)
     at oracle.toplink.publicinterface.UnitOfWork.issueSQLbeforeCompletion(UnitOfWork.java:2866)
     at oracle.toplink.publicinterface.UnitOfWork.issueSQLbeforeCompletion(UnitOfWork.java:2846)
     at oracle.toplink.transaction.AbstractSynchronizationListener.beforeCompletion(AbstractSynchronizationListener.java:96)
     at oracle.toplink.transaction.JTASynchronizationListener.beforeCompletion(JTASynchronizationListener.java:55)
     at com.evermind.server.ApplicationServerTransaction.callBeforeCompletion(ApplicationServerTransaction.java:1066)
     at com.evermind.server.ApplicationServerTransaction.doCommit(ApplicationServerTransaction.java:275)
     at com.evermind.server.ApplicationServerTransaction.commit(ApplicationServerTransaction.java:162)
     at com.evermind.server.ApplicationServerTransactionManager.commit(ApplicationServerTransactionManager.java:472)
     at com.evermind.server.ejb.EJBTransactionManager.end(EJBTransactionManager.java:132)
     at com.evermind.server.ejb.interceptor.system.TxRequiredInterceptor.invoke(TxRequiredInterceptor.java:57)
     at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
     at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
     at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
     at com.evermind.server.ejb.InvocationContextPool.invoke(InvocationContextPool.java:55)
     at com.evermind.server.ejb.StatelessSessionEJBObject.OC4J_invokeMethod(StatelessSessionEJBObject.java:87)
     at ODPublicFacade_LocalProxy_6l476.persistEntity(Unknown Source)
     at sun.reflect.GeneratedMethodAccessor656.invoke(Unknown Source)
     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
     at java.lang.reflect.Method.invoke(Method.java:585)
     at oracle.adf.model.binding.DCInvokeMethod.invokeMethod(DCInvokeMethod.java:507)
     at oracle.adf.model.binding.DCDataControl.invokeMethod(DCDataControl.java:1795)
     at oracle.adf.model.generic.DCGenericDataControl.invokeMethod(DCGenericDataControl.java:248)
     at oracle.adf.model.binding.DCInvokeMethod.callMethod(DCInvokeMethod.java:219)
     at oracle.jbo.uicli.binding.JUCtrlActionBinding.doIt(JUCtrlActionBinding.java:1289)
     at oracle.adf.model.binding.DCDataControl.invokeOperation(DCDataControl.java:1802)
     at oracle.adf.model.generic.DCGenericDataControl.invokeOperation(DCGenericDataControl.java:266)
     at oracle.adf.model.adapter.AdapterDCService.invokeOperation(AdapterDCService.java:305)
     at oracle.jbo.uicli.binding.JUCtrlActionBinding.invoke(JUCtrlActionBinding.java:627)
     at oracle.adf.controller.v2.lifecycle.PageLifecycleImpl.executeEvent(PageLifecycleImpl.java:378)
     at sun.reflect.GeneratedMethodAccessor488.invoke(Unknown Source)
     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
     at java.lang.reflect.Method.invoke(Method.java:585)
     at com.sun.faces.el.MethodBindingImpl.invoke(MethodBindingImpl.java:146)
     at oracle.adfinternal.view.faces.model.binding.FacesCtrlActionBinding._execute(FacesCtrlActionBinding.java:128)
     at oracle.adfinternal.view.faces.model.binding.FacesCtrlActionBinding.execute(FacesCtrlActionBinding.java:105)
     at olvims.dispatch.userinterface.backing.operations.NewDispatchRequest.saveButton_action(NewDispatchRequest.java:742)
     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:585)
     at com.sun.faces.el.MethodBindingImpl.invoke(MethodBindingImpl.java:146)
     at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:92)
     at oracle.adf.view.faces.component.UIXCommand.broadcast(UIXCommand.java:211)
     at javax.faces.component.UIViewRoot.broadcastEvents(UIViewRoot.java:287)
     at javax.faces.component.UIViewRoot.processApplication(UIViewRoot.java:401)
     at com.sun.faces.lifecycle.InvokeApplicationPhase.execute(InvokeApplicationPhase.java:95)
     at com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:245)
     at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:110)
     at javax.faces.webapp.FacesServlet.service(FacesServlet.java:213)
     at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:65)
     at oracle.webcache.adf.filter.PageCachingFilter.doFilter(PageCachingFilter.java:274)
     at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
     at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl._invokeDoFilter(AdfFacesFilterImpl.java:228)
     at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl._doFilterImpl(AdfFacesFilterImpl.java:197)
     at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl.doFilter(AdfFacesFilterImpl.java:123)
     at oracle.adf.view.faces.webapp.AdfFacesFilter.doFilter(AdfFacesFilter.java:103)
     at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:17)
     at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:162)
     at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:17)
     at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:162)
     at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:621)
     at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
     at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:875)
     at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
     at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:302)
     at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:190)
     at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
     at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
     at java.lang.Thread.run(Thread.java:595)

Similar Messages

  • JDev 11g on WebLogic+TopLink+Web Services (getSharedSession() Disconnects)

    I am facing an issue while using {color:#0000ff}TopLink{color} through a {color:#0000ff}web service{color} request.
    I apologize for a lengthy posting but thought I should give as much information as possible.
    <strong><u>Migration from TP4 to JDev 11g Production
    </u></strong>I am in a process of {color:#0000ff}migration{color} of an application from {color:#0000ff}JDeveloper 11g TP4 to JDeveloper 11g Production{color}.
    I am facing an issue using {color:#0000ff}TopLink{color} with {color:#0000ff}Web Services{color} on {color:#0000ff}Oracle WebLogic 10g Release 3.
    {color}
    <strong><u>Existing Application</u></strong>
    This application uses {color:#0000ff}TopLink{color} and also has{color:#0000ff} JAX-WS{color} based web services.
    The web services client calls the service endpoint that internally uses {color:#0000ff}TopLink{color} to make database calls.
    We currently use {color:#0000ff}Tomcat{color} for deployment and the application works fine.
    <strong><u>Issue while moving to Oracle WebLogic 10g R3
    </u></strong>While porting this application to WebLogic we faced an issue wherein a call to the {color:#0000ff}web service{color} results in {color:#0000ff}disconnection{color} of existing {color:#0000ff}TopLink{color} {color:#000080}server session{color} and creation of new ones.
    Some surfing on the net indicated that this could be due to the different class loaders that are used to access the TopLink server session.
    You must login to the ServerSession before acquiring ClientSessions
    <strong><u>LOG</u></strong>
    Here is a log from our application
    TopLink server sessions when accessed in several JSP pages.
    getDelegateSession: session = 6666709
    getDelegateSession: sessionName = my_session (this is the name of the server session)
    getDelegateSession: sessionClassLoader =weblogic.utils.classloaders.ChangeAwareClassLoader@feaad1 finder: weblogic.utils.classloaders.CodeGenClassFinder@15712d annotation: &lt;JDevApp&gt;@&lt;Appname&gt;
    getDelegateSession: threadClassLoader =weblogic.utils.classloaders.ChangeAwareClassLoader@feaad1 finder: weblogic.utils.classloaders.CodeGenClassFinder@15712d annotation: &lt;JDevApp&gt;@&lt;Appname&gt;
    <p>
    TopLink server session when accessed through a web service.
    getDelegateSession: session = 1013641
    getDelegateSession: sessionName = my_session
    getDelegateSession: sessionClassLoader =weblogic.wsee.util.JAXWSClassLoaderFactory$1@180a6b3 finder: weblogic.utils.classloaders.CodeGenClassFinder@1e2a021 annotation:
    getDelegateSession: threadClassLoader =weblogic.wsee.util.JAXWSClassLoaderFactory$1@180a6b3 finder: weblogic.utils.classloaders.CodeGenClassFinder@1e2a021 annotation:
    <strong><u>Note that the class loader is different.</u></strong>
    Also the following log is displayed just before it could log the above information.
    <strong><u>DETAILED LOG
    </u></strong>009-03-04 16:55:12,883 DEBUG ACTIVE ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)' http://oracle.toplink.logging.DefaultSessionLog - &lt;TopLink Finest: 2009.03.04 16:55:12.883--ServerSession(6666709)--Thread(Thread[)--sequencing disconnected&gt;<br />
    2009-03-04 16:55:12,883 DEBUG ACTIVE ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)' http://oracle.toplink.logging.DefaultSessionLog - &lt;TopLink Config: 2009.03.04 16:55:12.883--ServerSession(6666709)--Connection(23588442)--Thread(Thread[)--disconnect&gt;<br />
    2009-03-04 16:55:12,883 DEBUG ACTIVE ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)' http://oracle.toplink.logging.DefaultSessionLog - &lt;TopLink Finer: 2009.03.04 16:55:12.883--ServerSession(6666709)--Thread(Thread[)--initialize identitymaps&gt;<br />
    2009-03-04 16:55:12,992 INFO ACTIVE ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)' http://oracle.toplink.logging.DefaultSessionLog - &lt;TopLink Info: 2009.03.04 16:55:12.992--ServerSession(6666709)--Thread(Thread[)--my_session logout successful&gt;<br />
    Thanks for reading this lengthy posting.
    - Abhay
    </p>
    Edited by: user608979 on Mar 4, 2009 5:10 AM

    James,
    My issue is resolved. Thanks for your tip.
    I am using {color:#0000ff}SessionManager.getSession(...{color}
    Solution:*
    I changed the class loader while getting a session.
    I had to extend the {color:#0000ff}SessionFactory{color} and override {color:#0000ff}both{color} the {color:#0000ff}getSharedSession(){color} methods while replacing {color:#ff0000}getClass().getClassLoader(){color} with {color:#0000ff}&lt;MyLocatorSingletonBean&gt;.getInstance().getClass().getClassLoader().{color}
    Regrding Server Sessions*
    While posting the question I had started thinking in the same direction of having sever sessions as singleton/Spring bean but sine this will change a lot of things in my current framework so decided I just use the above solution for now.
    Really appreciated!
    - Abhay

  • ServerSession in FBS  (otn sample code)

    I download FBS OTN sample code which version
    use Toplink for manage persistence..
    I have notice about some class that hold
    ServerSession as it member variable
    such as
    ////////////// FBS
    package oracle.otnsamples.ibfbs.trademanagement.helper;
    public class StockRateHelper {
    // Toplink Server session
    private ServerSession server = null;
    public StockRateHelper()
    throws TradeManagementEventException{
    try {
    // Initialize ServerSession from session.xml
    server = (ServerSession) SessionManager.getManager().getSession(new XMLLoader(),
    "FBSServerSession",
    Thread.currentThread().getContextClassLoader());
    }catch(DatabaseException dbEx) {
    throw new TradeManagementEventException(" Error initializing Server Session :"+dbEx);
    public void loadRates(Collection stockRates)
    throws DatabaseException {
    // Initialize client session
    ClientSession client = server.acquireClientSession();
    // Enable batch-writing [ Write Optimization ]
    client.getLogin().useBatchWriting();
    // Sequence pre-allocation has been enabled in project.xml with size of 50
    // Get a transaction
    UnitOfWork uow = client.acquireUnitOfWork();
    // Register the objects with transaction
    uow.registerAllObjects(stockRates);
    // Commit
    uow.commit();
    I can deploy and run this sample (after spend a moment
    for fix database schema) on OC4J10g developer preview
    I have some Question
    - why ServerSession not need to login before it provide ClientSession
    - I don't see code for disconnect (logout) from DB , does it cause resource leak ?
    thank you

    Hi,
    why ServerSession not need to login before it provide ClientSession.When we use SessionManager to retrieve sessions, in the call to getSession(), if the session is not already in the session manager's in-memory cache of sessions, the session manager creates the session and logs in. Hence we don't have to login explicitly( when using SessionMananger).
    To open Session with No Login
    SessionManager manager = SessionManager.getManager();
    Session session = manager.getSession( new XMLLoader(), // XML Loader (sessions.xml file)
                                              "mysession", // session name
                    YourApplicationClass.getClassLoader(), // classloader
                                                    false, // log in session
                                                   false); // refresh session
    I don't see code for disconnect (logout) from DB , does it cause resource leak ?When using a three-tier architecture ( Sever-Client Session ), the client session is used to perform all operations. The client forwards all the request to the server session, which either operates on the cache or the database ( if the data is not present in the cache) . Hence the sever session is the entity that takes care of managing database resources and it has the intelligence built-in to manage the connections and resources. We don't have to worry about that. Finally when the
    application goes down, we must take care of closing the server session.
    We hav't explicitly closed the sever session in this application. If you require to close the server session and not
    depend on the timeout mechanism, you can explicitly close the connection when the application is destroyed.
    LoadDataServletCtxLsnr.java
    public void contextDestroyed(ServletContextEvent sce) {
        // Close server session
    I have notice about some class that hold ServerSession as it member variableAll the classes point to the same instance of SeverSession and they don't have seperate instances. There can be only one seversession for an application. The ServerSession instance is got from the Sigleton class SessionManager which manages the ServerSession.
    HTH.
    Regards
    Elango.

  • Disconnecting MacBookPro from Cinema Display

    Here's a stupid question that appears to be too elementary to address in the documentation: When I want to disconnect my MacBookPro from the Cinema Display, do I simply remove the connections or do I have to shut the laptop down first?
    Related stupid question: when I return with my laptop, can I simply plug in the Cinema connections, or does the laptop have to be powered down?
    Thanks.

    You don't have to shut it down.

  • Phone Service disconnected over VPN

    Hello,
    I'm using Version 9.2.1 (147214) of Jabber for OS X and I'm using a VPN to connect to my work network with AnyConnect Secure Mobility Client.
    My issue is that Phone Services are disconnected while the Voicemail and Meeting Accounts are functioning as expected.
    My server settings are configured automatically, and I'm using the same saved credentials that work when I'm at the office.
    Any ideas?
    - Ken

    This issue is fixed.
    Once I changed the automatic configuration of the CCMCIP from an IP address to the hostname that my CUCM uses, my phone service registered across the VPN.

  • Disconnection from mounted volume

    Hi there, I am accessing files on a colleague's G4 running OS 9.2.2 which acts as a file server (small office, no server as yet). I have a G4 running OS X 10.4.10. I go to My Network, select her computer, click on Connect, select her hard disk as the volume and click OK. I am then connected to her HDD. I then access files etc but then many times a day I appear to be disconnected (error message stating that the connection has been interrupted). File sharing is on and appletalk is on.
    It never used to happen with my old G4 running OS 9.2.2. With my old G4, I wiped the HDD and put in a partition, with OS 9.2.2 on one volume and OS X Tiger on the other volume. Whichever OS I ran, the same thing seemed to happen (disconnection). I have since acquired a newer Mac, but seem to be having the same problem. What might be causing it do you think? I am tempted to put all the files onto my newer machine and see what happens. And replace the network cables!

    Thanks Joe. And I thought by updating all the G4s in our office from 9.1 to 9.2.1 to 9.2.2 was improving things! lol...oh well. I will soon be installing a server and doing things properly, which will run Tiger, so hopefully like you say the problem will disappear! All the best, Pat

  • New Airport Extreme restarts/disconnects/boots all devices if specific MacBook joins wirelessly...?

    Preface:
    This is my second new AEBS in two weeks. They've both had this issue (which seems unique from the other disconnect postings I've found), so it's not AEBS hardware. I've also had a perfectly functioning Airport Express in the exact same configuration (sans dual-band of course) for the last two years, so interference and the like (for which I did test and troubleshoot) also seems unlikely. I have a 2008 Macbook, a mid 2009 Macbook Pro, a Windows 7 PC, an iPhone 4, and iPhone 4s, and an iPad on the network.
    Issue:
    After setting up my AEBS, I kept getting knocked off at random, frequent intervals. It would disappear from all my devices simultaneously--no network connections and nothing showing in Airport Utility. I tweaked every setting imaginable five times over. No luck. Looked into networks around me and fiddled with channels etc. No luck. At first, I would have to go unplug and replug the AEBS to get it to show back up. Eventually I managed to get it to where it would just "reset" more or less and come back on in about 30-45 seconds. The light on the router will blink green once, and then two seconds later go solid amber for about 10-15 seconds, and then blink amber for another 10 or so. Then it's back like nothing happened.
    I think that I finally narrowed it down today to what is triggering it more or less. I noticed it was fine with everything connected WITHOUT any security. When I added the WPA2 security back on, it was doing it soon after the older Macbook connected, right after "Installed unicast CCMP key for supplicant 3c:d0:f8:8e:31:b5". I could connect the Macbook through ethernet and be fine. If it did connect without the issue, it would do it soon after when the router would run that "Installed unicast CCMP" process again in a mere matter of minutes.
    I decided that maybe having old OSX Leopard wasn't working well, so I finally upgraded it to Snow Leopard to see if maybe it would help. No luck. Exact same issue. I disabled Airport on it, and since then I'm going on 5 hours of no issues, but why is this computer causing the AEBS to freak out when it worked 100% with my Airport Express for years???
    Here's a sample log, starting from one reset to a disconnect:
    Dec 07 11:39:30          Severity:5          Initialized (firmware 7.6).
    Dec 07 11:39:37          Severity:5          Deauthenticating with station ff:ff:ff:ff:ff:ff (reserved 3).
    Dec 07 11:39:37          Severity:5          Deauthenticating with station ff:ff:ff:ff:ff:ff (reserved 2).
    Dec 07 11:39:37          Severity:5          Rotated CCMP group key.
    Dec 07 11:39:38          Severity:5          Deauthenticating with station ff:ff:ff:ff:ff:ff (reserved 2).
    Dec 07 11:39:38          Severity:5          Rotated CCMP group key.
    Dec 07 11:39:41          Severity:5          Associated with station 00:1b:63:00:46:94
    Dec 07 11:39:41          Severity:5          Installed unicast CCMP key for supplicant 00:1b:63:00:46:94
    Dec 07 11:39:41          Severity:5          Internet configuration leased [IPv4] -- host <76.183.234.251/255.255.252.0> gateway <76.183.232.1> dns <209.18.47.61 209.18.47.62> wins <> lease <43199> domain <tx.rr.com>
    Dec 07 11:39:42          Severity:5          Clock synchronized to network time server time.apple.com (adjusted +1 seconds).
    Dec 07 11:39:43          Severity:5          (WAN) link state is Up.
    Dec 07 11:39:43          Severity:5          Internet configuration leased [IPv4] -- host <76.183.234.251/255.255.252.0> gateway <76.183.232.1> dns <209.18.47.61 209.18.47.62> wins <> lease <43197> domain <tx.rr.com>
    Dec 07 11:39:48          Severity:5          Connection accepted from [fe80::226:4aff:fe10:2c66%bridge0]:60946.
    Dec 07 11:39:49          Severity:5          Connection accepted from [fe80::226:4aff:fe10:2c66%bridge0]:60947.
    Dec 07 11:39:57          Severity:5          Associated with station 3c:d0:f8:8e:31:b5
    Dec 07 11:39:57          Severity:5          Installed unicast CCMP key for supplicant 3c:d0:f8:8e:31:b5
    Dec 07 11:39:58          Severity:5          Connection accepted from [fe80::226:4aff:fe10:2c66%bridge0]:60949.
    Dec 07 11:39:59          Severity:5          Connection accepted from [fe80::226:4aff:fe10:2c66%bridge0]:60950.
    Dec 07 11:39:59          Severity:5          Connection accepted from [fe80::226:4aff:fe10:2c66%bridge0]:60951.
    Dec 07 11:40:14          Severity:5          Associated with station 00:18:e7:83:45:ed
    Dec 07 11:40:14          Severity:5          Installed unicast CCMP key for supplicant 00:18:e7:83:45:ed
    Dec 07 11:40:29          Severity:5          Deauthenticating with station ff:ff:ff:ff:ff:ff (reserved 3).
    Dec 07 11:40:29          Severity:5          Deauthenticating with station ff:ff:ff:ff:ff:ff (reserved 2).
    Dec 07 11:40:35          Severity:5          Connection accepted from [fe80::226:4aff:fe10:2c66%bridge0]:60954.
    Dec 07 11:40:35          Severity:5          Connection accepted from [fe80::226:4aff:fe10:2c66%bridge0]:60955.
    Dec 07 11:40:36          Severity:5          Connection accepted from [fe80::226:4aff:fe10:2c66%bridge0]:60956.
    Dec 07 11:40:44          Severity:5          Associated with station a4:67:06:60:67:41
    Dec 07 11:40:44          Severity:5          Associated with station 00:26:bb:00:cc:a2
    Dec 07 11:40:49          Severity:5          Associated with station 3c:d0:f8:8e:31:b5
    Dec 07 11:42:14          Severity:5          Associated with station 00:1b:63:00:46:94
    Dec 07 11:43:39          Severity:5          Deauthenticating with station ff:ff:ff:ff:ff:ff (reserved 3).
    Dec 07 11:43:39          Severity:5          Deauthenticating with station ff:ff:ff:ff:ff:ff (reserved 2).
    Dec 07 11:43:39          Severity:5          Rotated CCMP group key.
    Dec 07 11:43:41          Severity:5          Connection accepted from [fe80::226:4aff:fe10:2c66%bridge0]:60962.
    Dec 07 11:43:45          Severity:5          Connection accepted from [fe80::226:4aff:fe10:2c66%bridge0]:60964.
    Dec 07 11:43:45          Severity:5          Connection accepted from [fe80::226:4aff:fe10:2c66%bridge0]:60963.
    Dec 07 11:43:48          Severity:5          Associated with station 00:18:e7:83:45:ed
    Dec 07 11:43:48          Severity:5          Installed unicast CCMP key for supplicant 00:18:e7:83:45:ed
    Dec 07 11:44:24          Severity:5          Associated with station 00:26:bb:00:cc:a2
    Dec 07 11:44:24          Severity:5          Installed unicast CCMP key for supplicant 00:26:bb:00:cc:a2
    Dec 07 11:44:40          Severity:5          Associated with station 3c:d0:f8:8e:31:b5
    Dec 07 11:44:40          Severity:5          Installed unicast CCMP key for supplicant 3c:d0:f8:8e:31:b5

    Hi,
    I have roughly the same issue.  I have a new 5th Generation (I had a 4th Generation that seemed to do the same thing) that will reboot for no apparant reason.  I have a 1st Generation Time Capsule as the main wireless access point, then a 2nd generation Extreme extending, and the 5th generation as another extension.  I also have an Express extending to the top floor.  All my other devices work great, but the new 5th generation will just reboot over and over.  Seems to be every 5 - 10 minutes.  I have it setup in the middle of my house, with some devices connected to it via ethernet cable.  I used to have the Express in that location connected to a switch for my devices, and never had any issues.  My log looks similar, basically nothing useful. 

  • Mini DVI to Video: blue screen after disconnect

    Hi,
    can't find a solution: after disconnecting the mini dvi to video-adapter I always get a blue screen and I need to restart my brandnew 20" iMac.
    I use it to connect my (old) television via s-video. It is clear that I bought the right Mini-DVI-Adapter.
    Can anyone help or has the same problem?
    iMac 20"   Mac OS X (10.4.8)  

    Thanks for the help. I'd figured out that shutting it off would keep it from happening and was probably a "best practice," but since 90% of my television watching is from my eyeTV, I'd be turning it on and off a lot.
    The only problem with leaving the setup plugged in, is that as soon as the mini DVI cable is plugged in, the resolution on the iMac resets itself to super-large fit for television mode and becomes virtually unusable as a computer, thus when I want to use my computer, the cable has to be unplugged....unless of course you know something I don't
    Thanks,
    Shaun

  • Why is Mac Book allowing books and apps I don't use to collect info and send it out without my knowledge.  My computer will not disconnect from the internet.  It seems to find a clone router and continues even when I shut down and unplug my my own home iy

    /*! flamingo 6.4.0 2013-06-18 */
    function AppListView(){this.allBooks=[],this.recentBooks=[],this.$dom=$("<div>",{"class" :"app-list"}),this._loadBooks(),this._createView(),setTimeout($.proxy(this._prel oadIcons,this),1e3)}function Beacon(e,a){location.protocol.match(/^http/)&&e.enable_tracking&&e.product&&e.p latform&&e.version&&(this.title=e.title.toLowerCase(),this.product=e.product.toL owerCase(),this.platform=e.platform.toLowerCase(),this.version=e.version.toLower Case(),this.locale=a.isoCodes[0],this.loaded=$.getScript(App.resourcePath+"sc.js ",$.proxy(this.init,this)),$(e).on("navigate",$.proxy(this.navigate,this)),$(e). on("search",$.proxy(this.search,this)),$(e).on("searchresults",$.proxy(this.sear chResultSelected,this)),$(e).on("feedback",$.proxy(this.feedback,this)),$(e).on( "mediastart",$.proxy(this.mediaStart,this)))}function Book(e){if($.extend(this,e),this.name=this.title,$.each(this.topics,$.proxy(fun ction(e,a){this.topics[e]=new Topic(e,a,this)},this)),$.each(this.sections,$.proxy(function(e,a){this.section s[e]=new Section(e,a,this)},this)),$.each(this.toc,$.proxy(function(e,a){this.toc[e]=thi s.topics[a]||this.sections[a]||a},this)),$.each(this.sections,$.proxy(function(e ,a){var t=a.children;$.each(t,$.proxy(function(e,i){t[e]=this.topics[i]||this.sections[ i]||i,t[e].parent=a},this))},this)),this.landing=this.topics[this.landing]||"",t his.copyright=this.topics[this.copyright]||"",!this.landing){for(var a=this.toc[0];a instanceof Section;)a=a.children[0];this.landing=a}this.unknown_topic=new Topic("unknown",{name:"TOPIC_UNAVAILABLE".loc(),href:""},this)}function ContentView(e,a){this.name=e,this.$dom=$("<div>",{id:e,"class":"contentView"}). addClass(e),this.topic=null,a&&this.showTopic(a)}function DebugPanel(e){this.$dom=$("<dl>",{"class":"debug-info"}),$("<dt>",{text:"flamin go"}).appendTo(this.$dom),$("<dd>",{text:e.version}).appendTo(this.$dom),$.each( ["build_id","title","design","enable_tracking","product","platform","version","l ocale","collect_feedback","framework","source_schema"],$.proxy(function(a,t){$(" <dt>",{text:t}).appendTo(this.$dom),$("<dd>",{text:e.book[t]||"[ undefined ]"}).toggleClass("undefined",!e.book[t]).appendTo(this.$dom)},this))}function Design(e){this.name=e||"default";var a=Design.namedSkins[this.name];this.cssClass="",this.isLayeredStyle=!1,this.hel pviewerWindowSize={height:520,width:815},this.dismissSearchLabel="Cancel",this.p reloadList=["lightbox-close.png","[email protected]","lightbox-close-hover.p ng","[email protected]","disclosure-open.png","[email protected]" ],a&&(a.preloadList&&(this.preloadList.concat(a.preloadList),delete a.preloadList),$.extend(this,a))}function HelpViewerBook(e){this.id=e.bookID(),this.title=e.title(),this.link="help:openb ook='"+this.id+"'",this.iconHref=("x-help-icon://"+encodeURIComponent(this.id)). replace(/\.help$/,""),this.apple=this.id.match(/^com\.apple\./)?!0:!1}function LandingView(e,a){this.book=e,this.bundle=a,this.contentView=new ContentView("landing",e.landing),this.$dom=this.contentView.$dom,this.isHelpCen ter="HelpViewer"in window&&!HelpViewer.currentScope(),this.isHelpCenter?this._addMarquee():this._l ayoutLanding()}function LightboxView(e){this._$previous_focus=$(),this.visible=!1,this.$dom=$("<div>",{ id:e,"class":e,"aria-hidden":"true",role:"alertdialog",tabindex:"-1"}).hide(),$( "<div>",{"class":"background"}).appendTo(this.$dom);var a=$("<div>",{id:"lightboxOuterWrapper"}).appendTo(this.$dom),t=$("<div>",{id:"l ightboxInnerWrapper"}).appendTo(a),i=$("<div>",{id:"lightboxContentWrapper"}).ap pendTo(t);this.contentView=new ContentView("lightbox-content"),i.append(this.contentView.$dom);var n=$("<img>",{src:App.resourcePath+"images/[email protected]",alt:"Close".lo c(),role:"button"});$("<a>",{"class":"closeButton"}).append(n).appendTo(a).click ($.proxy(function(){App.navigation.popPrevious(),this.hide()},this)).hover(funct ion(){n.attr("src",App.resourcePath+"images/[email protected]")},funct ion(){n.attr("src",App.resourcePath+"images/[email protected]")})}function NavController(e){this._book=e,this._linearTOC=[],this._currentItem=null,this._p ushedItem=null,this._addItems(e.toc),App.design.isLayeredStyle||this._linearTOC. unshift(e.landing),this._checkHash();var a=$.proxy(this._checkHash,this);"onhashchange"in window?$(window).bind("hashchange",a):setTimeout(function(){setInterval(a,100)} ,500)}function Section(e,a,t){this.id=e,this.book=t,$.extend(this,a)}function TOC(e,a,t){this.book=e,this._contentPath=t,this._$liByID={},this.$dom=this._$ul ForNavList(this.book.toc,0).addClass("toc");var i=$("<li>",{role:"treeitem","class":"home"}).prependTo(this.$dom),n=$("<a>",{hr ef:"#"+this.book.landing.id}).appendTo(i);$("<img>",{src:a+"images/tangerine/hom [email protected]"}).appendTo(n),$("<span>",{"class":"name",text:"Home".loc()}).appendTo( n),this._$liByID[e.landing.id]=i,this.$dom.on("click","a",$.proxy(this._toggleSe ctions,this))}function Topic(e,a,t){this.id=e,this.book=t,this.categories=[],$.extend(this,a),this.ful l_name=this.name,this._content_loaded=!1,this.$content=$("<div>",{id:e}),this.is _landing=$.inArray("landing",this.categories)>-1,this.is_glossary=$.inArray("glo ssary",this.categories)>-1,this.is_external=!!this.href.match(/^\w+:/),this.is_h ash=!!this.href.match(/^#/)}function TermMatch(e,a,t){this.term=e,this.topic=App.book.topicForID(a),this.weight=t}fu nction WeightedTopic(e){this.topic=e.topic,this.weight=e.weight}function SearchResult(e,a,t){this.query=e,this.matchingTerms=a,this.topics=[];var i={};$.each(t,function(e,a){var t=a.topic.id,n=i[t];n?n.addMatch(a):i[t]=new WeightedTopic(a)});var n=$.map(i,function(e){return e}),o=n.sort(function(e,a){return a.weight-e.weight});this.topics=$.map(o,function(e){return e.topic})}function SearchIndex(e){this._keywordStemRegex="",this._matchesByTerm={};var a,t,i,n,o=[];i=function(e,t){return new TermMatch(a,t,e)},n=function(e,a,t){return"\\b"+a+(t?t.replace(/(.)/g,"$1?"):"" )+"\\b"};for(var s in e)a=s,t=e[a],this._matchesByTerm[a]=$.map(t,i),a=a.replace(/(\.|\*|\+|\?|\{|\}| \||\[|\]|\(|\)|\-|\^|\$)/g,"\\$1"),a=a.replace(/^(..)(.+)$/,n),o.push(a);o.sort( function(e,a){return a.length-e.length}),this._keywordStemRegex=RegExp(o.join("|"),"gi")}window.App= {version:"6.4.0",env:"production"},location.search.match(/%23/)&&location.replac e(location.href.replace("%23","#")),$.ajaxSetup({crossDomain:!1}),window.APD={}, $.extend(window.App,{book:null,bundle:null,design:null,navigation:null,searchInd ex:null,resourcePath:"",queryParams:{},views:{}}),String.prototype.loc=function( ){return App.bundle?App.bundle.translate(this):this},function(){if("console"in window||(window.console={},$.each(["assert","count","debug","dir","dirxml","err or","group","groupCollapsed","groupEnd","info","log","markTimeline","profile","p rofileEnd","time","timeEnd","trace","warn"],function(){window.console[this]=$.no op})),location.search&&$.each(location.search.substring(1).split("&"),function() {var e=this.split("=");App.queryParams[decodeURIComponent(e[0])]=decodeURIComponent( e[1])}),App.queryParams.topic){var e=App.queryParams.topic,a=location.pathname;return delete App.queryParams.topic,a+=$.param(App.queryParams)?"?"+$.param(App.queryParams): "",a+="#"+e,location.replace(a),void 0}App.queryParams.localePath&&App.queryParams.localePath.match(/^http/)&&delete App.queryParams.localePath,navigator.userAgent.match(/Help Viewer/)&&($.browser.helpviewer=!0),$(document).ready(function(){function e(){clearTimeout(i),t.hide().remove()}function a(){e(),console.error("Could not load navigation.json file."),$("html").addClass("nocontent")}$("#javascriptDisabled").remove(),App.r esourcePath=$("script[src$='flamingo.js']").attr("src").replace(/flamingo\.js$/, ""),(new Image).src=App.resourcePath+"images/[email protected]";var t=$("<div>",{id:"updating"}).hide().appendTo("body").append($("<img>",{src:App. resourcePath+"images/[email protected]"})),i=setTimeout(function(){t.show()},500);A pp._loadBundle().pipe(function(){return $.getJSON(App.bundle.URL()+"navigation.json",function(e,a,t){App._addServerType (t),App.book=new Book(e),App.beacon=new Beacon(App.book,App.bundle.current)})}).fail(a).then(e).then(App.init).then(App .showInterface).then(function(){return $.getJSON(App.bundle.URL()+"search.json",function(e){App.searchIndex=new SearchIndex(e)})}).fail(function(){console.error("Could not load search.json file.")})}),App._loadBundle=function(){var e=$.Deferred(),a=App.queryParams.localePath||App.queryParams.lang||window.local ePath;return App.bundle=new APD.Bundle("",a,function(){$("body").attr("dir",this.current["text-direction"]) ,$("<div>",{"class":"localizedUpdateText",text:"Loading latest help...".loc()}).appendTo("#updating"),$("html").attr("lang",this.current.isoCo des[0]),e.resolve()}),e},App._addServerType=function(e){var a=e.getResponseHeader("x-server-type");"development"!==this.env&&a&&a.match(/re view|staging/)&&(this.env=a),$("html").addClass(this.env)},App.setTitle=function (e){var a=App.book.title,t=e&&(e.full_name||e.name);t!==a&&(a+=": "+$("<textarea>",{html:t}).text()),document.title=a},App.init=function(){var e=$("html");if($.each($.browser,function(a){"version"!==a&&e.addClass(a)}),e.ha sClass("nocontent")||$("#contentUnavailable").remove(),window.devicePixelRatio>1 &&void 0!==document.body.style.backgroundSize&&e.addClass("bgsize"),App.design=new Design(App.book.design),$.browser.helpviewer&&Design.helpviewerWindowSize){var a=Design.helpviewerWindowSize,t=Math.max(a.width,top.outerWidth),i=Math.max(a.h eight,top.outerHeight);top.resizeTo(t,i)}if(navigator.userAgent.match(/(iphone|i pad)/i)){"-webkit-overflow-scrolling"in document.body.style||e.addClass("nooverflow");var n=720;App.design.helpviewerWindowSize&&(n=App.design.helpviewerWindowSize.width ),$("<meta>",{name:"viewport",content:"maximum-scale=3.0,width="+n}).prependTo(" head")}},App.showInterface=function(){App.createViews(),App.design.preloadImages (),App.navigation=new NavController(App.book)},App.createViews=function(){var e=$("body"),a=$("<div>",{id:"container","class":"container"}),t=$("<div>",{id:" menu","class":"menu"}).appendTo(a),i=$("<div>",{id:"front-matter","class":"front -matter"}).appendTo(a),n=$("<div>",{id:"navigation","class":"navigation",role:"n avigation"}).appendTo(i);App.views.landing=new LandingView(App.book,App.bundle),App.views.toc=new TOC(App.book,App.resourcePath,App.bundle.URL()),App.views.topic=new ContentView("topic"),App.views.debug=new DebugPanel(App),App.views.lightbox=new LightboxView("lightbox"),$.browser.helpviewer&&!HelpViewer.currentScope()&&(App .views.appList=new AppListView),a.add(App.views.lightbox.$dom).addClass(App.design.name).addClass( App.design.cssClass),e.prepend(a),e.append(App.views.debug.$dom),i.prepend(App.v iews.landing.$dom),a.append(App.views.topic.$dom.hide()),searchController.addInt erfaceElements(n),n.append(App.views.toc.$dom),e.append(App.views.lightbox.$dom) ,App.views.appList&&e.append(App.views.appList.$dom),$("<h1>",{"class":"book-tit le"}).append($("<a>",{href:"#",text:App.book.title})).appendTo(t),$(App.book).on ("navigate",$.proxy(App.views.toc.updateSelection,App.views.toc)),$(App.book).on ("navigate",$.proxy(App.toggleViews,App)),$("body").on("orientationchange",App.r esetOverflow)},App.resetOverflow=function(){var e,a=App.views,t=$(".toc").add(a.landing.$dom).add(a.topic.$dom);t.css("overflow ","visible"),e=t.css("overflow"),t.css("overflow","")},App.toggleViews=function( e,a,t){var i=$(".front-matter"),n=i.find("#landing");App.setTitle(a),t===App.views.appList ?(App.views.topic.hide(),i.hide(),App.views.appList.show()):(App.views.appList&& App.views.appList.hide(),i.show()),t===App.views.landing&&App.views.topic.hide() ,App.design.isLayeredStyle?t===App.views.landing||t===App.views.toc?(i.attr({"ar ia-hidden":!1,tabindex:-1}).show().focus(),App.views.topic.hide()):t===App.views .topic&&i.attr({"aria-hidden":!0,tabindex:-1}).hide():t===App.views.landing||t== =App.views.toc?n.show():t===App.views.topic&&n.hide(),$("#container").attr("aria -hidden",t===App.views.lightbox),t!==App.views.lightbox&&App.views.lightbox.hide ();var o="HelpViewer"in window&&"currentScope"in HelpViewer,s="HelpViewer"in window&&"setBreadcrumbBookTitleWithAnchor"in HelpViewer;o&&s&&"com.apple.machelp"===HelpViewer.currentScope()&&HelpViewer.se tBreadcrumbBookTitleWithAnchor("",null),$("body").prop("scrollTop",0),$("html"). is(".nooverflow")&&window.scrollTo(0,1)},$(document).on("keydown",function(e){!( e.ctrlKey||e.metaKey||e.shiftKey||App.views.lightbox.visible)&&"querySelectorAll "in document&&(37===e.which?App.navigation.previous():39===e.which&&App.navigation. next())}),$(document).on("keypress",function(e){e.ctrlKey&&e.metaKey&&2===e.keyC ode&&App.views.debug.$dom.toggle()}),$("#localizations select").live("change",function(){delete App.queryParams.localePath,App.queryParams.lang=$(this).val(),location.href="?" +$.param(App.queryParams)})}(),AppListView.prototype.show=function(){this.$dom.s how()},AppListView.prototype.hide=function(){this.$dom.hide()},AppListView.proto type._loadBooks=function(){var e=this;"HelpViewer"in window&&HelpViewer.availableBooks&&HelpViewer.recentApplicationList&&($.each(He lpViewer.availableBooks(),function(a,t){e.allBooks.push(new HelpViewerBook(t))}),$.each(HelpViewer.recentApplicationList(),function(a,t){va r i=RegExp(t,"i");$.each(e.allBooks,function(a,t){t.id.match(i)&&e.recentBooks.pu sh(t)})}))},AppListView.prototype._createView=function(){var e=5,a="Show all".loc(),t="Show less".loc(),i=function(){var e=$(this).parents(".app-group"),i=e.hasClass("closed")?t:a;e.toggleClass("close d").find(".showHide").text(i)};if(this.allBooks.length){var n,o,s;n=$("<div>",{"class":"app-group closed"}).appendTo(this.$dom),$("<div>",{"class":"title"}).appendTo(n),$("<a>", {"class":"showHide",text:a,click:i}).appendTo(n),$("<div>",{"class":"clear"}).ap pendTo(n),$("<div>",{"class":"initial-set"}).appendTo(n),$("<div>",{"class":"add itional-set"}).appendTo(n),o=n.clone(!0,!0).appendTo(this.$dom),s=n.clone(!0,!0) .appendTo(this.$dom),$(".title",n).text("Recent applications".loc()),$(".title",o).text("Apple applications".loc()),$(".title",s).text("Other applications".loc()),$.each(this.recentBooks,function(a,t){e>a&&t.$iconLink().a ppendTo(n)}),$.each(this.allBooks,function(a,t){if("com.apple.HelpCenter.help"!= =t.id&&"com.apple.machelp"!==t.id){var i=t.apple?o:s,n=2*e>i.children(".initial-set").children().length?i.children(".i nitial-set"):i.children(".additional-set");t.$iconLink().appendTo(n)}}),$([n,o,s ]).each(function(){if(0===$(".additional-set",this).children().length&&$(".showH ide",this).remove(),0===$(".book",this).length)return $(this).remove(),void 0;for(var a=$(".book:last",this),t=a.parent();0!==t.find(".book").length%e;)$("<a>",{"cla ss":"book"}).appendTo(t)})}},AppListView.prototype._preloadIcons=function(){var e=this;setTimeout(function(){$.each(e.allBooks,function(e,a){setTimeout(functio n(){a.preloadIcon()},20*e)})},1e3)},function(e){var a={events:"",channel:"",pageName:"",eVar1:null,eVar16:null,eVar17:null,eVar18:n ull,eVar20:null,eVar21:null,eVar28:null};e.init=function(){this.setAccount(),thi s.setConstants()},e.setAccount=function(){var e="aaplpdglobaldev";"production"===App.env&&(e="aaplpdglobal"),this.sc=s_gi(e), this.sc.server=this.title,this.sc.trackDownloadLinks=!1,this.sc.trackExternalLin ks=!1,this.sc.trackInlineStats=!1,this.sc.useForcedLinkTracking=!1,this.sc.linkD ownloadFileTypes="exe,zip,wav,mp3,mov,mpg,avi,wmv,pdf,doc,docx,xls,xlsx,ppt,pptx ",this.sc.linkInternalFilters="help.apple.com",this.sc.linkLeaveQueryString=!1,t his.sc.linkTrackVars="eVar1,prop1,eVar2,prop2,eVar3,prop3,eVar4,prop4,eVar5,prop 5,eVar6,prop6,eVar7,prop7,eVar8,prop8,eVar9,prop9,eVar10,prop10,eVar11,prop11,eV ar12,prop12,eVar13,prop13,eVar14,prop14,eVar16,prop16,eVar17,prop17,eVar28,prop2 8,events",this.sc.linkTrackEvents="event1,event2,event3,event4",this.sc.usePlugi ns=!1,this.sc.doPlugins=$.noop,this.sc.visitorNamespace="appleproductdocumentati on",this.sc.trackingServer="metrics.apple.com",this.sc.trackingServerSecure="sec uremetrics.apple.com"},e.setConstants=function(){var e="unknown",a="unknown",t="unknown",i="help:"+this.product,n=i+":"+this.platfor m,o=n+":"+this.version;$.each(["helpviewer","safari","webkit","opera","mozilla", "msie"],function(){return this in $.browser?(e=this,!1):void 0}),$.each([/Mac OS X ([_\.\d]+)/,/iPhone OS ([_\.\d]+)/,/CPU OS ([_\.\d]+)/,/Windows NT ([_\.\d]+)/],function(){var e=navigator.userAgent.match(this);return e?(a=e[0].replace(this,"$1").replace(/_/g,"."),!1):void 0}),$.each([/Version\/([_\.\d]+)/,/Chrome\/([_\.\d]+)/,/MSIE ([_\.\d]+)/,/Firefox\/([_\.\d]+)/],function(){var e=navigator.userAgent.match(this);return e?(t=e[0].replace(this,"$1").replace(/_/g,"."),!1):void 0}),$.extend(this.sc,{eVar2:navigator.userAgent,eVar3:e+":"+t,eVar4:a,eVar5:e+" :"+a,eVar6:App.version,eVar7:i,eVar8:n,eVar9:o,eVar10:this.product,eVar11:this.p latform,eVar12:this.version,eVar13:(navigator.browserLanguage||navigator.systemL anguage||navigator.userLanguage||navigator.language).substr(0,2),eVar14:this.loc ale,eVar15:navigator.language})},e._track=function(e,t){this.loaded.then($.proxy (function(){$.extend(this.sc,a,t),this._resetProps(),this.sc.t(!0,"o",e)},this)) },e._resetProps=function(){var e,a,t={};for(e in this.sc)e.match(/prop\d+/)&&(this.sc[e]=null),e.match(/eVar\d+/)&&this.sc[e]&&( a=e.replace(/eVar(\d+)/,"$1"),t["prop"+a]="D=v"+a);$.extend(this.sc,t)},e.naviga te=function(e,a){var t=this.title+":"+a.name.toLowerCase();this._track("view",{events:"event1",chann el:t,pageName:t,eVar1:(a.is_glossary?"glossary:":"")+a.name,eVar28:a.id})},e.sea rch=function(e,a,t){if(a){var i=this.title+":search",n=t.length?"search":"search: no results";this._track(n,{events:t.length?"event2":"event3",channel:i,pageName:i, eVar1:n,eVar16:a})}},e.searchResultSelected=function(e,a,t){var i=this.title+":search",n="search: result click-through";this._track("name",{events:"event4",channel:i,pageName:i,eVar1:n ,eVar16:a,eVar17:t.name,eVar18:t.id})},e.feedback=function(e,a){var t=this.title+":"+a.name.toLowerCase();this._track("feedback",{events:"event5",c hannel:t,pageName:t,eVar1:a.name,eVar21:"false",eVar28:a.id})},e.mediaStart=func tion(e,a){var t=this.title+":media",i=App.navigation._currentItem;this._track("media: start",{events:"event7",channel:t,pageName:t,eVar1:i.name,eVar18:a,eVar20:"vide o",eVar28:i.id})}}(Beacon.prototype),Book.prototype.topicForID=function(e){retur n e?this.topics[e]:this.landing},Book.prototype.topicForURL=function(e){var a;return $.each(this.topics,function(){return this.href===e?(a=this,!1):void 0}),a},Book.prototype.sectionForID=function(e){return this.sections[e]},Book.prototype.itemForID=function(e){var a=this.topicForID(e)||this.sectionForID(e);return(!a||a instanceof String)&&(a=this.unknown_topic),a},function(){function e(e){return e?e.match(/[^\/]$/)?e+="/":e:""}function a(){var e=[navigator.browserLanguage||navigator.systemLanguage||navigator.userLanguage| |navigator.language];if("HelpViewer"in window&&"preferredLanguages"in HelpViewer)try{e=HelpViewer.preferredLanguages().concat(e)}catch(a){}if("iTunes "in window)try{e=$.map(iTunes.acceptedLanguages.split(","),function(e){return e.replace(/\+?([^;]+);.*/,"$1")}).concat(e)}catch(a){}return e=$.map(e,function(e){return e?(e=e.toLowerCase(),2>=e.length?e:[e,e.substr(0,2)]):null})}function t(e){return i||(i={},$.each(APD.translations,function(e,a){$.each(a.meta.isoCodes,function( e,t){i[t]=a})})),i[e]}var i,n={name:"English",isoName:"English",isoCodes:["en"],folder:"en.lproj","text-d irection":"ltr"};APD.Bundle=function(a,t,i){this.path=e(a),this.current=$.extend ({},n),t&&t.match(/^.*\.lproj$/)&&(this.current.folder=t),this.locales=[],this._ uiStrings={};var o=this;this._loadList().done(function(){var e=o._lookupLocale(t)||o._browserLocale();e&&(o.current=e)}).always(function(){o ._loadStrings()}).always(function(){i&&i.call&&i.call(o,o)})};var o=APD.Bundle.prototype;o._loadList=function(){var e=this,a=$.Deferred();return $.getJSON(this.path+"locale-list.json").done(function(t){e.locales=t,a.resolve( )}).fail(function(){return console.warn("Unable to load language list, loading content from "+e.current.folder),$.getJSON(e.URL()+"locale-info.json").done(function(t){t.me ta.folder=e.current.folder,e.locales.push(t.meta),a.resolve()}).fail(function(){ a.reject()})}),a},o._loadStrings=function(){var e=this,a=e.current.isoCodes;a.push("en"),$.each(a,function(a,i){var n=t(i);return n?(e._uiStrings=n.ui||{},e.cssClass=n.meta.cssClass||"",!1):void 0})},o._lookupLocale=function(e){if(!e)return null;var a=null;return $.each(this.locales,function(t,i){var n=i.isoCodes.concat([i.folder,i.name,i.isoName]);return $.inArray(e,n)>-1?(a=i,!1):void 0}),a},o._browserLocale=function(){var e=null,t=this.locales;return $.each(a(),function(a,i){return $.each(t,function(a,t){return $.inArray(i,t.isoCodes)>-1?(e=t,!1):void 0}),e?!1:void 0}),e},o.list=function(){if(2>this.locales.length)return[];if("iTunes"in window)return[];if("HelpViewer"in window)return[];var e=$.map(this.locales,function(e){return{name:e.name,isoCode:e.isoCodes[0]}});re turn e.sort(function(e,a){return e.name.localeCompare(a.name)}),e},o.translate=function(e){return this._uiStrings[e]||e},o.URL=function(){return this.path+e(this.current.folder)}}(),ContentView.prototype.showTopic=function(e ){e!==this.topic&&(this.topic=e,this.$dom.empty().prop("scrollTop",0).append(e.l oadContent()),"HelpViewer"in window&&"mtContentAccessed"in HelpViewer&&HelpViewer.mtContentAccessed(e.id+" "+e.name,e.book.title)),this.$dom.attr("aria-hidden",!1).show().trigger("conten tLoaded")},ContentView.prototype.hide=function(){this.$dom.attr("aria-hidden",!0 ).hide()},function(){$(".contentView a[href*='.html']").live("click",function(e){var a=$(this).attr("href"),t=a.match(/#/)?a.replace(/^.*\.html(#?.*)/,"$1"):"",i=a. replace(/^(.*\.html)#?.*/,"$1"),n=App.book.topicForURL(i)||App.book.topicForID(t );a.match(/^http/)||a.match(/\//)||(e.preventDefault(),n&&n.navigateTo())}),$(". contentView .Task h2, .contentView .task h2, .showTaskBody, .hideTaskBody").live("click",function(){var e=$(this).parent(".Task, .task").filter(":first"),a=e.toggleClass("closed").hasClass("closed");e.find("[ aria-expanded]").attr("aria-expanded",!a),e.find("[aria-hidden]").attr("aria-hid den",a)}),$(".contentView .LinkAppleWebMovie a, .contentView .movie a").live("click",function(e){if(!("HelpViewer"in window&&HelpViewer.availableBooks)){e.preventDefault();var a=$(this).attr("href");movieLightboxController.showLightboxWithURL(a)}})}(),Des ign.prototype.preloadImages=function(){$.each(this.preloadList,function(e,a){(ne w Image).src=App.resourcePath+"images/"+a})},Design.namedSkins={magenta:{helpview erWindowSize:null,cssClass:"layered",isLayeredStyle:!0},red:{helpviewerWindowSiz e:null,cssClass:"layered",isLayeredStyle:!0},tangerine:{dismissSearchLabel:"Clos e",preloadList:["tangerine/[email protected]","tangerine/disclosure-open.pn g","tangerine/[email protected]","tangerine/home.png","tangerine/[email protected] g","tangerine/menu-background.png"]}},HelpViewerBook.prototype.preloadIcon=funct ion(){(new Image).src=this.iconHref},HelpViewerBook.prototype.$iconLink=function(){return $("<a>",{href:this.link,"class":"book"}).append($("<img>",{src:this.iconHref})) .append($("<div>",{text:this.title}))},function(){var e=LandingView.prototype;e.showTopic=function(e){this.contentView.showTopic(e)}, e._layoutLanding=function(){if(!App.design.isLayeredStyle){var e=this.$dom.wrapInner("<div class='row' />").wrapInner("<div class='center' />").find(".center"),a=$("<div class='row' />").appendTo(e);$.browser.helpviewer||a.append(this._$languageMenu()),$("<div> ",{"class":"copyrightTagline",text:this.book.copyright_text}).appendTo(a)}},e._a ddMarquee=function(e){var a=$(".marquee",e),t=$("img",a).remove().attr("src"),i=$(".title",a).remove().te xt(),n="url("+t+") 0 0 no-repeat, -webkit-gradient(linear, 0 0, 0 100%, from(#ebebeb), to(#fff))";a.length&&e.addClass("hasMarquee"),$("<p>",{text:i}).appendTo(a),$(" <p>",{"class":"spacer"}).prependTo(a).clone().appendTo(a),a.css("background",n)} ,e._$languageMenu=function(){var e=this.bundle.list();if(0!==e.length){var a=$("<div>",{id:"localizations"}),t=$("<select>").appendTo(a);return $("<option>",{text:"Change Language".loc()}).appendTo(t),$.each(e,function(e,a){$("<option>",{val:a.isoCod e,text:a.name}).appendTo(t)}),a}}}(),LightboxView.prototype.showTopic=function(e ){this._$previous_focus=$(":focus"),this.visible=!0,this.contentView.showTopic(e ),this.$dom.show().attr("aria-hidden","false").attr("tabindex","0"),(!$.browser. msie||$.browser.version>=8)&&this.$dom.focus()},LightboxView.prototype.hide=func tion(){(!$.browser.msie||$.browser.version>=8)&&(this.$dom.blur(),this._$previou s_focus.focus()),this.$dom.hide().attr("aria-hidden","true").attr("tabindex","-1 "),this._$previous_focus$previous_focus=$(),this.visible=!1},function(){var e=NavController.prototype,a="showHelpViewerApplicationList";e._addItems=functio n(e){var a=this;$.each(e,function(e,t){t instanceof Section&&(App.design.isLayeredStyle&&!t.parent&&a._linearTOC.push(t),a._addItem s(t.children)),t instanceof Topic&&a._linearTOC.push(t)})},e.hash=function(){return location.hash.replace(/[^\-_a-z0-9]/gi,"")},e._checkHash=function(){this._goToI D(this.hash())},e._goToID=function(e){if(!this._currentItem||this._currentItem.i d!==e){searchController.navigateToItemWithID(e);var t,i=App.book.itemForID(e);i||(i=this._book.landing),e===a?t=App.views.appList:i instanceof Section?t=App.views.toc:i instanceof Topic&&(1>=App.book.toc.length&&App.book.toc[0]instanceof Topic&&i.is_landing?t=App.views.topic:i.is_landing?t=App.views.landing:i.is_glo ssary?(this._pushedItem=this._currentItem,t=App.views.lightbox):t=App.views.topi c,t.showTopic(i)),this._currentItem=i,$(this._book).trigger("navigate",[i,t])}}, e._goToItem=function(e){location.hash=e.id},e._goToPageOffset=function(e){for(va r a=0,t=0;this._linearTOC.length>t;t++)if(this._currentItem===this._linearTOC[t]) {a=t;break}a+=e,0>a?a=this._linearTOC.length+a:a>=this._linearTOC.length&&(a-=th is._linearTOC.length),this._goToItem(this._linearTOC[a])},e.previous=function(){ this._goToPageOffset(-1)},e.next=function(){this._goToPageOffset(1)},e.popPrevio us=function(){this._pushedItem?(this._goToItem(this._pushedItem),this._pushedIte m=null):this._goToItem(this._book.landing)}}(),Section.prototype.navPath=functio n(){return(this.parent?this.parent.navPath():[]).concat(this)},Section.prototype .linkHref=function(){return"#"+this.id},function(){var e=TOC.prototype;e._$ulForNavList=function(e,a){var t=$("<ul>",{role:a?"group":"tree"}).append($.map(e,$.proxy(function(e){return this._$liForNavItem(e,a)},this)));return t},e._$liForNavItem=function(e,a){if("string"==typeof e)return console.log("Unresolved TOC item:",e),void 0;var t=$("<li>",{role:"treeitem"}),i=$("<a>",{href:e.linkHref()}).appendTo(t);return this._$liByID[e.id]=t,t.add(i).data("item",e),e.categories&&t.addClass(e.catego ries.join(" ")),e.icon&&$("<img>",{src:this._contentPath+e.icon,alt:""}).prependTo(i),$("<s pan>",{"class":"name",html:e.name}).appendTo(i),e instanceof Section&&(t.addClass("closed hasChildren").attr("aria-expanded","false"),this._$ulForNavList(e.children,a+1) .appendTo(t)),t},e.updateSelection=function(e,a){this.$dom.find("li").removeClas s("selected").attr("aria-selected",!1);var t=this._$liByID[a.id],i=this.$dom.children("li"),n=!1;if(App.design.isLayeredSt yle&&(n=!0,t&&a.id!==this.book.landing.id||!this.book.toc.length||(a=this.book.t oc[0],t=this._$liByID[a.id]),a instanceof Section&&(i.addClass("closed").attr("aria-expanded",!1),i.is(t)))){var o=t.children("ul:first").height();o&&(this.$dom.css("overflow","hidden"),this.$ dom.css("min-height",o),this.$dom.css("overflow",null))}t&&t.addClass("selected" ).attr("aria-selected",!0).parents("li").add(n?t:null).removeClass("closed").att r("aria-expanded",!0)},e._toggleSections=function(e){var a=$(e.currentTarget).parents("li:first"),t=a.data("item"),i=a.hasClass("closed" );t instanceof Section&&(App.design.isLayeredStyle?a.removeClass("closed").attr("aria-expanded ",!0):(a.toggleClass("closed",!i).attr("aria-expanded",i),e.preventDefault())),t instanceof Topic&&"HelpViewer"in window&&"mtStatisticsIncrement"in HelpViewer&&HelpViewer.mtStatisticsIncrement(0,0,1,0)}}(),function(){var e=Topic.prototype,a=!1;flamingoQTDetect=!1,function(){return navigator.userAgent.match(/applewebkit/i)?(a=!0,void 0):"execScript"in window?(execScript('on error resume next: flamingoQTDetect = IsObject(CreateObject("QuickTimeCheckObject.QuickTimeCheck.1"))',"VBScript"),a= flamingoQTDetect,void 0):($.each($.makeArray(navigator.plugins),function(){return this.name.match(/quicktime/i)?(a=!0,!1):void 0}),void 0)}(),e.navPath=function(){return(this.parent?this.parent.navPath():[]).concat( this)},e.breadcrumbHTML=function(){var e=this.navPath(),a="rtl"===$("body").attr("dir")?"&#9664;":"&#9658;",t=" <span class='breadcrumbArrow'>"+a+"</span> ";return e.pop(),$.map(e,function(e){return e.name}).join(t)},e.linkHref=function(){return this.is_external||this.is_hash?this.href:"#"+this.id},e.navigateTo=function(){l ocation.href=this.linkHref()},e.loadContent=function(){if(!this._content_loaded) {var e=App.bundle.URL(),a=this,t="";a.href&&$.ajax({async:!1,url:e+a.href,dataType:" html"}).done(function(a){t=a.replace(/.*<body/,"<div").replace(/\/body>.*/,"/div >"),t=t.replace(/src="/g,'src="'+e)}),t?(this.$content=$(t).addClass("apd-topic" ),this.$content.find("a[href^='http']").attr("target","_blank"),this.full_name=t his.$content.find("h1:first").text(),this.$content.attr("data-apdid",this.id).re moveAttr("id").find("a[name="+this.id+"]").remove(),this._removeSectionLinks(),t his._collapseTasks(),this._formatMovieLinks(),this._addFeedbackLink(),this._addC opyrightText(),this._content_loaded=!0):(this.$content=this._contentUnavailable( ),this._content_loaded=!1)}return this.$content},e._removeSectionLinks=function(){var e=this;this.$content.find("a:not([href^=http])").each(function(){var a,t=$(this),i=t.attr("href")||"";i.match(/^(\w+).html$/)&&(a=e.book.topicForURL (i),a||t.contents().unwrap())})},e._collapseTasks=function(){var e=this.$content.find(".Task, .task"),a=1===e.length;e.each(function(){$(this).addClass(a?"":"closed").find(" [aria-expanded]").attr("aria-expanded",a).end().find("[aria-hidden]").attr("aria -hidden",!a).end()}),$("<span>",{"class":"hideTaskBody",role:"button",text:"Hide ".loc(),"aria-label":"Hide".loc()}).prependTo(e),$("<span>",{"class":"showTaskBo dy",role:"button",text:"Show".loc(),"aria-label":"Show".loc()}).prependTo(e)},e. _addFeedbackLink=function(){if(this.book.collect_feedback){var e=$("<div>",{"class":"Feedback"}).appendTo(this.$content),a=$.param({bookID:thi s.book.title,topicTitle:this.name,appVersion:this.book.version||"",build:this.bo ok.build_id||"",source:$.browser.helpviewer?"helpviewer":"browser"});$("<span>", {"class":"LinkFeedback",text:"Was this page helpful?".loc()}).appendTo(e),$("<a>",{text:"Send feedback.".loc(),href:"http://help.apple.com/feedbackR1/English/pgs/fdbck_form.php?"+a,target:"_blank"}).click($.proxy(function(){$(this.book).trigger("feedback", this)},this)).appendTo(e)}},e._formatMovieLinks=function(){var e=this;this.$content.find(".LinkAppleWebMovie, .movie").each(function(){var t=$(this),i=t.find("a:first"),n=i.attr("href"),o=i.text(),s=e._getMovieURLFromU RLParam(n);a&&s?(i.parent().is("p")||i.wrap("<p class='p'>"),$("<a>",{title:o}).prependTo(t),t.find("a").attr({href:s,target:"h v_overlay_small"})):t.remove()})},e._getMovieURLFromURLParam=function(e){var a=null;if(e.match(/.*\?movie=/)){e=e.replace(/.*\?movie=/,"");var t=App.bundle.URL()+"movies/"+e+".json";a=this._getMovieURLFromJSONFileAtURL(t)} return a},e._getMovieURLFromJSONFileAtURL=function(e){var a=null;return $.browser.msie&&navigator.userAgent.match(/x64/i)?a:(navigator.onLine&&$.ajax({ async:!1,dataType:"json",url:e,success:function(e){a=e.length?e[0].url:e.url},er ror:function(){console.log(e+" could not be loaded")}}),a)},e._addCopyrightText=function(){if(this.book.copyright_text){var e=$("<div>",{"class":"copyrightTagline",html:this.book.copyright_text}),a=this. $content.find(".contentCell:last");
    a.length?a.append(e):this.$content.append(e)}},e._contentUnavailable=function(){ var e=$("<div>",{id:this.id,"class":"apd-topic"});if($("<img>",{"class":"topicIcon" ,src:App.resourcePath+"images/[email protected]"}).appendTo(e),$("<h1>",{text:"TOPIC _UNAVAILABLE".loc()}).appendTo(e),$.browser.helpviewer&&location.protocol.match( /file/)){var a=$("<div>",{"class":"body conbody"}).appendTo(e);a.append($.map("CONNECT_TO_INTERNET".loc().split("\n"),f unction(e){return $("<p>",{"class":"p",text:e})})),"mtStatisticsIncrement"in HelpViewer&&HelpViewer.mtStatisticsIncrement(1,0,0,0)}return e}}(),APD.translations=[{meta:{isoCodes:["ar"],isoName:"Arabic",name:"Ø§Ù„Ø¹Ø±Ø ¨ÙŠØ©"},ui:{TOPIC_UNAVAILABLE:"الموضوع المØدد غير متوÙ&#129;ر Øاليًا.",CONNECT_TO_INTERNET:'تأكد من الاتصال بالإنترنت. للØصول على مساعدة، اختر قائمة Apple > تÙ&#129;ضيلات النظام، وانقر على الشبكة، ثم انقر على "ساعدني".\nإذا كنت متصلاً بالإنترنت، ولا يظهر المØتوى بعد، Ù&#129;Øاول مرة أخرى لاØقًا.',"%@ Search Results":"%@ نتيجة (نتائج) بØØ«","Apple applications":"تطبيقات Apple",Cancel:"إلغاء","Change Language":"تغيير اللغة",Close:"إغلاق","Featured application help":"تعليمات تطبيقات مميّزة","Go to the homepage":"الانتقال إلى الصÙ&#129;ØØ© الرئيسية","Help for:":"تعليمات لـ:",Hide:"إخÙ&#129;اء",Home:"الشاشة الرئيسية","Loading latest help...":"يتم الآن تØميل Ø£Øدث التعليمات…","Other applications":"تطبيقات أخرى","Recent applications":"Ø£Øدث التطبيقات",Search:"بØØ«","Send feedback.":"أرسل تغذية مرتدّة.","Show all":"إظهار الكل","Show less":"إظهار أقل","Show the previous page":"إظهار الصÙ&#129;ØØ© السابقة","Show the next page":"إظهار الصÙ&#129;ØØ© التالية",Show:"إظهار","Was this page helpful?":"هل كانت هذه الصÙ&#129;ØØ© Ù…Ù&#129;يدة؟"}},{meta:{isoCodes:["ca"],isoName:"Catalan",name:"Català "},ui:{TOPIC_UNAVAILABLE:"El tema seleccionat no està disponible ara",CONNECT_TO_INTERNET:"Comproveu que teniu connexió a Internet. Per obtenir ajuda sobre com establir connexió, seleccioneu el menú Apple > Preferències del Sistema i feu clic a Xarxa i, després, a Assistent.\nSi esteu connectat a Internet però el contingut no apareix, proveu-ho de nou més endavant.","%@ Search Results":"%@ resultats","Apple applications":"Aplicacions d'Apple",Cancel:"Cancel·lar","Change Language":"Canviar idioma",Close:"Tancar","Featured application help":"Ajuda de l'aplicació destacada","Go to the homepage":"Vés a la pà gina inicial","Help for:":"Ajuda de:",Hide:"Ocultar",Home:"Inici","Loading latest help...":"Carregant l'ajuda més actualitzada…","Other applications":"Altres aplicacions","Recent applications":"Aplicacions recents",Search:"Buscar","Send feedback.":"Enviar opinió.","Show all":"Mostrar-ho tot","Show less":"Mostrar menys","Show the previous page":"Mostra la pà gina anterior","Show the next page":"Mostra la pà gina següent",Show:"Mostrar","Was this page helpful?":"Us ha resultat útil aquesta pà gina?"}},{meta:{isoCodes:["cs"],isoName:"Czech",name:"ÄŒeÅ¡tina"},ui:{TOPIC_UNA VAILABLE:"Vybrané téma nenà k dispozici",CONNECT_TO_INTERNET:"UjistÄ›te se, že jste pÅ™ipojeni k Internetu. Chcete-li nápovÄ›du pro pÅ™ipojenÃ, použijte pÅ™Ãkaz PÅ™edvolby systému z nabÃdky Apple, kliknÄ›te na SÃÅ¥ a poté na „Průvodce“.\nJste-li pÅ™ipojeni k Internetu, avÅ¡ak obsah se pÅ™esto nezobrazuje, zkuste to znovu pozdÄ›ji.","%@ Search Results":"Výsledky hledánÃ: %@","Apple applications":"Aplikace Apple",Cancel:"ZruÅ¡it","Change Language":"ZmÄ›nit jazyk",Close:"ZavÅ™Ãt","Featured application help":"NápovÄ›da pro doporuÄ&#141;ené aplikace","Go to the homepage":"OtevÅ™Ãt domovskou stránku","Help for:":"NápovÄ›da pro:",Hide:"Skrýt",Home:"Plocha","Loading latest help...":"NaÄ&#141;Ãtánà nejnovÄ›jÅ¡Ã nápovÄ›dy…","Other applications":"Jiné aplikace","Recent applications":"Poslednà aplikace",Search:"Hledat","Send feedback.":"SdÄ›lte nám svůj názor.","Show all":"Zobrazit vÅ¡e","Show less":"Zobrazit ménÄ›","Show the previous page":"Zobrazit pÅ™edchozà stránku","Show the next page":"Zobrazit dalÅ¡Ã stránku",Show:"Zobrazit","Was this page helpful?":"Pomohla vám tato stránka?"}},{meta:{isoCodes:["da"],isoName:"Danish",name:"Dansk"},ui:{TOPIC_UN AVAILABLE:"Det valgte emne er utilgængeligt",CONNECT_TO_INTERNET:"Sørg for, at der er oprettet forbindelse til internettet. Vælg Apple > Systemindstillinger, klik pÃ¥ Netværk, og klik derefter pÃ¥ “Hjælp migâ€&#157; for at fÃ¥ hjælp med at oprette forbindelse.\nHvis der er forbindelse til internettet, og indholdet stadig ikke vises, kan du prøve igen senere.","%@ Search Results":"%@ søgeresultater","Apple applications":"Apple-programmer",Cancel:"Annuller","Change Language":"Skift sprog",Close:"Luk","Featured application help":"Viste program","Go to the homepage":"GÃ¥ til hjemmesiden","Help for:":"Hjælp til:",Hide:"Skjul",Home:"Hjem","Loading latest help...":"Indlæser den nyeste hjælp…","Other applications":"Andre programmer","Recent applications":"Seneste programmer",Search:"Søg","Send feedback.":"Send feedback.","Show all":"Vis alle","Show less":"Vis færre","Show the previous page":"Vis forrige side","Show the next page":"Vis næste side",Show:"Vis","Was this page helpful?":"Var denne side nyttig?"}},{meta:{isoCodes:["de"],isoName:"German",name:"Deutsch"},ui:{TOPIC_UN AVAILABLE:"Das gewählte Thema ist derzeit nicht verfügbar",CONNECT_TO_INTERNET:"Vergewissern Sie sich, dass eine Verbindung zum Internet besteht. Wählen Sie „Apple“ > „Systemeinstellungen“, klicken Sie auf „Netzwerk“ und dann auf „Assistent“, wenn Sie Hilfe benötigen.\nWenn Sie mit dem Internet verbunden sind, den Inhalt aber dennoch nicht sehen können, versuchen Sie es zu einem späteren Zeitpunkt erneut.","%@ Search Results":"%@ Suchergebnisse","Apple applications":"Apple-Programme",Cancel:"Abbrechen","Change Language":"Sprache wechseln",Close:"Schließen","Featured application help":"Empfohlenes Programm-Hilfe","Go to the homepage":"Zur Homepage","Help for:":"Hilfe für:",Hide:"Ausblenden",Home:"Startseite","Loading latest help...":"Die neuste Hilfe wird geladen ...","Other applications":"Andere Programme","Recent applications":"Benutzte Programme",Search:"Suchen","Send feedback.":"Feedback senden.","Show all":"Alle einblenden","Show less":"Weniger einblenden","Show the previous page":"Nächste Seite einblenden","Show the next page":"Vorherige Seite einblenden",Show:"Einblenden","Was this page helpful?":"War diese Seite nützlich?"}},{meta:{isoCodes:["el"],isoName:"Greek",name:"Ελληνικά"},u i:{TOPIC_UNAVAILABLE:"Αυτήν τη στιγμή, το επιλεγμÎνο θÎμα δεν είναι διαθÎσιμο",CONNECT_TO_INTERNET:"Βεβαιωθείτε ότι είστε συνδεδεμÎνοι στο Διαδίκτυο. Για βοήθεια με τη σÏ&#141;νδεση, επιλÎξτε το μενοÏ&#141; Apple > «ΠÏ&#129;οτιμήσεις συστήματος», κάντε κλικ στο «Δίκτυο» και μετά στο «ΘÎλω βοήθεια».\nΕάν συνδεθείτε στο Διαδίκτυο και το πεÏ&#129;ιεχόμενο δεν εμφανίζεται ακόμη, δοκιμάστε ξανά αÏ&#129;γότεÏ&#129;α.","%@ Search Results":"%@ αποτελÎσματα αναζήτησης","Apple applications":"ΕφαÏ&#129;μογÎÏ‚ Apple",Cancel:"ΑκÏ&#141;Ï&#129;ωση","Change Language":"Αλλαγή γλώσσας",Close:"Κλείσιμο","Featured application help":"Βοήθεια Ï€Ï&#129;οτεινόμενων εφαÏ&#129;μογών","Go to the homepage":"Μετάβαση στην αÏ&#129;χική σελίδα","Help for:":"Βοήθεια για:",Hide:"ΑπόκÏ&#129;υψη",Home:"ΑφετηÏ&#129;ία","Loading latest help...":"Γίνεται φόÏ&#129;τωση της πιο Ï€Ï&#129;όσφατης Βοήθειας…","Other applications":"Άλλες εφαÏ&#129;μογÎÏ‚","Recent applications":"Î Ï&#129;όσφατη εφαÏ&#129;μογή",Search:"Αναζήτηση","Send feedback.":"Στείλετε σχόλια.","Show all":"Εμφάνιση όλων","Show less":"Εμφάνιση λιγότεÏ&#129;ων","Show the previous page":"Εμφάνιση της Ï€Ï&#129;οηγοÏ&#141;μενης σελίδας","Show the next page":"Εμφάνιση της επόμενης σελίδας",Show:"Εμφάνιση","Was this page helpful?":"Ήταν χÏ&#129;ήσιμη αυτή η σελίδα;"}},{meta:{isoCodes:["en-us","en-gb","en-ca","en-ie","en"],isoName :"English",name:"English"},ui:{TOPIC_UNAVAILABLE:"The selected topic is currently unavailable",CONNECT_TO_INTERNET:"Make sure you’re connected to the Internet. For help connecting, choose Apple menu > System Preferences, click Network, and click “Assist me.â€&#157;\nIf you’re connected to the Internet, and the content still doesn’t appear, try again later.","%@ Search Results":"%@ Search Results","Apple applications":"Apple applications",Cancel:"Cancel","Change Language":"Change Language",Close:"Close","Featured application help":"Featured application help","Go to the homepage":"Go to the homepage","Help for:":"Help for:",Hide:"Hide",Home:"Home","Loading latest help...":"Loading latest help...","Other applications":"Other applications","Recent applications":"Recent applications",Search:"Search","Send feedback.":"Send feedback.","Show all":"Show all","Show less":"Show less","Show the previous page":"Show the previous page","Show the next page":"Show the next page",Show:"Show","Was this page helpful?":"Was this page helpful?"}},{meta:{isoCodes:["es"],isoName:"Spanish",name:"Español"},ui:{TOPIC _UNAVAILABLE:"El tema seleccionado no está disponible en estos momentos",CONNECT_TO_INTERNET:"Asegúrese de que está conectado a Internet. Si necesita ayuda para conectarse, seleccione menú Apple > Preferencias del Sistema, haga clic en Red y, a continuación, haga clic en Asistente.\nSi ya está conectado a Internet pero no se muestra el contenido del tema, inténtelo de nuevo más tarde.","%@ Search Results":"%@ resultados","Apple applications":"Aplicaciones de Apple",Cancel:"Cancelar","Change Language":"Cambiar idioma",Close:"Cerrar","Featured application help":"Ayuda de la aplicación destacada","Go to the homepage":"Ir a la página de inicio","Help for:":"Ayuda de:",Hide:"Ocultar",Home:"Inicio","Loading latest help...":"Cargando la ayuda más reciente…","Other applications":"Otras aplicaciones","Recent applications":"Aplicaciones recientes",Search:"Buscar","Send feedback.":"Enviar opinión.","Show all":"Mostrar todo","Show less":"Mostrar menos","Show the previous page":"Mostrar la página anterior","Show the next page":"Mostrar la página siguiente",Show:"Mostrar","Was this page helpful?":"¿Le ha resultado útil esta página?"}},{meta:{isoCodes:["fi"],isoName:"Finnish",name:"Suomi"},ui:{TOPIC_UN AVAILABLE:"Valittu aihe ei ole tällä hetkellä käytettävissä",CONNECT_TO_INTERNET:"Varmista, että olet yhteydessä internetiin. Jos tarvitset apua yhteyden muodostamisessa, valitse Omenavalikko > Järjestelmäasetukset, osoita Verkko ja osoita Avusta.\nJos olet yhteydessä internetiin, mutta sisältö ei silti tule näkyviin, yritä myöhemmin uudelleen.","%@ Search Results":"%@ - hakutulokset","Apple applications":"Applen ohjelmat",Cancel:"Kumoa","Change Language":"Vaihda kieltä",Close:"Sulje","Featured application help":"Esittelyssä olevan ohjelman ohje","Go to the homepage":"Siirry kotisivulle","Help for:":"Ohje:",Hide:"Kätke",Home:"Koti","Loading latest help...":"Ladataan uusinta ohjetta…","Other applications":"Muut ohjelmat","Recent applications":"Äskeiset ohjelmat",Search:"Etsi","Send feedback.":"Lähetä palautetta.","Show all":"Näytä kaikki","Show less":"Näytä vähemmän","Show the previous page":"Näytä edellinen sivu","Show the next page":"Näytä seuraava sivu",Show:"Näytä","Was this page helpful?":"Oliko tästä sivusta apua?"}},{meta:{isoCodes:["fr"],isoName:"French",name:"Français"},ui:{TOPIC_UN AVAILABLE:"La rubrique sélectionnée est actuellement indisponible.",CONNECT_TO_INTERNET:"Assurez-vous d’être connecté à Internet. Pour obtenir de l’aide pour vous connecter, choisissez le menu Pomme > Préférences Système, cliquez sur Réseau puis sur Assistant.\nSi vous êtes connecté à Internet, mais que le contenu ne s’affiche toujours pas, réessayez ultérieurement.","%@ Search Results":"%@ résultats","Apple applications":"Applications Apple",Cancel:"Annuler","Change Language":"Changer de langue",Close:"Fermer","Featured application help":"Aide de l’application actuelle","Go to the homepage":"Aller à la page d'accueil","Help for:":"Aide pour :",Hide:"Masquer",Home:"Accueil","Loading latest help...":"Chargement de l’Aide la plus récente… ","Other applications":"Autres applications","Recent applications":"Applications récentes",Search:"Rechercher","Send feedback.":"Envoyer des commentaires.","Show all":"Affichage total","Show less":"Affichage partiel","Show the previous page":"Afficher la page précédente","Show the next page":"Afficher la page suivante",Show:"Afficher","Was this page helpful?":"Avez-vous trouvé cette page utile ?"}},{meta:{isoCodes:["he"],isoName:"Hebrew",name:"עברית"},ui:{TOPIC_UNAVA ILABLE:"×”× ×•×©×&#144; ×©× ×‘×—×¨ ×&#144;×™× ×• זמין כעת.",CONNECT_TO_INTERNET:"וד×&#144;/×™ ×©×”×™× ×š מחובר/ת ל×&#144;×™× ×˜×¨× ×˜. לעזרה ×‘× ×•×©×&#144; התחברות, בחר/×™ תפריט Apple > ״העדפות המערכת״, לחץ/×™ על ״רשת״ ובחרי ״עזור לי״.\n×&#144;×&#157; ×”×™× ×š מחובר/ת ל×&#144;×™× ×˜×¨× ×˜, ובכל ×–×&#144;ת התוכן ×&#144;×™× ×• מופיע, × ×¡×”/×™ שוב מ×&#144;וחר יותר.","%@ Search Results":"%@ תוצ×&#144;ות","Apple applications":"יישומי Apple",Cancel:"ביטול","Change Language":"החלף/×™ שפה",Close:"סגור","Featured application help":"עזרה ×‘× ×•×©×&#144; היישומי×&#157; המומלצי×&#157;","Go to the homepage":"עבור ×&#144;ל דף הבית","Help for:":"עזרה ×‘× ×•×©×&#144;:",Hide:"הסתר",Home:"בית","Loading latest help...":"טוען ×&#144;ת קבצי העזרה החדשי×&#157; ביותר…","Other applications":"יישומי×&#157; ×&#144;חרי×&#157;","Recent applications":"יישומי×&#157; ×&#144;×—×¨×•× ×™×&#157;",Search:"חיפוש","Send feedback.":"שלח/×™ משוב.","Show all":"הצג הכול","Show less":"הצג פחות","Show the previous page":"הצג ×&#144;ת העמוד הקוד×&#157;","Show the next page":"הצג ×&#144;ת העמוד הב×&#144;",Show:"הצג","Was this page helpful?":"×”×&#144;×&#157; עמוד ×–×” עזר לך?"}},{meta:{isoCodes:["hr"],isoName:"Croatian",name:"Hrvatski"},ui:{TOPIC_U NAVAILABLE:"Odabrana tema trenutno nije dostupna",CONNECT_TO_INTERNET:'Provjerite jeste li spojeni na internet. Za pomoć pri spajanju odaberite Apple izbornik > Postavke sustava, kliknite na Mreža i zatim na "Pomoć".\nAko ste spojeni na internet i sadržaj se svejedno ne pojavljuje, pokuÅ¡ajte ponovno kasnije.',"%@ Search Results":"Rezultata pretraživanja: %@","Apple applications":"Appleove aplikacije",Cancel:"Odustani","Change Language":"Promijeni jezik",Close:"Zatvori","Featured application help":"Pomoć za ponuÄ‘ene aplikacije","Go to the homepage":"Prijelaz na poÄ&#141;etnu stranicu","Help for:":"Pomoć za:",Hide:"Sakrij",Home:"PoÄ&#141;etna stranica","Loading latest help...":"UÄ&#141;itavanje najnovijih datoteka pomoći…","Other applications":"Ostale aplikacije","Recent applications":"Novije aplikacije",Search:"Pretraži","Send feedback.":"PoÅ¡alji povratne informacije.","Show all":"Prikaži sve","Show less":"Prikaži manje","Show the previous page":"Prikaži prethodnu stranicu","Show the next page":"Prikaži sljedeću stranicu",Show:"Prikaži","Was this page helpful?":"Je li vam ova stranica pomogla?"}},{meta:{isoCodes:["hu"],isoName:"Hungarian",name:"Magyar"},ui:{TOPIC _UNAVAILABLE:"A kijelölt témakör jelenleg nem érhetÅ‘ el.",CONNECT_TO_INTERNET:"GyÅ‘zÅ‘djön meg róla, hogy csatlakozik az internethez. Ha segÃtségre van szüksége, válassza az Apple menü > RendszerbeállÃtások menüpontot, kattintson a Hálózat, majd a „SegÃtség kéréseâ€&#157; elemre.\nHa csatlakozik az internethez, és a tartalom továbbra sem jelenik meg, próbálja meg késÅ‘bb.","%@ Search Results":"%@ keresési eredmény","Apple applications":"Apple alkalmazások",Cancel:"Mégsem","Change Language":"Nyelv módosÃtása",Close:"Bezárás","Featured application help":"Kiemelt alkalmazássúgó","Go to the homepage":"Ugrás a kezÅ‘dlapra","Help for:":"Súgó a következÅ‘höz:",Hide:"Elrejtés",Home:"FÅ‘gomb","Loading latest help...":"Legújabb súgó betöltése…","Other applications":"Egyéb alkalmazások","Recent applications":"Legutóbbi alkalmazások",Search:"Keresés","Send feedback.":"Visszajelzés küldése","Show all":"Az összes megjelenÃtése","Show less":"Kevesebb megjelenÃtése","Show the previous page":"ElÅ‘zÅ‘ oldal megjelenÃtése","Show the next page":"KövetkezÅ‘ oldal megjelenÃtése",Show:"MegjelenÃtés","Was this page helpful?":"Hasznosnak találta ezt az oldalt?"}},{meta:{isoCodes:["id"],isoName:"Indonesian",name:"Bahasa Indonesia"},ui:{TOPIC_UNAVAILABLE:"Topik yang dipilih saat ini tidak tersedia",CONNECT_TO_INTERNET:"Pastikan Anda terhubung ke Internet. Untuk bantuan dalam menghubungkan, pilih menu Apple > Preferensi Sistem, klik Jaringan, dan klik “Bantu saya.â€&#157;\nJika Anda terhubung ke Internet, dan konten masih tidak muncul, coba lagi nanti.","%@ Search Results":"%@ Hasil Pencarian","Apple applications":"Aplikasi Apple",Cancel:"Batal","Change Language":"Ubah Bahasa",Close:"Tutup","Featured application help":"Fitur bantuan aplikasi","Go to the homepage":"Kunjungi halaman rumah","Help for:":"Bantuan untuk:",Hide:"Sembunyikan",Home:"Rumah","Loading latest help...":"Memuat bantuan terbaru…","Other applications":"Aplikasi lain","Recent applications":"Aplikasi terbaru",Search:"Cari","Send feedback.":"Kirim umpan balik.","Show all":"Tampilkan semua","Show less":"Tampilkan sebagian","Show the previous page":"Tampilkan halaman sebelumnya","Show the next page":"Tampilkan halaman berikutnya",Show:"Tampilkan","Was this page helpful?":"Apakah halaman ini membantu?"}},{meta:{isoCodes:["it"],isoName:"Italian",name:"Italiano"},ui:{TOPI C_UNAVAILABLE:"L'argomento selezionato non è al momento disponibile.",CONNECT_TO_INTERNET:"Assicurati di essere connesso a Internet. Per assistenza su come configurare la connessione a Internet, scegli menu Apple > Preferenze di Sistema, fai clic su Network, quindi su “Aiutamiâ€&#157;.\nSe sei connesso a Internet, ma non puoi visualizzare il contenuto, riprova più tardi.","%@ Search Results":"%@ risultati di ricerca","Apple applications":"Applicazioni Apple",Cancel:"Annulla","Change Language":"Cambia lingua",Close:"Chiudi","Featured application help":"Aiuto applicazione in primo piano","Go to the homepage":"Vai alla pagina iniziale","Help for:":"Aiuto per:",Hide:"Nascondi",Home:"Inizio","Loading latest help...":"Carico argomento dell'aiuto più recente…","Other applications":"Altre applicazioni","Recent applications":"Applicazioni recenti",Search:"Cerca","Send feedback.":"Invia commenti.","Show all":"Mostra tutto","Show less":"Mostra meno","Show the previous page":"Mostra pagina precedente","Show the next page":"Mostra pagina successiva",Show:"Mostra","Was this page helpful?":"Hai trovato utile questa pagina?"}},{meta:{isoCodes:["ja"],isoName:"Japanese",name:"日本語"},ui:{TOPI C_UNAVAILABLE:"é&#129;¸æŠžã&#129;—ã&#129;Ÿãƒˆãƒ”ックã&#129;¯ç&#143;¾åœ¨åˆ©ç”¨ã &#129;§ã&#129;&#141;ã&#129;¾ã&#129;›ã‚“",CONNECT_TO_INTERNET:"インターãƒ&#14 1;ットã&#129;«æŽ¥ç¶šã&#129;—ã&#129;¦ã&#129;„ã‚‹ã&#129;“ã&#129;¨ã‚’確èª&#141;ã &#129;—ã&#129;¦ã&#129;&#143;ã&#129; ã&#129;•ã&#129;„。接続ã&#129;«ã&#129;¤ã&#129;„ã&#129;¦èª¿ã&#129;¹ã&#129;Ÿã&# 129;„ã&#129;¨ã&#129;&#141;ã&#129;¯ã€&#129;アップルメニュー>「シスム†ãƒ 環境è¨å®šã€&#141;ã&#129;¨é&#129;¸æŠžã&#129;—ã€&#129;「ãƒ&#141;ットワー㠂¯ã€&#141;をクリックã&#129;—ã&#129;¦ã&#129;‹ã‚‰ã€Œã‚¢ã‚·ã‚¹ã‚¿ãƒ³ãƒˆã€&#141 ;をクリックã&#129;—ã&#129;¾ã&#129;™ã€‚\nインターãƒ&#141;ットã&#129;«æ Ž¥ç¶šã&#129;—ã&#129;¦ã&#129;„ã‚‹ã&#129;®ã&#129;«ã‚³ãƒ³ãƒ†ãƒ³ãƒ„ã&#129;Œè¡¨ç¤ºã&# 129;•ã‚Œã&#129;ªã&#129;„å ´å&#144;ˆã&#129;¯ã€&#129;後ã&#129;§ã‚„ã‚Šç›´ã&#129;—ã&#129;¦ã&#129;&#143;ã&#12 9; ã&#129;•ã&#129;„。","%@ Search Results":"%@ 件ã&#129;®æ¤œç´¢çµ&#144;æžœ","Apple applications":"Apple アプリケーション",Cancel:"ã‚ャンセル","Change Language":"言語を変更",Close:"é–‰ã&#129;˜ã‚‹","Featured application help":"ã&#129;Šå‹§ã‚&#129;ã&#129;®ã‚¢ãƒ—リケーションヘルプ","Go to the homepage":"ホームページã&#129;«ç§»å‹•","Help for:":"表示ä¸ã&#129;®ãƒ˜ãƒ«ãƒ—:",Hide:"éš ã&#129;™",Home:"ホーム","Loading latest help...":"最新ã&#129;®ãƒ˜ãƒ«ãƒ—ã‚’èªã&#129;¿è¾¼ã&#129;¿ä¸...","Other applications":"ã&#129;»ã&#129;‹ã&#129;®ã‚¢ãƒ—リケーション","Recent applications":"最近使ã&#129;£ã&#129;Ÿã‚¢ãƒ—リケーション",Search:"æ¤œç´ ¢","Send feedback.":"フィードãƒ&#144;ックをé€&#129;ä¿¡","Show all":"ã&#129;™ã&#129;¹ã&#129;¦ã‚’表示","Show less":"一部を表示","Show the previous page":"å‰&#141;ã&#129;®ãƒšãƒ¼ã‚¸ã‚’表示","Show the next page":"次ã&#129;®ãƒšãƒ¼ã‚¸ã‚’表示",Show:"表示","Was this page helpful?":"ã&#129;“ã&#129;®ãƒšãƒ¼ã‚¸ã&#129;¯å½¹ç«‹ã&#129;¡ã&#129;¾ã&#129;—ã&#12 9;Ÿã&#129;‹ï¼Ÿ"}},{meta:{isoCodes:["ko"],isoName:"Korean",name:"한글"},ui:{TOP IC_UNAVAILABLE:"ì„ íƒ&#157;í•œ ì£¼ì œëŠ” 현재 사용할 수 없습니다.",CONNECT_TO_INTERNET:"ì&#157;¸í„°ë„·ì—&#144; ì—°ê²°ë&#144;˜ì–´ 있는지 확ì&#157;¸í•˜ì‹ì‹œì˜¤. ì—°ê²°ì—&#144; 대한 ë&#143;„움ë§&#144;ì&#157;€ Apple 메뉴 > 시스템 í™˜ê²½ì„¤ì •ì&#157;„ ì„ íƒ&#157;하고 네트워í&#129;¬ë¥¼ í&#129;´ë¦í•œ 다ì&#157;Œ “ë&#143;„와주세요â€&#157;를 í&#129;´ë¦í•˜ì‹ì‹œì˜¤.\nì&#157;¸í„°ë„·ì—&#144; ì—°ê²°ë&#144;˜ì–´ 있지만 해당 콘í…&#144;ì¸ ê°€ ì—¬ì „ížˆ 나타나지 않는 경우 나중ì—&#144; 다시 ì‹œë&#143;„í•´ë³´ì‹ì‹œì˜¤.","%@ Search Results":"%@ê°œì&#157;˜ 검색 ê²°ê³¼","Apple applications":"Apple ì&#157;‘ìš© 프로그램",Cancel:"취소","Change Language":"언어 변경",Close:"닫기","Featured application help":"추천 ì&#157;‘ìš© 프로그램 ë&#143;„움ë§&#144;","Go to the homepage":"홈페ì&#157;´ì§€ë¡œ ì&#157;´ë&#143;™","Help for:":"ë&#143;„움ë§&#144;:",Hide:"가리기",Home:"홈","Loading latest help...":"최신 ë&#143;„움ë§&#144; 불러오는 중...","Other applications":"기타 ì&#157;‘ìš© 프로그램","Recent applications":"최근 사용 ì&#157;‘ìš© 프로그램",Search:"검색","Send feedback.":"피드백 보내기.","Show all":"모ë‘&#144; 보기","Show less":"간단히 보기",Show:"보기","Show the previous page":"ì&#157;´ì „ 페ì&#157;´ì§€ 보기","Show the next page":"다ì&#157;Œ 페ì&#157;´ì§€ 보기","Was this page helpful?":"ì&#157;´ 페ì&#157;´ì§€ê°€ ë&#143;„움ì&#157;´ ë&#144;˜ì…¨ìŠµë‹ˆê¹Œ?"}},{meta:{isoCodes:["ms"],isoName:"Malaysian",name:"Bahas a Malaysia"},ui:{TOPIC_UNAVAILABLE:"Topik yang dipilih tidak tersedia sekarang",CONNECT_TO_INTERNET:"Pastikan anda disambungkan ke Internet. Untuk bantuan sambungan, pilih menu Apple > Keutamaan Sistem, klik Rangkaian, dan klik “Bantu saya.â€&#157;\nJika anda disambungkan ke Internet, dan kandungan masih tidak muncul, cuba lagi nanti.","%@ Search Results":"%@ Hasil Carian","Apple applications":"Aplikasi Apple",Cancel:"Batal","Change Language":"Tukar Bahasa",Close:"Tutup","Featured application help":"Bantuan untuk aplikasi yang ditampilkan","Go to the homepage":"Pergi ke laman utama","Help for:":"Bantuan untuk:",Hide:"Sembunyikan",Home:"Utama","Loading latest help...":"Memuatkan bantuan terbaru...","Other applications":"Aplikasi lain","Recent applications":"Aplikasi terbaru",Search:"Cari","Send feedback.":"Hantar maklum balas.","Show all":"Tunjukkan semua","Show less":"Tunjukkan sedikit","Show the previous page":"Tunjukkan halaman sebelumnya","Show the next page":"Tunjukkan halaman seterusnya",Show:"Tunjukkan","Was this page helpful?":"Adakah halaman ini membantu?"}},{meta:{isoCodes:["nl"],isoName:"Dutch",name:"Nederlands"},ui:{TOPI C_UNAVAILABLE:"Het geselecteerde onderwerp is momenteel niet beschikbaar",CONNECT_TO_INTERNET:"Controleer of er verbinding is met het internet. Als u hulp nodig hebt, kiest u Apple-menu > 'Systeemvoorkeuren' en klikt u vervolgens op 'Netwerk' en 'Assistentie'.\nAls u verbinding hebt met het internet en de inhoud nog steeds niet wordt weergegeven, probeert u het later nog

    Hi Mac Attack,
    My computer will not disconnect from the internet.  It seems to find a clone router and continues even when I shut down and unplug my my own home iy
    Your main question was 'chopped' in the title. Please reply in the body of a reply box with the full question and anything you have tried. And no, the long report was not helpful .
    If the same website is opening each time you launch a browser (Safari?) hold down the shift key as you launch to prevent previous pages from opening.
    Have a look at your settings in Safari > Preferences. Especially General and Privacy.
    Reset Safari to remove cookies and other stored data.
    System Preferences > General
    Have a look at your settings in System Preferences >  Security & Privacy.
    Call back with more questions.
    Regards,
    Ian

  • Can someone tell me how to disconnect my credit card from my iTunes account?

    Can someone tell me how to disconnect my credit card from my iTunes account?

    For information on how to do this, check out this article:
    http://support.apple.com/kb/ht1918
    If the option to select "None" from the list of payment types doesn't appear, then there is a billing is with your last purchase which needs to be resolved first.

  • Remote system disconnect​ed after installing MAX 4.7.3

    Hello!
    This topic is related to the topic you can find here. 
    In order to repair the Regional Settings issue in Windows (XP in my case) I used the System Configuration 1.1.3 update and it seems to work. I changed the Regional Settings to my local and installed the update. Silverlight does not crash anymore, so that is fixed. However, this created a new issue:
    Now my remote devices (NI-1742 and NI-1746) status is always "disconnected". The devices are connected to a different subnet than the development computer. Pinging their IPs showed that they are there. I can connect to the cameras using the Real-time Project. However, in MAX the remote system status remains "disconnected". I tried to delete and re-create the devices in MAX but that did not work either.
    I also tried the latter with Windows firewall on and off and updated the software with NI Update Service. On an another computer, which has not had the update yet, I can connect to and modify the devices.
    In addition, I completely reinstalled the development system, but the issue persists.
    Kind regards,
    Mart
    Solved!
    Go to Solution.

    Hey Mart,
    It looks like this may be related to a possible bug introduced in MAX 4.7.3. I've uploaded Juurma.zip to our FTP site. Please obtain this .zip file by navigating to ftp://ftp.ni.com/outgoing.
    This .zip file contains a patched version of mxRmCfg.dll. First, close all NI software and stop the NI System Web Server service and all its dependencies (you can get to your services by going to Start->Run and typing in services.msc). Then, navigate to this directory: C:\Program Files\National Instruments\Shared\MAX\Bin
    You will need to rename the existing mxRmCfg.dll to mxRmCfg.bak, and copy the new version to that location. Restart your system, open MAX, and see if you can connect to and view your targets.
    If this resolves your issue, PLEASE post back in this thread indicating as much. If not, let us know and we'll continue to investigate. Note that items on our FTP server will be removed after 48 hours, so let me know if you're unable to get that file in time
    Justin E
    National Instruments R&D

  • TS1496 How does this work for a Mac Pro?  Just did an update and my iPod video click is no longer recognized by iTunes or in finder but shows do not disconnect.  What do I do?

    I downloaded the latest update of iTunes 11.4 today - Columbus Day.  Went on to purchase songs.  Then attached classic iPod to sync.  upon attached usb to iPod, the "Do Not Disconnect" message appeared.  Waited a long time and iTunes would not recognize my iPod.  (10 minutes minimum.  Gave up counting)  Shut down iTunes and restarted.  Still no recognition.  Restarted computer - Wouldn't start.  Unplugged USB and then it started.  The only way to get computer to start up again was to unplug - now I'm worried that I've just screwed up my iPod.  Upon starting back up - plugged iPod back in - sell no recognition.  Am I up a creek with no paddle now?  My iPod- touch is recognized and I was able to update it successfully.  With that being said, it took a heck of a lot longer than it normally does post update.  Was this the update that no longer likes classic iPods? 
    I have a brain injury and the classic is helpful at night when I can't fall asleep and I can play soothing stuff to help calm my brain down.  The touch is way to bright and can cause lots of bad reactions due to light sensitivity - way too much blue light to trigger issues.  The click wheel doesn't take so many moves to get to what I need. 
    Thank you to anyone that can help save my classic.  medical bills are high and I can't afford to buy a new one.  Two hours later, my classic still says do not disconnect and my computer does not recognize.
    Thank you to any one for the ability to provide insight and troubleshooting.
    pooped out.

    1. Try Resetting the iPod. Hold Select and Menu for 6-10 seconds - until you see the Apple Symbol.
    2. Use iPod Updater to restore your iPod to factory settings.
    See if those two steps clear up your problem.

  • My time capsule all of a sudden disconnected from the wireless system and can no longer be fund by my MacBook Pro. The little lamp on the the capsules has turned off, but it still makes a noice inside,

    My Time capsule did a backup yesterday in the morning without any problem. All of a sudden, it disconnected from the wireles system last night and the little indicator lamp turned off. It still makes a noice, as if a disc was turning inside. The Time Capsule was bought last year in June. Any suggestiom what to do? What happens if I press the little buttom (reset?), will I loose af my backup?

    Do a reset.. power off the TC..
    Hold in reset and power on.. keep holding in reset until it flashes rapidly.. if it turns on at all.
    If you bought it in June.. take it back today.. it is broken.. at a guess.
    Some Gen4 are failing this way.. get Apple to replace it.. even if it is a few days out of warranty it won't be much.

  • When leave I nano 4th gen connected to either of my cars it no longer restarts playing when car is restarted. Instead it shows 'no entry' in the song title on the car audio display and won't play until disconnected and reconnected.

    Nano has worked fine for a couple of years being left connected to either one of our cars. However, every time car is restarted it won't play without being disconnected and reconnected. I have done a full restore.
    Current cars are Range Rover Sport 2011 and Jaguar XK 2011.
    Has anyone else experienced this issue?
    Thanks,

    I had a similar problem. Try resetting and erasing the phone and restoring from a known good backup.

  • Do not disconnect show continually.  Error message is files on the ipod are being used by another program

    I get the "Do not disconnect" message all the time.  When I try to eject the ipod the error message is that the ipod can not be disconnected because it is in use with an other application.  I turn off all antivirus protection and the same result.  I can not find what other application is accessing the ipod.  The only way I can disconnect is to go to the drive that it is assigned to, and do an eject.  The unit will sync properly but will not eject for itunes.

    Forgot to say the mananging files manually and disk usage are not checked

Maybe you are looking for