Cannot read an ArrayCollection variable assigned by LCDS

Hi,<br /><br />      I am new to flex and lcds.  pls. help me to understand.  All I am trying to do here is take the hibernate sample from lcds sample application and replace the grid control with a tree control.  In order achieve this, I was trying to convert the ArrayCollection into an XMLListCollection object through an actionscript in a function called convertToXML.  How ever, I'm having the difficulty in this conversion.  When i tried to debug the action script, the arraycollection, which is suppose to be with full values, seems to empty.  But, still it shows up the records in the grid.  pls. help to understand, why, I can't manipulate the ArrayCollection?<br /><br />  For your reference, Following is the modifed modified lines of the original lcds sample code.<br /><br /><mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" xmlns:local="*" layout="absolute" <br />     width="100%" height="100%"<br />    pageTitle="Hibernate"<br />     creationComplete="convertToXML()"><br /><br />     <!--<br />          <mx:Tree id="list" width="100%" height="100%" dataProvider="{projectData}" labelField="@name"/><br />     --><br />          <mx:DataGrid id="list" width="100%" height="100%" dataProvider="{contacts}"<br />               doubleClick="openTab(list.selectedItem as Contact)" doubleClickEnabled="true"><br />               <mx:columns><br />                    <mx:DataGridColumn dataField="firstName" headerText="First Name"/><br />               </mx:columns><br />          </mx:DataGrid><br /><br />               [Bindable]<br />            private var projects:XML =<br />              <list><br />                <projects name="Projects" code="0"><br />                </projects><br />              </list>;<br /><br />            [Bindable]<br />            private var projectData:XMLListCollection = <br />                new XMLListCollection(projects.projects);<br />               <br />               private function convertToXML():void {<br />                    ds.fill(contacts, 'all', []);<br />                    for each (var proj:Contact in contacts) {<br />                         addProject(proj.lastName + ", " + proj.firstName);     <br />                    }                    <br />               }<br />               <br />               private function addProject(projName:String):void {<br />                var newNode:XML = <project/>;<br />                newNode.@name = projName;<br />                var proj:XMLList = projects.projects.(@name == "Projects");<br />                if( proj.length() > 0 ) {<br />                    proj[0].appendChild(newNode);<br />                }<br />            }<br /><br />               private function treeLabel(item:Object):String {<br />                var node:XML = XML(item);<br />                if( node.localName() == "department" )<br />                    return node.@title;<br />                else<br />                    return node.@name;<br />            }

If I understand correctly you must read a BLOB from a foregin database but have no privleges to create any supporting objects. This sounds painful.
Options to get to the BLOB include (all with problems to solve)
* through database link
* extract LOB to OS and re-load into database
**flat file
**datapump file
Some options - I hope someone provides better ideas, but until that happens ...
Can you create objects on the other side - where the BLOB comes from? If you can, consider writing a (pipelined?) function to read the BLOB, chop it up into smaller pieces, transfeer the pieces over a database link, and reassemble the pieces in the remote database using DBMS_LOB in PL/SQL. Not elegant.
You should be able to use the scheduler to create a job to use datapump to extract the BLOB and possibly transfer it too but how to access the OS file? You said you have no privileges to create objects, and that would include external tables. Could you find an existing directory object and use the folder already defined (risky; using a different application's infrastructure can be hard to maintain and will break when the underlying directly goes away)?
Edited by: riedelme on Jun 13, 2011 12:08 PM

Similar Messages

  • PLS-00363: expression cannot be used as an assignment target

    Hi,
    Oralce9.2
    when I run the insert procedure I get the below error:
    Procedure
    PROCEDURE proc_one_insert(col1 IN OUT numeric,
    col2           IN num,
    col3     IN numeric
    BEGIN
    execute immediate proc_one_insert(2,1,111);
    END;
    Error
    PLS-00363: expression '2' cannot be used as an assignment target
    How to solve the above error ?
    With Regards
    Edited by: user640001 on Dec 2, 2010 3:04 AM

    Arun has shown you an example using PL/SQL. If you want to do something similar in other languages you have to use their style of variable declaration e.g. if you wanted to do it through SQL*Plus, you need to declare the variable within SQL*Plus itself and bind that into your calls e.g.
    SQL> create procedure p_inout (p_val in out number) is
      2  begin
      3    p_val := p_val*10;
      4  end;
      5  /
    Procedure created.
    SQL> var mynum number
    SQL> exec :mynum := 10;
    PL/SQL procedure successfully completed.
    SQL> print mynum
         MYNUM
            10
    SQL> exec p_inout(:mynum);
    PL/SQL procedure successfully completed.
    SQL> print mynum
         MYNUM
           100
    SQL>

  • PLS-00363: expression '' cannot be used as an assignment target - HELP :-(

    Hi Guys,
    This is a procedure I have in the body of a package:
    PROCEDURE SUM_EVENTS (p_trial_no IN NUMBER,
                                  p_country_resion IN VARCHAR2,
                                  p_loc_no IN NUMBER,
                                  p_setup_flag IN VARCHAR2,
                                  p_event_changed IN OUT NUMBER) ISWhen I call this in SQLplus with this:
    exec DB_CALC.sum_events(340,'USA',1,'Y',3700);I get this:
    ERROR at line 1:
    ORA-06550: line 1, column 54:
    PLS-00363: expression '3700' cannot be used as an assignment target
    ORA-06550: line 1, column 7:
    PL/SQL: Statement ignoredAny ideas what I'm doing wrong?
    Thanks!

    p_event_changed is declared as an IN OUT parameter. You need to provide a variable in which the OUT values can be written to..
    something like
    declare
    out_val number := 3700;
    begin
    DB_CALC.sum_events(340,'USA',1,'Y',out_val);
    end;

  • PLS-00363: expression 'I' cannot be used as an assignment target

    Hello all
    I have a Package and I have one procedure in it .
    I have use dmlset inside this .
    Inside that procedure I have a cursor and inside the FOR loop I have mentioned something .
    FOR i IN 1 .. No_of_rec LOOP
    If....
    End if ;
    i := i+1 ;
    END LOOP;
    I have mentioned before end loop i := i+1 ; when i execute this package it is showing this error .
    "PLS-00363: expression 'I' cannot be used as an assignment target"
    What could be the problem?

    Of course,
    My example is showing that index I in loop is same thing as parameter IN in procedure1. Its value, not reference. I is passed as VALUE to LOOP just like PARAM1 is passed as value to PROCEDURE1. Trying to assignment something to I or PARAM1 will generate same error.
    Also another interesting example is
    CREATE OR REPLACE
    PROCEDURE procedure1(
        param1 IN OUT NUMBER)
    AS
    BEGIN
      param1 := 0;
    END procedure1;
    BEGIN
      FOR i IN 1..3
      LOOP
        procedure1(i);
      END LOOP;
    END;
    In this case procedure1 is correct but loop stmt is not. It will generate same error.
    After doing this examples i also concluded that procedure cant return value it can modify existing value of variable which is declared (uninitialized or initialized, OUT or IN OUT ) in upper PLSQL block (named or unnamed PLSQL block)

  • ITunes Reports "iTunes Cannot read the contents of the iPod...."

    This morning I connected my 2 week old iPod Classic to my laptop via the USB cable and iTunes came up and displayed a message saying "iTunes cannot read the contents of the iPod MHAM'S IPOD". It suggested a restore, which I have not tried yet. I have faithfully used the "Eject" function in iTunes to disconnect. After reading some other posts in the forums, it appears that others are having a similar issue. I'm concerned that this is normal operating behavior for this product. Given that this is my first Apple brand purchase, I'm a little turned off to the brand. Does anyone have a suggestion that doesn't involve me wiping this thing clean and starting over? And is this something that I should just expect? I ran a diagnostic and the results are below.
    Microsoft Windows XP Professional Service Pack 2 (Build 2600)
    Dell Inc. Latitude D620
    iTunes 7.4.3.1
    iPodService 7.4.3.1 is currently running.
    iTunesHelper 7.4.3.1 is currently running.
    Current user is an administrator.
    The current local date and time is 2007-10-16 07:04:02.
    Connected Storage Devices:
    Disk drive, Hitachi HTS541080G9SA00, Bus Type ATA, Bus Address [0,0]
    Disk drive, Apple iPod USB Device, Bus Type USB
    Disk drive, RIM BlackBerry SD USB Device, Bus Type USB
    Universal Serial Bus Controllers:
    Intel(R) 82801G (ICH7 Family) USB Universal Host Controller - 27C8. Device is working properly.
    Intel(R) 82801G (ICH7 Family) USB Universal Host Controller - 27C9. Device is working properly.
    Intel(R) 82801G (ICH7 Family) USB Universal Host Controller - 27CA. Device is working properly.
    Intel(R) 82801G (ICH7 Family) USB Universal Host Controller - 27CB. Device is working properly.
    Intel(R) 82801G (ICH7 Family) USB2 Enhanced Host Controller - 27CC. Device is working properly.
    No IEEE 1394 Host Controller found.
    The iPod Service Logging Information:
    [SERVICE: 0xF88,06:40:36 INFO] Started C:\Program Files\iPod\bin\iPodService.exe (Tue Oct 16 06:40:36 2007)
    [SERVICE: 0xF88,06:40:36 INFO] ##### iPodService starting as a service, version: 7.4.3.1
    [SERVICE: 0xFD0,06:40:36 INFO] Adding iTunesHelper to session 0
    [SERVICE: 0xF98,06:40:36 INFO] Got signaled to go ahead... Starting device manager!
    [SERVICE: 0x114,06:40:36 INFO] Listener Window created
    [SERVICE: 0x114,06:40:57 INFO] [DevNodesChanged]
    [SERVICE: 0x114,06:40:58 INFO] [DevNodesChanged]
    [SERVICE: 0x114,06:40:58 INFO] [DevNodesChanged]
    [SERVICE: 0x114,06:40:59 INFO] [DevNodesChanged]
    [SERVICE: 0x114,06:40:59 INFO] [DevNodesChanged]
    [SERVICE: 0x114,06:41:40 INFO] [DevNodesChanged]
    [SERVICE: 0x114,06:42:15 INFO] [DevNodesChanged]
    [SERVICE: 0x114,06:42:15 INFO] [DevNodesChanged]
    [SERVICE: 0x114,06:44:25 INFO] [DevNodesChanged]
    [SERVICE: 0x114,06:45:15 INFO] [DevNodesChanged]
    [SERVICE: 0x114,06:45:15 INFO] [DevNodesChanged]
    [SERVICE: 0x114,06:48:13 INFO] [DevNodesChanged]
    [SERVICE: 0x114,06:50:15 INFO] [DevNodesChanged]
    [SERVICE: 0x114,06:50:15 INFO] [DevNodesChanged]
    [SERVICE: 0x114,06:57:09 INFO] [DevNodesChanged]
    [SERVICE: 0x114,06:57:09 INFO] [DevNodesChanged]
    [SERVICE: 0x114,06:57:09 INFO] [DevNodesChanged]
    [SERVICE: 0x114,06:57:09 INFO] [DevNodesChanged]
    [SERVICE: 0x114,06:57:09 INFO] [DevNodesChanged]
    [SERVICE: 0x114,06:57:13 INFO] [InterfaceArrival] \\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a27001547056b&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}
    [SERVICE: 0x114,06:57:13 INFO] device \\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a27001547056b&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}
    [SERVICE: 0x114,06:57:13 INFO] device is an iPod
    [SERVICE: 0x114,06:57:13 INFO] type 0x7 drive 0x2 partition 0x0
    [SERVICE: 0x114,06:57:13 INFO] [-1] set waiting to mount = 1
    [SERVICE: 0x114,06:57:13 INFO] [1] Assigning session 0
    [SERVICE: 0x114,06:57:13 INFO] [1] added device interface "\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a27001547056b&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}" to m_objDeviceNameMap
    [SERVICE: 0x114,06:57:13 INFO] [1] added state machine 1 to m_objDeviceIdMap
    [SERVICE: 0x114,06:57:13 INFO] [1] added device number 2 to m_objDeviceNumberMap
    [SERVICE: 0x114,06:57:13 INFO] [1] added device interface "\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a27001547056b&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}" to m_vctDeviceInterfaces
    [SERVICE: 0x114,06:57:13 INFO] [DevNodesChanged]
    [SERVICE: 0x114,06:57:13 INFO] [1] input #0 from src #0
    [SERVICE: 0xEC,06:57:13 INFO] [1] input #0
    [SERVICE: 0x114,06:57:13 INFO] [DevNodesChanged]
    [SERVICE: 0x114,06:57:13 INFO] [1] input #1 from src #0
    [SERVICE: 0x11C,06:57:13 INFO] [1] input #1
    [SERVICE: 0x114,06:57:13 INFO] [VolumeArrive] mask = 0x20
    [SERVICE: 0x114,06:57:13 INFO] looking up device # for \\.\F:
    [SERVICE: 0x114,06:57:13 INFO] type 0x7 drive 0x2 partition 0x1
    [SERVICE: 0x114,06:57:13 INFO] iTunes device #2 found with drive letter F, mask 0x20
    [SERVICE: 0x114,06:57:13 INFO] [1] set waiting to mount = 0
    [SERVICE: 0x114,06:57:13 INFO] [1] input #2 from src #0
    [SERVICE: 0x128,06:57:13 INFO] [1] input #2
    [SERVICE: 0x114,06:57:13 INFO] [DevNodesChanged]
    [SERVICE: 0x114,06:57:13 INFO] [1] input #3 from src #0
    [SERVICE: 0x118,06:57:13 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a27001547056b&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0x118,06:57:13 INFO] [First Connect] Creating connect event for device 1
    [SERVICE: 0x118,06:57:13 INFO] [1] set waiting to mount = 1
    [SERVICE: 0x118,06:57:13 INFO] [1] input #4 from src #0
    [SERVICE: 0xEC,06:57:13 INFO] [MACHINE 1 INPUT #0] - (HDW) CheckDevNode
    [SERVICE: 0xEC,06:57:14 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a27001547056b&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0x11C,06:57:14 INFO] [MACHINE 1 INPUT #1] - (HDW) CheckDevNode
    [SERVICE: 0x11C,06:57:14 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a27001547056b&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0x128,06:57:14 INFO] [MACHINE 1 INPUT #2] - (HDW) Volume Mount
    [SERVICE: 0x128,06:57:14 INFO] ** CItunesDevice::HandleHardwareInput()
    [SERVICE: 0x128,06:57:14 INFO] [1] input #3
    [SERVICE: 0xEC,06:57:14 INFO] [1] input #4
    [SERVICE: 0x128,06:57:14 INFO] [MACHINE 1 INPUT #3] - (HDW) CheckDevNode
    [SERVICE: 0x128,06:57:14 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a27001547056b&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0xEC,06:57:14 INFO] [MACHINE 1 INPUT #4] - (HDW) Interface Arrival
    [SERVICE: 0xEC,06:57:14 INFO] [1] progress state is 2, Waiting to mount = 1
    [SERVICE: 0xEC,06:57:14 INFO] [1] progress is now 2
    [SERVICE: 0xEC,06:57:14 INFO] [1] progress is now 2
    [SERVICE: 0xEC,06:57:14 INFO] [MACHINE 1 TRANSITION] - {Unknown} ==> {Connected}
    [SERVICE: 0xEC,06:57:14 INFO] [MACHINE 1 ACTIONS] - {Connected}
    [SERVICE: 0xEC,06:57:14 INFO] [1] SCSI Inquiry attempt #0
    [SERVICE: 0xEC,06:57:14 INFO] VendorId: Apple
    [SERVICE: 0xEC,06:57:14 INFO] ProductId: iPod
    [SERVICE: 0xEC,06:57:14 INFO] revision: 1.62
    [SERVICE: 0xEC,06:57:14 INFO] vendor bytes:
    [SERVICE: 0xEC,06:57:14 INFO] 02 01 00 00 00 00 00 00 00 13 00 00 92 00 00 00 00 00 00 00
    [SERVICE: 0xEC,06:57:14 INFO] [1] firmware version: 1.62 (0x13E)
    [SERVICE: 0xEC,06:57:14 INFO] [1] Power State: Powered
    [SERVICE: 0xEC,06:57:14 INFO] [1] Checkpoint attempt #0
    [SERVICE: 0xEC,06:57:14 ERROR] Did not find first letter of stage
    [SERVICE: 0xEC,06:57:14 INFO] got HotPlugState 0
    [SERVICE: 0xEC,06:57:14 INFO] [1] serial number 000A27001547056B
    [SERVICE: 0xEC,06:57:14 INFO] Checkpoint successfully read from device [1]. Apple Serial Number [8N7344U3YMV]
    [SERVICE: 0xEC,06:57:14 INFO] [1] *** CONNECTED - Sending event out, device session 0.
    [SERVICE: 0x118,06:57:14 INFO] [First Connect] Creating mount event for device 1
    [SERVICE: 0x118,06:57:14 INFO] [VolumeArrive] mask = 0x7C
    [SERVICE: 0x118,06:57:14 INFO] looking up device # for \\.\G:
    [SERVICE: 0x118,06:57:14 INFO] type 0x7 drive 0x1 partition 0x1
    [SERVICE: 0x118,06:57:14 INFO] [SIMULATED INTERFACE ARRIVAL] generating connect event for device 1
    [SERVICE: 0x118,06:57:14 INFO] looking up device # for \\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a27001547056b&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}
    [SERVICE: 0x118,06:57:14 INFO] type 0x7 drive 0x2 partition 0x0
    [SERVICE: 0x118,06:57:14 INFO] looking up device # for \\.\F:
    [SERVICE: 0x118,06:57:14 INFO] type 0x7 drive 0x2 partition 0x1
    [SERVICE: 0x118,06:57:14 INFO] iTunes device #2 found with drive letter F, mask 0x20
    [SERVICE: 0x118,06:57:14 INFO] [1] set waiting to mount = 0
    [SERVICE: 0x118,06:57:14 INFO] [1] input #5 from src #0
    [SERVICE: 0x118,06:57:14 INFO] looking up device # for \\.\E:
    [SERVICE: 0x11C,06:57:14 INFO] [1] input #5
    [SERVICE: 0x118,06:57:14 INFO] type 0x2 drive 0x0 partition 0xffffffff
    [SERVICE: 0x118,06:57:14 INFO] [SIMULATED INTERFACE ARRIVAL] generating connect event for device 0
    [SERVICE: 0x118,06:57:15 INFO] looking up device # for \\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a27001547056b&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}
    [SERVICE: 0x118,06:57:15 INFO] type 0x7 drive 0x2 partition 0x0
    [SERVICE: 0x118,06:57:15 INFO] looking up device # for \\.\D:
    [SERVICE: 0x118,06:57:15 INFO] type 0x7 drive 0x0 partition 0x3
    [SERVICE: 0x118,06:57:15 INFO] [SIMULATED INTERFACE ARRIVAL] generating connect event for device 0
    [SERVICE: 0x118,06:57:15 INFO] looking up device # for \\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a27001547056b&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}
    [SERVICE: 0x118,06:57:15 INFO] type 0x7 drive 0x2 partition 0x0
    [SERVICE: 0x11C,06:57:15 INFO] [MACHINE 1 INPUT #5] - (HDW) Volume Mount
    [SERVICE: 0x11C,06:57:15 INFO] [MACHINE 1 TRANSITION] - {Connected} ==> {Mounted}
    [SERVICE: 0x11C,06:57:15 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a27001547056b&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0x11C,06:57:15 INFO] [MACHINE 1 ACTIONS] - {Mounted}
    [SERVICE: 0x11C,06:57:15 INFO] [1] progress state is 2, Waiting to mount = 0
    [SERVICE: 0x11C,06:57:15 INFO] [1] progress state is 2, Waiting to mount = 0
    [SERVICE: 0x11C,06:57:15 ERROR] Did not find first letter of stage
    [SERVICE: 0x11C,06:57:15 INFO] got HotPlugState 0
    [SERVICE: 0x11C,06:57:19 INFO] [1] OS says filesystem is FAT32
    [SERVICE: 0x11C,06:57:19 INFO] [1] ===== iPod with Video =====
    [SERVICE: 0x11C,06:57:19 INFO] [1] progress state is 2, Waiting to mount = 0
    [SERVICE: 0x11C,06:57:19 INFO] 6:57:19, year 2007, day of yr. 288, GMT offset -20 isDST 1
    [SERVICE: 0x11C,06:57:19 INFO] [1] progress is now 0
    [SERVICE: 0x11C,06:57:20 INFO] [1] *** MOUNTED - Sending event out, device session 0.
    [SERVICE: 0x11C,06:57:20 INFO] [1] Auto-launch iTunes ENABLED
    [SERVICE: 0x11C,06:57:20 INFO] iTunes located at 'C:\Program Files\iTunes\iTunes.exe'
    [SERVICE: 0xF90,06:57:21 INFO] Getting iTunesHelper for session 0
    [SERVICE: 0xF90,06:57:21 INFO] launching iTunes.
    [SERVICE: 0x90C,06:57:25 INFO] <0x4> Got Serial #
    [SERVICE: 0x90C,06:57:25 INFO] <0x4> GetFormatType() returned unknown format 0
    [SERVICE: 0xFD8,06:57:25 INFO] [1] Progress state is 0, Waiting to disconnect = 0
    [SERVICE: 0xFD8,06:57:25 INFO] Mounted
    [SERVICE: 0xFD8,06:57:25 INFO] Device 1 is FAT32 and appears mounted, checking intermediate state...
    [SERVICE: 0xFD8,06:57:25 INFO] Device 1 not in intermediate state. It appears to be truly mounted.
    [SERVICE: 0x90C,06:57:25 INFO] Mounted
    [SERVICE: 0x90C,06:57:25 INFO] [1] already mounted!
    [SERVICE: 0x90C,06:57:25 INFO] [1] progress state is 0, Waiting to mount = 0
    [SERVICE: 0x90C,06:57:26 INFO] <0x4> GetFormatType() returned unknown format 0
    [SERVICE: 0xFD8,06:57:26 INFO] [1] Progress state is 0, Waiting to disconnect = 0
    [SERVICE: 0xFD8,06:57:26 INFO] Mounted
    [SERVICE: 0xFD8,06:57:26 INFO] Device 1 is FAT32 and appears mounted, checking intermediate state...
    [SERVICE: 0xFD8,06:57:26 INFO] Device 1 not in intermediate state. It appears to be truly mounted.
    [SERVICE: 0x90C,06:57:26 INFO] <0x4> COM request for device 1 drive letter - F
    [SERVICE: 0x90C,06:57:27 INFO] [1] Progress state is 0, Waiting to disconnect = 0
    [SERVICE: 0x90C,06:57:27 INFO] Mounted
    [SERVICE: 0x90C,06:57:27 INFO] Device 1 is FAT32 and appears mounted, checking intermediate state...
    [SERVICE: 0x90C,06:57:27 INFO] Device 1 not in intermediate state. It appears to be truly mounted.
    [SERVICE: 0xFD8,06:57:27 INFO] Mounted
    [SERVICE: 0xFD8,06:57:27 INFO] [1] already mounted!
    [SERVICE: 0xFD8,06:57:27 INFO] [1] progress state is 0, Waiting to mount = 0
    [SERVICE: 0xFD8,06:57:40 INFO] Mounted
    [SERVICE: 0xFD8,06:57:40 INFO] Device 1 is FAT32 and appears mounted, checking intermediate state...
    [SERVICE: 0xFD8,06:57:40 INFO] Device 1 not in intermediate state. It appears to be truly mounted.
    [SERVICE: 0x90C,06:57:40 INFO] [1] Progress state is 0, Waiting to disconnect = 0
    [SERVICE: 0x90C,06:57:40 INFO] Mounted
    [SERVICE: 0x90C,06:57:40 INFO] Device 1 is FAT32 and appears mounted, checking intermediate state...
    [SERVICE: 0x90C,06:57:40 INFO] Device 1 not in intermediate state. It appears to be truly mounted.
    [SERVICE: 0x90C,06:58:19 INFO] <0x4> Got Serial #
    [SERVICE: 0x90C,06:58:19 INFO] <0x4> GetFormatType() returned unknown format 0
    [SERVICE: 0xFD8,06:58:19 INFO] [1] Progress state is 0, Waiting to disconnect = 0
    [SERVICE: 0xFD8,06:58:19 INFO] Mounted
    [SERVICE: 0xFD8,06:58:19 INFO] Device 1 is FAT32 and appears mounted, checking intermediate state...
    [SERVICE: 0xFD8,06:58:19 INFO] Device 1 not in intermediate state. It appears to be truly mounted.
    [SERVICE: 0x90C,06:58:19 INFO] Mounted
    [SERVICE: 0x90C,06:58:19 INFO] [1] already mounted!
    [SERVICE: 0x90C,06:58:19 INFO] [1] progress state is 0, Waiting to mount = 0
    [SERVICE: 0x90C,06:58:19 INFO] <0x4> GetFormatType() returned unknown format 0
    [SERVICE: 0xFD8,06:58:19 INFO] [1] Progress state is 0, Waiting to disconnect = 0
    [SERVICE: 0xFD8,06:58:19 INFO] Mounted
    [SERVICE: 0xFD8,06:58:19 INFO] Device 1 is FAT32 and appears mounted, checking intermediate state...
    [SERVICE: 0xFD8,06:58:19 INFO] Device 1 not in intermediate state. It appears to be truly mounted.
    [SERVICE: 0x90C,06:58:19 INFO] <0x4> COM request for device 1 drive letter - F
    [SERVICE: 0x90C,06:58:19 INFO] [1] Progress state is 0, Waiting to disconnect = 0
    [SERVICE: 0x90C,06:58:19 INFO] Mounted
    [SERVICE: 0x90C,06:58:19 INFO] Device 1 is FAT32 and appears mounted, checking intermediate state...
    [SERVICE: 0x90C,06:58:19 INFO] Device 1 not in intermediate state. It appears to be truly mounted.
    [SERVICE: 0xFD8,06:58:19 INFO] Mounted
    [SERVICE: 0xFD8,06:58:19 INFO] [1] already mounted!
    [SERVICE: 0xFD8,06:58:19 INFO] [1] progress state is 0, Waiting to mount = 0
    [SERVICE: 0xFD8,06:58:23 INFO] Mounted
    [SERVICE: 0xFD8,06:58:23 INFO] Device 1 is FAT32 and appears mounted, checking intermediate state...
    [SERVICE: 0xFD8,06:58:23 INFO] Device 1 not in intermediate state. It appears to be truly mounted.
    [SERVICE: 0x90C,06:58:23 INFO] [1] Progress state is 0, Waiting to disconnect = 0
    [SERVICE: 0x90C,06:58:23 INFO] Mounted
    [SERVICE: 0x90C,06:58:23 INFO] Device 1 is FAT32 and appears mounted, checking intermediate state...
    [SERVICE: 0x90C,06:58:23 INFO] Device 1 not in intermediate state. It appears to be truly mounted.
    [SERVICE: 0xFD8,06:58:26 INFO] [1] input #6 from src #4
    [SERVICE: 0x128,06:58:26 INFO] [1] input #6
    [SERVICE: 0x128,06:58:27 INFO] [MACHINE 1 INPUT #6] - (APP) Unmount
    [SERVICE: 0x128,06:58:27 INFO] [1] Begin...
    [SERVICE: 0x128,06:58:27 INFO] [1] Mounted state
    [SERVICE: 0x128,06:58:27 INFO] total locks = 1, caller = 296, caller locks = 1
    [SERVICE: 0x128,06:58:27 INFO] [1] Begin Unmounting...
    [SERVICE: 0x128,06:58:27 INFO] [1] progress is now 3
    [SERVICE: 0x128,06:58:27 INFO] total locks = 2, caller = 296, caller locks = 2
    [SERVICE: 0x128,06:58:27 INFO] Ejecting media
    [SERVICE: 0x128,06:58:27 INFO] SUCCESS
    [SERVICE: 0x128,06:58:27 INFO] Volume lock success!
    [SERVICE: 0x128,06:58:28 INFO] total locks = 3, caller = 296, caller locks = 3
    [SERVICE: 0x128,06:58:29 INFO] CMQuery_And_RemoveSubTreeW stop
    [SERVICE: 0x114,06:58:29 INFO] [DevNodesChanged]
    [SERVICE: 0x114,06:58:29 INFO] [1] input #7 from src #0
    [SERVICE: 0xEC,06:58:29 INFO] [1] input #7
    [SERVICE: 0x114,06:58:29 INFO] [DevNodesChanged]
    [SERVICE: 0x114,06:58:29 INFO] [1] input #8 from src #0
    [SERVICE: 0x11C,06:58:29 INFO] [1] input #8
    [SERVICE: 0x128,06:58:29 INFO] CMQuery_And_RemoveSubTreeW took 625 ms
    [SERVICE: 0x128,06:58:29 INFO] total locks = 2, caller = 296, caller locks = 2
    [SERVICE: 0x128,06:58:29 INFO] total locks = 1, caller = 296, caller locks = 1
    [SERVICE: 0x128,06:58:29 INFO] [1] Finished Unmounting with status 1
    [SERVICE: 0x128,06:58:29 INFO] total locks = 0, caller = 296, caller locks = 0
    [SERVICE: 0x128,06:58:29 INFO] [1] Ext app unmount request finished!
    [SERVICE: 0xEC,06:58:30 INFO] [MACHINE 1 INPUT #7] - (HDW) CheckDevNode
    [SERVICE: 0xEC,06:58:30 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a27001547056b&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0x11C,06:58:30 INFO] [MACHINE 1 INPUT #8] - (HDW) CheckDevNode
    [SERVICE: 0x11C,06:58:30 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a27001547056b&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0x114,06:58:30 INFO] [VolumeRemoved] existing mask 0x20, arrive mask 0x20
    [SERVICE: 0x114,06:58:30 INFO] [1] value = 1
    [SERVICE: 0x114,06:58:30 INFO] [1] input #9 from src #0
    [SERVICE: 0x128,06:58:30 INFO] [1] input #9
    [SERVICE: 0x114,06:58:30 INFO] [InterfaceRemoved]
    [SERVICE: 0x114,06:58:30 INFO] [1] value = 0
    [SERVICE: 0x114,06:58:30 INFO] removed device number 2 from m_objDeviceNumberMap
    [SERVICE: 0x114,06:58:30 INFO] [1] input #10 from src #0
    [SERVICE: 0xEC,06:58:30 INFO] [1] input #10
    [SERVICE: 0x128,06:58:30 INFO] [MACHINE 1 INPUT #9] - (HDW) Volume Unmount
    [SERVICE: 0x128,06:58:30 INFO] [1] progress is now 3
    [SERVICE: 0x128,06:58:30 INFO] [1] Setting progress to 3
    [SERVICE: 0x128,06:58:30 INFO] [MACHINE 1 TRANSITION] - {Mounted} ==> {Connected}
    [SERVICE: 0x128,06:58:30 INFO] [1] *** UNMOUNTED - Sending event out, device session 0.
    [SERVICE: 0x128,06:58:30 INFO] [1] !!!!! DoConnectStateAction() INTERRUPTED.
    [SERVICE: 0xEC,06:58:30 INFO] [MACHINE 1 INPUT #10] - (HDW) Interface Removal
    [SERVICE: 0xEC,06:58:30 INFO] [MACHINE 1 TRANSITION] - {Connected} ==> {Unknown}
    [SERVICE: 0xEC,06:58:30 INFO] [MACHINE 1 ACTIONS] - {Unknown}
    [SERVICE: 0xEC,06:58:30 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a27001547056b&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0xEC,06:58:30 ERROR] device number 0 exists, but isn't in m_objDeviceNumberMap!
    [SERVICE: 0xEC,06:58:30 INFO] [1] *** DISCONNECTED - Sending event out, device session 0.
    [SERVICE: 0xEC,06:58:30 INFO] [1] progress is now 0
    [SERVICE: 0xEC,06:58:30 INFO] [1] progress state is 0, Waiting to mount = 0
    [SERVICE: 0x114,06:58:38 INFO] [DevNodesChanged]
    [SERVICE: 0x114,06:58:38 INFO] [1] Progress state is 0, Waiting to disconnect = 0
    [SERVICE: 0x114,06:58:38 INFO] [1] input #11 from src #0
    [SERVICE: 0x11C,06:58:38 INFO] [1] input #11
    [SERVICE: 0x114,06:58:38 INFO] [DevNodesChanged]
    [SERVICE: 0x114,06:58:38 INFO] [1] Progress state is 0, Waiting to disconnect = 0
    [SERVICE: 0x114,06:58:38 INFO] [1] input #12 from src #0
    [SERVICE: 0x128,06:58:38 INFO] [1] input #12
    [SERVICE: 0x114,06:58:38 INFO] [DevNodesChanged]
    [SERVICE: 0x114,06:58:38 INFO] [1] Progress state is 0, Waiting to disconnect = 0
    [SERVICE: 0x114,06:58:38 INFO] [1] input #13 from src #0
    [SERVICE: 0xEC,06:58:38 INFO] [1] input #13
    [SERVICE: 0x11C,06:58:38 INFO] [MACHINE 1 INPUT #11] - (HDW) CheckDevNode
    [SERVICE: 0x11C,06:58:38 INFO] [1] PHYSICALLY DISCONNECTED!
    [SERVICE: 0x128,06:58:38 INFO] [MACHINE 1 INPUT #12] - (HDW) CheckDevNode
    [SERVICE: 0x128,06:58:38 INFO] [1] PHYSICALLY DISCONNECTED!
    [SERVICE: 0xEC,06:58:38 INFO] [MACHINE 1 INPUT #13] - (HDW) CheckDevNode
    [SERVICE: 0xEC,06:58:38 INFO] [1] PHYSICALLY DISCONNECTED!
    [SERVICE: 0x114,07:02:24 INFO] [DevNodesChanged]
    [SERVICE: 0x114,07:02:24 INFO] [1] Progress state is 0, Waiting to disconnect = 0
    [SERVICE: 0x114,07:02:24 INFO] [1] input #14 from src #0
    [SERVICE: 0x11C,07:02:24 INFO] [1] input #14
    [SERVICE: 0x114,07:02:24 INFO] [DevNodesChanged]
    [SERVICE: 0x114,07:02:24 INFO] [1] Progress state is 0, Waiting to disconnect = 0
    [SERVICE: 0x114,07:02:24 INFO] [1] input #15 from src #0
    [SERVICE: 0x128,07:02:24 INFO] [1] input #15
    [SERVICE: 0x114,07:02:24 INFO] [DevNodesChanged]
    [SERVICE: 0x114,07:02:24 INFO] [1] Progress state is 0, Waiting to disconnect = 0
    [SERVICE: 0x114,07:02:24 INFO] [1] input #16 from src #0
    [SERVICE: 0xEC,07:02:24 INFO] [1] input #16
    [SERVICE: 0x114,07:02:24 INFO] [DevNodesChanged]
    [SERVICE: 0x114,07:02:24 INFO] [1] Progress state is 0, Waiting to disconnect = 0
    [SERVICE: 0x114,07:02:24 INFO] [1] input #17 from src #0
    [SERVICE: 0x114,07:02:24 INFO] [DevNodesChanged]
    [SERVICE: 0x114,07:02:24 INFO] [1] Progress state is 0, Waiting to disconnect = 0
    [SERVICE: 0x114,07:02:24 INFO] [1] input #18 from src #0
    [SERVICE: 0x11C,07:02:24 INFO] [MACHINE 1 INPUT #14] - (HDW) CheckDevNode
    [SERVICE: 0x11C,07:02:24 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a27001547056b&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0x128,07:02:24 INFO] [MACHINE 1 INPUT #15] - (HDW) CheckDevNode
    [SERVICE: 0x128,07:02:24 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a27001547056b&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0xEC,07:02:24 INFO] [MACHINE 1 INPUT #16] - (HDW) CheckDevNode
    [SERVICE: 0xEC,07:02:24 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a27001547056b&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0xEC,07:02:24 INFO] [1] input #17
    [SERVICE: 0x11C,07:02:24 INFO] [1] input #18
    [SERVICE: 0xEC,07:02:25 INFO] [MACHINE 1 INPUT #17] - (HDW) CheckDevNode
    [SERVICE: 0xEC,07:02:25 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a27001547056b&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0x11C,07:02:25 INFO] [MACHINE 1 INPUT #18] - (HDW) CheckDevNode
    [SERVICE: 0x11C,07:02:25 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a27001547056b&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0x114,07:02:27 INFO] [InterfaceArrival] \\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a27001547056b&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}
    [SERVICE: 0x114,07:02:27 INFO] type 0x7 drive 0x2 partition 0x0
    [SERVICE: 0x114,07:02:27 INFO] [1] set waiting to mount = 1
    [SERVICE: 0x114,07:02:27 INFO] [1] Attempt to reassign from session 0 to session 0, DENIED!
    [SERVICE: 0x114,07:02:27 INFO] [1] added device interface "\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a27001547056b&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}" to m_objDeviceNameMap
    [SERVICE: 0x114,07:02:27 INFO] [1] added state machine 1 to m_objDeviceIdMap
    [SERVICE: 0x114,07:02:27 INFO] [1] added device number 2 to m_objDeviceNumberMap
    [SERVICE: 0x114,07:02:27 INFO] [1] input #19 from src #0
    [SERVICE: 0x128,07:02:27 INFO] [1] input #19
    [SERVICE: 0x114,07:02:27 INFO] [DevNodesChanged]
    [SERVICE: 0x114,07:02:27 INFO] [1] input #20 from src #0
    [SERVICE: 0xEC,07:02:27 INFO] [1] input #20
    [SERVICE: 0x114,07:02:27 INFO] [DevNodesChanged]
    [SERVICE: 0x114,07:02:27 INFO] [1] input #21 from src #0
    [SERVICE: 0x11C,07:02:27 INFO] [1] input #21
    [SERVICE: 0x114,07:02:27 INFO] [VolumeArrive] mask = 0x20
    [SERVICE: 0x114,07:02:27 INFO] looking up device # for \\.\F:
    [SERVICE: 0x114,07:02:27 INFO] type 0x7 drive 0x2 partition 0x1
    [SERVICE: 0x114,07:02:27 INFO] iTunes device #2 found with drive letter F, mask 0x20
    [SERVICE: 0x114,07:02:27 INFO] [1] set waiting to mount = 0
    [SERVICE: 0x114,07:02:27 INFO] [1] input #22 from src #0
    [SERVICE: 0x114,07:02:27 INFO] [DevNodesChanged]
    [SERVICE: 0x114,07:02:27 INFO] [1] input #23 from src #0
    [SERVICE: 0x128,07:02:28 INFO] [MACHINE 1 INPUT #19] - (HDW) Interface Arrival
    [SERVICE: 0x128,07:02:28 INFO] [1] progress state is 2, Waiting to mount = 0
    [SERVICE: 0x128,07:02:28 INFO] [1] progress is now 2
    [SERVICE: 0x128,07:02:28 INFO] [1] progress is now 2
    [SERVICE: 0x128,07:02:28 INFO] [MACHINE 1 TRANSITION] - {Unknown} ==> {Connected}
    [SERVICE: 0x128,07:02:28 INFO] [MACHINE 1 ACTIONS] - {Connected}
    [SERVICE: 0x128,07:02:28 INFO] [1] SCSI Inquiry attempt #0
    [SERVICE: 0x128,07:02:28 INFO] VendorId: Apple
    [SERVICE: 0x128,07:02:28 INFO] ProductId: iPod
    [SERVICE: 0x128,07:02:28 INFO] revision: 1.62
    [SERVICE: 0x128,07:02:28 INFO] vendor bytes:
    [SERVICE: 0x128,07:02:28 INFO] 02 01 00 00 00 00 00 00 00 13 00 00 92 00 00 00 00 00 00 00
    [SERVICE: 0x128,07:02:28 INFO] [1] firmware version: 1.62 (0x13E)
    [SERVICE: 0x128,07:02:28 INFO] [1] Power State: Powered
    [SERVICE: 0x128,07:02:28 INFO] [1] Checkpoint attempt #0
    [SERVICE: 0x128,07:02:28 ERROR] Did not find first letter of stage
    [SERVICE: 0x128,07:02:28 INFO] got HotPlugState 0
    [SERVICE: 0x128,07:02:28 INFO] [1] serial number 000A27001547056B
    [SERVICE: 0x128,07:02:28 INFO] Checkpoint successfully read from device [1]. Apple Serial Number [8N7344U3YMV]
    [SERVICE: 0x128,07:02:28 INFO] [1] *** CONNECTED - Sending event out, device session 0.
    [SERVICE: 0xEC,07:02:28 INFO] [MACHINE 1 INPUT #20] - (HDW) CheckDevNode
    [SERVICE: 0xEC,07:02:28 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a27001547056b&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0x11C,07:02:28 INFO] [MACHINE 1 INPUT #21] - (HDW) CheckDevNode
    [SERVICE: 0x11C,07:02:28 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a27001547056b&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0x11C,07:02:28 INFO] [1] input #22
    [SERVICE: 0x128,07:02:28 INFO] [1] input #23
    [SERVICE: 0xFD8,07:02:28 INFO] <0x4> Got Serial #
    [SERVICE: 0x11C,07:02:28 INFO] [MACHINE 1 INPUT #22] - (HDW) Volume Mount
    [SERVICE: 0x11C,07:02:28 INFO] [MACHINE 1 TRANSITION] - {Connected} ==> {Mounted}
    [SERVICE: 0x128,07:02:28 INFO] [MACHINE 1 INPUT #23] - (HDW) CheckDevNode
    [SERVICE: 0x11C,07:02:28 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a27001547056b&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0x11C,07:02:28 INFO] [MACHINE 1 ACTIONS] - {Mounted}
    [SERVICE: 0x11C,07:02:28 INFO] [1] progress state is 2, Waiting to mount = 0
    [SERVICE: 0x128,07:02:28 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a27001547056b&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0x11C,07:02:28 INFO] [1] progress state is 2, Waiting to mount = 0
    [SERVICE: 0x11C,07:02:28 ERROR] Did not find first letter of stage
    [SERVICE: 0x11C,07:02:28 INFO] got HotPlugState 0
    [SERVICE: 0x11C,07:02:33 INFO] [1] OS says filesystem is FAT32
    [SERVICE: 0x11C,07:02:33 INFO] [1] ===== iPod with Video =====
    [SERVICE: 0x11C,07:02:33 INFO] [1] progress state is 2, Waiting to mount = 0
    [SERVICE: 0x11C,07:02:33 INFO] 7:2:33, year 2007, day of yr. 288, GMT offset -20 isDST 1
    [SERVICE: 0x11C,07:02:33 INFO] [1] progress is now 0
    [SERVICE: 0xFD8,07:02:33 INFO] [1] Progress state is 0, Waiting to disconnect = 0
    [SERVICE: 0xFD8,07:02:33 INFO] Mounted
    [SERVICE: 0xFD8,07:02:33 INFO] Device 1 is FAT32 and appears mounted, checking intermediate state...
    [SERVICE: 0xFD8,07:02:33 INFO] Device 1 not in intermediate state. It appears to be truly mounted.
    [SERVICE: 0x90C,07:02:33 INFO] Mounted
    [SERVICE: 0x90C,07:02:33 INFO] [1] already mounted!
    [SERVICE: 0x11C,07:02:34 INFO] [1] *** MOUNTED - Sending event out, device session 0.
    [SERVICE: 0x11C,07:02:34 INFO] [1] Auto-launch iTunes ENABLED
    [SERVICE: 0x11C,07:02:34 INFO] iTunes located at 'C:\Program Files\iTunes\iTunes.exe'
    [SERVICE: 0x90C,07:02:34 INFO] [1] progress state is 0, Waiting to mount = 0
    [SERVICE: 0xFD8,07:02:34 INFO] <0x4> GetFormatType() returned unknown format 0
    [SERVICE: 0x90C,07:02:34 INFO] [1] Progress state is 0, Waiting to disconnect = 0
    [SERVICE: 0x90C,07:02:34 INFO] Mounted
    [SERVICE: 0x90C,07:02:34 INFO] Device 1 is FAT32 and appears mounted, checking intermediate state...
    [SERVICE: 0x90C,07:02:34 INFO] Device 1 not in intermediate state. It appears to be truly mounted.
    [SERVICE: 0xFD8,07:02:34 INFO] <0x4> COM request for device 1 drive letter - F
    [SERVICE: 0xFD8,07:02:35 INFO] [1] Progress state is 0, Waiting to disconnect = 0
    [SERVICE: 0xFD8,07:02:35 INFO] Mounted
    [SERVICE: 0xFD8,07:02:35 INFO] Device 1 is FAT32 and appears mounted, checking intermediate state...
    [SERVICE: 0xFD8,07:02:35 INFO] Device 1 not in intermediate state. It appears to be truly mounted.
    [SERVICE: 0x90C,07:02:35 INFO] Mounted
    [SERVICE: 0x90C,07:02:35 INFO] [1] already mounted!
    [SERVICE: 0x90C,07:02:35 INFO] [1] progress state is 0, Waiting to mount = 0
    [SERVICE: 0xF8C,07:02:35 INFO] iTunes already running in current session.
    [SERVICE: 0x90C,07:03:51 INFO] Mounted
    [SERVICE: 0x90C,07:03:51 INFO] Device 1 is FAT32 and appears mounted, checking intermediate state...
    [SERVICE: 0x90C,07:03:51 INFO] Device 1 not in intermediate state. It appears to be truly mounted.
    [SERVICE: 0xFD8,07:03:51 INFO] [1] Progress state is 0, Waiting to disconnect = 0
    [SERVICE: 0xFD8,07:03:51 INFO] Mounted
    [SERVICE: 0xFD8,07:03:51 INFO] Device 1 is FAT32 and appears mounted, checking intermediate state...
    [SERVICE: 0xFD8,07:03:51 INFO] Device 1 not in intermediate state. It appears to be truly mounted.
    [SERVICE: 0x90C,07:03:51 INFO] <0x4> GetFormatType() returned unknown format 0
    The iPod updater logging file cannot be found.

    I had this same exact issue happen to me this morning, and I lost 40 gigs worth of transferring in restoring it. I put a few albums on for the day, and when I tried connecting again this evening, the same thing happened. It hit me when it happened the second time that both times I had the iPod locked when it connected it to the computer. I'm pretty sure I've never accidentally connected it while locked before. My guess it that it is unable to read the content since the iPod is locked, and somehow this causes some sort of corruption that prevents it from seeing the files until a restoration is done. I would think Apple should be able to release an update which would detect if the iPod was locked and tell you to unlock it rather than to go through this process of losing all your music from the iPod. It scares me to think this could happen again simply if I am absent-minded in the future and forget to check whether it is locked or not before I connect it.

  • Airport Utility 5.2 and 5.2.1 cannot read /edit configuration of AEBS 7.2.1

    *THE PROBLEM ON my Mac:*
    I am using an ethernet connection directly to a brand new AEBS from:
    iMac Intel Core 2 Duo, 2BG RAM
    X 10.4.10
    airport turned off
    Airport Utility detects the base station but cannot read the configuration to edit and setup. And displays the following error:
    "An error occurred while reading the configuration.
    Please make sure your AirPort base station is plugged in and in range of your computer or connected via Ethernet and try again. (-5)"
    The AEBS does assign any machine connected via ethernet an IP address to allow internet access.
    *THE PROBLEM ON WINDOWS:*
    I have the nearly the same problem when using my Windows XP pro laptop connected via ethernet using Airport Utility for Windows ver 5.2 and 5.2.1
    Airport Utility detects the base station, but when attempting to access the configuration, the Error message is practically the same with a different error code:
    "An error occurred while trying to access the base station. Make sure your network connection is valid and try again. Error -6742
    *STEPS ATTEMPTED TO REMEDY THE PROBLEM (w/out success):*
    I have read the posts that say to turn off IPv6 on Mac, did that but with no success.
    Others did a simple hard reset on the AEBS, I tried that too.
    I've tried connecting to the AEBS directly with all other network devices (modem, other routers, etc) disconnected and turned off just incase there was some compatibly issue... no work. I even tried all the different ports.
    Any other suggestions would be appreciated. Can I walk into a Apple retail store and ask them to check the the AEBS to see if they can access the configuration?
    Just to be fair...
    (For people who have only read this post, turning off the IPv6 worked for some people, and just doing a hard reset for others).

    I finally figured it out. I had exactly the same problem when Airport Utility detected the base station but could not read the configuration to edit and setup, displaying the following error:
    "An error occurred while reading the configuration.
    Please make sure your AirPort base station is plugged in and in range of your computer or connected via Ethernet and try again. (-5)"
    I tried everything (Unfortuantely it is impossible to consult to an Apple genius around here). Even the hard reset didn't work. That is what I did: I pulled off the power cord, and put it back again WHILE HOLDING DOWN THE RESET BUTTON with a pin. Only after that the amber light went on twinkling, and I could access it via the Airport utility. All the settings were reset so I just had to reconfigure it. Hope it works for you too.

  • Variable Assignment in General Precalculation tab of BI 7.0 broadcaster

    Hi,
      In the broadcast setting, under General precalculation tab variable values can be set up. When we are clicking create variable values, screen with all the variables of the query were coming.
    After entering data in the variables and clicking OK, values are not being transferred to the Broadcast setting. The variable page remains like that with out transferring to the Pre Calculation tab.
    We are on SAPKW70020.Distribution type used is Broadcast email, output fornat is MHTML. I tried with other output types, but same result.
    We are using query as the object type for creating Bex Broadcaster.
    Has anyone ran into this issue before?
    Thanks & Regards,
    Pradeep

    Hi Mohan,
    You have opened up an old post, so many responses might be to answer the initial question.
    However, to answer your question, when you click 'Create' next to the 'VAR01 in Variable assignment, what you see is a popup window with the 'Ready for Input' variable present in your query/ workbook/ template, which is the same variable screen which you get when you execute the same query/ workbook/ template independently. You can then enter values for those variables and click OK, to save it and to be passed to the broadcasting setting. The broadcast would then happen for the same variable values.
    However, if you face the issue mentioned by Pradeep, then after clicking OK, you can cancel the popup window. The values of the variables would still be passed.
    After the popup window closes, you can see the 'Create', you initially saw, replaced with 'Change'. This means the values are saved.
    Hope it helps.
    Thanks,
    Abhishek.

  • TS2430 Every time I hook up my iPhone 4 to my laptop Itunes says "cannot read the contents of the phone." and asks me to restore to factory settings. Any help?

    Hello, I recently was sent a replacement iPhone 4 from apple. I originally had it assigned to a laptop with an older version of iTunes and everything worked fine. I recently purchased a new laptop and assigned the new laptop to my phone with the newest version of iTunes. Now everytime I hook up my phone to my new laptop I get the same error message. "iTunes cannot read the contents of the iPhone. Go to the Summary tab in iPhone preferences and click Restore to restore this iPhone to factory settings." Can anyone help, please!

    Did you try following the instruction to restore?  You are getting that message for a good reason - there is corrupted or altered data/settings on the phone.  Is this phone jailbroken or hacked?

  • SQL*Plus variable assignment works for 8i but not 9i

    We have scripts that connect to each database on the box and perform database tasks nightly. The scripts first set the environment then connects to each database with SQL*Plus. This works for 8i but fails in the recently created 9i environment. (Unix Solaris environment)
    Because the SQL*Plus connection appears in many areas in the scripts, we assign the following connection string to a variable:
    SQLPLUS="/usr/oracle/product/9.2.0/bin/sqlplus -s 'xxx/xxxxxx@xxxx as sysdba'"
    Export SQLPLUS
    echo "$SQLPLUS"
    (This echo out correctly: /usr/oracle/product/9.2.0/bin/sqlplus -s 'xxx/xxxxxx@xxxx as sysdba')
    It fails when the script calls the assigned variable:
    $SQLPLUS <<-EOF
    with the following error:
    Usage: SQLPLUS [ [<option>] [<logon>] [<start>] ]
    where <option> ::= -H | -V | [ [-L] [-M <o>] [-R <n>] [-S] ]
    <logon> ::= <username>[<password>][@<connect_string>] | / | /NOLOG
    <start> ::= @<URI>|<filename>[.<ext>] [<parameter> ...]
    "-H" displays the SQL*Plus version banner and usage syntax
    "-V" displays the SQL*Plus version banner
    "-L" attempts log on just once
    "-M <o>" uses HTML markup options <o>
    "-R <n>" uses restricted mode <n>
    "-S" uses silent mode
    However, if I remove the SQLPLUS variable assignment and changed all occurrence of
    $SQLPLUS <<-EOF to
    /usr/oracle/product/9.2.0/bin/sqlplus -s 'xxx/xxxxxx@xxxx as sysdba' <<-EOF
    Then the script runs successfully. But this solution is cumbersome.
    Any ideas as to how to have the script work with assigning the SQLPLUS variable????
    Any help is appreciated.

    I has an immediate suspicion it might be related to the issue
    mentioned in
    http://otn.oracle.com/support/tech/sql_plus/htdocs/sub_var2.html#2_7
    but this proved wrong: the SP2-306 still occurs in the latest
    SQL*Plus.
    I wonder what version of 8i you had working? With an old SQL*Plus
    8.1.7.0 my connection failed the same as in 9.2 and 10i.
    My solution was to do:
      SQLPLUS='sqlplus -s'
      UNPW='/ as sysdba'
      $SQLPLUS "$UNPW" &lt;&lt;EOF
      EOFThis worked in 9.2.0.5, 10.1.0.2 and 8.1.7.0.
    One common security risk on UNIX remains: putting the username and
    password on the command line. On some systems a "ps" command will
    show the password to any user. If OS authentication cannot be used
    for connection, perhaps putting the username/password in the SQL
    script may be more secure?
    A final note is that in SQL*Plus 10g, no quotes are needed around
    AS SYSDBA, i.e.
      sqlplus / as sysdba works from the OS prompt, whereas in 9.2 you need to do
      sqlplus "/ as sysdba"This makes a solution easy:
      SQLPLUS="/usr/oracle/product/10.1.0/bin/sqlplus -s xxx/xxxxxx@xxxx as sysdba"-- CJ

  • Attributes / Variable assignment in Excel

    How do you create a variable assignment in Excel that passes the "test script coverage" report?
    We thought we were being clever when we put a list of our variable assignments in Excel. This allowed us to sort the assignments (something we could not do in Word.)
    Our process in Excel:
    We put an empty cell in the top row with the "OPM - Condition Heading" style.
    In the rows underneath that, we put our attributes with the "OPM - Conclusion Heading" style.
    To the right of the attributes, we put the assigned values with the "OPM - Conclusion" style.
    We had our nicely sortable list of variables and assignments. It looks cool and works quite well.
    However, test coverage analysis reports conclude that we have not tested the attributes since we didn't test for the "uncertain" path. Of course, our variables can never be "uncertain"! To some degree, the test coverage report is wrong, but I understand that the generated rule is an if-then-else rule and not a straight assignment...
    Thoughts? Is there a better way to do the variable assignment in Excel? Should we just live with it? Should we create a mock test with all our variables overridden to be "uncertain" or should we do something else?

    Sorry for the very late reply here, but I'm afraid the structure you have created is just not well handled by the coverage analysis because it compiles into a rule with an unreachable condition. This is normally harmless but the coverage analysis isn't smart enough to ignore it. I've raised a bug (OPAD-7096) to track this in our internal system.

  • Objects containing objects.Expr cannot be used as an assignment.PLS-00363.

    Hi,
    My database: Oracle Database 10g Enterprise Edition Release 10.2.0.4.0.
    I'm working with Object types containing other object types, and I'm getting the error PLS-00363 (Expression cannot be used as an assignment).
    I'm putting exlpicity all 'SELF' parameters as 'IN OUT', but still get the error...
    CREATE OR REPLACE TYPE TYP_PERSON AS OBJECT (
    strName VARCHAR2(100),
    --+
    CONSTRUCTOR FUNCTION TYP_PERSON RETURN SELF AS RESULT,
    --+
    MEMBER      FUNCTION getName (SELF IN OUT TYP_PERSON) RETURN VARCHAR2,
    MEMBER     PROCEDURE setName (SELF IN OUT TYP_PERSON, pNewName VARCHAR2)
    +) NOT FINAL;+
    +/+
    --+
    CREATE OR REPLACE TYPE BODY TYP_PERSON AS
    --+
    CONSTRUCTOR FUNCTION TYP_PERSON RETURN SELF AS RESULT IS
    BEGIN
    SELF.strName := NULL;
    RETURN;
    END;
    --+
    MEMBER      FUNCTION getName (SELF IN OUT TYP_PERSON) RETURN VARCHAR2 IS
    BEGIN
    RETURN SELF.strName;
    END;
    --+
    MEMBER     PROCEDURE setName (SELF IN OUT TYP_PERSON, pNewName VARCHAR2) IS
    BEGIN
    SELF.strName := pNewName;
    END;
    END;
    +/+
    --+
    CREATE OR REPLACE TYPE TYP_PERSONS AS TABLE OF TYP_PERSON;
    --+
    CREATE OR REPLACE TYPE TYP_CREW AS OBJECT (
    strName VARCHAR2(100),
    persons TYP_PERSONS,
    --+
    CONSTRUCTOR FUNCTION TYP_CREW RETURN SELF AS RESULT,
    --+
    MEMBER      FUNCTION getName    (SELF IN OUT TYP_CREW) RETURN VARCHAR2,
    MEMBER     PROCEDURE setName    (SELF IN OUT TYP_CREW, pNewName VARCHAR2),
    --+
    MEMBER     PROCEDURE addPerson  (SELF IN OUT TYP_CREW, pPersonName IN VARCHAR2),
    MEMBER      FUNCTION getPerson  (SELF IN OUT TYP_CREW, pIndex IN NUMBER) RETURN TYP_PERSON,
    MEMBER      FUNCTION getPersons (SELF IN OUT TYP_CREW) RETURN TYP_PERSONS
    +) NOT FINAL;+
    +/+
    --+
    CREATE OR REPLACE TYPE BODY TYP_CREW AS
    --+
    CONSTRUCTOR FUNCTION TYP_CREW RETURN SELF AS RESULT IS
    BEGIN
    SELF.strName := NULL;
    SELF.persons := TYP_PERSONS();
    RETURN;
    END;
    --+
    MEMBER      FUNCTION getName (SELF IN OUT TYP_CREW) RETURN VARCHAR2 IS
    BEGIN
    RETURN SELF.strName;
    END;
    --+
    MEMBER     PROCEDURE setName (SELF IN OUT TYP_CREW, pNewName VARCHAR2) IS
    BEGIN
    SELF.strName := pNewName;
    END;
    MEMBER     PROCEDURE addPerson  (SELF IN OUT TYP_CREW, pPersonName IN VARCHAR2) IS
    BEGIN
    SELF.persons.EXTEND();
    SELF.persons(SELF.persons.LAST) := TYP_PERSON(pPersonName);
    END;
    MEMBER      FUNCTION getPerson  (SELF IN OUT TYP_CREW, pIndex IN NUMBER) RETURN TYP_PERSON IS
    BEGIN
    IF SELF.persons.COUNT > 0 THEN
    RETURN SELF.getPersons()(pIndex);
    END IF;
    RETURN NULL;
    END;
    MEMBER      FUNCTION getPersons (SELF IN OUT TYP_CREW) RETURN TYP_PERSONS IS
    BEGIN
    RETURN SELF.persons;
    END;
    END;
    +/+
    --+
    DECLARE
    crew_one    TYP_CREW;
    BEGIN
    crew_one    := TYP_CREW();
    crew_one.setName('The last crew on Earth');
    crew_one.addPerson ('Michael Knight');
    crew_one.addPerson ('Agent Mulder');
    crew_one.addPerson ('Agent Scully');
    crew_one.addPerson ('Frodo Bolson');
    for i in crew_one.persons.FIRST..crew_one.persons.LAST LOOP
    dbms_output.put_line('Person ['||i||']: '||crew_one.persons(i).getName());
    end loop;
    crew_one.getPerson(1).setName ('Michael Knight-----');
    crew_one.getPerson(2).setName ('Agent Mulder---');
    crew_one.getPerson(3).setName ('Agent Scully---');
    crew_one.getPerson(4).setName ('Frodo Bolson----');
    for i in crew_one.persons.FIRST..crew_one.persons.LAST LOOP
    dbms_output.put_line('Person ['||i||']: '||crew_one.persons(i).getName());
    end loop;
    END;
    How can I do this ParentObject().getChildObject().setChildFunction()?
    Thanks in advance,
    Donato.

    You completely misunderstand objects. Use:
    DECLARE
        crew_one TYP_CREW;
    BEGIN
        crew_one := TYP_CREW();
        crew_one.setName('The last crew on Earth');
        crew_one.addPerson ('Michael Knight');
        crew_one.addPerson ('Agent Mulder');
        crew_one.addPerson ('Agent Scully');
        crew_one.addPerson ('Frodo Bolson');
        for i in crew_one.persons.FIRST..crew_one.persons.LAST LOOP
          dbms_output.put_line('Person ['||i||']: '||crew_one.persons(i).getName());
        end loop;
        TYP_PERSON.setName (crew_one.persons(1),'Michael Knight-----');
        TYP_PERSON.setName (crew_one.persons(2),'Agent Mulder---');
        TYP_PERSON.setName (crew_one.persons(3),'Agent Scully---');
        TYP_PERSON.setName (crew_one.persons(4),'Frodo Bolson----');
        for i in crew_one.persons.FIRST..crew_one.persons.LAST LOOP
          dbms_output.put_line('Person ['||i||']: '||crew_one.persons(i).getName());
        end loop;
    END;
    Person [1]: Michael Knight
    Person [2]: Agent Mulder
    Person [3]: Agent Scully
    Person [4]: Frodo Bolson
    Person [1]: Michael Knight-----
    Person [2]: Agent Mulder---
    Person [3]: Agent Scully---
    Person [4]: Frodo Bolson----
    PL/SQL procedure successfully completed.
    SQL> SY.

  • Getting error "Cannot read property 'tooltip' of undefined"

    Hi,
    I have Predictive Analysis 1.18. In preferences I have checked Esri ArcGIS online and Entered credentials.
    Also I have reopened the document. But not able to create Geo Map. Getting error as "Cannot read property 'tooltip' of undefined".
    I have attached the screenshot of the same.
    Can anyone please provide the solution?
    Thanks and Regards,
    Bhagyashri

    The new runtime has an internal variable called 'data' in the Symbol class. The code in this composition is also using .data to store some user values which is modifying the internal state of the symbol in runtime and is resulting into js errors. If you change the variable name from data to say _data, this should work. I have already done that in the actions.js file and am attaching the updated copy here. Please do a double check once, as it is used in many places and I might have missed something as I do not understand the domain logic in this code much.
    -Dharmendra

  • Error : A READ-ONLY bind variable used in OUT or IN-OUT context

    Hi,
    I got error from my report as A READ-ONLY bind variable used in OUT or IN-OUT context in formula column. I already face this problem but at that time i cleared , but now i cont able to do, please give suggestion to this
    regards
    venki

    I find my ERROR in that report, that A READ-ONLY bind variable used in OUT or IN-OUT context is
    when we assign a database column in a placeholder are summary column.
    From that placeholder or summary column will call by formula column
    you might be face that error, But how means
    when that database column , we are assign that decode, case or NVL funtion using else condition as Null you may be face that error.
    Without my knowledge it may seem some other problem also
    without any idea we con't able to clear this error.
    venki

  • Variable assignment error in stored procedure

    i am writing this query giving me error
    create or replace
    PROCEDURE sp_AUDIT_ScrollAccepted
    v_Date IN VARCHAR2 DEFAULT NULL ,
    cv_1 IN OUT SYS_REFCURSOR
    AS
    BEGIN
    IF v_Date IS NULL THEN
    BEGIN
    v_Date := to_CHAR(SYSDATE, 'DD/MM/YYYY') ;----------------error is coming in this line
    END;
    END IF;
    error
    Error(12,7): PLS-00363: expression 'V_DATE' cannot be used as an assignment target
    what to do

    i have to assign value to this variable v_Date if its value in null then i am assigning system date as i am using
    this variable for storing date
    as this variable is used further in my query but i am getting this error
    i cannot use new variable
    create or replace
    PROCEDURE sp_AUDIT_ScrollAccepted
    v_Date IN VARCHAR2 DEFAULT NULL,
    cv_1 IN OUT SYS_REFCURSOR
    AS
    BEGIN
    IF v_Date IS NULL THEN
    select to_CHAR(SYSDATE,'DD/MM/YYYY')---------error is coming in this line
    into v_Date
    from dual;
    END IF;
    END;
    ----------------now my v_Date is used in below query-----------------------------------
    OPEN cv_1 FOR
    SELECT User_Mst.UserName,
    CashCollection_Statement.UpdatedOn Date_,
    CashCollection_Statement.StatementNo,
    CashCollection_Statement.TenderedCashAmt Due,
    CashCollection_Statement.TenderedChequeAmt Cheque,
    CashCollection_Statement.totalTenderAmount Cash,
    SUM(StatementCashData.Amount) Total
    FROM CashCollection_Statement
    JOIN User_Mst
    ON CashCollection_Statement.User_ID = User_Mst.UserID
    JOIN StatementCashData
    ON CashCollection_Statement.StatementID = StatementCashData.StatementID
    WHERE TO_CHAR( CashCollection_Statement.UpdatedOn, 'DD/MM/YYYY') = v_Date----- this variable is used here---------
    AND CashCollection_Statement.Accepted = 1
    GROUP BY CashCollection_Statement.StatementNo,CashCollection_Statement.TenderedCashAmt
    ,CashCollection_Statement.TenderedChequeAmt
    ,User_Mst.UserName,CashCollection_Statement.totalTenderAmount
    ,CashCollection_Statement.StatementID,CashCollection_Statement.StatementFrom
    ,CashCollection_Statement.StatementTo,CashCollection_Statement.UpdatedOn
    ORDER BY CashCollection_Statement.StatementID DESC;
    END;
    error is this
    Error(15,12): PLS-00403: expression 'V_DATE' cannot be used as an INTO-target of a SELECT/FETCH statement
    plz help

  • FRM-40010 - Cannot read form when using Call_form on Unix 9iAS

    Hi,
    I'm using 9iAS on a unix server. However, the main form calls several other forms using CALL_FORM('formnam'); but it cannot read any of the forms. I've ensured that they have all been compiled on the server. They compiled successfully.
    I've also ensured that they are all residing in the FORMS60_PATH. Although it can find the main form OK, it cannot read any of the other forms. They are all located in the same directory.
    What can be causing this error?

    Make sure that formname is the name of the .fmx file and that you use the same case as it is in the file system, because UNIX is case-sensitive.
    How are you setting FORMS60_PATH? If you're using the Forms Listener Servlet and are setting the FORMS60_PATH in default.env, be sure that the variable name is spelled correctly. In the early versions of default.env that came out, there was a typo: FORSM60_PATH. So if people didn't notice this and just uncommented the line and set the path, they would get FRM-40010.

Maybe you are looking for

  • How can i attach a photo in the library to an email instead of imbedding it in the letter

    I would like to take a picture from my library and send it as an attachment in a email.  The only way it seems to be able to be sent is by embedding it in the letter.

  • IDOC FOR TCODE F110

    Hi GURUs, 1. I want to know whether there is any  IDOC  availlable for TCODE : F110 (payment run). 2. After payment run i want to download the file in text format ,so is there any way to download the file by using IDOC. Thanks for your help.

  • Complex hierarchy chain.

    Hi All, This is reference to the thread Hierarchy order number. I am using Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production. Frank helped to obtain the hierrachy relationship between the parts. During QA testing they found

  • I need to Restore my IPad 2 (with iOS7)

    I need to Restore my IPad 2 (with iOS7) but cannot do so as there is no password for my old AppleID to which this IPad has previously been registered. I am prompted for the password when trying to turn off 'Find my IPad' which is necessary in order t

  • Exporting a batch list from browser

    Hello, I am trying desperately to get a list of all of my file info into a spreadsheet so I can take notes while we view the assembly. Everytime I try to export it FC crashes. It just closes the app. Any suggestions? Thanks, Neobe