Trouble with choices

I'm interfaceing with a web service which has defined its schema with choices. I'm not able to alter the xsd.
I assigned all elements but still get stuck with the empty choice elements:
According to the xml schemas, the xml document is invalid. The reason is: Error::cvc-complex-type.2.4.d: Invalid content was found starting with element 'Subject_niet_natuurlijk'. No child element is expected at this point.
Error::cvc-complex-type.2.4.b: The content of element 'Subject_niet_natuurlijk' is not complete. One of '{"http://www.interaccess.nl/webplus/statuswfm_v2":Bin, "http://www.interaccess.nl/webplus/statuswfm_v2":Unieke_code}' is expected.
I found a solution form Clemens here:
http://clemensblog.blogspot.com/2006/03/bpel-miracle-of-xsdchoice-with-pre.html
And translate it like this in my own bpel code:
<assign name="Assign_WithWorkaround">
<copy>
<from expression="ora:parseEscapedXML('<Subject xmlns="http://xmlns.oracle.com/UsingChoices"><name xmlns="http://xmlns.oracle.com/UsingChoices"/></Subject>') "/>
<to variable="MaakZaak_zaakcreatie_InputVariable" part="payload"
query="/ns1:Zaak/ns1:Subject"/>
</copy>
<copy>
<from expression="number(bpws:getVariableData('VergunningAanvraag','payload','/client:VegunningAanvraag/client:Sofinummer'))"/>
<to variable="MaakZaak_zaakcreatie_InputVariable" part="payload"
query="/ns1:Zaak/ns1:Subject/ns1:Subject_natuurlijk/ns1:Bsn"/>
</copy>
<copy>
<from expression="1111111111"/>
<to variable="MaakZaak_zaakcreatie_InputVariable" part="payload"
query="/ns1:Zaak/ns1:Subject/ns1:Subject_natuurlijk/ns1:Anummer"/>
</copy>
</assign>
And now i get the following error:
<selectionFailure xmlns="http://schemas.xmlsoap.org/ws/2003/03/business-process/"><part name="summary"><summary>XPath query string returns zero node.
According to BPEL4WS spec 1.1 section 14.3, The assign activity &lt;to&gt; part query should not return zero node.
Please check the BPEL source at line number "102" and verify the &lt;to&gt; part xpath query.
</summary>
</part></selectionFailure>
Plz help me out.
By the way the version I'm using is Jdeveloper 10.1.3.3.0
Message was edited by:
Roelofk

Hi Roelof,
Since your interfacing with my webservice, I guess I should give you some pointers :-)
When using choices it is best to initialize the variable first with a literal XML-fragment without values like below (for each element or for the entire variable at once ):
<assign name="initZaak">
<copy>
<from>
<Zaak_verantwoordelijke_mdw xmlns="http://www.interaccess.nl/webplus/statuswfm_v2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<Zaak_verw_mdw_id/>
<Zaak_verw_mdw_achternaam/>
<Zaak_verw_mdw_voorvoegsel xsi:nil="true"/>
<Zaak_verw_mdw_roepnaam/>
<Zaak_verw_mdw_voorletters/>
<Zaak_verw_mdw_oeh_id/>
<Zaak_verw_mdw_oeh_naam/>
</Zaak_verantwoordelijke_mdw>
</from>
<to variable="zaakcreatie_Input" part="payload" query="/ns2:Zaak/ns2:Zaak_verantwoordelijke_mdw"/>
</copy>
<copy>
<from>
<Zaak_initiator_mdw xmlns="http://www.interaccess.nl/webplus/statuswfm_v2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<Zaak_initiator_mdw_id/>
<Zaak_initiator_mdw_achternaam/>
<Zaak_initiator_mdw_voorvoegsel xsi:nil="true"/>
<Zaak_initiator_mdw_roepnaam/>
<Zaak_initiator_mdw_voorletters/>
<Zaak_initiator_mdw_oeh_id/>
<Zaak_initiator_mdw_oeh_naam/>
</Zaak_initiator_mdw>
</from>
<to variable="zaakcreatie_Input" part="payload" query="/ns2:Zaak/ns2:Zaak_initiator_mdw"/>
</copy>
<copy>
<from>
<Subject xmlns="http://www.interaccess.nl/webplus/statuswfm_v2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<Subject_natuurlijk>
<Bsn/>
<Anummer xsi:nil="true"/>
</Subject_natuurlijk>
</Subject>
</from>
<to variable="zaakcreatie_Input" part="payload" query="/ns2:Zaak/ns2:Subject"/>
</copy>
</assign>
After initializing you can for example assign the values as you normaly would
<assign name="maakZaak">
<copy>
<from expression="'123456789'"/>
<to variable="zaakcreatie_Input" part="payload" query="/ns2:Zaak/ns2:Subject/ns2:Subject_natuurlijk/ns2:Anummer"/>
</copy>
</assign>
You'll get something like this:
<Zaak xmlns="http://www.interaccess.nl/webplus/statuswfm_v2">
<Subject xmlns="http://www.interaccess.nl/webplus/statuswfm_v2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<Subject_natuurlijk>
<Bsn/>
<Anummer>123456789</Anummer>
</Subject_natuurlijk>
</Subject>
<Zaak_verantwoordelijke_mdw xmlns="http://www.interaccess.nl/webplus/statuswfm_v2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<Zaak_verw_mdw_id/>
<Zaak_verw_mdw_achternaam/>
<Zaak_verw_mdw_voorvoegsel xsi:nil="true"/>
<Zaak_verw_mdw_roepnaam/>
<Zaak_verw_mdw_voorletters/>
<Zaak_verw_mdw_oeh_id/>
<Zaak_verw_mdw_oeh_naam/>
</Zaak_verantwoordelijke_mdw>
<Zaak_verantwoordelijke_oeh/>
<Geen_zaak_verantwoordelijke/>
<Zaak_initiator_mdw xmlns="http://www.interaccess.nl/webplus/statuswfm_v2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<Zaak_initiator_mdw_id/>
<Zaak_initiator_mdw_achternaam/>
<Zaak_initiator_mdw_voorvoegsel xsi:nil="true"/>
<Zaak_initiator_mdw_roepnaam/>
<Zaak_initiator_mdw_voorletters/>
<Zaak_initiator_mdw_oeh_id/>
<Zaak_initiator_mdw_oeh_naam/>
</Zaak_initiator_mdw>
<Zaak_initiator_oeh/>
<Geen_zaak_initiator/>
<Zaakidentificatie/>
<Startdatum/>
<Zaaktypecode/>
<Zaaktypeomschrijving/>
<Einddatum/>
<Einddatumgepland/>
<Url/>
<Hyperlinkomschrijving/>
<Zaakomschrijving/>
<Kenmerk/>
<Kenmerkbron/>
<Resultaatcode/>
<Resultaatomschrijving/>
<Resultaattoelichting/>
<Zaaktoelichting/>
<Trefwoord/>
<Uiterlijkeeinddatumafdoening/>
<Oge_id/>
</Zaak>
HTH
Mark
ps. you can also ask me directly, ask Harry for my email-adress

Similar Messages

  • I am having trouble with my MacBook Pro. I get a blank screen with a flashing document file with a question mark in it, yes I have tried to install Mac OS X with the original disk but I get no choices of where I wish to install Mac OS X. Please help ;(

    I am having some trouble with my computer, what happened was: I was playing on a game, I played with a magnet, it started to go slower and slower, I pressed F9 then it went slower and then it went to a blank screen with a flashing document with a question mark on it. I tried the original OS X installation disk but when it came to choosing the area of which I save it, it showed no areas.

    Startup your Mac while holding down the Option key. That should prompt the Startup Manager window where you can select the startup disk then click Restart.
    If the startup disk is not available from that window, you may be able to repair the disk.
    Help here >  A flashing question mark appears when you start your Mac

  • I am having trouble with my Mac Mini's ethernet connection.   Defining a new network interface shows no ethernet adaptor.  Reloading SL from DVD repaired.  But SL update lost ethernet again.  Will Lion Fix?

    I am having trouble with my mac mini ethernet.  It had been working for weeks after an update to SL 10.6.8.
    Once it went out and i repaired it by defining a new connection from System Preferences ->Network->(left panel service, +).
    But yesterday, after a power up.  my ethernet was not working again. I tried this old trick to repair it, but the interface choices
    listed for '+' a new service did not include Ethernet any more.  And the Utilities->System Profiler->Ethernet Cards shows
    no ethernet available.
    As a last ditch effort i reloaded my original SL from DVD.  (I think it was version 10.6.4 but i could be mistaken on the version).
    The ethernet worked!  But KeyNote wasn't going to work because apparently the version i purchased depends on 10.6.8.
    So I upgraded again to SL 10.6.8 (Plus some other updates like AirPort which i don't use).
    Now the Ethernet is not working again.  I see the same symptoms as before with the Ethernet seeming not installed.
    Is this a problem seen by others?
    Would going to Lion fix the problem?
    Could AirPort actually be the culprit and not SL?
    If i stay with my original SL, would i need to repurchase a version of KeyNote for the older version of SL?

    Have you reset the SMC?
    Shut down the computer.
    Unplug the computer's power cord.
    Wait fifteen seconds.
    Attach the computer's power cord.
    Wait five seconds, then press the power button to turn on the computer.
    While you're at it, resetting the PRAM won't hurt anything and 'might' help is SMC reset didn't work (PRAM does some port control):
    Shut down the computer.
    Locate the following keys on the keyboard: Command, Option, P, and R. You will need to hold these keys down simultaneously in step 4.
    Turn on the computer.
    Press and hold the Command-Option-P-R keys. You must press this key combination before the gray screen appears.
    Hold the keys down until the computer restarts and you hear the startup sound for the second time.
    Release the keys.
    Something else you might try .... you don't say how you're updating to 10.6.8, however, if you're using Software Update, you might try downloading the 10.6.8 combo update, which contains all updates to 10.6. Sometimes, Software Update doesn't work quite right, and installing the combo update fixes that. Download the update from Apple's download site at http://support.apple.com/downloads/ , using Disk Utility repair permissions, apply the combo update, then repair permissions again.

  • Trouble with RMI?

    We have during the last month started to get problems where the Vadis application
    stops working. We can't figure out the cause of this.
    Recent additions to the application is that we have started to use RMI for our
    client communication - currently we are both using CORBA (OrbixWeb 3.1c) and RMI
    - planning to get rid of CORBA. We have also some new features that increases
    the amount of tasks to perform.
    The system can hang both under heavy load and under off peak hours, when many
    clients are connected or when nobody is using it!?! Strange...
    This happens approximately once a week.
    Today we managed to get a JRockit dump (with Ctrl-Break) - see attached file.
    The main thread that should run all real tasks is Schemaläggare, but the stack
    trace indicates a really weird place to stop. When looking at the code we can't
    see how this could be either a deadlock or an infinite loop. Maybe you can make
    some more out of the printout?
    For example, we wonder what the timestamp row means. Almost all threads have a
    timestamp of around 2200. But one thread has 1 and the other 346. What does this
    mean?
    We are using the following version of JRockit:
    java version 1.3
    Java(TM) 2 Runtime Environment, Standard Edition (build "1.3.1_CROSIS_20011213-1316")
    JRockit Virtual Machine (build 3.0.1-CROSIS-2001213-1317)
    with nativeThreads activated.
    Do you know of any troubles with using RMI for this version. Or the combination
    of RMI and CORBA/OrbixWeb?
    Best regards,
    Tomas L
    [ProblemReport_JRockit.txt]

    Really don't know the answer to that question. I haven't analyzed the
    problem in detail. I know that a lot of issues has been fixed since
    3.0.1, and if the problem is with the VM it is likely to have been fixed.
    Regards,
    /Staffan
    TomasLiden wrote:
    Alright,
    However, before taking on the job of upgrading JRockit it would be nice to know
    whether the problem is likely to be solved. Or put in other words: Do you think
    the problem is in the JVM or in our application?
    All the best,
    /Tomas
    Staffan Larsen <[email protected]> wrote:
    Well, as you noted, NT4 isn't a supported platform for 7.0sp4, but we
    are not aware of anything that would not work. Then again, 3.0.1 isn't
    supported either...
    You have two choices the way I see it: 1) Use 7.0sp4 on NT4 and
    hopefully it solves your problem. 2) Upgrade to W2K (but I guess that
    is
    hard).
    Regards,
    /Staffan
    TomasLiden wrote:
    Hi,
    I guessed you would answer something like that ;-) However, our serveris running
    Windows NT4 (don't remember the service pack) and on your downloadsite it says
    W2K for 7.0sp4. Will that work?
    /T
    Staffan Larsen <[email protected]> wrote:
    Hi Tomas,
    JRockit 3.0.1 is pretty old at this time, so I would strongly suggest
    that you upgrade to JRockit 7.0sp4 (if you need 1.3.1 compatibility),
    or
    JRockit 1.4.2 (if you are ok with 1.4.2 compatibility). Both version
    are
    available for download at
    http://commerce.bea.com/showallversions.jsp?family=WLJR
    Regards,
    /Staffan
    TomasLiden wrote:
    We have during the last month started to get problems where the Vadisapplication
    stops working. We can't figure out the cause of this.
    Recent additions to the application is that we have started to useRMI for our
    client communication - currently we are both using CORBA (OrbixWeb3.1c) and RMI
    - planning to get rid of CORBA. We have also some new features thatincreases
    the amount of tasks to perform.
    The system can hang both under heavy load and under off peak hours,when many
    clients are connected or when nobody is using it!?! Strange...
    This happens approximately once a week.
    Today we managed to get a JRockit dump (with Ctrl-Break) - see attachedfile.
    The main thread that should run all real tasks is Schemaläggare, butthe stack
    trace indicates a really weird place to stop. When looking at the
    code
    we can't
    see how this could be either a deadlock or an infinite loop. Maybeyou can make
    some more out of the printout?
    For example, we wonder what the timestamp row means. Almost all threadshave a
    timestamp of around 2200. But one thread has 1 and the other 346.
    What
    does this
    mean?
    We are using the following version of JRockit:
    java version 1.3
    Java(TM) 2 Runtime Environment, Standard Edition (build "1.3.1_CROSIS_20011213-1316")
    JRockit Virtual Machine (build 3.0.1-CROSIS-2001213-1317)
    with nativeThreads activated.
    Do you know of any troubles with using RMI for this version. Or thecombination
    of RMI and CORBA/OrbixWeb?
    Best regards,
    Tomas L
    Problem report.
    Application hangs - deadlock or loop?
    We have during the last month started to get problems where the Vadisapplication stops working. We can't figure out the cause of this.
    Recent additions to the application is that we have started to useRMI for our client communication - currently we are both using CORBA
    (OrbixWeb 3.1c) and RMI - planning to get rid of CORBA. We have also
    some new features that increases the amount of tasks to perform.
    The system can hang both under heavy load and under off peak hours,when many clients are connected or when nobody is using it!?! Strange...
    This happens approximately once a week.
    Today we managed to get a JRockit dump (with Ctrl-Break) - see below.The main thread that should run all real tasks is Schemaläggare, but
    the stack trace indicates a really weird place to stop. When looking
    at the code we can't see how this could be either a deadlock or aninfinite
    loop. Maybe you can make some more out of the printout?
    For example, we wonder what the timestamp row means. Almost all threadshave a timestamp of around 2200. But one thread has 1 and the other
    346. What does this mean?
    We are using the following version of JRockit:
    java version 1.3
    Java(TM) 2 Runtime Environment, Standard Edition (build "1.3.1_CROSIS_20011213-1316")
    JRockit Virtual Machine (build 3.0.1-CROSIS-2001213-1317)
    with nativeThreads activated.
    Do you know of any troubles with using RMI for this version. Or thecombination of RMI and CORBA/OrbixWeb?
    Best regards,
    Tomas L
    ================== Ctrl-Break printout ====================
    ====== THREAD 00000080 == Noname
    State: ACTIVE, DAEMON, GCABLE
    Prio: 0 (5)
    Timestamp: 2232 before current stamp
    Stack: 0x00000000
    Code: 0x00000000
    LastJava: 0x7FF8FF08
    ThreadID: 0x00000E7B
    ### Stacktrace:
    --- End of stack trace
    ### End of stacktrace.
    =====================
    ====== THREAD 00000100 == RMI TCP Connection(2191)-10.40.105.193
    State: ACTIVE, DAEMON, GCABLE
    Prio: 0 (5)
    Timestamp: 1 before current stamp
    Stack: 0x00000000
    Code: 0x00000000
    LastJava: 0x7FF4FC44
    ThreadID: 0x000006F4
    ### Stacktrace:
    at se.sj.otm.tillampning.systemProvider.gen.RVadisClientProviderImpl.doT
    illgangligaVagnar(Compiled Code)@5f5f4fee
    at se.sj.otm.tillampning.systemProvider.gen.RVadisClientProviderImpl_Ske
    l.dispatch(Compiled Code)@5f5f5ad1
    at sun.rmi.server.UnicastServerRef.oldDispatch(Compiled Code)@5d32d44c
    at sun.rmi.server.UnicastServerRef.dispatch(Compiled Code)@5d32cfc8
    at sun.rmi.transport.Transport$1.run(Compiled Code)@5d32cb3f
    at java.security.AccessController.doPrivileged(Native Method)@5a091990
    at sun.rmi.transport.Transport.serviceCall(Compiled Code)@5d32b02d
    at sun.rmi.transport.tcp.TCPTransport.handleMessages(CompiledCode)@5d32
    a9c8
    at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(CompiledCod
    e)@5d3296db
    at java.lang.Thread.run(Compiled Code)@59e3328e
    at java.lang.Thread.startThreadFromVM(Compiled Code)@59e33134
    --- End of stack trace
    ### End of stacktrace.
    =====================
    ====== THREAD 00000180 == ObjyThread
    State: WAITING, NONDAEMON, GCABLE
    Prio: 0 (5)
    Timestamp: 2226 before current stamp
    Stack: 0x00000000
    Code: 0x00000000
    LastJava: 0x7FF3FED8
    ThreadID: 0x00000B2F
    ### Stacktrace:
    --- End of stack trace
    ### End of stacktrace.
    =====================
    ====== THREAD 00000200 == Finalizer
    State: WAITING, DAEMON, GCABLE
    Prio: 0 (5)
    Timestamp: 2231 before current stamp
    Stack: 0x00000000
    Code: 0x00000000
    LastJava: 0x7FF2FEB8
    ThreadID: 0x00000B7A
    ### Stacktrace:
    at java.lang.Object.wait0(Compiled Code)@59e35860
    at java.lang.ref.ReferenceQueue.remove(Optimized Code)@5f7742fe
    at java.lang.ref.Finalizer$FinalizerThread.run(Compiled Code)@59e35379
    at java.lang.Thread.startThreadFromVM(Compiled Code)@59e33134
    --- End of stack trace
    ### End of stacktrace.
    =====================
    ====== THREAD 00000280 == SignalHandler
    State: ACTIVE, DAEMON, GCABLE
    Prio: 0 (5)
    Timestamp: 2230 before current stamp
    Stack: 0x00000000
    Code: 0x00000000
    LastJava: 0x7FEFFEF0
    ThreadID: 0x00000B3C
    ### Stacktrace:
    at java.lang.Thread.run(Compiled Code)@59e3328e
    at java.lang.Thread.startThreadFromVM(Compiled Code)@59e33134
    --- End of stack trace
    ### End of stacktrace.
    =====================
    ====== THREAD 00000300 == Hotspot Detector
    State: ACTIVE, DAEMON, GCABLE
    Prio: 0 (5)
    Timestamp: 2229 before current stamp
    Stack: 0x00000000
    Code: 0x00000000
    LastJava: 0x7FEEFEE0
    ThreadID: 0x0000096C
    ### Stacktrace:
    --- End of stack trace
    ### End of stacktrace.
    =====================
    ====== THREAD 00000380 == Reference Handler
    State: WAITING, DAEMON, GCABLE
    Prio: 0 (5)
    Timestamp: 2228 before current stamp
    Stack: 0x00000000
    Code: 0x00000000
    LastJava: 0x7FEDFEE4
    ThreadID: 0x00000E30
    ### Stacktrace:
    at java.lang.ref.Reference$ReferenceHandler.run(Compiled Code)@5a090526
    at java.lang.Thread.startThreadFromVM(Compiled Code)@59e33134
    --- End of stack trace
    ### End of stacktrace.
    =====================
    ====== THREAD 00000400 == Thread-0
    State: ACTIVE, DAEMON, GCABLE
    Prio: 0 (5)
    Timestamp: 2232 before current stamp
    Stack: 0x00000000
    Code: 0x00000000
    LastJava: 0x00A5B1E0
    ThreadID: 0x00000D2A
    ### Stacktrace:
    --- End of stack trace
    ### End of stacktrace.
    =====================
    ====== THREAD 00000480 == RMI TCP Accept-1
    State: ACTIVE, DAEMON, GCABLE
    Prio: 0 (5)
    Timestamp: 2225 before current stamp
    Stack: 0x00000000
    Code: 0x00000000
    LastJava: 0x7FE8FEA4
    ThreadID: 0x00000EA0
    ### Stacktrace:
    at java.net.ServerSocket.implAccept(Compiled Code)@5a23b775
    at java.net.ServerSocket.accept(Compiled Code)@5a23b57c
    at sun.rmi.transport.tcp.TCPTransport.run(Compiled Code)@5a23a9f8
    at java.lang.Thread.run(Compiled Code)@59e3328e
    at java.lang.Thread.startThreadFromVM(Compiled Code)@59e33134
    --- End of stack trace
    ### End of stacktrace.
    =====================
    ====== THREAD 00000500 == OrbixWeb Server Listener thread
    State: ACTIVE, NONDAEMON, GCABLE
    Prio: 0 (5)
    Timestamp: 2224 before current stamp
    Stack: 0x00000000
    Code: 0x00000000
    LastJava: 0x7FE7FEA0
    ThreadID: 0x0000008E
    ### Stacktrace:
    at java.net.ServerSocket.implAccept(Compiled Code)@5a23b775
    at java.net.ServerSocket.accept(Compiled Code)@5a23b57c
    at IE.Iona.OrbixWeb.CORBA.Listener.acceptNewConnection(CompiledCode)@5a
    2f429e
    at IE.Iona.OrbixWeb.CORBA.Listener.run(Compiled Code)@5a2f3e37
    at java.lang.Thread.run(Compiled Code)@59e3328e
    at java.lang.Thread.startThreadFromVM(Compiled Code)@59e33134
    --- End of stack trace
    ### End of stacktrace.
    =====================
    ====== THREAD 00000580 == Request Processor
    State: WAITING, NONDAEMON, GCABLE
    Prio: 0 (5)
    Timestamp: 2223 before current stamp
    Stack: 0x00000000
    Code: 0x00000000
    LastJava: 0x7FE6FEA0
    ThreadID: 0x00000E0E
    ### Stacktrace:
    at IE.Iona.OrbixWeb.CORBA.EventHandler.nextRequest(CompiledCode)@5a2f78
    fc
    at IE.Iona.OrbixWeb.CORBA.BOAImpl.processOneEvent(CompiledCode)@5a2f763
    b
    at IE.Iona.OrbixWeb.CORBA.BOAImpl.processEvents(Compiled Code)@5a2f418b
    at IE.Iona.OrbixWeb.CORBA.EventHandler.run(Compiled Code)@5a2f3c8d
    at java.lang.Thread.run(Compiled Code)@59e3328e
    at java.lang.Thread.startThreadFromVM(Compiled Code)@59e33134
    --- End of stack trace
    ### End of stacktrace.
    =====================
    ====== THREAD 00000600 == RMI TCP Accept-2
    State: ACTIVE, DAEMON, GCABLE
    Prio: 0 (5)
    Timestamp: 2222 before current stamp
    Stack: 0x00000000
    Code: 0x00000000
    LastJava: 0x7FE5FEA4
    ThreadID: 0x00000680
    ### Stacktrace:
    at java.net.ServerSocket.implAccept(Compiled Code)@5a23b775
    at java.net.ServerSocket.accept(Compiled Code)@5a23b57c
    at sun.rmi.transport.tcp.TCPTransport.run(Compiled Code)@5a23a9f8
    at java.lang.Thread.run(Compiled Code)@59e3328e
    at java.lang.Thread.startThreadFromVM(Compiled Code)@59e33134
    --- End of stack trace
    ### End of stacktrace.
    =====================
    ====== THREAD 00000680 == RMI Reaper
    State: WAITING, NONDAEMON, GCABLE
    Prio: 0 (5)
    Timestamp: 2221 before current stamp
    Stack: 0x00000000
    Code: 0x00000000
    LastJava: 0x7FE4FEA0
    ThreadID: 0x000008FB
    ### Stacktrace:
    --- End of stack trace
    ### End of stacktrace.
    =====================
    ====== THREAD 00000700 == GC Daemon
    State: WAITING, DAEMON, GCABLE
    Prio: 0 (5)
    Timestamp: 2220 before current stamp
    Stack: 0x00000000
    Code: 0x00000000
    LastJava: 0x7FE3FEC4
    ThreadID: 0x00000927
    ### Stacktrace:
    --- End of stack trace
    ### End of stacktrace.
    =====================
    ====== THREAD 00000780 == Thread-11
    State: WAITING, NONDAEMON, GCABLE
    Prio: 0 (5)
    Timestamp: 2213 before current stamp
    Stack: 0x00000000
    Code: 0x00000000
    LastJava: 0x7FE2FEC8
    ThreadID: 0x00000CF1
    ### Stacktrace:
    --- End of stack trace
    ### End of stacktrace.
    =====================
    ====== THREAD 00000800 == Gtpl
    State: ACTIVE, NONDAEMON, GCABLE
    Prio: 0 (5)
    Timestamp: 2204 before current stamp
    Stack: 0x00000000
    Code: 0x00000000
    LastJava: 0x7FE1FDC8
    ThreadID: 0x00000B01
    ### Stacktrace:
    --- End of stack trace
    ### End of stacktrace.
    =====================
    ====== THREAD 00000880 == Pbok
    State: ACTIVE, NONDAEMON, GCABLE
    Prio: 0 (5)
    Timestamp: 2203 before current stamp
    Stack: 0x00000000
    Code: 0x00000000
    LastJava: 0x7FE0FDC8
    ThreadID: 0x00000A27
    ### Stacktrace:
    --- End of stack trace
    ### End of stacktrace.
    =====================
    ====== THREAD 00000900 == Beval
    State: ACTIVE, NONDAEMON, GCABLE
    Prio: 0 (5)
    Timestamp: 2202 before current stamp
    Stack: 0x00000000
    Code: 0x00000000
    LastJava: 0x7FDFFDC8
    ThreadID: 0x00000C27
    ### Stacktrace:
    at java.net.SocketInputStream.read0(Optimized Code)@5f776df9
    at java.net.SocketInputStream.read(Optimized Code)@5f776e42
    at java.io.DataInputStream.readInt(Optimized Code)@5f58a2df
    at com.ibm.mq.MQInternalCommunications.receive(Optimized Code)@5f762c43
    at com.ibm.mq.MQSESSIONClient.MQGET(Optimized Code)@5f74a056
    at com.ibm.mq.MQQueue.get(Optimized Code)@5f76e931
    at se.sj.otm.ramverk.hostConnection.communication.MQPoll.execute(Optimiz
    ed Code)@5f8fc96f
    at se.sj.otm.basobjekt.Poll.run(Compiled Code)@5a35db6f
    at java.lang.Thread.startThreadFromVM(Compiled Code)@59e33134
    --- End of stack trace
    ### End of stacktrace.
    =====================
    ====== THREAD 00000980 == Kal
    State: ACTIVE, NONDAEMON, GCABLE
    Prio: 0 (5)
    Timestamp: 2201 before current stamp
    Stack: 0x00000000
    Code: 0x00000000
    LastJava: 0x7FDEFDC8
    ThreadID: 0x0000064A
    ### Stacktrace:
    --- End of stack trace
    ### End of stacktrace.
    =====================
    ====== THREAD 00000a00 == OrbixWeb Connection Monitor thread
    State: WAITING, DAEMON, GCABLE
    Prio: 0 (5)
    Timestamp: 2218 before current stamp
    Stack: 0x00000000
    Code: 0x00000000
    LastJava: 0x7FDDFEC8
    ThreadID: 0x00000968
    ### Stacktrace:
    --- End of stack trace
    ### End of stacktrace.
    =====================
    ====== THREAD 00000a80 == Connection[IIOP, Socket[addr=nttmd51.sj.se/10.54.132.9
    5,port=1574,localport=1977], is_daemon]
    State: ACTIVE, DAEMON, GCABLE
    Prio: 0 (5)
    Timestamp: 2217 before current stamp
    Stack: 0x00000000
    Code: 0x00000000
    LastJava: 0x7FDCFEA4
    ThreadID: 0x000007AA
    ### Stacktrace:
    --- End of stack trace
    ### End of stacktrace.
    =====================
    ====== THREAD 00000b80 == Thread-9
    State: WAITING, NONDAEMON, GCABLE
    Prio: 0 (5)
    Timestamp: 2215 before current stamp
    Stack: 0x00000000
    Code: 0x00000000
    LastJava: 0x7FDAFEC8
    ThreadID: 0x00000F58
    ### Stacktrace:
    --- End of stack trace
    ### End of stacktrace.
    =====================
    ====== THREAD 00000c00 == Thread-10
    State: WAITING, NONDAEMON, GCABLE
    Prio: 0 (5)
    Timestamp: 2214 before current stamp
    Stack: 0x00000000
    Code: 0x00000000
    LastJava: 0x7FD9FEC8
    ThreadID: 0x00000302
    ### Stacktrace:
    --- End of stack trace
    ### End of stacktrace.
    =====================
    ====== THREAD 00000c80 == Thread-12
    State: WAITING, NONDAEMON, GCABLE
    Prio: 0 (5)
    Timestamp: 2212 before current stamp
    Stack: 0x00000000
    Code: 0x00000000
    LastJava: 0x7FD8FEC8
    ThreadID: 0x00000D52
    ### Stacktrace:
    --- End of stack trace
    ### End of stacktrace.
    =====================
    ====== THREAD 00000d00 == Thread-13
    State: WAITING, NONDAEMON, GCABLE
    Prio: 0 (5)
    Timestamp: 2211 before current stamp
    Stack: 0x00000000
    Code: 0x00000000
    LastJava: 0x7FD7FEC8
    ThreadID: 0x00000ABC
    ### Stacktrace:
    --- End of stack trace
    ### End of stacktrace.
    =====================
    ====== THREAD 00000d80 == Thread-14
    State: WAITING, NONDAEMON, GCABLE
    Prio: 0 (5)
    Timestamp: 2210 before current stamp
    Stack: 0x00000000
    Code: 0x00000000
    LastJava: 0x7FD6FEC8
    ThreadID: 0x000008F5
    ### Stacktrace:
    --- End of stack trace
    ### End of stacktrace.
    =====================
    ====== THREAD 00000e00 == Thread-15
    State: WAITING, NONDAEMON, GCABLE
    Prio: 0 (5)
    Timestamp: 2209 before current stamp
    Stack: 0x00000000
    Code: 0x00000000
    LastJava: 0x7FD5FEC8
    ThreadID: 0x000001C2
    ### Stacktrace:
    --- End of stack trace
    ### End of stacktrace.
    =====================
    ====== THREAD 00000e80 == Thread-16
    State: WAITING, NONDAEMON, GCABLE
    Prio: 0 (5)
    Timestamp: 2208 before current stamp
    Stack: 0x00000000
    Code: 0x00000000
    LastJava: 0x7FD4FEC8
    ThreadID: 0x0000078E
    ### Stacktrace:
    --- End of stack trace
    ### End of stacktrace.
    =====================
    ====== THREAD 00000f00 == Schemalõggare
    State: ACTIVE, NONDAEMON, GCABLE
    Prio: 0 (5)
    Timestamp: 2207 before current stamp
    Stack: 0x00000000
    Code: 0x00000000
    LastJava: 0x7FD3FA0C
    ThreadID: 0x00000AC0
    ### Stacktrace:
    at se.sj.otm.vagnstyrningsplanering.optimeringsmodell.AggregeradTomvagns
    fordelningsmodell.minskaReservationerUtanBehovspaverkan(Compiled Code)@5f5e6678
    at se.sj.otm.vagnstyrningsplanering.optimeringsmodell.AggregeradTomvagns
    fordelningsmodell.anpassaReservationerTillKapacitetsminskning(CompiledCode)@5f5
    e6945
    at se.sj.otm.vagnstyrningsplanering.tomvagnstyrning.impl.Godsvagnstyrnin
    gsplanImpl.forandradTillgangligKapacitetITaglagen(Compiled Code)@5d33750a
    at java.lang.reflect.Method.invoke(Native Method)@5a0c225e
    at se.sj.otm.verksamhetsobjekt.trafikoperator.impl.ArgumentFormedlareImp
    l.invokeMethod(Compiled Code)@5a5f545e
    at se.sj.otm.vagnstyrningsplanering.tomvagnstyrning.impl.Godsvagnstyrnin
    gsplanImpl.anropaVagnstyrningsplanerare(Optimized Code)@5f8fdba5
    at se.sj.otm.verksamhetsobjekt.fordon.impl.GodsvagnparkImpl.anropaVagnst
    yrningsplanerare(Compiled Code)@5a5f511f
    at se.sj.otm.verksamhetsobjekt.fordon.impl.GodsvagnparkImpl.forandradTil
    lgangligKapacitetITaglagen(Compiled Code)@5d337101
    at se.sj.otm.verksamhetsobjekt.fordon.impl.GodsvagnparkImpl.genomforRese
    rvationslistor(Optimized Code)@5f8fee98
    at se.sj.otm.verksamhetsobjekt.fordon.impl.GodsvagnparkImpl.genomforOnsk
    adeReservationer(Optimized Code)@5f7a4c4a
    at se.sj.otm.verksamhetsobjekt.fordon.impl.GodsvagnparkImpl.hanteraSvarF
    ranPlaneraren(Compiled Code)@5d330a01
    at se.sj.otm.verksamhetsobjekt.fordon.impl.GodsvagnparkImpl.forberedFixe
    raTomtransporter(Optimized Code)@5f799aab
    at se.sj.otm.verksamhetsobjekt.fordon.impl.GodsvagnparkImpl.fixeraTomtra
    nsporter(Compiled Code)@5f5c81d1
    at se.sj.otm.verksamhetsobjekt.tidtabell.impl.TidtabellImpl.utforFortida
    Fixering(Compiled Code)@5f74b166
    at java.lang.reflect.Method.invoke(Native Method)@5a0c225e
    at se.sj.otm.ramverk.scheduler.OTAssignment.perform(OptimizedCode)@5f76
    b227
    at se.sj.otm.ramverk.scheduler.OTScheduler.performNextAssignment(Optimiz
    ed Code)@5f900796
    at se.sj.otm.ramverk.scheduler.OTScheduler.execute(OptimizedCode)@5f904
    b9d
    at se.sj.otm.basobjekt.Poll.run(Compiled Code)@5a35db6f
    at java.lang.Thread.startThreadFromVM(Compiled Code)@59e33134
    --- End of stack trace
    ### End of stacktrace.
    =====================
    ====== THREAD 00000f80 == TidsstyrdUppdragsk÷
    State: WAITING, NONDAEMON, GCABLE
    Prio: 0 (5)
    Timestamp: 2206 before current stamp
    Stack: 0x00000000
    Code: 0x00000000
    LastJava: 0x7FD2FEC0
    ThreadID: 0x00000B34
    ### Stacktrace:
    --- End of stack trace
    ### End of stacktrace.
    =====================
    ====== THREAD 00001000 == TidsstyrdUppdragsk÷
    State: WAITING, NONDAEMON, GCABLE
    Prio: 0 (5)
    Timestamp: 2205 before current stamp
    Stack: 0x00000000
    Code: 0x00000000
    LastJava: 0x7FD1FEC0
    ThreadID: 0x00000AC2
    ### Stacktrace:
    --- End of stack trace
    ### End of stacktrace.
    =====================
    ====== THREAD 00001080 == AWT-EventQueue-0
    State: WAITING, NONDAEMON, GCABLE
    Prio: 0 (5)
    Timestamp: 2200 before current stamp
    Stack: 0x00000000
    Code: 0x00000000
    LastJava: 0x7FD0FEA0
    ThreadID: 0x000001B1
    ### Stacktrace:
    --- End of stack trace
    ### End of stacktrace.
    =====================
    ====== THREAD 00001100 == SunToolkit.PostEventQueue-0
    State: WAITING, NONDAEMON, GCABLE
    Prio: 0 (5)
    Timestamp: 2199 before current stamp
    Stack: 0x00000000
    Code: 0x00000000
    LastJava: 0x7FCFFED4
    ThreadID: 0x00000E2E
    ### Stacktrace:
    at sun.awt.PostEventQueue.run(Compiled Code)@5a3bde4e
    at java.lang.Thread.startThreadFromVM(Compiled Code)@59e33134
    --- End of stack trace
    ### End of stacktrace.
    =====================
    ====== THREAD 00001180 == Thread-20
    State: CREATED, DAEMON, GCABLE
    Prio: 0 (6)
    Timestamp: 2232 before current stamp
    Stack: 0x00000000
    Code: 0x00000000
    LastJava: 0x7FCEFF58
    ThreadID: 0x000000A2
    ### Stacktrace:
    No stack trace for unstarted threads.
    ### End of stacktrace.
    =====================
    ====== THREAD 00001200 == AWT-Windows
    State: ACTIVE, DAEMON, GCABLE
    Prio: 0 (6)
    Timestamp: 2197 before current stamp
    Stack: 0x00000000
    Code: 0x00000000
    LastJava: 0x7FCDFEBC
    ThreadID: 0x00000D0A
    ### Stacktrace:
    at COM.jrockit.awt.WToolkit.run(Compiled Code)@5a3bdfe9
    at java.lang.Thread.run(Compiled Code)@59e3328e
    at java.lang.Thread.startThreadFromVM(Compiled Code)@59e33134
    --- End of stack trace
    ### End of stacktrace.
    =====================
    ====== THREAD 00001280 == RMI LeaseChecker
    State: WAITING, DAEMON, GCABLE
    Prio: 0 (5)
    Timestamp: 346 before current stamp
    Stack: 0x00000000
    Code: 0x00000000
    LastJava: 0x7FCCFEBC
    ThreadID: 0x000007C0
    ### Stacktrace:
    --- End of stack trace
    ### End of stacktrace.
    =====================

  • We are currently having troubles with our iTunes. Playing different songs and randomly it changes the name of the song to pink time after time. We could go through 5 songs before it will change the next one to song title time after time and artist pink

    Hi I am having trouble with iTunes! Randomly when I click on a song in iTunes it changes the song title to time after time and the artist is pink.
    I could click on 4 songs and they will be normal but then the 5th one will change the info to time after time.
    I haven't done anything different or new, it started doing it all of a sudden, well that I have noticed anyway. Please help.

    Hello Schimi. The Time Capsule is a kind of product that offer you two possibility:
    - To use the TC as a router or as an external HD.
    The difference between WPA and WPA 2 are:
    - They are two kinds of internet connection.
    WPA uses dynamic key encryption , which means that the key is constantly changing and makes the invasion of a wireless network more difficult than WEP . WPA is considered one of the highest levels of wireless security for your network and is recommended if your devices support this kind of encryption . Newer routers offer WPA2 security . WPA2 is compatible with WPA , but offers higher security level . In fact, it meets the high standards of many government agencies . If the router and computer support WPA2 , this should be your choice.
    If you need any help or if you find some difficult setting up it you can contact Apple Support.
    I am sure that they can help you with that.
    I am sory for the delay. I holpe that you solve your issue.

  • E-Mailing Photos from iPhoto - Having trouble with resolution

    I am having trouble with emailing pictures from i-photo. When I email pictures as attachments they end up being low resolution versions and the receiver can not print them. I can not figure out what sort of setting I must have set. Please help.

    MMVP
    Welcome to the Apple user assistance forums
    1 - how are you selecting and attaching the photos?
    2 - what is the resolution of the photos in iPhoto?
    3 - if you are using the iPhoto e-mail capability (recommended) you select a photo(s) and click mail - there you can choose actual, large, medium or small
    4 - this creates an e-mail message in the e-mail client of your choice (iPhoto preferences) - if you are using Apple mail in the lower right hand corner under the e-mail there is a menu where you can set Actual, large, medium or small
    Be sure that both selections are set the way you want them - if either is se tto small you will send a small (low resolutin) photo
    LN

  • I am having trouble with disk space,

    I am having trouble with disk space, I am always getting the error message that I need to delete files on my start up disk, I am all out of space. I cant even save a file to my desktop without getting the message, Is there a way I can free up space. I am not very computer savvy, being a pensioner I  cannot afford expensive options.  I was familiar with the old apple imac, but I was given a macbook pro for my birthday, and am trying to work it out.  I use it mostly for photos and web.

    Jillian,
    I'm assuming this is a second-hand machine.  If it is brand new, get it to Apple because it's their problem, not yours.
    First thing you should do is go to Programs: Utilities: Disk Utlity and choose "Repair Permissions."  If you don't have the OS X system disk (a DVD) go ahead and verify the Disk. It can't fix itself, so to speak, but can tell you if there is a problem.  iIf you have the OS X system disk then boot off the disk, go to Disk Utility, and run Repair Disk.  Assuming all is OK:
    You don't need to download any programs to get started on figuring out why all your space is gone.  Try this first:
    Oh, when deleting, especially at first, you may have to move only small folders or even files, of 100 MB or so to the trash, then empty the trash.  As the free space increases, you can trash progressively larger files.  To delete files, the computer needs to create even more files to tell it what files it is deleting before it deletes them.  I know, go figure.;)
    It would not be a bad idea, and is in fact a very good idea, to run the disk utility "Repair permissions" after every half-dozen trash/empty trash cycles and then restart the computer.
    The basic plan is to search for unreasonably sized folders. 
    From the Finder:
    Open a window, click in the window and then:
    Go to menu item View. (If you click on the desktop instead of a window, you'll get a different set of view options, none of which is the one you want.)
    Click on it and move the cursor to the bottom choice, Show View Options (alternative Apple (Command)-J).  Make sure the checkbox "Calculate all sizes" is checked. If it isn't, check it and then click on "Use as default" When checked, it will show you the size of a folder.  If it was unchecked, don't be surprised if nothing seems to be happening as it will take awhile for the computer to calculate the size of, literally, thousands of folders.  But some will start to show up right away. If you open a new window and don't see any folder sizes, Repeat the Show View Options routine above and if Calculate all sizes is checked, just wait.
    I've heard you Aussies enjoy a beer or two.  If your Mac has to calculate all the folder sizes, this might well be a good time to have a cold one or two, as it will take some time.
    Go to the root level, which is "Computer" or "_Your Disk Name_," generically Macintosh under Devices in the sidebar.
    Make sure you are in list view and can have the size column visible.  Click on it (turns blue-grey) and it will sort by size, large to small or the reverse.  Click again to reverse the sort order.
    On my 10.6.8 machine, I have
    98 GB under Users.
    22 GB under Applications. If you only have the Apple-supplied applications, you probably have between 4 and 6 GB here.
    Library is 24.5 GB
    System is 4.6 GB
    Other than a few trivially small files or folders, that should be about it for the root level.
    If you have two System files, you shouldn't, and will need to get rid of one.  Ask for advice before deleting one or the other.  If you have a, "Previous System," or "Old System," -- can't remember the language, you can proably safely delete it if you are satisified with how your computer is working. 
    The Library is a candidate for bloat.  Some applications, especially those that manipulate audio or video, store the bulk of their code, generally resources of one type or the other, in the Application Support folder. For instance, I have a 10.5 GB folder of Live Type in my Application Support folder.  Honestly, I don't know what program it is for, but don't care because I upgraded to a 3/4 TB drive.  In contrast, on my 10.7.1 computer, which has little more than the Apple supplied software on it at this point, uses only 1.5 GB for Application Support.  The support folders will remain even if the program itself is deleted.  As a general rule, I wouldn't bother checking out anything under 300 MB or so.  Any folders over that, you should note for possible deletion _but_ be sure to ask someone with more knowledge about this what it is used for before deleting.  If it is used for some program that isn't on your machine, meaning the program has been deleted, you can safely delete it.  If the program is still on the machine, decide if you will use that program and, if not, delete the program and its application support files.
    My next largest folder in the Library is Audio at 2.7 GB.  I have audio editing programs, so that makes sense. You probaby have one also, but shouldn't be over 500 MB or so.
    Next is Printers at 1.4 GB.  This is a good place to clear up space.  You'll see folders with various printer brands.  Do you have a Brother printer?  No?  Trash it.  Just keep the folder with your printer brand and the PPD folder and trash the rest.  If you want to get real fancy, open your brands folder and delete the files for every model other than the one you have. 
    My next largest is Fonts at 490 MB.  Leave that alone. In fact, unless Fonts is something insane like 2 GBs, stop deleting from the Library.
    Go to Users.  There could be between one and more than one user.  (Fudge of an answer there.)  There is no such thing as a guideline for user folder size.  Is there a previous user?  If so, check with them and see if you can delete it.  I have a "dummy" administrative - level user that can be used for some esoteric rescue operations and it takes up a trivial 33 KB or something like that while my own account is pushing 100 GB.
    You'll see several folders, Music, Pictures, Desktop, etc.  This is stuff you or the previous user have created.  If you don't want it, delete it.  You will also see, aha! another Library folder.  There shouldn't be many folders over 100 MB here except for Mail and our friend Application Support.  I get a lot of mail, rarely delete any, and have carried it over from 10.3 and measures out at 3.7GB.  Still, if its someone elses mail and you don't want it, you can delete it, but again, check with more knowledgable people as there are probably some files and folders you absolutely should not delete, others that you should delete from within Mail, and some you can manually delete. 
    My Application Support Folder weighs in at 1.4 GBs, of which 1.2 GBs is for Final Vinyl.  That's a lot.  Sneaky sucker stored some untitled audio files in there.  Bye! OK, now the Application Support folder is down to 145 MB.  So, I'd say anything much over that should be investigated for possible deletion.  Close up Library and move on.
    Downloads may be very small or very large.  Depends on how meticulous the previous user was in deleting or moving to a more appropriate location.  Ask them if there is anything they want, and if no, delete it.
    My Application folder has Zero KB because I always install at the root, administrative level.  If there is anything there, figure out if you want to use it or not.  If not, trash it.
    Overall:
    1) Don't sweat the small stuff.  The days are long gone when searching a hard drive for a 100 K file to delete is worthwhile.
    2) Start small.  A disk that full is going to be pretty touchy, so once you have identified a bloated folder, go inside of it and trash the smaller files and folder, then empty the trash, then delete a few more files, empty the trash, etc. 
    3) Don't forget to periodically Repair Permissions and restarting the computer.
    4) If you are unsure about whether a folder or file can be safely deleted, ask someone knowledgable or just knock off for the day and hit it again tomorrow.  Seriously, an unanswerable question you have might well be answered by sleeping on it and attacking it the next day.
    5) As Douglas Adams wrote: DON'T PANIC!
    Best of luck! 
    Chris

  • Trouble with my mailaccounts in mail 1.3.11

    hello,
    i have some troubles with mail 1.3.11 (running under mac os x 10.3.9). i have 5 different mail acconuts in mail. one of them should be the standard account and the the rest alternatives accounts. But if i write e new email, is preset the wrong account, and then i must use the dropdown menue in mailwindow to select right one. before i send. okay, i understand that these problem is not so important for so most of people. In the mail version of mac os x 10.4 tiger, is this possible to select and set one account as standard account, in the preferences.
    But for me (i send many emails, most business-mails) this is bothering, circuitous, cost my time, and sometimes i forget to choose the right account before i send the email. The last season is sometimes big problem, then the emails reached not the person or user. A lot of people use a proxy server with firewall, and the firewall blocked my email, or my email arrive the mailclient, and the mailclient select my email as junkmail, and then they would be moved automaticly in the junkfolder. And one day later, tell my friend or businesspartner: "i never got mail from you yesterday, are you sure that you send the email on my right adress".
    Perhaps gives a specially setting in a system file from mail. With the right mouseclick on mail, can i over the contextmenue show into the program, and perhaps there is a file, where i can edit so, that i one from these 5 is the standard and the rest are alternative.
    Know someone this problem ?, or someone can help me. I used google.de and .com, i posted in other mac forums, but i get always an answer.
    THX
    Mike
    Powermac G5 DUAL   Mac OS X (10.3.9)  

    In the mail version of mac os x 10.4 tiger,
    is this possible to select and set one account
    as standard account, in the preferences.
    Yes. As explained in Mail 2.0 Help: Setting the account your email is sent from, you can choose any one of your accounts as the default, or the account of the last viewed mailbox. So, if you have 5 accounts, you will have 6 choices in the "Send new mail from" pop-up menu in the "Composing" preference section.

  • Having trouble with camera profiles in LR3

    Anyone having trouble with accessing the camera profiles from the drop down menu in the develop module/camera calibration section of LR3? The only choice I have is "embedded." After I created a custom with passport color checker it now only offers "profile" as a choice. ANy thoughts?
    Thanks,
    Tom

    Okay, that is different.  I have seen a similar discussion in another thread (I think) in the Lightroom forum.  It might have been this one.  It seems to have been specific to Canon cameras.  I don't have an answer.  Just one question, however.  Are you using standard CR2 files, or are you using the sRaw format?  As I was reading the other thread, I was wondering if that could have been part of the problem.

  • TS2972 having trouble with ring tone and or ring back tones...i followed all directions and cant access ring tone from my play list.

    having trouble with ringtone and ringback tones ..i followed all directions for home sharing.  does anyone have a real solution???

    Hello sairdoor123
    From what I understand the issue seems to be with the hardware, obviously since the phone was dropped that could cause undesired results.
    If all your data is backed up to a computer then I would recommend doing a hard reset: http://www.palm.com/cgi-bin/cso_kbURL.cgi?ID=887
    If a hard reset is done then I would caution you with the following choices:  ( Should I have the audio circuit repaired as suggested by one of the repair guys? Or would that be risky?) - I would say this is risky because the person repairing the devise could easily sodder the wrong part of the hardware.
    If you really do think repairing the circuit board is more cost effective then I would recommend researching all your possible repair shops before doing any work. Make sure they have the credentials and experiences.
    Hopefully things work out for you.
    Post relates to: Centro (Sprint)
    Post relates to: Centro (Sprint)

  • TS1591 i just got an ihome system and had trouble with it connecting to my iPhone.  I finally got it to work and now my itunes doesn't recognize my phone.  My software is up to date on both my Mac and my iPhone and I have shut everything down and restarte

    i just got an ihome system and had trouble with it connecting to my iPhone.  I finally got it to work and now my itunes doesn't recognize my phone.  My software is up to date on both my Mac and my iPhone and I have shut everything down and restarted.  Does anyone have any other suggestions?

    Let's try a standalone Apple Mobile Device Support install. It still might not install, but fingers crossed any error messages will give us a better idea of the underlying cause of why it's not installing under normal conditions.
    Download and save a copy of the iTunesSetup.exe (or iTunes64setup.exe) installer file to your hard drive:
    http://www.apple.com/itunes/download/
    Download and install the free trial version of WinRAR:
    http://www.rarlab.com/
    Right-click the iTunesSetup.exe (or iTunes64setup.exe), and select "Extract to iTunesSetup" (or "Extract to iTunes64Setup"). WinRAR will expand the contents of the file into a folder called "iTunesSetup" (or "iTunes64Setup").
    Go into the folder and doubleclick the AppleMobileDeviceSupport.msi (or AppleMobileDeviceSupport64.msi) to do a standalone AMDS install.
    (If it offers you the choice to remove or repair, choose "Remove", and if the uninstall goes through successfully, see if you can reinstall by doubleclicking the AppleMobileDeviceSupport.msi again.)
    Does it install (or uninstall and then reinstall) properly for you? If so, can you get a normal iTunes install to go through properly now?
    If instead you get an error message during the install (or uninstall), let us know what it says. (Precise text, please.)

  • Trouble with my MacBook Pro OS X snow leopard

    I am having trouble with my MacBook Pro. I get a blank screen with a flashing document file with a question mark in it, yes I have tried to install Mac OS X with the original disk but I get no choices of where I wish to install Mac OS X. Please help ;(

    Start up from the install disk. Don't start an install: from the Utilities menu choose Disk Utility. Select your internal hard disk (if you can) in the sidebar and click 'Repair disk'. Wait for the process to complete.
    It's possible that the disk has failed. If Disk Utility is unable to complete a repair then you will need the services of an Apple-certified technician.

  • I have been having a lot of trouble with the latest itunes update and my ipod classic 80Gb i.e. being unable to sync songs, but now i have no files at all on my ipod, it is completely blank when i view it from my computer. I need help, please, anybody.

    As it says above, i have been having a lot f trouble with my ipod classic and the latest itunes update, i was unable to sync songs or anything to it and have tried every conceivable 'fix' i could find. i have run an itunes diagnostic and the results are posted below. a major problem is that when i try and view my ipod through my computer it displays nothing at all on the ipod, no files or anything, this may be the problem but i have no idea how it has happened or how i could resolve it.
    This ipod holds huge sentimental value and i am loathe to buy a new one! If anybody can help it is greatly appreciated, than kyou in advanced.
    Microsoft Windows 7 x64 Home Premium Edition Service Pack 1 (Build 7601)
    ASUSTeK Computer Inc. K50IJ
    iTunes 11.1.5.5
    QuickTime not available
    FairPlay 2.5.16
    Apple Application Support 3.0.1
    iPod Updater Library 11.1f5
    CD Driver 2.2.3.0
    CD Driver DLL 2.1.3.1
    Apple Mobile Device 7.1.1.3
    Apple Mobile Device Driver 1.64.0.0
    Bonjour 3.0.0.10 (333.10)
    Gracenote SDK 1.9.6.502
    Gracenote MusicID 1.9.6.115
    Gracenote Submit 1.9.6.143
    Gracenote DSP 1.9.6.45
    iTunes Serial Number 0038B8600B98D1E0
    Current user is not an administrator.
    The current local date and time is 2014-03-21 16:52:39.
    iTunes is not running in safe mode.
    WebKit accelerated compositing is enabled.
    HDCP is not supported.
    Core Media is supported.
    Video Display Information
    Intel Corporation, Mobile Intel(R) 4 Series Express Chipset Family
    Intel Corporation, Mobile Intel(R) 4 Series Express Chipset Family
    **** External Plug-ins Information ****
    No external plug-ins installed.
    Genius ID: 2fd81a1f13cf3ff25a8b4f0e8e725116
    **** Device Connectivity Tests ****
    iPodService 11.1.5.5 (x64) is currently running.
    iTunesHelper 11.1.5.5 is currently running.
    Apple Mobile Device service 3.3.0.0 is currently running.
    Universal Serial Bus Controllers:
    Intel(R) ICH9 Family USB Universal Host Controller - 2934.  Device is working properly.
    Intel(R) ICH9 Family USB Universal Host Controller - 2935.  Device is working properly.
    Intel(R) ICH9 Family USB Universal Host Controller - 2936.  Device is working properly.
    Intel(R) ICH9 Family USB Universal Host Controller - 2937.  Device is working properly.
    Intel(R) ICH9 Family USB Universal Host Controller - 2938.  Device is working properly.
    Intel(R) ICH9 Family USB Universal Host Controller - 2939.  Device is working properly.
    Intel(R) ICH9 Family USB2 Enhanced Host Controller - 293A.  Device is working properly.
    Intel(R) ICH9 Family USB2 Enhanced Host Controller - 293C.  Device is working properly.
    No FireWire (IEEE 1394) Host Controller found.

    Here is what worked for me:
      My usb hub, being usb2, was too fast. I moved the wire to a usb port directory on my pc. That is a usb1 port which is slow enough to run your snyc.

  • Trouble with Toshiba built-in webcam: "unable to enumerate USB device"

    I am running archlinux on a Toshiba Satellite L70-B-12H laptop, and having troubles with the Webcam. *Once in a while*, everything goes well and I get
    # lsusb
    Bus 004 Device 002: ID 8087:8000 Intel Corp.
    Bus 004 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
    Bus 003 Device 004: ID 04f2:b448 Chicony Electronics Co., Ltd
    Bus 003 Device 003: ID 8087:07dc Intel Corp.
    Bus 003 Device 002: ID 8087:8008 Intel Corp.
    Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
    Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
    Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
    # dmesg
    [ 3433.456115] usb 3-1.3: new high-speed USB device number 4 using ehci-pci
    [ 3433.781119] media: Linux media interface: v0.10
    [ 3433.809842] Linux video capture interface: v2.00
    [ 3433.826889] uvcvideo: Found UVC 1.00 device TOSHIBA Web Camera - HD (04f2:b448)
    [ 3433.835893] input: TOSHIBA Web Camera - HD as /devices/pci0000:00/0000:00:1a.0/usb3/3-1/3-1.3/3-1.3:1.0/input/input15
    [ 3433.835976] usbcore: registered new interface driver uvcvideo
    [ 3433.835977] USB Video Class driver (1.1.1)
    Unfortunately, *most of the time* the camera seems invisible to my system, and I get
    # lsusb
    Bus 004 Device 002: ID 8087:8000 Intel Corp.
    Bus 004 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
    Bus 003 Device 003: ID 8087:07dc Intel Corp.
    Bus 003 Device 002: ID 8087:8008 Intel Corp.
    Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
    Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
    Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
    (note the missing "04f2:b448 Chicony Electronics Co., Ltd" device), and
    # dmesg
    [ 480.104252] usb 3-1.3: new full-speed USB device number 4 using ehci-pci
    [ 480.171097] usb 3-1.3: device descriptor read/64, error -32
    [ 480.341235] usb 3-1.3: device descriptor read/64, error -32
    [ 480.511375] usb 3-1.3: new full-speed USB device number 5 using ehci-pci
    [ 480.578007] usb 3-1.3: device descriptor read/64, error -32
    [ 480.748151] usb 3-1.3: device descriptor read/64, error -32
    [ 480.918282] usb 3-1.3: new full-speed USB device number 6 using ehci-pci
    [ 481.325196] usb 3-1.3: device not accepting address 6, error -32
    [ 481.392091] usb 3-1.3: new full-speed USB device number 7 using ehci-pci
    [ 481.798926] usb 3-1.3: device not accepting address 7, error -32
    [ 481.799166] hub 3-1:1.0: unable to enumerate USB device on port 3
    Searching on the web, most results I found lead to this page, where it is said that the problem is due to badly tuned overcurrent protection, and advocated that unplugging and switching off the computer for a little while gets things back into normal. This does not really work for me; the problem seems to occur more randomly, unfortunately with high probability (my camera is available after less than one boot out of ten).
    I tried to ensure that the ehci-hcd module is loaded at boot with the ignore-oc option (with a file in /etc/module-load.d/), to no avail.
    I also wrote a script which alternatively removes and reloads the ehci-pci driver until my device is found in lsusb. It is sometimes helpful, but usually not. And even when my device is found that way, it can only be used for a while before disappearing again.
    Anyway, such a hack is unacceptable... So, my questions are:
    is it indeed related to overcurrent protection ?
    is there anything else I can try ?
    should I file somewhere an other of the numerous bug reports about "unable to enumerate USB device" already existing ?
    If of any importance, I am running linux 3.15.7, because at the time I installed my system, I couldn't get the hybrid graphic card Intel/AMD working under 3.16.
    Last edited by $nake (2014-10-18 16:29:06)

    uname -a
    Linux libra 3.9.4-1-ARCH #1 SMP PREEMPT Sat May 25 16:14:55 CEST 2013 x86_64 GNU/Linux
    pacman -Qi linux
    Name : linux
    Version : 3.9.4-1
    Description : The linux kernel and modules
    Architecture : x86_64
    URL : http://www.kernel.org/
    Licences : GPL2
    Groups : base
    Provides : kernel26=3.9.4
    Depends On : coreutils linux-firmware kmod mkinitcpio>=0.7
    Optional Deps : crda: to set the correct wireless channels of your country
    Required By : nvidia
    Optional For : None
    Conflicts With : kernel26
    Replaces : kernel26
    Installed Size : 65562.00 KiB
    Packager : Tobias Powalowski <[email protected]>
    Build Date : Sat 25 May 2013 16:28:17 CEST
    Install Date : Sun 02 Jun 2013 15:30:35 CEST
    Install Reason : Explicitly installed
    Install Script : Yes
    Validated By : Signature

  • Hi, i am having trouble with my mac mail account, i cannot send or receive any emails because of the server connection problems. Message says it could not be connected to SMTP server. Thanks in advance for your help.

    Hi, i am having trouble with my mac mail account, i cannot send or receive any emails because of the server connection problems. Message says it could not be connected to SMTP server. Thanks in advance for your help.

    Hello Sue,
    I have an iPad 3, iPad Mini and iPhone 5S and they are all sluggish on capitalisation using shift keys. I hope that Apple will solve the problem because it is driving me crazy.
    I find using a Microsoft Surface and Windows 8 phone, which I also have, work as well as all the ios devices before the ios 7 upgrade.
    It has something to do with the length of time that you need to hold the shift key down. The shift key needs to be held longer than the letter key for the capitalisation to work. For some reason, this is a major change in the way we have learnt to touch type on computers. I am having to relearn how to type!
    Michael

Maybe you are looking for

  • How can I get a pdf file in a word document?

    How can I get a pdf file into a word document?

  • Material creation without user intervention

    i have to create a material without user intervention. i am using BAPI_MATERIAL_SAVEDATA for this. it is not showing any error. but the return is having the message 'No description found'. how to transfer the description to this bapi. this is the cod

  • Regarding File being written to Appl server

    Hi Pals, Can we restrict the size of the file that is being written to the application server through Open dataset or any other command. We have a report which selects data based on a given time period. The problem we are facing is that even for a pe

  • PDF imbedded in XML

    Hi we are currently reviewing the possible solutions for imbedding PDF into XML. Our scenario is as follow. We want to sent a generated PDF to PI (7.1) from SAP ERP 6. So: SAP ERP 6 ->Send XML control data(docnr, date etc) + Generated PDF->PI->Map Ge

  • Converting from IPOD Shuffle to New Ipod

    I previously had an IPOD Shuffle and received a new Ipod for Xmas. I have 42 songs on my shuffle and would like to convert them to my new Ipod. I have a Gateway Computer with Windows. I would like to give my son my Shuffle as it is not even a year ol