Thread issue when delete socket

I've got a new problem: when I try to close the socket by deleting it, a thread marshalling issue has appeared:
void MainPage::PutOutFire()
if (CoreApplication::Properties->HasKey("client"))
// Remove the socket from the list of application properties as we are about to close it.
StreamSocket^ socket = dynamic_cast<StreamSocket^>(CoreApplication::Properties->Lookup("client"));
CoreApplication::Properties->Remove("client");
// Close the socket.
Dispatcher->RunAsync(Windows::UI::Core::CoreDispatcherPriority::Normal, ref new Windows::UI::Core::DispatchedHandler([this, &socket]()
if (socket)
delete socket;//pivot of crash!!!
socket = nullptr;
bIsConnected = false;
NotifyUser("Client closed.", NotifyType::StatusMessage);
else
NotifyUser("Client already closed or not connected.", NotifyType::WarningMessage);
This is called by the button event handler.
Then I get this error:
Microsoft C++ exception: Platform::WrongThreadException ^ at memory location 0x0545DD48. HRESULT:0x8001010E The application called an interface that was marshalled for a different thread.
WinRT information: The application called an interface that was marshalled for a different thread.
I used the Dispatcher, and I put it in the UI thread, but the issue is still there.

I don't think you have to delete it. Just set it to nullptr, it will self destruct by itself due to ref counting.

Similar Messages

  • Lock screen issues when deleting notifications

    I am having a recurring problem where the phone gets stuck when I try to delete a notification from the lock screen. When I swipe and hit Trash, the screen sends me to the password entry screen but every time I hit a button, the screen only bounces to the right then back. I have to double tap the keys quickly just to enter the code. Once this happens and I can unlock to Trash the notification, I then sometimes have the time/date on the lock screen disappear. I have to reboot to get it to work. It's happening on multiple devices, 5s, 5c, and iPad Air, all with iOS 8 (the phones on 8.1.1 and iPad on 8.1). I'm also having TouchID get stuck if it doesn't read after three attempts. Overall, the Lock Screen is pretty unreliable on iOS8.

    sometimes seems like the effect may not auto-disappear, as it should. hopefully the "blur with no notifications" is NOT normal.
    rebooting the iphone always works to remove the burred effect; and may fix this "glitch", if it IS a "glitch".
    but, if your issue is only with notifications blurring the lockscreen, this seems fairly easy to fix, since you can set ALL of your apps to NOT display notifications on the lockscreen. If the iOS doesn't have to display info there, there is no need to blur the background.
    you should note that there are things other than notifications that WILL blur the lockscreen; so when you say you're getting "blurring but no notifications"; then this could mean that the iOS is displaying some other info on the lockscreen.
    Example: for me the blurred screen has to do with AUDIO PLAYBACK, which causes the iOS to display the "playback control buttons" on the lockscreen. When I PAUSE AUDIO, the blur clears up instantly. So, clearly, Apple designed the screen to work this way.
    I will be checking to see if a way to remove the "audio controls" from the lockscreen. given new contol center (which I can access from the lockscreen), there is no longer any need for these controls to display on the lockscreen.
    I will be trying to remove everything possible from displaying on the lockscreen, to at least minimize this effect. But think we all need to request that apple add an option to STOP the blur effect on the lockscreen.

  • Editable ALV issue: When Delete/Modify a row, ztable doesnt reflect changes

    Greeting Fellow Abapers,.
    I have been running into an issue that I need some advice on.  I am allowing users to edit a Ztable via ALV.  When the quantity field is updated everything is fine. However, when the field "lic_plate" is edited the code appends another row into the Ztable instead of modifying it.  Also, when the delete row functionality of the grid is used the row is not deleted from the Ztable.
    Here is the ztable structure. The fields I allow to be edited are in BOLD...
    ZPALLET-VBELN
    ZPALLET-MATNR
    ZPALLET-LINE_NUM
    ZPALLET-LIC_PLATE
    ZPALLET-LOT_NUMBER
    ZPALLET-PAL_TYPE
    ZPALLET-MAN_DATE
    ZPALLET-QUANTITY
    ZPALLET-PROC_DATE
    Here is the source code that the APPEND is taking place...
    FORM save_database .
    Getting the selected rows index*
      CALL METHOD o_grid->get_selected_rows
        IMPORTING
          et_index_rows = i_selected_rows.
    Through the index capturing the values of selected rows*
      LOOP AT i_selected_rows INTO w_selected_rows.
        READ TABLE itab INTO wa INDEX w_selected_rows-index.
        IF sy-subrc EQ 0.
          MOVE-CORRESPONDING wa TO w_modified.
          APPEND w_modified TO i_modified.
        ENDIF.
      ENDLOOP.
    IF sy-subrc = 0.
        MODIFY zpallet FROM TABLE i_modified.
    ENDIF.
    ENDFORM.
    Please help. I am in your debt.
    ...as always, points will be awarded.
    Best,
    Dan

    Hello Dan
    When you are using an editable ALV for table maintenance you have to take care that the users
    - cannot edit the key fields of existing DB records   and
    - every new record (row) does not match any existing record (i.e. has identical key field values)
    Instead of relying on selected rows for the DB update I would recommend to store a "PBO image" of your data and compare this with the "PAI image" of the data as soon as the user pushes the SAVE button.
    Example:
    DATA:
      gt_outtab_pbo    TYPE   < your table type>,  " PBO image
      gt_outtab           TYPE   < your table type>.  " PAI image
    " 1. Select data from DB table and store in both itabs:
      SELECT * ... INTO TABLE gt_outtab.
      gt_outtab_pbo = gt_outtab.
    " 2. Display editable ALV list -> user modifies gt_outtab
    " 3. SAVE function requested
    " ... compare gt_outtab vs. gt_outtab_pbo
    " .... INSERT, UPDATE, or DELETE DB records
    " Finally set:
      gt_outtab_pbo = gt_outtab.
    " 2. User continues with editing
    In order to compare PBO vs. PAI data you may have a look at my sample coding:
    [Comparing Two Internal Tables - A Generic Approach|https://www.sdn.sap.com/irj/sdn/wiki?path=/display/snippets/comparing%2btwo%2binternal%2btables%2b-%2ba%2bgeneric%2bapproach]
    Regards,
      Uwe

  • Possible thread issues when calling java from C++/Delphi/C#

    Hi,
    We have a java API for one of our applications. This API has wrapper API's in C++, Delphi and C#. There are two main top level classes in te API - Client and Receiver. Both haave a receive() method.
    We used to ship JRE1.3 with the API installation - this was needed to suport the user applications. Recently we haev moved to java 1.4 as the least suported version.
    We have two ways of using the java API in our wrapper API's.
    Method one, we instantiate the client, and call client.receive(). There are no threads etc involved here. This is working fine.
    In the second method, we set a callback on the client, which starts a thread (in C++/Delphi or C#) which calls receiver.receive() and tries to get the message. This is failing.
    It fails at a line which simply says "DocumentBuilderFactory.newInstance()".
    This call has already been made when connecting the client and it is successful because we can see the client connected.
    Whether we do client.receive() or receiver.receive() in a thread, the code passes through this line.But is throwing the exception only when we come to it through a thread.
    Any ideas on what I need to watch out for when calling methods on a JVM from a thread in C++/Delphi or C#?
    Thanks
    Hari
    PS: I know we are using some really old versions, but thats needed and out of my control.

    Hi,
    I managed to solve this - finally!
    This is what was the cause in our case - should apply to all situations though.
    We had the Xerces classes packaged in a custom jar file along with other XML stuff we have. And this mega-jar was on the class path.
    We were running everything on Java 1.3 and it worked fine.
    But Java 1.4 wrecked all havoc.
    So here is what I did:
    1. I tried explicitly doing Class.forName() with the name of the Xerces class that was not found. I did this at the same point in the code where the exception was being thrown.
    2. The class was successfully loaded indicating that it was on the class path somewhere.
    3. Java 1.4 made some changes in terms of class loaders - so suspecting that, I tried printing out the System and the Context class loaders at the point where the exception was being thrown - the system class loader was a valid object, but context class loader was null
    4. We have another point in the code base where the exact same lines were used, and these are getting successfully executed even in the multi threaded situation - this is the start up sequence.
    5. I printed the two class loaders at this point - they are both valid objects, no nulls.
    With this, I narrowed down the scope and was convinced that the class loaders are the cause.
    A search on Google and after looking the the source code for Xerces, we realized that the Xerces API uses the Context Class Loader to resolve and load the DocumentFactoryImpl class - this change is from Java 1.4 onwards.
    In our case, the JNI AttachCurrentThread method called from C++/C# and Delphi was attaching the thread to the JVM, but each time the context class loader was null.
    We could not find anything on how we could make the method to put a non null context classloader.
    So, we changed all our JNI interfaces to do the following
    //attach the current thred
    jvm->AttachCurrentThread(...)
    //now get the system class loader and set it as the context class loader on the current thread
    //get things from the Thread class
    jclass thread = get the thread class
    jmethod currentThread = get the static method currentThread()
    jobject thread_object = get the current thread object into this
    jmethod setContextClassLoader = get the setContextClassLoader() method on the thread
    //get the SystemClassLoader
    jclass clsLoader = get the class for ClassLoader
    jmethodid getSysClsLoader = get the method ID for the getSystemClassLoader() method
    jobect sysClsLoader = get the system class loader by calling the above method
    //set the context class loader on the thread by calling set context class loader with the sys class loader as the argumentUnfortunately I don't have the code with me right now,otherwise would have shared the same.

  • Error when deleting a record:  "FRM-40202 Field must be entered"

    Dear all, please I need your help in this little problem.
    I am using Forms 10g , and I am having an issue when deleting a record at runtime. It is giving "FRM-40202 Field must be entered".
    I have reviewed the code but still cannot guess what could be the reason.
    Any idea please. Thanks
    Edited by: user562674 on 02/05/2011 12:35 ص

    Hi
    This error is caused due to the NOT NULL constraint u have in ur db for that item...
    u have 2 options to use ...
    1.Either u set the Required property of that item to > no
    2.Or u give it an intial value...
    To get ride of this error message...
    Hope this helps...
    Regards,
    Ammatu Allah.

  • Problem Deploying Composites to Oracle SOA 11.1.1.5 (STUCK Thread Issue)

    Hi All,
    I got stuck thread issues when deploying composites to Oracle SOA 11.1.1.5 running on Windows Server 2008 R2. Even the SimpleApproval composite which ships with the standard installation is having trouble deploying.
    The composites are deploying fine in Oracle SOA 11.1.1.5 running on Windows XP.
    I'm not so good with thread dumps, so I post it below for rescue.
    Please advice,
    Rommel
    <Jul 18, 2011 10:15:25 AM AST> <Error> <WebLogicServer> <BEA-000337> <[STUCK] Ex
    ecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)' has been bus
    y for "605" seconds working on the request "weblogic.servlet.internal.ServletReq
    uestImpl@32d047d4[
    POST /soa-infra/deployer HTTP/1.1
    Connection: TE
    TE: trailers, deflate, gzip, compress
    User-Agent: Oracle HTTPClient Version 10h
    Accept-Encoding: gzip, x-gzip, compress, x-compress
    ECID-Context:
    Authorization: Basic bmFnaGl3ZWJsb2dpY3NvYTp3ZWJsb2dpY3NvYTEwIQ==
    Content-type: application/octet-stream
    Content-Length: 25876
    ]", which is more than the configured time (StuckThreadMaxTime) of "600" seconds
    . Stack trace:
    Thread-55 "[STUCK] ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-
    tuning)'" <alive, in native, suspended, priority=1, DAEMON> {
    jrockit.net.SocketNativeIO.readBytesPinned(SocketNativeIO.java:???)
    jrockit.net.SocketNativeIO.socketRead(SocketNativeIO.java:24)
    java.net.SocketInputStream.socketRead0(SocketInputStream.java:???)
    java.net.SocketInputStream.read(SocketInputStream.java:107)
    oracle.net.nt.MetricsEnabledInputStream.read(TcpNTAdapter.java:707)
    oracle.net.ns.Packet.receive(Packet.java:243)
    oracle.net.ns.DataPacket.receive(DataPacket.java:106)
    oracle.net.ns.NetInputStream.getNextPacket(NetInputStream.java:309)
    oracle.net.ns.NetInputStream.read(NetInputStream.java:254)
    oracle.jdbc.driver.T4CSocketInputStreamWrapper.read(T4CSocketInputStreamWrap
    per.java:93)
    oracle.jdbc.driver.T4CMAREngine.getNBytes(T4CMAREngine.java:1573)
    oracle.jdbc.driver.T4C8TTILobd.unmarshalLobData(T4C8TTILobd.java:360)
    oracle.jdbc.driver.T4C8TTILob.readLOBD(T4C8TTILob.java:787)
    oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:303)
    oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:181)
    oracle.jdbc.driver.T4C8TTILob.read(T4C8TTILob.java:139)
    oracle.jdbc.driver.T4CConnection.getBytes(T4CConnection.java:2690)
    ^-- Holding lock: oracle.jdbc.driver.T4CConnection@32386377[thin lock]
    oracle.sql.BLOB.getBytes(BLOB.java:557)
    oracle.jdbc.driver.OracleBlobInputStream.needBytes(OracleBlobInputStream.jav
    a:188)
    oracle.jdbc.driver.OracleBufferedStream.readInternal(OracleBufferedStream.ja
    va:171)
    oracle.jdbc.driver.OracleBufferedStream.read(OracleBufferedStream.java:151)
    ^-- Holding lock: oracle.jdbc.driver.OracleBlobInputStream@341d0b87[thin loc
    k]
    java.io.BufferedInputStream.fill(BufferedInputStream.java:189)
    java.io.BufferedInputStream.read(BufferedInputStream.java:236)
    ^-- Holding lock: oracle.mds.internal.persistence.db.DBInputStream@341d0bb2[
    thin lock]
    oracle.xml.parser.v2.XMLReader.pushXMLReader(XMLReader.java:363)
    oracle.xml.parser.v2.XMLReader.pushXMLReader(XMLReader.java:230)
    oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:217)
    oracle.fabric.common.wsdl.SchemaBuilder.parseXMLSrc(SchemaBuilder.java:1016)
    oracle.fabric.common.wsdl.SchemaBuilder.parseXSDSrc(SchemaBuilder.java:984)
    oracle.fabric.common.wsdl.SchemaBuilder.processSchemaImportsAndInclude(Schem
    aBuilder.java:755)
    oracle.fabric.common.wsdl.SchemaBuilder.loadEmbeddedSchemas(SchemaBuilder.ja
    va:474)
    oracle.fabric.common.wsdl.SchemaBuilder.loadSchemasFromWSDL(SchemaBuilder.ja
    va:423)
    oracle.fabric.common.wsdl.SchemaBuilder.loadAllSchemas(SchemaBuilder.java:21
    4)
    oracle.fabric.common.wsdl.SchemaManager.loadAllXSD(SchemaManager.java:209)
    ^-- Holding lock: oracle.fabric.common.wsdl.SchemaManager@36279195[thin lock
    oracle.fabric.common.wsdl.SchemaManager.getXSDEntityResolver(SchemaManager.j
    ava:424)
    oracle.fabric.composite.model.CompositeModel.loadImports(CompositeModel.java
    :361)
    oracle.fabric.composite.model.CompositeModel.getWSDLManager(CompositeModel.j
    ava:196)
    oracle.integration.platform.blocks.adapter.AbstractAdapterBindingComponent.g
    etWSDLDefinition(AbstractAdapterBindingComponent.java:168)
    oracle.integration.platform.blocks.adapter.AdapterReference.loadDefinition(A
    dapterReference.java:543)
    oracle.integration.platform.blocks.adapter.AdapterReference.load(AdapterRefe
    rence.java:377)
    oracle.integration.platform.blocks.adapter.AdapterReference.load(AdapterRefe
    rence.java:73)
    oracle.integration.platform.blocks.deploy.CompositeDeploymentConnection.depl
    oyReferences(CompositeDeploymentConnection.java:177)
    oracle.integration.platform.blocks.deploy.CompositeDeploymentConnection.depl
    oy(CompositeDeploymentConnection.java:81)
    oracle.integration.platform.blocks.deploy.CompositeDeploymentManagerImpl.ini
    tDeployment(CompositeDeploymentManagerImpl.java:143)
    oracle.integration.platform.blocks.deploy.CompositeDeploymentManagerImpl.loa
    d(CompositeDeploymentManagerImpl.java:61)
    sun.reflect.NativeMethodAccessorImpl.invoke0(NativeMethodAccessorImpl.java:?
    sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:27
    sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl
    .java:25)
    java.lang.reflect.Method.invoke(Method.java:575)
    org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopU
    tils.java:306)
    org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint
    (ReflectiveMethodInvocation.java:182)
    org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(Reflect
    iveMethodInvocation.java:148)
    oracle.integration.platform.blocks.deploy.DeploymentEventPublisher.invoke(De
    ploymentEventPublisher.java:57)
    org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(Reflect
    iveMethodInvocation.java:148)
    org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopPro
    xy.java:151)
    $Proxy309.load(Unknown Source)
    oracle.integration.platform.blocks.deploy.StandaloneCompositeDeploymentCoord
    inatorImpl.coordinateCompositeDeployment(StandaloneCompositeDeploymentCoordinato
    rImpl.java:54)
    oracle.integration.platform.blocks.deploy.servlet.BaseDeployProcessor.deploy
    NewComposite(BaseDeployProcessor.java:365)
    oracle.integration.platform.blocks.deploy.servlet.BaseDeployProcessor.deploy
    SARs(BaseDeployProcessor.java:123)
    ^-- Holding lock: java.lang.Object@3621c97c[thin lock]
    oracle.integration.platform.blocks.deploy.servlet.DeployProcessor.doDeployWo
    rk(DeployProcessor.java:122)
    oracle.integration.platform.blocks.deploy.servlet.DeployProcessor.doDeployWo
    rk(DeployProcessor.java:107)
    oracle.integration.platform.blocks.deploy.servlet.DeployProcessor.doDeploy(D
    eployProcessor.java:96)
    oracle.integration.platform.blocks.deploy.servlet.DeployProcessor.process(De
    ployProcessor.java:68)
    oracle.integration.platform.blocks.deploy.servlet.CompositeDeployerServlet.d
    oPostInsideLoggingSession(CompositeDeployerServlet.java:141)
    oracle.integration.platform.blocks.deploy.servlet.CompositeDeployerServlet.d
    oPost(CompositeDeployerServlet.java:119)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:700)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:815)
    weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSe
    curityHelper.java:224)
    weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelpe
    r.java:108)
    weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:206)
    weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
    weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:55)
    oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:111)
    oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:299)
    oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java
    :405)
    oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:94)
    oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:98)
    oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:70)
    weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:55)
    oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:111)
    oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:299)
    oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java
    :405)
    oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:94)
    oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:98)
    oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:70)
    weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:55)
    oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:86)
    weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:55)
    weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapR
    un(WebAppServletContext.java:3687)
    weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(W
    ebAppServletContext.java:3681)
    weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubjec
    t.java:308)
    weblogic.security.service.SecurityManager.runAs(SecurityManager.java:116)
    weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletC
    ontext.java:2213)
    weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.
    java:2135)
    weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:142
    0)
    weblogic.work.ExecuteThread.execute(ExecuteThread.java:203)
    weblogic.work.ExecuteThread.run(ExecuteThread.java:170)
    >

    I just noted that this is a database connectivity issue because when I point my soa related data sources (mds, soa_infra, etc...)to a local xe database, the deployment is doing fine.

  • Due to NAS issues, when I started a new time machine backup it did not have the old backups available. My question is do I need to delete them or will time machine automatically reclaim the space?  Only one Sparse Bundle, same name.

    Due to NAS issues, when I started a new time machine backup it did not have the old backups available. My question is do I need to delete them or will time machine automatically reclaim the space?  There is only one sparse bundle but when I enter time machine I don't see my historic backups.  I use a synology DS212 for my time machine.  Started a new backup which is 218gb but it says 618 gb is occupied  therefore it looks like 2 or 3 backups are still on the disk. Before my NAS issues the last backup was in 2014.  As you can see there is a second sparse bundle from 2012.  Not sure what that is.

    This is an old message now, but what happened to me similarly was:
    I had a major computer crash and through complicated pathways ended up reinstalling (Mavericks) as a new user (long story).
    At least I had good Time Machine backups on an NAS drive (Synology DS212j), or so I thought - when I started Time Machine up again, the old backup file was gone, replaced by a new one using my "new computer" name. The old file was gone both by directly mounting the NAS drive and by clicking "Enter Time Machine".
    It's like I had {OldShareName}.sparsebundle and then it was replaced by {NewShareName}.sparsebundle, all of the old info vanished.
    (I have spent a week finding old files elsewhere and have completed a satisfactory self-restore. It pays to "archive" [my own variation of] as well as "back-up".)
    My belief is that if this were a wired-netword-drive, e.g. plugged right into my iMac with a USB cable, then the old file would have remained.
    But this is an NAS drive, connected directly to my Airport wireless router, and I don't know the significance of the fact that it stores its Time Machine backups as "sparsebundle" files rather than simply as plain(er) files.
    As usual when things get complicated with computers (not just Apple computers) there was never a warning message. Something like "YOU'RE ABOUT TO DELETE A TIME MACHINE BACK-UP FILE!!!" would have made my life a lot simpler.
    BTW, I did try a "restore from Time Machine" option the first thing I had my "new computer" (old hardware, 2009 iMac) up and running, using Migration Assistant, and it ran for many hours and then failed in the wee hours - what that has to do with anything I'm not sure.
    I'm not sure that I have a question about this other than "why do these things happen to me?", but it's a warning. Apart from that I've been very happy with the stability and reliability (but not the cost or set-up complexity) of NAS vs. directly-cabled external drives.
    Charles

  • [svn] 1435: Delete fles-sdk-description. xml altogether as it is causing issues when syncing to the sdk.

    Revision: 1435
    Author: [email protected]
    Date: 2008-04-28 13:39:06 -0700 (Mon, 28 Apr 2008)
    Log Message:
    Delete fles-sdk-description.xml altogether as it is causing issues when syncing to the sdk. Because it gets updated every time you build it also gets marked by svn as being out of sync and that is a pain too so... I opted to just create it on the fly and then update it and not have it checked in
    Modified Paths:
    flex/sdk/trunk/build.xml
    Removed Paths:
    flex/sdk/trunk/flex-sdk-description.xml

    >>D:\GoldSun\Source Code\Flash\ExtentionTest\lib\Build>D:\SDKs\flex_sdk_4.5.1.21328\bin\adl -package -target ane DaveExtension.ane extension.xml -swc DaveExtension.swc -platform iPhone-ARM library.swf libDaveExtention.a
    Either its a typo or by mistake you wrote adl in yout bat file. Change it to adt since that is the file that will package your ane. adl is just used for debugging/running on Desktop.
    Hope this helps. let me know how it goes.
    Thanks,
    Meet

  • Bug: halt when deleting unneeded update files

    If WSUS installed on a heavy IO loaded harddrive (LUN) of a VM, when deleting unneeded update files by Server Cleanup Wizard, MMC node may halt.
    Server OS: Windows Server 2012 Standard
    Errors can be located in Event Log:
    An unhandled exception occurred and the process was terminated.
    Application ID: /LM/W3SVC/1881423753/ROOT/ServerSyncWebService
    Process ID: 3288
    Exception: System.NullReferenceException
    Message: Object reference not set to an instance of an object.
    StackTrace:    at Microsoft.UpdateServices.Internal.DataAccess.GetRevisionIdListForCache(Int64 deploymentChangeNumber, Int64& highestChangeNumber, CategoryIdCacheEntry[]&
    newCategoryDeployments, CategoryIdCacheEntry[]& deletedCategoryDeployments, RevisionIdCacheEntry[]& newRevisionDeployments, RevisionIdCacheEntry[]& deletedRevisionDeployments)
    at Microsoft.UpdateServices.Internal.RevisionIdCache.UpdateCategoryAndRevisionIdCache(Int64 deploymentChangeNumberAtRefresh)
    at Microsoft.UpdateServices.Internal.ServerImplementation.UpdateCache()
    at Microsoft.UpdateServices.Internal.ServerImplementation.DatabaseChangeHandler(Object byTimer)
    at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
    at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
    at System.Threading.TimerQueueTimer.CallCallback()
    at System.Threading.TimerQueueTimer.Fire()
    at System.Threading.TimerQueue.FireNextTimers()
    Application: w3wp.exe
    Framework Version: v4.0.30319
    Description: The process was terminated due to an unhandled exception.
    Exception Info: System.NullReferenceException
    Stack:
    at Microsoft.UpdateServices.Internal.DataAccess.GetRevisionIdListForCache(Int64, Int64 ByRef, Microsoft.UpdateServices.Internal.CategoryIdCacheEntry[] ByRef, Microsoft.UpdateServices.Internal.CategoryIdCacheEntry[]
    ByRef, Microsoft.UpdateServices.Internal.RevisionIdCacheEntry[] ByRef, Microsoft.UpdateServices.Internal.RevisionIdCacheEntry[] ByRef)
    at Microsoft.UpdateServices.Internal.RevisionIdCache.UpdateCategoryAndRevisionIdCache(Int64)
    at Microsoft.UpdateServices.Internal.ServerImplementation.UpdateCache()
    at Microsoft.UpdateServices.Internal.ServerImplementation.DatabaseChangeHandler(System.Object)
    at System.Threading.ExecutionContext.RunInternal(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object, Boolean)
    at System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object, Boolean)
    at System.Threading.TimerQueueTimer.CallCallback()
    at System.Threading.TimerQueueTimer.Fire()
    at System.Threading.TimerQueue.FireNextTimers()
    Faulting application name: w3wp.exe, version: 8.0.9200.16384, time stamp: 0x50108835
    Faulting module name: KERNELBASE.dll, version: 6.2.9200.16384, time stamp: 0x5010ab2d
    Exception code: 0xe0434352
    Fault offset: 0x00000000000189cc
    Faulting process id: 0xcd8
    Faulting application start time: 0x01cdcff0fa98da3e
    Faulting application path: c:\windows\system32\inetsrv\w3wp.exe
    Faulting module path: C:\Windows\system32\KERNELBASE.dll
    Report Id: 332ed25c-3c39-11e2-93f1-005056b26389
    Faulting package full name: 
    Faulting package-relative application ID:
    Step to repo:
    1 Open Update Services MMC.
    2 Click Options from the left panel.
    3 Select Server Cleanup Wizard from the right.
    4 Press Next.
    MMC node MAY(only when lots of files need to be deleted) be prompted to be reset when deleting unneeded files if it's running longer than usual. Re-open Update Services MMC will fix it. But
    it will be appeared again another day when many unneeded files exist.
    Eternal Snow

    Nothing to me indicated that his previous disks weren't functional.
    In the very first two lines of the first post of this thread, the drive was described as "heavily loaded". Specifically the scenario was:
    If WSUS installed on a heavy IO loaded harddrive (LUN) of a VM
    Running the Server Cleanup Wizard, particularly performing the "Delete unneeded updates..." action is a highly database intensive action. If that task is competing for IOPS on the disk system, then there's absolutely a high probability that the task
    will "timeout" before the stored proc being called can complete it's task.
    The "fix" is to put the application on a properly equipped machine.
    If the guys who wrote the system can't create it to not fall over if the HDs it's on happen to be a wee bit slow, then yes it's a bug and they've written it badly.
    We're not talking about "a wee bit slow", though, are we?
    As for timeout issues, it's a natural artifact of a WSUS server these days. Read every tenth thread in this forum and somebody is having issues with timeout errors.
    There are two contributing factors. The first is that the number of updates currently contained in the MU catalog is about 100x the number of updates that existed when WSUS v3 was originally written in 2007.
    The second is that in 95% of the cases, the administrator reporting the issue failed to properly performed needed administrative and maintenance activities on the WSUS server over the lifespan of the server.
    Lawrence Garvin, M.S., MCITP:EA, MCDBA, MCSA
    SolarWinds Head Geek
    Microsoft MVP - Software Packaging, Deployment & Servicing (2005-2013)
    My MVP Profile: http://mvp.microsoft.com/en-us/mvp/Lawrence R Garvin
    http://www.solarwinds.com/gotmicrosoft
    The views expressed on this post are mine and do not necessarily reflect the views of SolarWinds.

  • Safari quits when deleting AOL web mail on iMAC G4 after Apple update

    Tonight I went to the Houston Galleria Apple store and reproduced problem several times using iMAC G5. Selecting several mail messages and deleting produced problem every time. I was able to delete individually clicking at end of line 3 or 4 times before crashing.
    Surprisingly I used a new Intel iMac and could not reproduce problem after multiple attempts. I was shocked as was Mac Genius who was working with me. Multiple attempts using cocktail, removing preferences, reseting, cleaning AOL preferences etc was useless.
    Mac Genius had no idea. Message to apple. Frustrated.

    Hi James! And Welcome To Discussions!
    Deleting AOL Mail, crashes Safari
    It seems the most recent Safari, and or 10.4.4, update has created this problem.
    Apple & AOL are both aware of this, but, as far as I know, no correction has been implemented.
    Here are some of the work arounds, that I have been able to discern from the various posts regarding this issue.
    Use the FIREFOX BROWSER.
    Use your AOL Mail program.
    Use this utility AOL SERVICES UTILITY, to set up Apple Mail, to access AOL Mail.
    Access the AOL Mail thru Classic AOL Webmail.
    And here are links, to the various threads, discussing this issue.
    Safari and AOL
    AOL/ Delete/ Safari crash
    safari crashing with aol.com mail deletion
    AOL Webmail and Safari on 10.4.2 crashes on delete mail
    Update 10.4.4 causes crash
    Safari crashes when deleting email on AOL
    Safari Update
    Safari Crashes AOL mail
    Safari Crashes when Deleting or Reporting E-Mail as SPAM on AOL Web Mail Your Post
    Good Luck!
    ali b

  • HT2480 email not deleting from server when deleted from ipad

    messages are not being deleted from server when deleted from ipad

    Hello,
    You need to tell us what the email service is. BES? BIS -- and, if so, what email provider? If BES, then see your BES admins. If BIS, then expect it to function in accordance with this KB.
    Otherwise, you can try the following steps, in order, even if they seem redundant to what you have already tried (steps 1 and 2 each should result in a message coming to your BB):
    1) Register HRT
    Homescreen > Options > Advanced Options > Host Routing Table > (it does not matter which line is current) > Register Now
    2) Resend Service Books
    KB02830 Send the service books for the BlackBerry Internet Service
    3) Batt Pull Reboot
    Anytime random strange behavior or sluggishness creeps in, the first thing to do is a battery pop reboot. With power ON, remove the back cover and pull out the battery. Wait about a minute then replace the battery and cover. Power up and wait patiently through the long reboot -- ~5 minutes. See if things have returned to good operation. Like all computing devices, BB's suffer from memory leaks and such...with a hard reboot being the best cure.
    Hopefully that will get things going again for you! If not, then you should try deleting and re-adding your BIS conduits for the affected email accounts.
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • How to finish thread, listening to a socket input?

    Hello!
    Can anybody tell me how to correctly interrupt/close thread, listening to a socket input from a server?
    I have a separate thread which listens to an input from server. When a client disconnects from server, it should be closed. I do:<p>
    <code>
    Thread th=new Thread(myRunnable);
    th.start();
    Thread old=th;
    th=null;
    old.interrupt();
    </code>
    But nevertheless I get a SocketException. This is because in thread I use<p>
    <code>
    public void run()
    MyMessage incoming=null;
    while((incoming=(MyMessage)reader.readObject())!=null)
    </code>
    and I/O methods are blocking current thread's running process. Is this technics correct? Any other suggestions?
    Thanx.

    There have been issues with achieving consistent interruption of I/O across all platforms. The recommended approach seems to be to close the socket that the other thread is using, rather than interrupting the other thread.
    If you first set a flag (declare it volatile) before closing the socket, you can use the fact that this flag is set as an indication in the other thread that the exception it gets should just be ignored.
    Sylvia.

  • Safari crashes when deleting email on AOL

    I'm at wits end (which is saying little in my case). When I go to the
    AOL website, read email, select one or several emails, and then click
    on the "delete" trashcan icon Safari crashes immediately.
    I've tried repairing disk permissions, resetting Safari, cleaning out
    the plist file(s), deleting and reinstalling Safari and Java, and
    generally yelling, breaking pencils and making burnt offerings to
    Shiva using nearby CDs.
    Any help would be appreciated, by all in the household.
    Some details:
    The PowerBook G4 with OS X 10.4.4
    Safari 2.0.1 (412.5)
    Java 1.3.1, Java 1.4.2 and J2SE 5.0
    Scene of the crime: http://d02.webmail.aol.com/15106/aol/en-us/Mail/
    Result:
    Date/Time: 2006-02-05 09:48:06.135 -0800
    OS Version: 10.4.4 (Build 8G32)
    Report Version: 3
    Command: Safari
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Parent: WindowServer [113]
    Version: 2.0.1 (412.5)
    Build Version: 8
    Project Name: WebBrowser
    Source Version: 4120500
    PID: 2666
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNPROTECTIONFAILURE (0x0002) at 0x00000004
    Thread 0 Crashed:
    0 com.apple.WebCore 0x955c986c
    khtml::RenderTableCell::collapsedBottomBorder() const + 232
    1 com.apple.WebCore 0x954857bc
    khtml::RenderTableCell::borderBottom() const + 52
    2 com.apple.WebCore 0x9552b6c4
    khtml::RenderBox::getOverflowClipRect(int, int) + 108
    3 com.apple.WebCore 0x954921a4
    khtml::RenderLayer::calculateRects(khtml::RenderLayer const*, QRect
    const&, QRect&, QRect&, QRect&) + 336
    4 com.apple.WebCore 0x954b11c4
    khtml::RenderLayer::hitTestLayer(khtml::RenderLayer*,
    khtml::RenderObject::NodeInfo&, int, int, QRect const&) + 100
    5 com.apple.WebCore 0x954b120c
    khtml::RenderLayer::hitTestLayer(khtml::RenderLayer*,
    khtml::RenderObject::NodeInfo&, int, int, QRect const&) + 172
    6 com.apple.WebCore 0x954b120c
    khtml::RenderLayer::hitTestLayer(khtml::RenderLayer*,
    khtml::RenderObject::NodeInfo&, int, int, QRect const&) + 172
    7 com.apple.WebCore 0x954b1100
    khtml::RenderLayer::hitTest(khtml::RenderObject::NodeInfo&, int, int)
    + 104
    8 com.apple.WebCore 0x955cef98
    DOM::DocumentImpl::prepareMouseEvent(bool, bool, int, int,
    DOM::NodeImpl::MouseEvent*) + 136
    9 com.apple.WebCore 0x954b06ac
    KHTMLView::viewportMouseMoveEvent(QMouseEvent*) + 680
    10 com.apple.WebCore 0x954afddc
    KWQKHTMLPart::mouseMoved(NSEvent*) + 212
    11 com.apple.WebKit 0x9520a770 -[WebHTMLView(WebPrivate)
    _updateMouseoverWithEvent:] + 644
    12 com.apple.WebKit 0x9520a4d4 -[WebHTMLView(WebPrivate)
    _updateMouseoverWithFakeEvent] + 312
    13 com.apple.WebKit 0x95212b30 -[WebHTMLView mouseUp:] +
    104
    14 com.apple.AppKit 0x936b4f20 -[NSWindow sendEvent:] +
    4728
    15 com.apple.Safari 0x0001d2c4 0x1000 + 115396
    16 com.apple.AppKit 0x9365def4 -[NSApplication
    sendEvent:] + 4172
    17 com.apple.Safari 0x0001a2a4 0x1000 + 103076
    18 com.apple.AppKit 0x93655330 -[NSApplication run] + 508
    19 com.apple.AppKit 0x93745e68 NSApplicationMain + 452
    20 com.apple.Safari 0x000021e4 0x1000 + 4580
    21 com.apple.Safari 0x00056e14 0x1000 + 351764
    Thread 1:
    0 libSystem.B.dylib 0x9000b208 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b15c mach_msg + 60
    2 com.apple.CoreFoundation 0x9075e114 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x9075da18 CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x928e3664 -[NSRunLoop
    runMode:beforeDate:] + 172
    5 com.apple.Foundation 0x928e359c -[NSRunLoop run] + 76
    6 com.apple.WebKit 0x951f3410 +[WebFileDatabase
    _syncLoop:] + 176
    7 com.apple.Foundation 0x928d46d4 forkThreadForFunction + 108
    8 libSystem.B.dylib 0x9002b200 pthreadbody + 96
    Thread 2:
    0 libSystem.B.dylib 0x9000b208 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b15c mach_msg + 60
    2 com.apple.CoreFoundation 0x9075e114 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x9075da18 CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x928fbb9c
    +[NSURLConnection(NSURLConnectionInternal) _resourceLoadLoop:] + 264
    5 com.apple.Foundation 0x928d46d4 forkThreadForFunction + 108
    6 libSystem.B.dylib 0x9002b200 pthreadbody + 96
    Thread 3:
    0 libSystem.B.dylib 0x9000b208 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b15c mach_msg + 60
    2 com.apple.CoreFoundation 0x9075e114 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x9075da18 CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x928fccdc +[NSURLCache
    _diskCacheSyncLoop:] + 152
    5 com.apple.Foundation 0x928d46d4 forkThreadForFunction + 108
    6 libSystem.B.dylib 0x9002b200 pthreadbody + 96
    Thread 4:
    0 libSystem.B.dylib 0x9001f20c select + 12
    1 com.apple.CoreFoundation 0x907709a8 __CFSocketManager + 472
    2 libSystem.B.dylib 0x9002b200 pthreadbody + 96
    Thread 5:
    0 libSystem.B.dylib 0x9002b8a8 semaphorewait_signaltrap
    + 8
    1 libSystem.B.dylib 0x9003001c pthreadcondwait + 488
    2 com.apple.Foundation 0x928db840 -[NSConditionLock
    lockWhenCondition:] + 68
    3 com.apple.Syndication 0x98f8350c -[AsyncDB _run:] + 192
    4 com.apple.Foundation 0x928d46d4 forkThreadForFunction + 108
    5 libSystem.B.dylib 0x9002b200 pthreadbody + 96
    Thread 6:
    0 libSystem.B.dylib 0x9002b8a8 semaphorewait_signaltrap
    + 8
    1 libSystem.B.dylib 0x9003001c pthreadcondwait + 488
    2 com.apple.Foundation 0x928db840 -[NSConditionLock
    lockWhenCondition:] + 68
    3 com.apple.AppKit 0x936f5d2c -[NSUIHeartBeat
    _heartBeatThread:] + 324
    4 com.apple.Foundation 0x928d46d4 forkThreadForFunction + 108
    5 libSystem.B.dylib 0x9002b200 pthreadbody + 96
    Thread 7:
    0 libSystem.B.dylib 0x9000b208 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b15c mach_msg + 60
    2 com.apple.CoreFoundation 0x9075e114 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x9075da18 CFRunLoopRunSpecific + 268
    4 com.apple.CoreFoundation 0x9076ce78 CFRunLoopRun + 52
    5 com.apple.QuickTime 0x8fae8f78 QTSNetworkThread_RunThread
    + 128
    6 libSystem.B.dylib 0x9002b200 pthreadbody + 96
    Thread 0 crashed with PPC Thread State 64:
    srr0: 0x00000000955c986c srr1: 0x000000000200f030
    vrsave: 0x0000000000000000
    cr: 0x44004244 xer: 0x0000000020000004 lr:
    0x00000000955c9844 ctr: 0x0000000095485788
    r0: 0x0000000009837498 r1: 0x00000000bfffe3e0 r2:
    0x0000000000000000 r3: 0x00000000bfffe420
    r4: 0x00000000bfffe4c0 r5: 0x00000000bfffe450 r6:
    0x00000000000000d0 r7: 0x0000000007a28a44
    r8: 0x0000000007e26e04 r9: 0x0000000009837498 r10:
    0x0000000000000006 r11: 0x0000000000000006
    r12: 0x0000000095485788 r13: 0x0000000000000000 r14:
    0x0000000000000100 r15: 0x0000000000000000
    r16: 0x0000000000000000 r17: 0x0000000000000000 r18:
    0x00000000bfffe91c r19: 0x00000000bfffe918
    r20: 0x0000000007f36fe0 r21: 0x00000000bfffe920 r22:
    0x00000000bfffe630 r23: 0x00000000bfffe5a0
    r24: 0x000000000000040e r25: 0x00000000000000d1 r26:
    0x0000000000000005 r27: 0x00000000bfffe420
    r28: 0x0000000007e25928 r29: 0x00000000bfffe4c0 r30:
    0x0000000007e26e04 r31: 0x00000000954b10a0
    Binary Images Description:
    0x1000 - 0xd8fff com.apple.Safari 2.0.1 (412.5)
    /Applications/Safari.app/Contents/MacOS/Safari
    0x5f93000 - 0x5f95fff com.apple.textencoding.unicode 2.0
    /System/Library/TextEncodings/Unicode
    Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x7f6bb20 - 0x7f6bbd2 CFMPriv_CoreFoundation PEF binary:
    CFMPriv_CoreFoundation
    0x7f6bde0 - 0x7f6be95 CFMPriv_DVComponentGlue PEF binary:
    CFMPriv_DVComponentGlue
    0x7f6c0d0 - 0x7f6c173 CFMPriv_QuickTime PEF binary:
    CFMPriv_QuickTime
    0x7f6c1f0 - 0x7f6c267 CFMPriv_System PEF binary: CFMPriv_System
    0x7f6c510 - 0x7f6c5e0 CFMPriv_CarbonSound PEF binary:
    CFMPriv_CarbonSound
    0x7f6c660 - 0x7f6c733 CFMPriv_CommonPanels PEF binary:
    CFMPriv_CommonPanels
    0x7f6c810 - 0x7f6c8cb CFMPriv_Help PEF binary: CFMPriv_Help
    0x7f6c8d0 - 0x7f6c99a CFMPriv_HIToolbox PEF binary:
    CFMPriv_HIToolbox
    0x7f6ca20 - 0x7f6caf6 CFMPriv_HTMLRendering PEF binary:
    CFMPriv_HTMLRendering
    0x7f6cb70 - 0x7f6cc43 CFMPriv_ImageCapture PEF binary:
    CFMPriv_ImageCapture
    0x7f6ccd0 - 0x7f6cdb5 CFMPriv_NavigationServices PEF binary:
    CFMPriv_NavigationServices
    0x7f6ce30 - 0x7f6cf06 CFMPriv_OpenScriptingMacBLib PEF binary:
    CFMPriv_OpenScriptingMacBLib
    0x7f6cfe0 - 0x7f6d09e CFMPriv_Print PEF binary: CFMPriv_Print
    0x7f6d0c0 - 0x7f6d18d CFMPriv_SecurityHI PEF binary:
    CFMPriv_SecurityHI
    0x7f6d210 - 0x7f6d2f2 CFMPriv_SpeechRecognition PEF binary:
    CFMPriv_SpeechRecognition
    0x7f6d370 - 0x7f6d443 CFMPriv_CarbonCore PEF binary:
    CFMPriv_CarbonCore
    0x7f6d4c0 - 0x7f6d593 CFMPriv_OSServices PEF binary:
    CFMPriv_OSServices
    0x7f6d670 - 0x7f6d732 CFMPriv_AE PEF binary: CFMPriv_AE
    0x7f6d740 - 0x7f6d805 CFMPriv_ATS PEF binary: CFMPriv_ATS
    0x7f6d880 - 0x7f6d957 CFMPriv_ColorSync PEF binary:
    CFMPriv_ColorSync
    0x7f6d9e0 - 0x7f6dac3 CFMPriv_FindByContent PEF binary:
    CFMPriv_FindByContent
    0x7f6db40 - 0x7f6dc1a CFMPriv_HIServices PEF binary:
    CFMPriv_HIServices
    0x7f6dc90 - 0x7f6dd70 CFMPriv_LangAnalysis PEF binary:
    CFMPriv_LangAnalysis
    0x7f6de00 - 0x7f6dee6 CFMPriv_LaunchServices PEF binary:
    CFMPriv_LaunchServices
    0x7f6dfc0 - 0x7f6e097 CFMPriv_PrintCore PEF binary:
    CFMPriv_PrintCore
    0x7f6e0a0 - 0x7f6e162 CFMPriv_QD PEF binary: CFMPriv_QD
    0x7f6e260 - 0x7f6e349 CFMPriv_SpeechSynthesis PEF binary:
    CFMPriv_SpeechSynthesis
    0x87bb000 - 0x87c8fff com.apple.quicktime.webplugin 7.0.4
    /Library/Internet Plug-Ins/QuickTime
    Plugin.webplugin/Contents/MacOS/QuickTime Plugin
    0x9039000 - 0x9148fff GLEngine
    /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/
    GLEngine
    0x9177000 - 0x9267fff com.apple.ATIRadeon9700GLDriver 1.4.18
    (4.1.8)
    /System/Library/Extensions/ATIRadeon9700GLDriver.bundle/Contents/MacOS
    /ATIRadeon9700GLDriver
    0x9275000 - 0x928efff GLDriver
    /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLDri
    ver.bundle/GLDriver
    0x9294000 - 0x92affff GLRendererFloat
    /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRen
    dererFloat.bundle/GLRendererFloat
    0x96e7000 - 0x96e9fff com.apple.PDFImporter 1.6 (???)
    /System/Library/Components/PDFImporter.component/Contents/MacOS/PDFImp
    orter
    0x9c46000 - 0x9d7ee45 Flash Player PEF binary: Flash Player
    0x9d7f000 - 0x9dce3c7 CarbonLibpwpc PEF binary: CarbonLibpwpc
    0x9dce3d0 - 0x9de66bd Apple;Carbon;Multimedia PEF binary:
    Apple;Carbon;Multimedia
    0x9de7c00 - 0x9de998b Apple;Carbon;Networking PEF binary:
    Apple;Carbon;Networking
    0x8e6f8000 - 0x8e71ffff com.apple.QuickTime Plugin.plugin 7.0.4
    /Library/Internet Plug-Ins/QuickTime
    Plugin.plugin/Contents/MacOS/QuickTime Plugin
    0x8e7ee000 - 0x8e93bfff com.apple.QuickTimeStreaming.component
    7.0.4
    /System/Library/QuickTime/QuickTimeStreaming.component/Contents/MacOS/
    QuickTimeStreaming
    0x8ed72000 - 0x8f731fff com.apple.QuickTimeComponents.component
    7.0.4
    /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS
    /QuickTimeComponents
    0x8fa14000 - 0x8fa50fff com.apple.QTKit 7.0.4
    /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x8fa79000 - 0x8fd27fff com.apple.QuickTime 7.0.4
    /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x8fe00000 - 0x8fe54fff dyld 44.2 /usr/lib/dyld
    0x90000000 - 0x901b3fff libSystem.B.dylib
    /usr/lib/libSystem.B.dylib
    0x9020b000 - 0x90210fff libmathCommon.A.dylib
    /usr/lib/system/libmathCommon.A.dylib
    0x90212000 - 0x90265fff com.apple.CoreText 1.0.1 (???)
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Fr
    ameworks/CoreText.framework/Versions/A/CoreText
    0x90292000 - 0x90343fff ATS
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Fr
    ameworks/ATS.framework/Versions/A/ATS
    0x90372000 - 0x906affff com.apple.CoreGraphics 1.256.30 (???)
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Fr
    ameworks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x9073b000 - 0x90814fff com.apple.CoreFoundation 6.4.4 (368.25)
    /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFou
    ndation
    0x9085d000 - 0x9085dfff com.apple.CoreServices 10.4 (???)
    /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServi
    ces
    0x9085f000 - 0x90961fff libicucore.A.dylib
    /usr/lib/libicucore.A.dylib
    0x909bb000 - 0x90a3ffff libobjc.A.dylib
    /usr/lib/libobjc.A.dylib
    0x90a69000 - 0x90ad7fff com.apple.framework.IOKit 1.4.1 (???)
    /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90aee000 - 0x90b00fff libauto.dylib /usr/lib/libauto.dylib
    0x90b07000 - 0x90ddffff com.apple.CoreServices.CarbonCore 681.3
    (671.2)
    /System/Library/Frameworks/CoreServices.framework/Versions/A/Framework
    s/CarbonCore.framework/Versions/A/CarbonCore
    0x90e45000 - 0x90ec5fff com.apple.CoreServices.OSServices 4.1
    /System/Library/Frameworks/CoreServices.framework/Versions/A/Framework
    s/OSServices.framework/Versions/A/OSServices
    0x90f0f000 - 0x90f50fff com.apple.CFNetwork 10.4.4 (129.9)
    /System/Library/Frameworks/CoreServices.framework/Versions/A/Framework
    s/CFNetwork.framework/Versions/A/CFNetwork
    0x90f65000 - 0x90f7dfff com.apple.WebServices 1.1.2 (1.1.0)
    /System/Library/Frameworks/CoreServices.framework/Versions/A/Framework
    s/WebServicesCore.framework/Versions/A/WebServicesCore
    0x90f8d000 - 0x9100efff com.apple.SearchKit 1.0.5
    /System/Library/Frameworks/CoreServices.framework/Versions/A/Framework
    s/SearchKit.framework/Versions/A/SearchKit
    0x91054000 - 0x9107efff com.apple.Metadata 10.4.4 (121.34)
    /System/Library/Frameworks/CoreServices.framework/Versions/A/Framework
    s/Metadata.framework/Versions/A/Metadata
    0x9108f000 - 0x9109dfff libz.1.dylib /usr/lib/libz.1.dylib
    0x910a0000 - 0x91263fff com.apple.security 4.3 (25966)
    /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x91366000 - 0x9136ffff com.apple.DiskArbitration 2.1
    /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskAr
    bitration
    0x91376000 - 0x9139dfff com.apple.SystemConfiguration 1.8.2
    /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/Sy
    stemConfiguration
    0x913b0000 - 0x913b8fff libgcc_s.1.dylib
    /usr/lib/libgcc_s.1.dylib
    0x913bd000 - 0x913defff libmx.A.dylib /usr/lib/libmx.A.dylib
    0x913e4000 - 0x913ecfff libbsm.dylib /usr/lib/libbsm.dylib
    0x913f0000 - 0x91470fff com.apple.audio.CoreAudio 3.0.2
    /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x914af000 - 0x914affff com.apple.ApplicationServices 10.4
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Ap
    plicationServices
    0x914b1000 - 0x914e9fff com.apple.AE 1.5 (297)
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Fr
    ameworks/AE.framework/Versions/A/AE
    0x91504000 - 0x915d1fff com.apple.ColorSync 4.4.4
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Fr
    ameworks/ColorSync.framework/Versions/A/ColorSync
    0x91626000 - 0x916b9fff com.apple.print.framework.PrintCore 4.3
    (172.3)
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Fr
    ameworks/PrintCore.framework/Versions/A/PrintCore
    0x91700000 - 0x917bdfff com.apple.QD 3.8.18 (???)
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Fr
    ameworks/QD.framework/Versions/A/QD
    0x917fb000 - 0x91859fff com.apple.HIServices 1.5.1 (???)
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Fr
    ameworks/HIServices.framework/Versions/A/HIServices
    0x91887000 - 0x918abfff com.apple.LangAnalysis 1.6.1
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Fr
    ameworks/LangAnalysis.framework/Versions/A/LangAnalysis
    0x918bf000 - 0x918e4fff com.apple.FindByContent 1.5
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Fr
    ameworks/FindByContent.framework/Versions/A/FindByContent
    0x918f7000 - 0x91939fff com.apple.LaunchServices 10.4.6 (168.3)
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Fr
    ameworks/LaunchServices.framework/Versions/A/LaunchServices
    0x91955000 - 0x91969fff com.apple.speech.synthesis.framework
    3.3
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Fr
    ameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x91977000 - 0x919b1fff com.apple.ImageIO.framework 1.4.4
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Fr
    ameworks/ImageIO.framework/Versions/A/ImageIO
    0x919c6000 - 0x91a8efff libcrypto.0.9.7.dylib
    /usr/lib/libcrypto.0.9.7.dylib
    0x91adc000 - 0x91af1fff libcups.2.dylib
    /usr/lib/libcups.2.dylib
    0x91af6000 - 0x91b13fff libJPEG.dylib
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Fr
    ameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91b18000 - 0x91b87fff libJP2.dylib
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Fr
    ameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91b9e000 - 0x91ba2fff libGIF.dylib
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Fr
    ameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91ba4000 - 0x91bd5fff libRaw.dylib
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Fr
    ameworks/ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91bd9000 - 0x91c1cfff libTIFF.dylib
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Fr
    ameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91c23000 - 0x91c3cfff libPng.dylib
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Fr
    ameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91c41000 - 0x91c44fff libRadiance.dylib
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Fr
    ameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91c46000 - 0x91c46fff com.apple.Accelerate 1.1.1 (Accelerate
    1.1.1)
    /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91c48000 - 0x91d1efff com.apple.vImage 2.0
    /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/
    vImage.framework/Versions/A/vImage
    0x91d26000 - 0x91d45fff com.apple.Accelerate.vecLib 3.1.1 (vecLib
    3.1.1)
    /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/
    vecLib.framework/Versions/A/vecLib
    0x91db1000 - 0x91e16fff libvMisc.dylib
    /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/
    vecLib.framework/Versions/A/libvMisc.dylib
    0x91e20000 - 0x91eb2fff libvDSP.dylib
    /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/
    vecLib.framework/Versions/A/libvDSP.dylib
    0x91ecc000 - 0x9245cfff libBLAS.dylib
    /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/
    vecLib.framework/Versions/A/libBLAS.dylib
    0x924a4000 - 0x927b4fff libLAPACK.dylib
    /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/
    vecLib.framework/Versions/A/libLAPACK.dylib
    0x927e1000 - 0x9286dfff com.apple.DesktopServices 1.3.1
    /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versio
    ns/A/DesktopServicesPriv
    0x928af000 - 0x92ad9fff com.apple.Foundation 6.4.2 (567.21)
    /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92bf7000 - 0x92cd5fff libxml2.2.dylib
    /usr/lib/libxml2.2.dylib
    0x92cf5000 - 0x92de3fff libiconv.2.dylib
    /usr/lib/libiconv.2.dylib
    0x92df5000 - 0x92e13fff libGL.dylib
    /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL
    .dylib
    0x92e1e000 - 0x92e78fff libGLU.dylib
    /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL
    U.dylib
    0x92e96000 - 0x92e96fff com.apple.Carbon 10.4 (???)
    /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92e98000 - 0x92eacfff com.apple.ImageCapture 3.0
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Imag
    eCapture.framework/Versions/A/ImageCapture
    0x92ec4000 - 0x92ed4fff com.apple.speech.recognition.framework
    3.4
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Spee
    chRecognition.framework/Versions/A/SpeechRecognition
    0x92ee0000 - 0x92ef5fff com.apple.securityhi 2.0 (203)
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Secu
    rityHI.framework/Versions/A/SecurityHI
    0x92f07000 - 0x92f8efff com.apple.ink.framework 101.2 (69)
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.
    framework/Versions/A/Ink
    0x92fa2000 - 0x92fadfff com.apple.help 1.0.3 (32)
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help
    .framework/Versions/A/Help
    0x92fb7000 - 0x92fe4fff com.apple.openscripting 1.2.4 (???)
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Open
    Scripting.framework/Versions/A/OpenScripting
    0x92ffe000 - 0x9300efff com.apple.print.framework.Print 5.0
    (190.1)
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Prin
    t.framework/Versions/A/Print
    0x9301a000 - 0x93080fff com.apple.htmlrendering 1.1.2
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTML
    Rendering.framework/Versions/A/HTMLRendering
    0x930b1000 - 0x93103fff com.apple.NavigationServices 3.4.2
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Navi
    gationServices.framework/Versions/A/NavigationServices
    0x9312f000 - 0x9314cfff com.apple.audio.SoundManager 3.9
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Carb
    onSound.framework/Versions/A/CarbonSound
    0x9315e000 - 0x9316bfff com.apple.CommonPanels 1.2.2 (73)
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Comm
    onPanels.framework/Versions/A/CommonPanels
    0x93174000 - 0x93486fff com.apple.HIToolbox 1.4.5 (???)
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HITo
    olbox.framework/Versions/A/HIToolbox
    0x935d2000 - 0x935defff com.apple.opengl 1.4.7
    /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x935e3000 - 0x93604fff com.apple.DirectoryService.Framework
    3.0
    /System/Library/Frameworks/DirectoryService.framework/Versions/A/Direc
    toryService
    0x9361c000 - 0x93645fff com.apple.MediaKit 8.1 (319.1)
    /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaK
    it
    0x9364f000 - 0x9364ffff com.apple.Cocoa 6.4 (???)
    /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93651000 - 0x93c84fff com.apple.AppKit 6.4.4 (824.33)
    /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x94011000 - 0x94081fff com.apple.CoreData 80
    /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x940ba000 - 0x94184fff com.apple.audio.toolbox.AudioToolbox
    1.4.1
    /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioTool
    box
    0x941d8000 - 0x941d8fff com.apple.audio.units.AudioUnit 1.4
    /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x941da000 - 0x94352fff com.apple.QuartzCore 1.4.5
    /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x9439c000 - 0x943d9fff libsqlite3.0.dylib
    /usr/lib/libsqlite3.0.dylib
    0x943e1000 - 0x94431fff libGLImage.dylib
    /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL
    Image.dylib
    0x944c1000 - 0x944f9fff com.apple.vmutils 4.0.0 (85)
    /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x9453c000 - 0x94558fff com.apple.securityfoundation 2.1
    (24988)
    /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/Sec
    urityFoundation
    0x9456c000 - 0x945b0fff com.apple.securityinterface 2.1 (24981)
    /System/Library/Frameworks/SecurityInterface.framework/Versions/A/Secu
    rityInterface
    0x945d4000 - 0x945e3fff libCGATS.A.dylib
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Fr
    ameworks/CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x945eb000 - 0x945f7fff libCSync.A.dylib
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Fr
    ameworks/CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x9463d000 - 0x94655fff libRIP.A.dylib
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Fr
    ameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x9465c000 - 0x946dffff libstdc++.6.dylib
    /usr/lib/libstdc++.6.dylib
    0x9485f000 - 0x9498dfff com.apple.AddressBook.framework 4.0.3
    (483)
    /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBoo
    k
    0x94a1f000 - 0x94a2efff com.apple.DSObjCWrappers.Framework 1.1
    /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/
    DSObjCWrappers
    0x94a36000 - 0x94a63fff com.apple.LDAPFramework 1.4.1 (69.0.1)
    /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x94a6a000 - 0x94a7afff libsasl2.2.dylib
    /usr/lib/libsasl2.2.dylib
    0x94a7e000 - 0x94aadfff libssl.0.9.7.dylib
    /usr/lib/libssl.0.9.7.dylib
    0x94abd000 - 0x94adafff libresolv.9.dylib
    /usr/lib/libresolv.9.dylib
    0x94ed3000 - 0x94ed3fff com.apple.DiscRecording 3.0.8 (???)
    /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscReco
    rding
    0x94ed5000 - 0x94f58fff com.apple.DiscRecordingEngine 3.0.8
    /System/Library/Frameworks/DiscRecording.framework/Versions/A/Framewor
    ks/DiscRecordingEngine.framework/Versions/A/DiscRecordingEngine
    0x94f85000 - 0x94fcbfff com.apple.DiscRecordingContent 3.0.8
    /System/Library/Frameworks/DiscRecording.framework/Versions/A/Framewor
    ks/DiscRecordingContent.framework/Versions/A/DiscRecordingContent
    0x951c0000 - 0x951e8fff libcurl.3.dylib
    /usr/lib/libcurl.3.dylib
    0x951f1000 - 0x9527dfff com.apple.WebKit 417.9
    /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x952d8000 - 0x953cdfff com.apple.JavaScriptCore 417.8
    /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/Java
    ScriptCore.framework/Versions/A/JavaScriptCore
    0x95409000 - 0x95713fff com.apple.WebCore 417.17
    /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebC
    ore.framework/Versions/A/WebCore
    0x9589a000 - 0x958c3fff libxslt.1.dylib
    /usr/lib/libxslt.1.dylib
    0x95fbe000 - 0x95fd4fff libJapaneseConverter.dylib
    /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0x96a61000 - 0x96a80fff com.apple.vecLib 3.1.1 (vecLib 3.1.1)
    /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x97197000 - 0x97258fff libGLProgrammability.dylib
    /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL
    Programmability.dylib
    0x97283000 - 0x97284fff libGLSystem.dylib
    /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL
    System.dylib
    0x97286000 - 0x97293fff com.apple.agl 2.5.6 (AGL-2.5.6)
    /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x982a9000 - 0x983b1fff com.apple.DiskImagesFramework 10.4.3
    (112.5)
    /System/Library/PrivateFrameworks/DiskImages.framework/DiskImages
    0x9842e000 - 0x9843bfff libbz2.1.0.dylib
    /usr/lib/libbz2.1.0.dylib
    0x98e7e000 - 0x98e7ffff com.apple.iokit.dvcomponentglue 1.7.9
    /System/Library/Frameworks/DVComponentGlue.framework/Versions/A/DVComp
    onentGlue
    0x98f80000 - 0x98fb6fff com.apple.Syndication 1.0.3 (49)
    /System/Library/PrivateFrameworks/Syndication.framework/Versions/A/Syn
    dication
    0x98fd3000 - 0x98fe5fff com.apple.SyndicationUI 1.0.3 (49)
    /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/S
    yndicationUI
    Model: PowerBook5,9, BootROM 4.9.6f0, 1 processors, PowerPC G4 (1.5),
    1.67 GHz, 2 GB
    Graphics: ATI Mobility Radeon 9700, ATY,RV360M11, AGP, 128 MB
    Memory Module: SODIMM0/J20STANDARD, 1 GB, DDR2 SDRAM, PC2-4200S-444
    Memory Module: SODIMM1/J23REVERSED, 1 GB, DDR2 SDRAM, PC2-4200S-444
    AirPort: AirPort Extreme, 404.2 (3.90.34.0.p16)
    Modem: Jump, , V.92, Version 1.0,
    Bluetooth: Version 1.7.0f18, 2 service, 0 devices, 1 incoming serial
    ports
    Network Service: AirPort, AirPort, en1
    PCI Card: pci106b,4318, sppci_othernetwork, SLOT-A
    PCI Card: TXN,PCIXXXX-00, cardbus, PC Card
    PCI Card: usb, usb, USB20
    PCI Card: usb, usb, USB20
    PCI Card: usb, ehci, USB20
    Parallel ATA Device: ST9120821A, 111.79 GB
    Parallel ATA Device: MATSHITADVD-R UJ-846, 324.73 MB
    USB Device: Apple Internal Keyboard / Trackpad, Apple Computer, Up to
    12 Mb/sec, 500 mA
    USB Device: Bluetooth HCI, , Up to 12 Mb/sec, 500 mA
    PowerBook G4   Mac OS X (10.4.4)   1.67
    GHz w/ 2GB DDR2 SDRAM
    [ Edited by Apple Discussions Moderator; wrap long lines ]

    Hi All!
    This reply was posted to the originator of this thread, but is meant for All.
    I hope this is helpful!
    Deleting AOL Mail, crashes Safari/Consolidated
    It seems the most recent Safari, and or 10.4.4, update has created this problem.
    Apple & AOL are both aware of this, but, as far as I know, no correction has been implemented.
    Here are some of the work arounds, that I have been able to discern from the various posts regarding this issue.
    If I have missed anything, please correct, and or add.
    Use the FIREFOX BROWSER.
    Use your AOL Mail program.
    Use this utility AOL SERVICES UTILITY, to set up Apple Mail, to access AOL Mail.
    Access the AOL Mail thru Classic AOL Webmail.
    And here are links, to the various threads, discussing this issue.
    Safari and AOL
    AOL/ Delete/ Safari crash
    safari crashing with aol.com mail deletion
    AOL Webmail and Safari on 10.4.2 crashes on delete mail
    Update 10.4.4 causes crash
    Safari crashes when deleting email on AOL
    Safari Update
    Safari Crashes AOL mail
    ali b

  • Account Name field of 4663,4660 displays System Account(FileServer$) instead of userName when Deleting a Folder

    Account Name field of 4663,4660 displays System Account(FileServer$)
    instead of userName when Deleting a Folder : 
    A Folder with files & subfolders are deleted.The following sequence events 4656,4663,4660,4658 are logged for parent folder,subfolders
    and files in the security event log.For parent folder and subfolders events, the Account Name field of event id 4656 displays the user who deleted the folder,but the Account Name field of event id 4663,4660 diplays the SYSTEM account ie)FileServer Name instead
    of username.This is not occuring for files inside the subfolders
    Actually we correlate 4663,4660 with handle id and process id to make sure the file/ folder is deleted.Using this above correlation we
    can not able to find out user ,because it shows servername$ for folder deletions not files.So my question is why windows logging servername$ in 4663,4660 events only for folder deletions.
    The above issue happening only for 
    * parent folder and sub folders and not for files inside them.
    * deletion through network share and not locally.
    Sample Events of 4656,4663,4660
    Log Name: Security
    Source: Microsoft-Windows-Security-Auditing
    Date: 11-09-2012 20:03:41
    Event ID: 4656
    Task Category: File System
    Level: Information
    Keywords: Audit Success
    User: N/A
    Computer: FS01.test.com
    Description:
    A handle to an object was requested.
    Subject:
    Security ID: S-1-5-21-34352134455-267854504-159913591-49381
    Account Name: vijay
    Account Domain: test.com
    Logon ID: 0x7e95119f
    Object:
    Object Server: Security
    Object Type: File
    Object Name: \Device\HarddiskVolume4\ShareA\testFolder
    Handle ID: 0x7498
    Process Information:
    Process ID: 0x4
    Process Name: 
    Access Request Information:
    Transaction ID: {00000000-0000-0000-0000-000000000000}
    Accesses: DELETE
    Access Mask: 0x10000
    Privileges Used for Access Check: -
    Restricted SID Count: 0
    Log Name: Security
    Source: Microsoft-Windows-Security-Auditing
    Date: 11-09-2012 20:03:41
    Event ID: 4663
    Task Category: File System
    Level: Information
    Keywords: Audit Success
    User: N/A
    Computer: FS01.test.com
    Description:
    An attempt was made to access an object.
    Subject:
    Security ID: SYSTEM
    Account Name: FS01$
    Account Domain: test.com
    Logon ID: 0x3e7
    Object:
    Object Server: Security
    Object Type: File
    Object Name: \Device\HarddiskVolume4\Shared\testFolder
    Handle ID: 0x7498
    Process Information:
    Process ID: 0x4
    Process Name: 
    Access Request Information:
    Accesses: DELETE
    Access Mask: 0x10000
    Log Name: Security
    Source: Microsoft-Windows-Security-Auditing
    Date: 11-09-2012 20:03:41
    Event ID: 4660
    Task Category: File System
    Level: Information
    Keywords: Audit Success
    User: N/A
    Computer: FS01
    Description:
    An object was deleted.
    Subject:
    Security ID: SYSTEM
    Account Name: FS01$
    Account Domain: test.com
    Logon ID: 0x3e7
    Object:
    Object Server: Security
    Handle ID: 0x7498
    Process Information:
    Process ID: 0x4
    Process Name: 
    Transaction ID: {00000000-0000-0000-0000-000000000000}

    HI,
    When you configure the Auditing Entry for the user account on the shared folder,  if the setting is Files only, it might be the cause of your problem . If so, you can try to configure "Apply onto" as The folder, subfolders and files.
    Best regards, Jason Mei Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • Issue in deleting an app installed in IOS 7

    I'm facing issue in deleting an app which was installed in IOS 7 in both iPhone & iPad. Installed the app from the hosted server, Installation is complete. But the app remain in the grayed out state.
    When I try to delete the app, it is not getting deleted. Please find the attached screenshot for reference. The device console log is as shown below during Installation.
    Oct  2 15:57:55 121945s-iPad itunesstored[101] <Warning>: LaunchServices: Creating installProgressForApplication:LSApplicationProxy: KBLD83422Q.V-Spec (Placeholder) withPhase:0
    Oct  2 15:58:26 121945s-iPad SpringBoard[33] <Warning>: Killing KBLD83422Q.V-Spec for app installation
    Oct  2 15:58:26 121945s-iPad itunesstored[101] <Warning>: LaunchServices: installing app for existing placeholder LSApplicationProxy: KBLD83422Q.V-Spec (Placeholder)
    Oct  2 15:58:26 121945s-iPad itunesstored[101] <Warning>: LaunchServices: Creating installProgressForApplication:LSApplicationProxy: KBLD83422Q.V-Spec (Placeholder) withPhase:1
    Oct  2 15:58:26 121945s-iPad lsd[71] <Warning>: LaunchServices: Updating installPhase for parent <NSProgress: phase=Loading; state=Active; fractionCompleted=0.590000> to 1
    Oct  2 15:58:26 121945s-iPad installd[59] <Notice>: 0x1c1000 handle_install_for_ls: Install of "/var/mobile/Media/Downloads/1678854020200631213/4200727509532306323" requested by itunesstored
    Oct  2 15:58:33 121945s-iPad installd[59] <Notice>: 0x1c1000 MobileInstallationInstall_Server: Installing app com.toyota.vSpec
    Oct  2 15:58:36 121945s-iPad securityd[87] <Error>: OCSPResponse: now > latestNextUpdate
    Oct  2 15:58:36 121945s-iPad SpringBoard[33] <Warning>: Killing com.toyota.vSpec for termination assertion
    Oct  2 15:58:36 121945s-iPad installd[59] <Notice>: 0x1c1000 MobileInstallationInstall_Server: Staging: 7.61s; Waiting: 0.00s; Installation: 2.80s; LS Sync: 0.00s; Overall: 10.42s
    Oct  2 15:58:36 121945s-iPad lsd[71] <Warning>: LaunchServices: Updating identifier store
    Oct  2 15:58:36 121945s-iPad itunesstored[101] <Warning>: LaunchServices: installPhaseFinishedForProgress: KBLD83422Q.V-Spec.Installing - <NSProgress: phase=Installing; state=Finished; fractionCompleted=1.000000> called, removing progress from cache
    Oct  2 15:58:36 121945s-iPad lsd[71] <Warning>: LaunchServices: installation ended for app KBLD83422Q.V-Spec
    Oct  2 15:58:37 121945s-iPad SpringBoard[33] <Error>: libMobileGestalt MobileGestalt.c:837: front-facing-camera cannot generate notifications yet
    Oct  2 15:58:37 121945s-iPad SpringBoard[33] <Error>: libMobileGestalt MobileGestalt.c:835: ipad is static and will never generate a notification
    Oct  2 15:58:37 121945s-iPad SpringBoard[33] <Error>: libMobileGestalt MobileGestalt.c:835: any-telephony is static and will never generate a notification
    Oct  2 15:58:37 121945s-iPad SpringBoard[33] <Error>: libMobileGestalt MobileGestalt.c:835: stand-alone-contacts is static and will never generate a notification
    Oct  2 15:58:37 121945s-iPad SpringBoard[33] <Error>: libMobileGestalt MobileGestalt.c:835: still-camera is static and will never generate a notification
    Oct  2 15:58:37 121945s-iPad itunesstored[101] <Warning>: LaunchServices: installPhaseFinishedForProgress: KBLD83422Q.V-Spec.Loading - <NSProgress: phase=Loading; state=Finished; fractionCompleted=1.000000> called, removing progress from cache
    Oct  2 15:58:37 121945s-iPad lsd[71] <Warning>: LSInstallProgress: In observeValueForKeyPath:userInfo.installState could not find parent progress for KBLD83422Q.V-Spec, it may have been removed
    The app is downloaded from internally hosted server.

    I also have this problem with ios app and have reproduced the problem on multiple devices. It only happens when i use OTA installation process with exported ipa. I am following the apple docs for ios distribution for testing. I am not using a 3rd party (testflight, betatesters etc.) for this, its an internet facing  web server (azure) with all the proper mime types etc. setup. The install works fine, meaning i get the correct prompts to install, my app installs and runs, but I end up with an additional phantom icon, usually hung in an "installing" state, basically like prabu4u shows in his scenario.This icon/app can't be deleted using standard means (via xcode, itunes, hard/soft resetting of device, changing device language settings).
    here is a brief section of console log, that is similar to prabu4u:
    .....prior consiole messages omitted for brevity sake.....
    Oct 12 13:02:55 Bob-Bisantzs-iPhone lsd[76] <Warning>: LaunchServices: Updating identifier store
    Oct 12 13:02:55 Bob-Bisantzs-iPhone itunesstored[95] <Warning>: LaunchServices: installPhaseFinishedForProgress: com.lynn.Installing - <NSProgress: phase=Installing; state=Finished; fractionCompleted=1.000000> called, removing progress from cache
    Oct 12 13:02:55 Bob-Bisantzs-iPhone lsd[76] <Warning>: LaunchServices: installation ended for app com.lynn
    Oct 12 13:02:55 Bob-Bisantzs-iPhone lsd[76] <Warning>: LSInstallProgress: In observeValueForKeyPath:userInfo.installState could not find parent progress for com.lynn, it may have been removed
    Oct 12 13:02:55 Bob-Bisantzs-iPhone lsd[76] <Warning>: LSInstallProgress: In observeValueForKeyPath:fractionCompleted could not find parent progress for com.lynn, it may have been removed
    Oct 12 13:02:55 Bob-Bisantzs-iPhone itunesstored[95] <Warning>: LaunchServices: installPhaseFinishedForProgress: com.lynn.Loading - <NSProgress: phase=Loading; state=Finished; fractionCompleted=1.000000> called, removing progress from cache
    Oct 12 13:02:55 Bob-Bisantzs-iPhone lsd[76] <Warning>: LSInstallProgress: In observeValueForKeyPath:userInfo.installState could not find parent progress for com.lynn, it may have been removed
    I do not believe this is a network, connectivity or web server issue. The udid of my device (and other test devices) are registered in the protal, they are all running updated version of ios7.
    I believe its an issue (caused by me) with the provision profile (probably the distribution) packaged in the app. I have validated that the profiles are in the portal and are synched with xcode5 using organizer->devices->iphone->provisioning profies. it shows both the ios team prov profile and the ios adhoc distribution profile created from my developer account.They both show valid profile status with expirations in 2014.
    I have done clean builds, rebuilds and redeploys of the exported ipa (generated using ad-hoc deployment scheme in xcode5), but the end result is the same. I always end up with the phantom icon.
    I have read other posts that say they use a 3rd party tool to delete the icon, which is fine, but I really want to avoid this by correctly developing and depploying the app.
    any ideas on where i made my mistake(s) ? thanks, bob

Maybe you are looking for

  • Regarding table information

    hi experts, there is one table KNVP for customer master partner function.. i wud like to know is there any similar table for vendor master partner function..if yes then plz tell me the name of that table.. regards, raman.

  • Report for Reject NON-PO Invoice

    Hi All, We have implemented workflow for Non- PO inovice and creating documents thru FV60.. Now we want to have a report which will provide the list of documents which are in Rejected status (Work Item has been rejected by approver.). Please advice i

  • Restoring Old Library

    Hi, I've been reading around the forum on this issue and tried most of the fixes but without success - so apologies if this is duplicating. I had to reset my laptop to factory settings. I want to restore my old itunes libary with playlists/purchases/

  • Safari, Mail and Disk Utility won't run unless Font Book is Open

    Recently Safari, Mail and Disk Utility would crash and spin and the "Application Not Responding" line would appear when I checked the program in the dock. After following a variety of tips from other Apple users, I finally got the programs to run. Ho

  • Order of indexed columns in the index

    Hi Gurus, I have a small problem in front of me and I wud like to take some inputs from you Gurus.Here is question 1. Is order of the index is important in CBO? say 1.I have a concatenated index on col1,col2 2.In the sql statement's used in my projec