Hi,

Can someone help with mapping? The object is an array and I need to
control the "array" element Castor outputs--seems untouchable. Default
representation is

<array xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
xsi:type="java:[Lcom.reuters.WMTE.PDSClient.LimitData;">
        <limit-data value="90.5">
                <symbol>F.N</symbol>
        </limit-data>
        <limit-data value="91.0">
                <symbol>IBM.N</symbol>
        </limit-data>
</array>

I need a wrapper element around the whole thing. Can I get the namespace
and type off <array/>? Like

<array>
        <limit-data value="90.5">
                <symbol>F.N</symbol>
        </limit-data>
        <limit-data value="91.0">
                <symbol>IBM.N</symbol>
        </limit-data>
</array>

then I think I could hack a element around it all... Or can I get

<pdsresp_0_0 xmlns="www.schemas.multex.com/pds"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";>
        <array>
                <limit-data value="90.5">
                        <symbol>F.N</symbol>
                </limit-data>
                <limit-data value="91.0">
                        <symbol>IBM.N</symbol>
                </limit-data>
        </array>
</pdsresp_0_0>

right from a properly constructed mapping?

- Dan


Terrance Daniel Tripp
Lead Software Engineer
Reuters

T: 646-223-7617
Reuters Messaging: [EMAIL PROTECTED]

REUTERS.KNOW.NOW.
www.reuters.com 




-----------------------------------------------------------------
        Visit our Internet site at http://www.reuters.com

Get closer to the financial markets with Reuters Messaging - for more
information and to register, visit http://www.reuters.com/messaging

Any views expressed in this message are those of  the  individual
sender,  except  where  the sender specifically states them to be
the views of Reuters Ltd.

----------------------------------------------------------- 
If you wish to unsubscribe from this mailing, send mail to
[EMAIL PROTECTED] with a subject of:
        unsubscribe castor-user

Reply via email to