DataGrid display problem (was WebService: nested return object)

I am invoking a web service which works fine.
resultFormat = "object"
the event.result = an ArrayCollection, it has two
ObjectProxys wrapping the actual objects.
I can check them in the debugger - the values are as
expected.
Person
personId:long
name:PersonName
PersonName - also wrapped in ObjectProxy
first:String
last:String
The DataGrid will corectly display the dataField="personId".
It displays dataField="name" as '[object Object]'
It displays dataField="name.first" as blank.
Am I navigating this incorrectly?
Will it not navigate complex data types?
Now do I get to the name?
Does resultFormat="object" of the WebService not work?
Must I use resultFormat="e4x"? If so, how do I navigate into
that?
(using FlexBuilder 3)

I can pare it down as far as this, which removes the
WebService from the equation:
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="
http://www.adobe.com/2006/mxml"
>
<mx:Model id="testModel">
<root>
<partyId>123</partyId>
<name>
<firstName>Bob</firstName>
<lastName>Jones</lastName>
</name>
</root>
</mx:Model>
<mx:Script>
<![CDATA[
import mx.collections.ArrayCollection;
private function find():void {
var persons:ArrayCollection = new ArrayCollection();
persons.addItem(testModel);
grid.dataProvider = persons;
]]>
</mx:Script>
<mx:Button label="fill grid with one item"
id="searchButton" click="find()"/>
<mx:DataGrid id="grid">
<mx:columns>
<mx:DataGridColumn headerText="Column 1"
dataField="partyId"/>
<mx:DataGridColumn headerText="Column 2"
dataField="name"/>
<mx:DataGridColumn headerText="Column 3"
dataField="name.firstName"/>
</mx:columns>
</mx:DataGrid>
<mx:TextArea id="returnText"
text="{grid.dataProvider.toString()}"/>
</mx:Application>

Similar Messages

  • DataGrid display problem

    Hi,
    I've given specific height to my grid, i've lots of records
    in the grid. Say, my given height to the grid display 5 records at
    a time. The problem is the partial of six record has also coming
    beneth the grid! Even I use grid.invalidateDisplayList method, it
    also coming at the beneath of the grid! and when i'm scrolling the
    grid, that last record of the present display list, still making
    some very visual disturbment!
    Any workrout around..? Any help!
    Thanks,
    ASB

    You need to define your datagrid columns with the dateField
    property appropriately set. Also, ArrayCollection is not something
    that you use as a child of the DataGrid tag. Use the following
    code, It works as per your requirement.
    <?xml version="1.0"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml">
    <mx:DataGrid width="500" dataProvider="{myarr}">
    <mx:columns>
    <mx:DataGridColumn dataField="id"/>
    <mx:DataGridColumn dataField="name"/>
    </mx:columns>
    </mx:DataGrid>
    <mx:ArrayCollection id="myarr">
    <mx:Object>
    <mx:id>123456789123456789</mx:id>
    <mx:name>Peter</mx:name>
    </mx:Object>
    <mx:Object>
    <mx:id>123456789012345678</mx:id>
    <mx:name>Kristina</mx:name>
    </mx:Object>
    </mx:ArrayCollection>
    </mx:Application>
    Thanks
    Harish

  • Heavyweight object display problems

    I am currently having a problem when displaying a heavyweight object over the top of a lightweight object. When the heavyweight object is made visible it redraws itself, and in the process of doing so leaves what was behind it gray so it creates a gray flash every time the heavyweight object is displayed or removed. The heavyweight object is a QuickTime QTCanvas. Does anyone know how I might get around this? QuickTime for Java also provides a lightweight object called JQTCanvas, but the performance is to slow that it causes sync problems with the art and audio.

    Try overriding your QTCanvas's update(Graphics) method so that it simply calls paint(Graphics) (i.e., without clearing the background).
    Hope this helps.

  • Problem on PC: During import, I can locate the sources folder however the photo do not display. Was working fine.

    Problem on PC: During import, I can locate the sources folder however the photo do not display. Was working fine. All file types, Lightroom is no longer recognising the images to import, The panel that usually displays them remains empty.  Try using backup versions, removing software that could conflict , still no joy, has anyone had this problem?

    Did you follow this procedure?
    Our iTunes guru Terence Devlin advises the following:
    1. Quit iTunes
    2. Drag the iTunes folder from your internal hd - located in ~/Music folder - to your external hd. DO NOT delete the original one from your internal hd... yet!
    3. When the transfer is complete, press and hold the Option(alt) key and fire up iTunes.
    4. A "Choose iTunes Library" window will come up. Click on the "Choose Library" button.
    5. Navigate to where the iTunes folder is located in the external hd.
    6. Within the iTunes folder, select the iTunes Library file and click Choose...
    That's it. iTunes will now display all your playlists, songs, movies, podcasts etc. At this point, should you wish, you can delete the iTunes folder from the internal hd to free up space.
    More info:
    http://support.apple.com/kb/HT1751
    Or if you prefer a more complicated explanation:
    http://www.ilounge.com/index.php/articles/comments/moving-your-itunes-library-to -a-new-hard-drive

  • Problem in passing/returning objects over dynamic web service call

    Hi Friends,
    I am beginner in java web service.
    Here is the problem I am facing when I pass/return user defined objects to remote web service method using dynamic we service call.
    The client can call the remote web service method in 2 ways.
    1. By generating client stubs using WSDL file
    - In this case, I am able to pass/return the user defined objects to remote method without any issue only when the server side web services are deployed in any server(jboss)
    - But in java 1.6 & above, the web services can be deployed without server using endpoint. In this case, I am not able to pass/return objects over web service calls.
    2. Without generating client stubs (dynamic web service call)
    - This will establish a connection at run time using the given WSDL file (I have attached the document). I have to form an XML(This will contain API name, arguments) string as input at run time
    - In this case, it allows only string as argument while passing & returning.
    Please let me know if you can help me on this.
    Regards,
    pani

    I'm not sure about your question, but this might help:
    [http://forum.java.sun.com/thread.jspa?threadID=5251188|http://forum.java.sun.com/thread.jspa?threadID=5251188]
    You might also want to read on JAXB.

  • Getting WebService return object in BPEL

    I have a simple WebService that returns a DTO object:
    public MyDTO testDTO(String s1, String s2){
    MyDTO myDTO = new MyDTO();
    myDTO.setInput1(s1);
    myDTO.setInput2(s2);
    return myDTO;
    public class MyDTO implements Serializable{
    public MyDTO() {
    private String input1;
    private String input2;
    //getters n setters are here
    I deployed this as AXIS WebService in TomCat successfully.
    <service name="elogService" provider="java:RPC" style="wrapped" use="literal">
    <operation name="testDTO" qname="ns11:testDTO" returnQName="ns11:MyDTOReturn" returnType="ns51:com.MyDTO" soapAction="" xmlns:ns11="http://services.xyz.com" xmlns:ns51="http://dto.abc.com">
    <parameter qname="ns11:s1" type="xsd:string" xmlns:xsd="http://www.w3.org/2001/XMLSchema"/>
    <parameter qname="ns11:s2" type="xsd:string" xmlns:xsd="http://www.w3.org/2001/XMLSchema"/>
    </operation>
    <parameter name="allowedMethods" value="testDTO"/>
    <parameter name="typeMappingVersion" value="1.2"/>
    <parameter name="className" value="com.TestDTOWS"/>
    <parameter name="wsdlServicePort" value="VisilogAddServicePort"/>
    <parameter name="schemaQualified" value="http://services.xyz.com,http://dto.abc.com"/>
    <parameter name="wsdlTargetNamespace" value="http://services.xyz.com"/>
    <parameter name="wsdlServiceElement" value="elogService"/>
    <typeMapping deserializer="org.apache.axis.encoding.ser.BeanDeserializerFactory" encodingStyle="" qname="ns31:MyDTO" serializer="org.apache.axis.encoding.ser.BeanSerializerFactory" type="java:com.MyDTO" xmlns:ns31="http://dto.abc.com"/>
    </service>
    In BPEL. I created a partnerLink and invoked it. In the BPEL Console, on giving inputs "a" and "b", i see the following message on invoke node:
    Invoked 2-way operation "testDTO" on partner "DTOWS_PartnerLink".
    - <messages>
    - <Invoke_1_testDTO_InputVariable>
    - <part xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="parameters">
    - <testDTO xmlns="http://services.xyz.com">
    <s1>a</s1>
    <s2>b</s2>
    </testDTO>
    </part>
    </Invoke_1_testDTO_InputVariable>
    - <Invoke_1_testDTO_OutputVariable>
    - <part xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="parameters">
    - <testDTOResponse xmlns="http://services.xyz.com">
    - <MyDTOReturn xsi:type="ns1:MyDTO" xmlns:ns1="http://dto.abc.com" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <input1>a</input1>
    <input2>b</input2>
    </MyDTOReturn>
    </testDTOResponse>
    </part>
    </Invoke_1_testDTO_OutputVariable>
    </messages
    I assigned one of the WebService output variable to the result. At Assign node, i get the following message:
    Error in evaluate <from> expression at line "98". The result is empty for the XPath expression : "/ns1:testDTOResponse/ns1:MyDTOReturn/ns2:input1".
    oracle.xml.parser.v2.XMLElement@199822c
    "{http://schemas.xmlsoap.org/ws/2003/03/business-process/}selectionFailure" has been thrown.
    - <selectionFailure xmlns="http://schemas.xmlsoap.org/ws/2003/03/business-process/">
    - <part name="summary">
    <summary>
    empty variable/expression result.
    xpath variable/expression expression "/ns1:testDTOResponse/ns1:MyDTOReturn/ns2:input1" is empty at line 98, when attempting reading/copying it.
    Please make sure the variable/expression result "/ns1:testDTOResponse/ns1:MyDTOReturn/ns2:input1" is not empty.
    </summary>
    </part>
    </selectionFailure>
    My input1 is not empty. I can see the result at the invoke node. It has "a" content in input1. What am i missing here. What are the places i need to check for.
    Thanks....

    I modified the WebService. Now WSDL file looks as follows:
    <wsdl:types>
    <schema elementFormDefault="qualified" targetNamespace="http://dto.com">
    <element name="s1" type="xsd:string"/>
    <element name="s2" type="xsd:string"/>
    <complexType name="com.MyDTO">
    <sequence>
    <element name="input1" nillable="true" type="xsd:string"/>
    <element name="input2" nillable="true" type="xsd:string"/>
    </sequence>
    </complexType>
    <element name="testDTOReturn" type="impl:com.MyDTO"/>
    </schema>
    </wsdl:types>
    However My error still persists:
    Error in evaluate <from> expression at line "98". The result is empty for the XPath expression : "/ns3:testDTOReturn/ns3:input1".
    <summary>
    empty variable/expression result.
    xpath variable/expression expression "/ns3:testDTOReturn/ns3:input1" is empty at line 98, when attempting reading/copying it.
    Please make sure the variable/expression result "/ns3:testDTOReturn/ns3:input1" is not empty.
    </summary>
    At invoke node this is the message:
    <Invoke_1_testDTO_OutputVariable>
    - <part xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="testDTOReturn">
    - <s1Return xsi:type="ns1:com.MyDTO" xmlns="http://dto.com" xmlns:ns1="http://dto.com" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <ns1:input1>1111</ns1:input1>

  • Could not find the main class - Problem with Webservice-Access

    Hello Everybody,
    I'm having serious Problems with accessing a WebService (Tomcat-Axis) per executable jar-File.
    I constructed a simple GUI with 3 Textboxes 1 Button and 1 Resultbox.
    I use eclipse so it was no Problem to simple generate the Backgroundclient by Processing the .wsdl-File of the WS.
    Now I do this:
    Head_tServiceLocator serviceLocator = new Head_tServiceLocator();
    Head_t service = serviceLocator.getRPCCall();
    RPCCallSoapBindingStub Head_t = (RPCCallSoapBindingStub) service;and use the Webservice like an Object.
    All this works very well.
    Now the Problem:
    Head_t service = serviceLocator.getRPCCall();this Line has to throw a ServiceException.
    If i add a try-catch Block to Process the Message JAVA tells me after i exported to JAR (with Manifest-stuff and so on) and double Click on the JAR the following :
    Could not find the main Class - Program will exit.
    And if i add a throws Declaration to the Methodheader it tells me:
    Fatal Exception Occured - Program will exit
    But if i Comment out that Line at least the GUI is being displayed (so it DOES find the main-Class). But then of course the Webservice won't be accessed.
    All the JARs needed (axis.jar, commons-discovery.jar and so on) are in the same Directory as the Webservice-Client.jar
    Please Help me.
    Greets,
    Zap

    I am not done any typing mistake while creating the jar file i already followed the suggestion that you have mentioned but still the same error .
    This is my MANIFEST.MF file created under META-INF folder
    Manifest-Version: 1.0
    Class-Path: qtjambi-4.4.3_01.jar qtjambi-win32-msvc2005-4.4.3_01.jar
    Created-By: 1.5.0 (Sun Microsystems Inc.)
    Main-Class: Ui_MainWindow
    When i extracted the app.jar following this i got
    1. META-INF folder inside that MAINFEST.MF file the contents i have already placed above
    2. qtjambi-4.4.3_01.jar
    3. qtjambi-win32-msvc2005-4.4.3_01.jar
    4. Ui_MainWindow.class
    Please tell me whats wrong in that i can also give you the app.jar file please let me know the email id ..

  • OO4 character Display Problem

    Hi All,
    I am using Oracle OLE objects to connect to Oracle 9.2 DB
    The NLS Language for the Database is AMERICAN_AMERICA.AR8ISO8859P6
    the client is using also the same NLS.
    When I retrive the information using OO4 some varchar2(Arabic Language) are return incorrectly from the DB, however when I use ADO on the same clinet it's correctly retrive all Data.
    I've only on home at my PC, and its NLS language is correct, even when I use SQL*Pluse the characters are displayed correctly.
    I also retrieved the NLS_LANG from the application using "SELECT USERENV ('LANGUAGE') FROM DUAL"
    and it was correct using ADO and OO4.
    Of course I've checked the registry value NLS_LANG and it's also AMERICAN_AMERICA.AR8ISO8859P6
    Any Help????

    I think after all it is a problem with the either:
    a. OS installer, which should really try to delete fonts which are duplicated by new system fonts
    b. OS which should give precedence to new system fonts over old system fonts where there are two the same, especially when the system fonts are in /System/Library/Fonts and the old ones are in /Library/Fonts
    The major annoyance is that this problem appeared with Leopard and took me hours of searching to figure out its origin - when you don't know if it is a character entry problem (which I thought) or a character display problem (which it turned out to be). In the end the fix was simple - delete the superceded fonts.

  • Alert Message displayed according to WebService response

    I've created and used a Web Service in my VC application which simply send a mail. This Web Service returns a boolean response which indicates if the mail has been correctly sent. I want to inform the user accordingly with an alert message.
    If the response is correct, I want the user to be processed to confirmation page;
    If the response is uncorrect, I want to inform th user accordingly.
    Which operator should I use?
    Do I have to use the output point of my Web Service object?
    Thanks

    Hi,
    Thanks Fabien for your answer ... but it hasn't solved completely my problem.
    My webservice effectively returns a boolean, and I use this boolean to show wether a confirmation message or a error alert. But the alert form (which is normally displayed only if WSReturn == "false") is by default always displayed. The response sent by my webservice seems to be by default set to false... very strange, isn't it?
    Has anybody encountered such a situation? I just would like to display one form or the other depending of the result of my WS call.

  • Wierd lines on my display and frequent lock-ups w/ and w/o display problems

    When booting I sometimes get weird lines and blocks on my display (the GRAY Apple screen) and then it hangs, other times the computer will boot and run fine for 20-30 minutes and then the display goes wonkers with blocks and lines and the computer does not respond. The only way I can get it to boot is to reset the PRAM by letting it CHIME 3x and then occasionally it will boot without issue and run, while other times I still get the blocks and lines on the display.
    When I am able to get it to recover and re-boot after the lock-up and display problems and occasionally the box in the middle asking me to re-boot similar to a kernel panic the OPS gives me the option to REPORT the error and here is the error for others who would know more...
    Thank you in advance,
    Darren
    Interval Since Last Panic Report: 104960 sec
    Panics Since Last Report: 5
    Anonymous UUID: 7D1AEF43-7E19-4F58-A1E0-48FA992A2814
    Wed Nov 18 15:49:50 2009
    panic(cpu 0 caller 0x9cdb10): NVRM[0/1:0:0]: Read Error 0x00009410: CFG 0xffffffff 0xffffffff 0xd2000000, BAR0 0xd2000000 0x5d3e2000 0x084700a2, D0, P1/4
    Backtrace (CPU 0), Frame : Return Address (4 potential args on stack)
    0x5c99b7d8 : 0x21b2bd (0x5cf868 0x5c99b80c 0x223719 0x0)
    0x5c99b828 : 0x9cdb10 (0xbb7fec 0xc209c0 0xbc3660 0x0)
    0x5c99b8c8 : 0x147690d (0x8b5ac04 0x7edf004 0x9410 0xabd962)
    0x5c99b908 : 0x1534e6a (0x7edf004 0x9410 0x5c99b968 0x9)
    0x5c99b948 : 0xb51ca5 (0x7edf004 0x91ed004 0x0 0x0)
    0x5c99b968 : 0xac155b (0x91ed004 0x5c99baa4 0x0 0x0)
    0x5c99b9b8 : 0x145f290 (0x7edf004 0x3d0900 0x5c99baa4 0x0)
    0x5c99bad8 : 0xab2821 (0x7edf004 0x91cf004 0x815200c 0x200)
    0x5c99bb18 : 0xb1f172 (0x7edf004 0x91cf004 0xeb9bcc0 0xeb9bc04)
    0x5c99bbc8 : 0xb202db (0x7edf004 0x91f0404 0x0 0x0)
    0x5c99bc58 : 0x14bb7a3 (0x7edf004 0x91f0404 0x9 0x2)
    0x5c99bd68 : 0x14ed407 (0x7edf004 0x91cf404 0x0 0x0)
    0x5c99be98 : 0xad3934 (0x7edf004 0x91ca404 0x0 0x0)
    0x5c99bec8 : 0x9d61fb (0x7edf004 0x91ca404 0x0 0x0)
    0x5c99bf08 : 0x5491b5 (0x0 0x9499680 0x1 0x29c50a)
    0x5c99bf58 : 0x5481e6 (0x9499680 0x1 0x5c99bf88 0x547d9d)
    0x5c99bf88 : 0x548640 (0x8abaf00 0x7e9ecc0 0xe780850c 0x2a6e5f)
    0x5c99bfc8 : 0x29d68c (0x8abaf00 0x0 0x10 0x88bbfc4)
    Kernel Extensions in backtrace (with dependencies):
    com.apple.nvidia.nv50hal(6.0.6)@0x136b000->0x17f1fff
    dependency: com.apple.NVDAResman(6.0.6)@0x96f000
    com.apple.NVDAResman(6.0.6)@0x96f000->0xc21fff
    dependency: com.apple.iokit.IOPCIFamily(2.6)@0x932000
    dependency: com.apple.iokit.IONDRVSupport(2.0)@0x961000
    dependency: com.apple.iokit.IOGraphicsFamily(2.0)@0x943000
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    10C540
    Kernel version:
    Darwin Kernel Version 10.2.0: Tue Nov 3 10:37:10 PST 2009; root:xnu-1486.2.11~1/RELEASE_I386
    System model name: MacBookPro3,1 (Mac-F4238BC8)
    System uptime in nanoseconds: 3788331456483
    unloaded kexts:
    com.apple.driver.AppleFileSystemDriver 2.0 (addr 0xf02000, size 0x12288) - last unloaded 94521475551
    loaded kexts:
    org.virtualbox.kext.VBoxNetAdp 2.2.2
    org.virtualbox.kext.VBoxNetFlt 2.2.2
    org.virtualbox.kext.VBoxUSB 2.2.2
    org.virtualbox.kext.VBoxDrv 2.2.2
    com.bresink.driver.BRESINKx86Monitoring 5.0
    com.pctools.iantivirus.kfs 1.0.1
    com.apple.driver.AppleHWSensor 1.9.2d0 - last loaded 31800108689
    com.apple.filesystems.ntfs 3.1
    com.apple.filesystems.autofs 2.1.0
    com.apple.driver.AppleHDA 1.7.9a4
    com.apple.driver.AirPort.Atheros 412.19.4
    com.apple.kext.AppleSMCLMU 1.4.5d1
    com.apple.driver.SMCMotionSensor 3.0.0d4
    com.apple.DontSteal_Mac_OSX 7.0.0
    com.apple.driver.AudioIPCDriver 1.1.2
    com.apple.driver.AppleIntelMeromProfile 19
    com.apple.driver.ACPISMCPlatformPlugin 4.0.1d0
    com.apple.driver.AppleLPC 1.4.9
    com.apple.driver.AppleBacklight 170.0.14
    com.apple.driver.AppleUpstreamUserClient 3.1.0
    com.apple.GeForce 6.0.6
    com.apple.driver.AppleUSBTrackpad 1.8.0b4
    com.apple.driver.AppleUSBTCKeyEventDriver 1.8.0b4
    com.apple.driver.AppleUSBTCKeyboard 1.8.0b4
    com.apple.iokit.SCSITaskUserClient 2.6.0
    com.apple.BootCache 31
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib 1.0.0d1
    com.apple.iokit.IOAHCIBlockStorage 1.6.0
    com.apple.iokit.AppleYukon2 3.1.14b1
    com.apple.driver.AppleAHCIPort 2.0.1
    com.apple.driver.AppleSmartBatteryManager 160.0.0
    com.apple.driver.AppleIntelPIIXATA 2.5.0
    com.apple.driver.AppleUSBHub 3.8.4
    com.apple.driver.AppleFWOHCI 4.4.0
    com.apple.driver.AppleUSBEHCI 3.7.5
    com.apple.driver.AppleUSBUHCI 3.7.5
    com.apple.driver.AppleEFINVRAM 1.3.0
    com.apple.driver.AppleRTC 1.3
    com.apple.driver.AppleHPET 1.4
    com.apple.driver.AppleACPIButtons 1.3
    com.apple.driver.AppleSMBIOS 1.4
    com.apple.driver.AppleACPIEC 1.3
    com.apple.driver.AppleAPIC 1.4
    com.apple.security.sandbox 0
    com.apple.security.quarantine 0
    com.apple.nke.applicationfirewall 2.1.11
    com.apple.driver.AppleIntelCPUPowerManagementClient 96.0.0
    com.apple.driver.AppleIntelCPUPowerManagement 96.0.0
    com.apple.driver.DspFuncLib 1.7.9a4
    com.apple.driver.AppleProfileReadCounterAction 17
    com.apple.driver.AppleProfileTimestampAction 10
    com.apple.driver.AppleProfileThreadInfoAction 14
    com.apple.driver.AppleProfileRegisterStateAction 10
    com.apple.driver.AppleProfileKEventAction 10
    com.apple.driver.AppleProfileCallstackAction 20
    com.apple.iokit.IOFireWireIP 2.0.3
    com.apple.iokit.IO80211Family 310.6
    com.apple.iokit.IOSurface 73.0
    com.apple.iokit.IOBluetoothSerialManager 2.2.4f3
    com.apple.iokit.IOSerialFamily 10.0.3
    com.apple.iokit.IOAudioFamily 1.7.2fc1
    com.apple.kext.OSvKernDSPLib 1.3
    com.apple.driver.AppleHDAController 1.7.9a4
    com.apple.iokit.IOHDAFamily 1.7.9a4
    com.apple.iokit.AppleProfileFamily 41
    com.apple.driver.AppleSMC 3.0.1d2
    com.apple.driver.IOPlatformPluginFamily 4.0.1d0
    com.apple.nvidia.nv50hal 6.0.6
    com.apple.NVDAResman 6.0.6
    com.apple.iokit.IONDRVSupport 2.0
    com.apple.iokit.IOGraphicsFamily 2.0
    com.apple.driver.CSRUSBBluetoothHCIController 2.2.4f3
    com.apple.driver.AppleUSBBluetoothHCIController 2.2.4f3
    com.apple.iokit.IOBluetoothFamily 2.2.4f3
    com.apple.iokit.IOUSBHIDDriver 3.8.4
    com.apple.driver.AppleUSBMergeNub 3.8.5
    com.apple.driver.AppleUSBComposite 3.7.5
    com.apple.iokit.IOSCSIMultimediaCommandsDevice 2.6.0
    com.apple.iokit.IOBDStorageFamily 1.6
    com.apple.iokit.IODVDStorageFamily 1.6
    com.apple.iokit.IOCDStorageFamily 1.6
    com.apple.driver.XsanFilter 402.1
    com.apple.iokit.IONetworkingFamily 1.9
    com.apple.iokit.IOATAPIProtocolTransport 2.5.0
    com.apple.iokit.IOSCSIArchitectureModelFamily 2.6.0
    com.apple.iokit.IOAHCIFamily 2.0.2
    com.apple.iokit.IOATAFamily 2.5.0
    com.apple.iokit.IOUSBUserClient 3.8.5
    com.apple.iokit.IOFireWireFamily 4.1.7
    com.apple.iokit.IOUSBFamily 3.8.5
    com.apple.driver.AppleEFIRuntime 1.3.0
    com.apple.iokit.IOHIDFamily 1.6.1
    com.apple.iokit.IOSMBusFamily 1.1
    com.apple.kext.AppleMatch 1.0.0d1
    com.apple.security.TMSafetyNet 6
    com.apple.driver.DiskImages 281
    com.apple.iokit.IOStorageFamily 1.6
    com.apple.driver.AppleACPIPlatform 1.3
    com.apple.iokit.IOPCIFamily 2.6
    com.apple.iokit.IOACPIFamily 1.3.0
    Model: MacBookPro3,1, BootROM MBP31.0070.B07, 2 processors, Intel Core 2 Duo, 2.2 GHz, 4 GB, SMC 1.16f11
    Graphics: NVIDIA GeForce 8600M GT, GeForce 8600M GT, PCIe, 128 MB
    Memory Module: global_name
    AirPort: spairportwireless_card_type_airportextreme (0x168C, 0x87), Atheros 5416: 2.0.19.4
    Bluetooth: Version 2.2.4f3, 2 service, 0 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    PCI Card: pci168c,24, sppci_othernetwork, PCI Slot 5
    Serial ATA Device: ST9320421ASG, 298.09 GB
    Parallel ATA Device: MATSHITADVD-R UJ-857E
    USB Device: Built-in iSight, 0x05ac (Apple Inc.), 0x8502, 0xfd400000
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac (Apple Inc.), 0x021a, 0x5d200000
    USB Device: Bluetooth USB Host Controller, 0x05ac (Apple Inc.), 0x8205, 0x1a100000
    Anyone know what is causing my problems? I thought it was heat so I downloaded a CPU and FAN temperature monitor and the CPU was getting VERY HOT at first so I then ramped-up the CPU FAN SPEED to maximum - it turns out the CPU FAN was not rotating well at low speed - since then I have cleaned and checked the fans and they all work as they should and blow on high(er) when the CPU temperature is above a certain level.

    S.U.
    Is there a kb article or something that would illuminate what to look for in these logs, or is it a matter of learning by osmosis?
    Both. I am not skilled in reading logs. It is a very technical and time consuming task for the uninitiated (me!) In scanning a log I look for the backtrace and loading dependencies. The first item in the backtrace is usually the roadblock.
    Beyond that you can look at the Technical Note TN2063: Understanding and Debugging Kernel Panics
    Should make for good bedtime reading. Puts you right to sleep.
    c

  • Display Problem with RowHeader of a Scroll Pane

    Hi,
    I am trying to display row headers for a table using another table
    Here is the code
    import javax.swing.*;
    import javax.swing.table.*;
    public class RowNumberHeader extends JTable {
      protected JTable mainTable;
      public RowNumberHeader(JTable table) {
        super();
        mainTable = table;
        setModel(new RowNumberTableModel());
        setRowSelectionAllowed(false);
        JComponent renderer = (JComponent)getDefaultRenderer(Object.class);
      public int getRowHeight(int row) {
        return mainTable.getRowHeight();
      class RowNumberTableModel extends AbstractTableModel {
        public int getRowCount() {
          return mainTable.getModel().getRowCount();
        public int getColumnCount() {
          return 1;
        public Object getValueAt(int row, int column) {
          return new Integer(row + 1);
    }and then
            JTable displayTable = new JTable(...);
            scrollPane = new JScrollPane(displayTable);
            JViewport jvp = new JViewport();
            jvp.setView(new RowNumberHeader(displayTable));
            scrollPane.setRowHeader(jvp);the problem I have is that when a row is selected inside the row header, some rows go blank and you can see the selection is all screwed up. I tried setting the selection mode to ListSelectionModel.SINGLE_SELECTION but that didn't help.
    A refresh of the entire screen (minimize/maximize) seems to resolve the problem. I am using jdk1.4.1 in Windows 2000.
    Any ideas?
    Sylvain

    Again the problem is that when you click on the row headers, some row header rows go blank (completely white) so you can't see what they show.
    ie say I have table
    Row 1 - 1  2  3
    Row 2 - 2  4  5
    Row 3 - 5  7  7
    Row 4 - 5  6  7where Row X is the row header. So for example, if you click on Row 2, you will get something like
    Row 1 - 1  2  3
    Row 2 - 2  4  5
          - 5  7  7
    Row 4 - 5  6  7until the screen is refreshed or you click some other row header.
    hmm ok, I added calling repaint on the table whenever a row is selected and at least the display problem goes away; however, the selected indexes from the event don't always match the index of the row selected. I think actually that may be the source of the display problem.
    Here is the code I added in the constructor:
            getSelectionModel().addListSelectionListener(new ListSelectionListener()
                public void valueChanged(ListSelectionEvent e)
                    System.out.println("Header table selection is: First = " + e.getFirstIndex() +
                                       " Last = " + e.getLastIndex());
                    RowNumberHeader.this.repaint();
            });

  • Weird event display problem in week view

    Hi. I'm getting a weird display problem in week view. First time this has ever happened.
    Some events appear to be missing, but when i double click on where I know the event is supposed to be, a new event is created (as excepted), and the missing events suddenly appear. When i move forward or back by a week, and then return to the week in question, the missing events are gone again. But, I can see the missing events in day view or month view.
    Any ideas?

    Dean,
    Next, try reinstalling the Mac OS X v10.6.2 Update (Combo).
    If that is unsuccessful:
    1. Use iCal>Export...>for each one of your individual calendars.
    2. Delete all but one of your calendars.
    3. Create a calendar and name it "Test."
    4. Delete the calendar which remained after step #2.
    5. Quit iCal.
    6. Remove the iCal plist, and drag the iCal plist file to your Desktop.
    7. Log out/in or restart.
    8. Restart iCal and use iCal>File>Import...for each one of the calendars that you exported in step #1.
    9. Delete the "Test" calendar, and any "Home/Work" calendar which was automatically created when you opened iCal in step #8.
    ;~)

  • Weird iMac/iTunes/iPod display problem

    iPod Touch G5, IOS 8.02
    iMac desktop OS 10.9.5
    This began when my WiFi sync stopped working.  As far as I can recall, it was coincident with loading IOS-8.  For what it's worth, my WiFi sync with my original iPad (IOS-5.1.1) has been flawless.
    I tried a reboot but it didn't help so I did a Restore.  That solved the problem and, as far as I can determine, the iPod is working properly in all respects.  However, it created a problem with iTunes...
    After the Restore, the app displays on the iTunes screens show perhaps a third or a half of my apps grayed out.  See screen shot below.  You'll notice that the issue affects both Apple apps and non-Apple apps.  This did NOT happen before the Restore.  All apps look properly and work properly on the iPad (at least the half dozen that I tried).
    Note that this problem does NOT appear with the 5.1.1 iPad.
    I rebooted the iPod several times and nothing changed.  I tried a sync several times and nothing changed.  I did another Restore and it appeared to solve the problem - all apps displayed properly on iTunes.  Unfortunately, when I shut down iTunes and opened it up again the problem returned.  This happens with both with a WiFi connection and a cable connection.
    I tried a third Restore (yes, I'm a glutton for punishment).  Same result.  Problem temporarily resolved but returned after iTunes shut down and re-open.
    I trashed the Preferences plist file and allowed iTunes to create a new one.  No change.  I repaired Permissions.  No change.
    I tried to trash the iTunes application so that I could reload a brandy new version but a message appeared stating iTunes can not be modified or deleted because it’s required by the IOS.
    Any clues?
    iTunes displaying iPod IOS 8.02:
    iTunes displaying iPad IOS 5.1.1
    Result when attempt is made to trash iTunes:

    I ended up contacting AppleCare through the Chat agent and after a few misses, he instructed me to do an archive and install and presto - the problem is gone. I guess I had a corrupted installation from the factory.....

  • Weird iTunes iPod display problem

    iPod Touch G5, IOS 8.02
    iMac desktop OS 10.9.5
    This began when my WiFi sync stopped working.  As far as I can recall, it was coincident with loading IOS-8.  For what it's worth, my WiFi sync with my original iPad (IOS-5.1.1) has been flawless.
    I tried a reboot but it didn't help so I did a Restore.  That solved the problem and, as far as I can determine, the iPod is working properly in all respects.  However, it created a problem with iTunes...
    After the Restore, the app displays on the iTunes screens show perhaps a third or a half of my apps grayed out.  See screen shot below.  You'll notice that the issue affects both Apple apps and non-Apple apps.  This did NOT happen before the Restore.  All apps look properly and work properly on the iPad (at least the half dozen that I tried).
    Note that this problem does NOT appear with the 5.1.1 iPad.
    I rebooted the iPod several times and nothing changed.  I tried a sync several times and nothing changed.  I did another Restore and it appeared to solve the problem - all apps displayed properly on iTunes.  Unfortunately, when I shut down iTunes and opened it up again the problem returned.  This happens with both with a WiFi connection and a cable connection.
    I tried a third Restore (yes, I'm a glutton for punishment).  Same result.  Problem temporarily resolved but returned after iTunes shut down and re-open.
    I trashed the Preferences plist file and allowed iTunes to create a new one.  No change.  I repaired Permissions.  No change.
    I tried to trash the iTunes application so that I could reload a brandy new version but a message appeared stating iTunes can not be modified or deleted because it’s required by the IOS.
    Any clues?
    iTunes displaying iPod IOS 8.02:
    iTunes displaying iPad IOS 5.1.1
    Result when attempt is made to trash iTunes:

    I've just looked on the iTunes Store and there is now only episode 118 of "The Week In Media", so presumably the Podcast's producers have removed the faulty file.
    It's the Podcast's producer who provides the Podcast as a file - complete with its faults. The faulty file will be replaced, by the producer, when they realise there is a problem. It would be their (the producer's) responsibility to remove the faulty file. And therein lies the problem. If they do not remove the faulty file, iTunes and your iPod have to cope as best as they can with what appears to be two copies of the same file, with the same name!
    Imagine twin people, both with the same name! No wonder the iPod plays both!
    The resolution lies with the Podcast's producers. As with all Podcasts, they are completely independent of iTunes and Apple. All iTunes does is look for new episodes of the programmes you tell it to look for and then go and fetch them from where ever the producer stores them. They are not in the iTunes Store.
    Write to the producer of the podcast to let them know of your experience. Of course, they may not care!
    Actually, having proofread my reply, it occurs to me that what may be happening is that your iTunes is downloading the faulty file as soon as it's available, and then downloading the second, correct version when that becomes available, because it simply sees a new Podcast, not a replacement. The answer still lies with the producer. Perhaps they do not realise what is happening. Once again, write to them and let them know. Quote me if you wish.
    I personally think it's unlikely that Apple will devote resources to fix someone else's errors. I wouldn't if it was my business.

  • Making a datagrid display properly

    I am looking for an easy solution to make the datagrid
    display correctly. I would assume there is a way to display the
    data in the order of the xml document that is being loaded. Why
    would the component disregard the file it is sent, doing extra
    work, just to make it display in the wrong order? If I send XML
    with the product ID first and the cost second, why should cost come
    first? Is there any simple way to get around this maddnes (or do
    other programmers think that losing control over display logic is
    cool?).
    Sorry if this seems jaded, but I have been looking for answer
    for quite a while. I have tried adding datagridcolumns to the
    datagrid object with no luck, etc. I don't see a solution will
    someone please help?
    Even if there is no solution, would someone at least comment
    and say so, the last post I made about this had no one helping
    either way. Please HELP!!!!

    I understand that the data is coming back as an object proxy,
    but it goes into the dataProvider the same(or such is my
    assumption).
    I am talking about the column order. If I feed this as a
    church bus schedule:
    <joblist>
    <joblistitem>
    <date>12-12-08</date>
    <story>Amy</story>
    <preach>Nathan</preach>
    <cleanbus>Garry</cleanbus>
    </joblistitem>
    </joblist>
    and have everything in the same order, I don't want
    <cleanbus> column to be before the <date> column.
    I should get columns :
    date | story | preach | cleanbus
    I know I can hard code the columns, but there may be someone
    entering the jobs in a different order, or have different names for
    the jobs, or have different jobs all together. They may even prefer
    to have <week> or <Sunday> instead of <date>.
    I tried using that code on the link :
    http://www.cflex.net/showFileDetails.cfm?ObjectID=552
    but am having some type casting problems, just seems like
    there would be a simpler way doesn't it?

Maybe you are looking for

  • How to find screen no. of a pop-up window?

    Hi friends, Any one can let me know, How to find the screen no. of pop-up window? Thank, Punjaala

  • Mail not sending and loads of spam

    Worked forever yesterday trying to set up new ibook (and old imac) to filter and redirect some of this volumes of junk mail I have been receiving. I tried to set up a "rule" which redirected mail in which the sender was not in my contact book to anot

  • Manage the beer stock in three aspect

    hi gurus: here is the situation ,our store purchase  beer from  vendor or distribution center , and we manage the beer stock in three aspect (acctually the material is 24 bottle beer in a box) : 1.beer (liquid )   ( 1 beer stock per bottle ) 2.bottle

  • Why Iconic button does not call a form thru popup menu?

    I am using Forms 6i Rel 6.0.8.11.3 with no patch after purchase in May 2001. I have a form with a vertical toolbar. There are buttons on this toolbar. I have attached Popup menus with these buttons. These popup menus are then calling respsctive forms

  • Restoration of Back up in TFTP

    I am doing restoration of back up through below command copy tftp: running config But issue  file seems to be loading  and getting invalid input detected finally it got copied.. But configuration was still same.. Restoration configuration was not hap