473,789 Members | 2,860 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

javax.xml.bind. UnmarshalExcept ion:

19 New Member
hi,
I validated my schema & xml in JAXP. its validated fine. I created the object model in JAXB using xjc command & wn i try to run run the program in throws javax.xml.bind. UnmarshalExcept ion: unexpected element{} exception.
Can anyone please help me???
Thanks in advance.
here are the schema & file
Expand|Select|Wrap|Line Numbers
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
  3.             xmlns:jxb="http://java.sun.com/xml/ns/jaxb"
  4.             jxb:version="1.0">
  5.   <xsd:annotation>
  6.   <xsd:appinfo>
  7.     <jxb:globalBindings
  8.         fixedAttributeAsConstantProperty="false"
  9.         collectionType="java.util.Vector"
  10.         choiceContentProperty="false"
  11.         enableFailFastCheck="false"   
  12.         generateIsSetMethod="false"
  13.         underscoreBinding="asCharInWord"/>
  14.     <jxb:schemaBindings>
  15.       <jxb:package name="schema"/>
  16.       <jxb:nameXmlTransform>
  17.          <jxb:elementName suffix="Element"/>
  18.       </jxb:nameXmlTransform>
  19.     </jxb:schemaBindings>
  20.   </xsd:appinfo>
  21.   </xsd:annotation>
  22.   <xsd:element name="FIXadaptor2">
  23.     <xsd:complexType>
  24.        <xsd:annotation>
  25.          <xsd:appinfo>
  26.            <jxb:class name="FIXadaptor2"/>
  27.          </xsd:appinfo>
  28.        </xsd:annotation>
  29.       <xsd:sequence>
  30.         <xsd:element name="CounterParty" type="Counter_Party" minOccurs="1" maxOccurs="unbounded">
  31.           <xsd:key name="PK_CounterParty">
  32.             <xsd:selector xpath="CounterParty" />
  33.             <xsd:field xpath="CPID" />
  34.           </xsd:key>
  35.           <xsd:keyref name="CounterParty_CPID" refer="PK_CounterParty">
  36.             <xsd:selector xpath="Counter_Party" />
  37.             <xsd:field xpath="CPID" />
  38.           </xsd:keyref>
  39.         </xsd:element>
  40.         <xsd:element name="TransformList" type="Transform_List" minOccurs="1" maxOccurs="unbounded">
  41.           <xsd:key name="PK_TransformList">
  42.             <xsd:selector xpath=".//Transform_List" />
  43.             <xsd:field xpath="TransformType" />
  44.           </xsd:key>
  45.           <xsd:keyref name="TransformListTransform" refer="PK_TransformList">
  46.             <xsd:selector xpath=".//Transform_List" />
  47.             <xsd:field xpath="TransformType" />
  48.           </xsd:keyref>
  49.         </xsd:element>
  50.         <xsd:element name="Filter" type="Filter_List" minOccurs="1" maxOccurs="unbounded">
  51.           <xsd:key name="PK_Filter">
  52.             <xsd:selector xpath=".//Filter_List" />
  53.             <xsd:field xpath="FilterID" />
  54.           </xsd:key>
  55.           <xsd:keyref name="TransformProfleFilter" refer="PK_Filter">
  56.             <xsd:selector xpath=".//Filter_List" />
  57.             <xsd:field xpath="FilterID" />
  58.           </xsd:keyref>
  59.         </xsd:element>
  60.         <xsd:element name="TransformProfile" type="Transform_Profile" minOccurs="1" maxOccurs="unbounded">
  61.           <xsd:key name="PK_TransformProfile">
  62.             <xsd:selector xpath=".//Transform_Profile" />
  63.             <xsd:field xpath="ProfileID" />
  64.           </xsd:key>
  65.           <xsd:keyref name="ProfileDetailTransform" refer="PK_TransformProfile">
  66.             <xsd:selector xpath=".//Transform_Profile" />
  67.             <xsd:field xpath="ProfileID" />
  68.           </xsd:keyref>
  69.         </xsd:element>
  70.       </xsd:sequence>
  71.      </xsd:complexType>
  72.    </xsd:element>
  73.   <xsd:complexType name="Transform_List">
  74.      <xsd:annotation>
  75.          <xsd:appinfo>
  76.            <jxb:class name="TransformList"/>
  77.          </xsd:appinfo>
  78.       </xsd:annotation>
  79.     <xsd:sequence>
  80.       <xsd:element name="TransformType" type="xsd:string" />
  81.       <xsd:element name="Description" type="xsd:string" />
  82.       <xsd:element name="IsSourceTag" type="xsd:boolean" />
  83.       <xsd:element name="IsTargetTag" type="xsd:boolean" />
  84.       <xsd:element name="IsConstValue" type="xsd:boolean" />
  85.       <xsd:element name="Status" type="xsd:string" />
  86.       <xsd:element name="CreatedBy" type="xsd:string" />
  87.       <xsd:element name="CreatedDate" type="xsd:date" />
  88.       <xsd:element name="ModifiedBy" type="xsd:string" />
  89.       <xsd:element name="ModifiedDate" type="xsd:date" />
  90.       <xsd:element name="Transform" type="Transform_Detail" minOccurs="1" maxOccurs="unbounded">
  91.         <xsd:key name="PK_Transform">
  92.           <xsd:selector xpath=".//Transform_Detail" />
  93.           <xsd:field xpath="TransformID" />
  94.           <xsd:field xpath="TransformCode" />
  95.         </xsd:key>
  96.         <xsd:keyref name="TransformProfileTransform" refer="PK_Transform">
  97.           <xsd:selector xpath=".//Transform_Detail" />
  98.           <xsd:field xpath="ActionID" />
  99.           <xsd:field xpath="ActionType" />
  100.         </xsd:keyref>
  101.  
  102.       </xsd:element>
  103.     </xsd:sequence>
  104.   </xsd:complexType>
  105.   <xsd:complexType name="Transform_Detail">
  106.       <xsd:annotation>
  107.          <xsd:appinfo>
  108.            <jxb:class name="TransformDetail"/>
  109.          </xsd:appinfo>
  110.       </xsd:annotation>
  111.     <xsd:sequence>
  112.       <xsd:element name="TransformID" type="xsd:int" />
  113.       <xsd:element name="TransformCode" type="xsd:string" />
  114.       <xsd:element name="Description" type="xsd:string" />
  115.       <xsd:element name="TransformType" type="xsd:string" />
  116.       <xsd:element name="SourceTag" type="xsd:string" />
  117.       <xsd:element name="DestTag" type="xsd:string" />
  118.       <xsd:element name="ConstValue" type="xsd:string" />
  119.       <xsd:element name="Status" type="xsd:string" />
  120.       <xsd:element name="CreatedBy" type="xsd:string" />
  121.       <xsd:element name="CreatedDate" type="xsd:date" />
  122.       <xsd:element name="ModifiedBy" type="xsd:string" />
  123.       <xsd:element name="ModifiedDate" type="xsd:date" />
  124.       <xsd:element name="TransformProfileDetail" type="Transform_Profile_Detail" minOccurs="0" maxOccurs="unbounded">
  125.         <xsd:key name="PK_TransformProfilDetail">
  126.           <xsd:selector xpath=".//Transform_Profile_Detail" />
  127.           <xsd:field xpath="ProfileDetailID" />
  128.         </xsd:key>
  129.  
  130.  
  131.  
  132.       </xsd:element>
  133.     </xsd:sequence>
  134.   </xsd:complexType>
  135.   <xsd:complexType name="Transform_Profile_Detail">
  136.       <xsd:annotation>
  137.          <xsd:appinfo>
  138.            <jxb:class name="TransformProfileDetail"/>
  139.          </xsd:appinfo>
  140.       </xsd:annotation>
  141.     <xsd:sequence>
  142.       <xsd:element name="ProfileID" type="xsd:int" />
  143.       <xsd:element name="ProfileDetailID" type="xsd:int" />
  144.       <xsd:element name="Priority" type="xsd:int" />
  145.       <xsd:element name="FilterID" type="xsd:int" />
  146.       <xsd:element name="ActionType" type="xsd:string" />
  147.       <xsd:element name="ActionID" type="xsd:int" />
  148.       <xsd:element name="Status" type="xsd:string" />
  149.       <xsd:element name="CreatedBy" type="xsd:string" />
  150.       <xsd:element name="CreatedDate" type="xsd:date" />
  151.       <xsd:element name="ModifiedBy" type="xsd:string" />
  152.       <xsd:element name="ModifiedDate" type="xsd:date" />
  153.     </xsd:sequence>
  154.   </xsd:complexType>
  155.   <xsd:complexType name="Filter_List">
  156.       <xsd:annotation>
  157.          <xsd:appinfo>
  158.            <jxb:class name="Filter"/>
  159.          </xsd:appinfo>
  160.       </xsd:annotation>
  161.     <xsd:sequence>
  162.       <xsd:element name="FilterID" type="xsd:int" />
  163.       <xsd:element name="FilterCode" type="xsd:string" />
  164.       <xsd:element name="Description" type="xsd:string" />
  165.       <xsd:element name="Status" type="xsd:string" />
  166.       <xsd:element name="CreatedBy" type="xsd:string" />
  167.       <xsd:element name="CreatedDate" type="xsd:date" />
  168.       <xsd:element name="ModifiedBy" type="xsd:string" />
  169.       <xsd:element name="ModifiedDate" type="xsd:date" />
  170.       <xsd:element name="TransformProfileDetail" type="Transform_Profile_Detail" minOccurs="0" maxOccurs="unbounded" />
  171.       <xsd:element name="FilterDetail" type="Filter_Detail" minOccurs="0" maxOccurs="unbounded">
  172.         <xsd:key name="PK_FilterDetail">
  173.           <xsd:selector xpath=".//Filter_Detail" />
  174.           <xsd:field xpath="FilterDetailID" />
  175.         </xsd:key>
  176.         <xsd:keyref name="FilterDetailFilter" refer="PK_FilterDetail">
  177.           <xsd:selector xpath=".//Filter_List" />
  178.           <xsd:field xpath="FilterID" />
  179.         </xsd:keyref>
  180.       </xsd:element>
  181.     </xsd:sequence>
  182.   </xsd:complexType>
  183.   <xsd:complexType name="Filter_Detail">
  184.       <xsd:annotation>
  185.          <xsd:appinfo>
  186.            <jxb:class name="FilterDetail"/>
  187.          </xsd:appinfo>
  188.       </xsd:annotation>
  189.     <xsd:sequence>
  190.       <xsd:element name="FilterDetailID" type="xsd:int" />
  191.       <xsd:element name="FilterID" type="xsd:int" />
  192.       <xsd:element name="FIXTag" type="xsd:int" />
  193.       <xsd:element name="FIXTagValue" type="xsd:string" />
  194.       <xsd:element name="Status" type="xsd:string" />
  195.       <xsd:element name="CreatedBy" type="xsd:string" />
  196.       <xsd:element name="CreatedDate" type="xsd:date" />
  197.       <xsd:element name="ModifiedBy" type="xsd:string" />
  198.       <xsd:element name="ModifiedDate" type="xsd:date" />
  199.     </xsd:sequence>
  200.   </xsd:complexType>
  201.   <xsd:complexType name="Transform_Profile">
  202.       <xsd:annotation>
  203.          <xsd:appinfo>
  204.            <jxb:class name="TransformProfile"/>
  205.          </xsd:appinfo>
  206.       </xsd:annotation>
  207.     <xsd:sequence>
  208.       <xsd:element name="ProfileID" type="xsd:int" />
  209.       <xsd:element name="ProfileCode" type="xsd:string" />
  210.       <xsd:element name="Description" type="xsd:string" />
  211.       <xsd:element name="FIXVersion" type="xsd:string" />
  212.       <xsd:element name="Status" type="xsd:string" />
  213.       <xsd:element name="CreatedBy" type="xsd:string" />
  214.       <xsd:element name="CreatedDate" type="xsd:date" />
  215.       <xsd:element name="ModifiedBy" type="xsd:string" />
  216.       <xsd:element name="ModifiedDate" type="xsd:date" />
  217.       <xsd:element name="SessionProfile" type="Session_Profile" minOccurs="0" maxOccurs="unbounded">
  218.         <xsd:key name="PK_SessionProfile">
  219.           <xsd:selector xpath=".//Session_Profile" />
  220.           <xsd:field xpath="SessionID" />
  221.           <xsd:field xpath="ProfileID" />
  222.         </xsd:key>
  223.  
  224.         <xsd:keyref name="SessionProfileTransorm" refer="PK_TransformProfile">
  225.           <xsd:selector xpath=".//Transform_Profile" />
  226.           <xsd:field xpath="ProfileID" />
  227.         </xsd:keyref>
  228.       </xsd:element>
  229.       <xsd:element name="TransformProfileDetail" type="Transform_Profile_Detail" minOccurs="0" maxOccurs="unbounded">
  230.       </xsd:element>
  231.     </xsd:sequence>
  232.   </xsd:complexType>
  233.   <xsd:complexType name="Counter_Party">
  234.       <xsd:annotation>
  235.          <xsd:appinfo>
  236.            <jxb:class name="CounterParty"/>
  237.          </xsd:appinfo>
  238.       </xsd:annotation> 
  239.     <xsd:sequence>
  240.       <xsd:element name="CPID" type="xsd:int" />
  241.       <xsd:element name="CPCode" type="xsd:string" />
  242.       <xsd:element name="CPName" type="xsd:string" />
  243.       <xsd:element name="CPType" type="xsd:string" />
  244.       <xsd:element name="CPAddress" type="xsd:string" />
  245.       <xsd:element name="CPTPNo" type="xsd:string" />
  246.       <xsd:element name="CPContactPerson" type="xsd:string" />
  247.       <xsd:element name="Status" type="xsd:string" />
  248.       <xsd:element name="CreatedBy" type="xsd:string" />
  249.       <xsd:element name="CreatedDate" type="xsd:date" />
  250.       <xsd:element name="ModifiedBy" type="xsd:string" />
  251.       <xsd:element name="ModifiedDate" type="xsd:date" />
  252.       <xsd:element name="CounterPartyCID" type="Counter_Party_CID" minOccurs="1" maxOccurs="unbounded">
  253.         <xsd:key name="PK_CounterPartyCID">
  254.           <xsd:selector xpath="CounterPartyCID" />
  255.           <xsd:field xpath="CompID" />
  256.         </xsd:key>
  257.         <xsd:keyref name="SessionCounterParty" refer="PK_CounterPartyCID">
  258.           <xsd:selector xpath=".//Counter_Party_CID" />
  259.           <xsd:field xpath="CompID" />
  260.         </xsd:keyref>
  261.  
  262.       </xsd:element>
  263.     </xsd:sequence>
  264.   </xsd:complexType>
  265.   <xsd:complexType name="Counter_Party_CID">
  266.        <xsd:annotation>
  267.          <xsd:appinfo>
  268.            <jxb:class name="CounterPartyCID"/>
  269.          </xsd:appinfo>
  270.       </xsd:annotation>
  271.     <xsd:sequence>
  272.       <xsd:element name="CompID" type="xsd:int" />
  273.       <xsd:element name="MainComp" type="xsd:string" />
  274.       <xsd:element name="SubComp" type="xsd:string" />
  275.       <xsd:element name="CPID" type="xsd:string" />
  276.       <xsd:element name="Host" type="xsd:string" />
  277.       <xsd:element name="Port" type="xsd:int" />
  278.       <xsd:element name="STBHost" type="xsd:string" />
  279.       <xsd:element name="STBPort" type="xsd:int" />
  280.       <xsd:element name="Status" type="xsd:string" />
  281.       <xsd:element name="CreatedBy" type="xsd:string" />
  282.       <xsd:element name="CreatedDate" type="xsd:date" />
  283.       <xsd:element name="ModifiedBy" type="xsd:string" />
  284.       <xsd:element name="ModifiedDate" type="xsd:date" />
  285.       <xsd:element name="Session" type="Session_Detail" minOccurs="0" maxOccurs="unbounded">
  286.         <xsd:key name="PK_Session">
  287.           <xsd:selector xpath=".//Session_Detail" />
  288.           <xsd:field xpath="SessionID" />
  289.         </xsd:key>
  290.         <xsd:keyref name="SessionProfile" refer="PK_Session">
  291.           <xsd:selector xpath=".//Session_Detail" />
  292.           <xsd:field xpath="SessionID" />
  293.         </xsd:keyref>
  294.  
  295.       </xsd:element>
  296.     </xsd:sequence>
  297.   </xsd:complexType>
  298.   <xsd:complexType name="Session_Detail">
  299.       <xsd:annotation>
  300.          <xsd:appinfo>
  301.            <jxb:class name="SessionDetail"/>
  302.          </xsd:appinfo>
  303.       </xsd:annotation>  
  304.     <xsd:sequence>
  305.       <xsd:element name="SessionID" type="xsd:int" />
  306.       <xsd:element name="SessionCode" type="xsd:string" />
  307.       <xsd:element name="InternalComp" type="xsd:int" />
  308.       <xsd:element name="ExternalComp" type="xsd:int" />
  309.       <xsd:element name="InitiatorSide" type="xsd:string" />
  310.       <xsd:element name="Status" type="xsd:string" />
  311.       <xsd:element name="CreatedBy" type="xsd:string" />
  312.       <xsd:element name="CreatedDate" type="xsd:date" />
  313.       <xsd:element name="ModifiedBy" type="xsd:string" />
  314.       <xsd:element name="ModifiedDate" type="xsd:date" />
  315.       <xsd:element name="SessionProfile" type="Session_Profile" minOccurs="0" maxOccurs="1" />
  316.     </xsd:sequence>
  317.   </xsd:complexType>
  318.   <xsd:complexType name="Session_Profile">
  319.       <xsd:annotation>
  320.          <xsd:appinfo>
  321.            <jxb:class name="SessionProfile"/>
  322.          </xsd:appinfo>
  323.       </xsd:annotation>
  324.     <xsd:sequence>
  325.       <xsd:element name="SessionID" type="xsd:int" />
  326.       <xsd:element name="ProfileID" type="xsd:int" />
  327.       <xsd:element name="Status" type="xsd:string" />
  328.       <xsd:element name="CreatedBy" type="xsd:string" />
  329.       <xsd:element name="CreatedDate" type="xsd:date" />
  330.       <xsd:element name="ModifiedBy" type="xsd:string" />
  331.       <xsd:element name="ModifiedDate" type="xsd:date" />
  332.     </xsd:sequence>
  333.   </xsd:complexType>
  334.  </xsd:schema>
  335.  
xml
Expand|Select|Wrap|Line Numbers
  1. <?xml version="1.0"?>
  2.  
  3. <FIXadaptor2 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4.     xsi:noNamespaceSchemaLocation="XMLSchema4.xsd">
  5.   <CounterParty>
  6.     <CPID>1</CPID>
  7.     <CPCode>RCAPL</CPCode>
  8.     <CPName>Ridgecrest Financial</CPName>
  9.     <CPType>I</CPType>
  10.     <CPAddress>Address 1</CPAddress>
  11.     <CPTPNo>98756432</CPTPNo>
  12.     <CPContactPerson>Name of contact person</CPContactPerson>
  13.     <Status>0</Status>
  14.     <CreatedBy>AMA</CreatedBy>
  15.     <CreatedDate>2008-09-05</CreatedDate>
  16.     <ModifiedBy>SAF</ModifiedBy>
  17.     <ModifiedDate>2008-09-05</ModifiedDate>
  18.  
  19.     <CounterPartyCID>
  20.       <CompID>1</CompID>
  21.       <MainComp>R1</MainComp>
  22.       <SubComp> </SubComp>
  23.       <CPID>1</CPID>
  24.       <Host>localhost</Host>
  25.       <Port>5353</Port>
  26.       <STBHost>localhost</STBHost>
  27.       <STBPort>5354</STBPort>
  28.       <Status>0</Status>
  29.       <CreatedBy>AMA</CreatedBy>
  30.       <CreatedDate>2008-09-05</CreatedDate>
  31.       <ModifiedBy>SAF</ModifiedBy>
  32.       <ModifiedDate>2008-09-05</ModifiedDate>
  33.  
  34.       <Session>
  35.         <SessionID>1</SessionID>
  36.         <SessionCode>R1-E1</SessionCode>
  37.         <InternalComp>1</InternalComp>
  38.         <ExternalComp>3</ExternalComp>
  39.         <InitiatorSide>0</InitiatorSide>
  40.         <Status>0</Status>
  41.         <CreatedBy>AMA</CreatedBy>
  42.         <CreatedDate>2008-09-05</CreatedDate>
  43.         <ModifiedBy>SAF</ModifiedBy>
  44.         <ModifiedDate>2008-09-05</ModifiedDate>
  45.         <SessionProfile>
  46.           <SessionID>1</SessionID>
  47.           <ProfileID>1</ProfileID>
  48.           <Status>0</Status>
  49.           <CreatedBy>AMA</CreatedBy>
  50.           <CreatedDate>2008-09-05</CreatedDate>
  51.           <ModifiedBy>SAF</ModifiedBy>
  52.           <ModifiedDate>2008-09-05</ModifiedDate>
  53.         </SessionProfile>
  54.       </Session>
  55.  
  56.       <Session>
  57.         <SessionID>2</SessionID>
  58.         <SessionCode>R1-E2</SessionCode>
  59.         <InternalComp>1</InternalComp>
  60.         <ExternalComp>4</ExternalComp>
  61.         <InitiatorSide>0</InitiatorSide>
  62.         <Status>0</Status>
  63.         <CreatedBy>AMA</CreatedBy>
  64.         <CreatedDate>2008-09-05</CreatedDate>
  65.         <ModifiedBy>SAF</ModifiedBy>
  66.         <ModifiedDate>2008-09-05</ModifiedDate>
  67.         <SessionProfile>
  68.           <SessionID>2</SessionID>
  69.           <ProfileID>2</ProfileID>
  70.           <Status>0</Status>
  71.           <CreatedBy>AMA</CreatedBy>
  72.           <CreatedDate>2008-09-05</CreatedDate>
  73.           <ModifiedBy>SAF</ModifiedBy>
  74.           <ModifiedDate>2008-09-05</ModifiedDate>
  75.         </SessionProfile>
  76.       </Session>
  77.  
  78.       <Session>
  79.         <SessionID>3</SessionID>
  80.         <SessionCode>R1-E3</SessionCode>
  81.         <InternalComp>1</InternalComp>
  82.         <ExternalComp>5</ExternalComp>
  83.         <InitiatorSide>0</InitiatorSide>
  84.         <Status>0</Status>
  85.         <CreatedBy>AMA</CreatedBy>
  86.         <CreatedDate>2008-09-05</CreatedDate>
  87.         <ModifiedBy>SAF</ModifiedBy>
  88.         <ModifiedDate>2008-09-05</ModifiedDate>
  89.         <SessionProfile>
  90.           <SessionID>3</SessionID>
  91.           <ProfileID>1</ProfileID>
  92.           <Status>0</Status>
  93.           <CreatedBy>AMA</CreatedBy>
  94.           <CreatedDate>2008-09-05</CreatedDate>
  95.           <ModifiedBy>SAF</ModifiedBy>
  96.           <ModifiedDate>2008-09-05</ModifiedDate>
  97.         </SessionProfile>
  98.       </Session>
  99.     </CounterPartyCID>
  100.  
  101.     <CounterPartyCID>
  102.       <CompID>2</CompID>
  103.       <MainComp>R2</MainComp>
  104.       <SubComp> </SubComp>
  105.       <CPID>1</CPID>
  106.       <Host>localhost</Host>
  107.       <Port>5454</Port>
  108.       <STBHost>localhost</STBHost>
  109.       <STBPort>5455</STBPort>
  110.       <Status>0</Status>
  111.       <CreatedBy>AMA</CreatedBy>
  112.       <CreatedDate>2008-09-05</CreatedDate>
  113.       <ModifiedBy>SAF</ModifiedBy>
  114.       <ModifiedDate>2008-09-05</ModifiedDate>
  115.  
  116.       <Session>
  117.         <SessionID>4</SessionID>
  118.         <SessionCode>R2-E1</SessionCode>
  119.         <InternalComp>2</InternalComp>
  120.         <ExternalComp>3</ExternalComp>
  121.         <InitiatorSide>0</InitiatorSide>
  122.         <Status>0</Status>
  123.         <CreatedBy>AMA</CreatedBy>
  124.         <CreatedDate>2008-09-05</CreatedDate>
  125.         <ModifiedBy>SAF</ModifiedBy>
  126.         <ModifiedDate>2008-09-05</ModifiedDate>
  127.         <SessionProfile>
  128.           <SessionID>4</SessionID>
  129.           <ProfileID>2</ProfileID>
  130.           <Status>0</Status>
  131.           <CreatedBy>AMA</CreatedBy>
  132.           <CreatedDate>2008-09-05</CreatedDate>
  133.           <ModifiedBy>SAF</ModifiedBy>
  134.           <ModifiedDate>2008-09-05</ModifiedDate>
  135.         </SessionProfile>
  136.       </Session>
  137.  
  138.       <Session>
  139.         <SessionID>5</SessionID>
  140.         <SessionCode>R2-E2</SessionCode>
  141.         <InternalComp>2</InternalComp>
  142.         <ExternalComp>4</ExternalComp>
  143.         <InitiatorSide>0</InitiatorSide>
  144.         <Status>0</Status>
  145.         <CreatedBy>AMA</CreatedBy>
  146.         <CreatedDate>2008-09-05</CreatedDate>
  147.         <ModifiedBy>SAF</ModifiedBy>
  148.         <ModifiedDate>2008-09-05</ModifiedDate>
  149.       </Session>
  150.  
  151.     </CounterPartyCID>
  152.   </CounterParty>
  153.  
  154.   <CounterParty>
  155.     <CPID>2</CPID>
  156.     <CPCode>BR1</CPCode>
  157.     <CPName>Broker 1</CPName>
  158.     <CPType>E</CPType>
  159.     <CPAddress>Address 2</CPAddress>
  160.     <CPTPNo>767889</CPTPNo>
  161.     <CPContactPerson>Name of contact person</CPContactPerson>
  162.     <Status>0</Status>
  163.     <CreatedBy>AMA</CreatedBy>
  164.     <CreatedDate>2008-09-05</CreatedDate>
  165.     <ModifiedBy>SAF</ModifiedBy>
  166.     <ModifiedDate>2008-09-05</ModifiedDate>
  167.  
  168.     <CounterPartyCID>
  169.       <CompID>3</CompID>
  170.       <MainComp>E1</MainComp>
  171.       <SubComp> </SubComp>
  172.       <CPID>2</CPID>
  173.       <Host>localhost</Host>
  174.       <Port>5656</Port>
  175.       <STBHost>localhost</STBHost>
  176.       <STBPort>5657</STBPort>
  177.       <Status>0</Status>
  178.       <CreatedBy>AMA</CreatedBy>
  179.       <CreatedDate>2008-09-05</CreatedDate>
  180.       <ModifiedBy>SAF</ModifiedBy>
  181.       <ModifiedDate>2008-09-05</ModifiedDate>
  182.     </CounterPartyCID>
  183.   </CounterParty>
  184.  
  185.   <CounterParty>
  186.     <CPID>3</CPID>
  187.     <CPCode>BR2</CPCode>
  188.     <CPName>Broker 2</CPName>
  189.     <CPType>E</CPType>
  190.     <CPAddress>Address 3</CPAddress>
  191.     <CPTPNo>456789</CPTPNo>
  192.     <CPContactPerson>Name of contact person</CPContactPerson>
  193.     <Status>0</Status>
  194.     <CreatedBy>AMA</CreatedBy>
  195.     <CreatedDate>2008-09-05</CreatedDate>
  196.     <ModifiedBy>SAF</ModifiedBy>
  197.     <ModifiedDate>2008-09-05</ModifiedDate>
  198.  
  199.     <CounterPartyCID>
  200.       <CompID>4</CompID>
  201.       <MainComp>E2</MainComp>
  202.       <SubComp> </SubComp>
  203.       <CPID>3</CPID>
  204.       <Host>localhost</Host>
  205.       <Port>5757</Port>
  206.       <STBHost>localhost</STBHost>
  207.       <STBPort>5758</STBPort>
  208.       <Status>0</Status>
  209.       <CreatedBy>AMA</CreatedBy>
  210.       <CreatedDate>2008-09-05</CreatedDate>
  211.       <ModifiedBy>SAF</ModifiedBy>
  212.       <ModifiedDate>2008-09-05</ModifiedDate>
  213.     </CounterPartyCID>
  214.  
  215.     <CounterPartyCID>
  216.       <CompID>5</CompID>
  217.       <MainComp>E3</MainComp>
  218.       <SubComp> </SubComp>
  219.       <CPID>3</CPID>
  220.       <Host>localhost</Host>
  221.       <Port>5858</Port>
  222.       <STBHost>localhost</STBHost>
  223.       <STBPort>5859</STBPort>
  224.       <Status>0</Status>
  225.       <CreatedBy>AMA</CreatedBy>
  226.       <CreatedDate>2008-09-05</CreatedDate>
  227.       <ModifiedBy>SAF</ModifiedBy>
  228.       <ModifiedDate>2008-09-05</ModifiedDate>
  229.     </CounterPartyCID>
  230.   </CounterParty>
  231.   <TransformList>
  232.     <TransformType>ADD</TransformType>
  233.     <Description>Add a tag and the value</Description>
  234.     <IsSourceTag>true</IsSourceTag>
  235.     <IsTargetTag>false</IsTargetTag>
  236.     <IsConstValue>true</IsConstValue>
  237.     <Status>0</Status>
  238.     <CreatedBy>AMA</CreatedBy>
  239.     <CreatedDate>2008-09-05</CreatedDate>
  240.     <ModifiedBy>SAF</ModifiedBy>
  241.     <ModifiedDate>2008-09-05</ModifiedDate>
  242.     <Transform>
  243.       <TransformID>1</TransformID>
  244.       <TransformCode>T1</TransformCode>
  245.       <Description>Add tag 12 and set its value to 3</Description>
  246.       <TransformType>ADD</TransformType>
  247.       <SourceTag>12</SourceTag>
  248.       <DestTag></DestTag>
  249.       <ConstValue>3</ConstValue>
  250.       <Status>0</Status>
  251.       <CreatedBy>AMA</CreatedBy>
  252.       <CreatedDate>2008-09-05</CreatedDate>
  253.       <ModifiedBy>SAF</ModifiedBy>
  254.       <ModifiedDate>2008-09-05</ModifiedDate>
  255.  
  256.     </Transform>
  257.   </TransformList>
  258.  
  259.   <TransformList>
  260.     <TransformType>CONST</TransformType>
  261.     <Description>set the value of a tag to a constant</Description>
  262.     <IsSourceTag>true</IsSourceTag>
  263.     <IsTargetTag>false</IsTargetTag>
  264.     <IsConstValue>true</IsConstValue>
  265.     <Status>0</Status>
  266.     <CreatedBy>AMA</CreatedBy>
  267.     <CreatedDate>2008-09-05</CreatedDate>
  268.     <ModifiedBy>SAF</ModifiedBy>
  269.     <ModifiedDate>2008-09-05</ModifiedDate>
  270.     <Transform>
  271.       <TransformID>2</TransformID>
  272.       <TransformCode>T2</TransformCode>
  273.       <Description>Set the value of tag 55 to a constant T-IBM</Description>
  274.       <TransformType>CONST</TransformType>
  275.       <SourceTag>55</SourceTag>
  276.       <DestTag></DestTag>
  277.       <ConstValue>T-IBM</ConstValue>
  278.       <Status>0</Status>
  279.       <CreatedBy>AMA</CreatedBy>
  280.       <CreatedDate>2008-09-05</CreatedDate>
  281.       <ModifiedBy>SAF</ModifiedBy>
  282.       <ModifiedDate>2008-09-05</ModifiedDate>
  283.       <TransformProfileDetail>
  284.         <ProfileID>1</ProfileID>
  285.         <ProfileDetailID>1</ProfileDetailID>
  286.         <Priority>1</Priority>
  287.         <FilterID>1</FilterID>
  288.         <ActionType>T</ActionType>
  289.         <ActionID>2</ActionID>
  290.         <Status>0</Status>
  291.         <CreatedBy>AMA</CreatedBy>
  292.         <CreatedDate>2008-09-05</CreatedDate>
  293.         <ModifiedBy>SAF</ModifiedBy>
  294.         <ModifiedDate>2008-09-05</ModifiedDate>
  295.       </TransformProfileDetail>
  296.  
  297.       <TransformProfileDetail>
  298.         <ProfileID>2</ProfileID>
  299.         <ProfileDetailID>4</ProfileDetailID>
  300.         <Priority>1</Priority>
  301.         <FilterID>3</FilterID>
  302.         <ActionType>T</ActionType>
  303.         <ActionID>2</ActionID>
  304.         <Status>0</Status>
  305.         <CreatedBy>AMA</CreatedBy>
  306.         <CreatedDate>2008-09-05</CreatedDate>
  307.         <ModifiedBy>SAF</ModifiedBy>
  308.         <ModifiedDate>2008-09-05</ModifiedDate>
  309.       </TransformProfileDetail>
  310.     </Transform>
  311.   </TransformList>
  312.  
  313.   <TransformList>
  314.     <TransformType>COPY</TransformType>
  315.     <Description>Copy the value of a tag to another</Description>
  316.     <IsSourceTag>true</IsSourceTag>
  317.     <IsTargetTag>true</IsTargetTag>
  318.     <IsConstValue>false</IsConstValue>
  319.     <Status>0</Status>
  320.     <CreatedBy>AMA</CreatedBy>
  321.     <CreatedDate>2008-09-05</CreatedDate>
  322.     <ModifiedBy>SAF</ModifiedBy>
  323.     <ModifiedDate>2008-09-05</ModifiedDate>
  324.     <Transform>
  325.       <TransformID>3</TransformID>
  326.       <TransformCode>T3</TransformCode>
  327.       <Description>Copy the value of tag 38 to tag 55</Description>
  328.       <TransformType>COPY</TransformType>
  329.       <SourceTag>38</SourceTag>
  330.       <DestTag>55</DestTag>
  331.       <ConstValue></ConstValue>
  332.       <Status>0</Status>
  333.       <CreatedBy>AMA</CreatedBy>
  334.       <CreatedDate>2008-09-05</CreatedDate>
  335.       <ModifiedBy>SAF</ModifiedBy>
  336.       <ModifiedDate>2008-09-05</ModifiedDate>
  337.       <TransformProfileDetail>
  338.         <ProfileID>1</ProfileID>
  339.         <ProfileDetailID>3</ProfileDetailID>
  340.         <Priority>3</Priority>
  341.         <FilterID>1</FilterID>
  342.         <ActionType>P</ActionType>
  343.         <ActionID>3</ActionID>
  344.         <Status>0</Status>
  345.         <CreatedBy>AMA</CreatedBy>
  346.         <CreatedDate>2008-09-05</CreatedDate>
  347.         <ModifiedBy>SAF</ModifiedBy>
  348.         <ModifiedDate>2008-09-05</ModifiedDate>
  349.       </TransformProfileDetail>
  350.     </Transform>
  351.   </TransformList>
  352.  
  353.   <TransformList>
  354.     <TransformType>DELETE</TransformType>
  355.     <Description>Remove a tag and its value</Description>
  356.     <IsSourceTag>true</IsSourceTag>
  357.     <IsTargetTag>false</IsTargetTag>
  358.     <IsConstValue>false</IsConstValue>
  359.     <Status>0</Status>
  360.     <CreatedBy>AMA</CreatedBy>
  361.     <CreatedDate>2008-09-05</CreatedDate>
  362.     <ModifiedBy>SAF</ModifiedBy>
  363.     <ModifiedDate>2008-09-05</ModifiedDate>
  364.     <Transform>
  365.       <TransformID>4</TransformID>
  366.       <TransformCode>T4</TransformCode>
  367.       <Description>Remove tag 12 and its value</Description>
  368.       <TransformType>DELETE</TransformType>
  369.       <SourceTag>12</SourceTag>
  370.       <DestTag></DestTag>
  371.       <ConstValue></ConstValue>
  372.       <Status>0</Status>
  373.       <CreatedBy>AMA</CreatedBy>
  374.       <CreatedDate>2008-09-05</CreatedDate>
  375.       <ModifiedBy>SAF</ModifiedBy>
  376.       <ModifiedDate>2008-09-05</ModifiedDate>
  377.       <TransformProfileDetail>
  378.         <ProfileID>2</ProfileID>
  379.         <ProfileDetailID>5</ProfileDetailID>
  380.         <Priority>2</Priority>
  381.         <FilterID>3</FilterID>
  382.         <ActionType>T</ActionType>
  383.         <ActionID>4</ActionID>
  384.         <Status>0</Status>
  385.         <CreatedBy>AMA</CreatedBy>
  386.         <CreatedDate>2008-09-05</CreatedDate>
  387.         <ModifiedBy>SAF</ModifiedBy>
  388.         <ModifiedDate>2008-09-05</ModifiedDate>
  389.       </TransformProfileDetail>
  390.     </Transform>
  391.   </TransformList>
  392.  
  393.   <TransformList>
  394.     <TransformType>DELR</TransformType>
  395.     <Description>Delete a tag range</Description>
  396.     <IsSourceTag>true</IsSourceTag>
  397.     <IsTargetTag>true</IsTargetTag>
  398.     <IsConstValue>false</IsConstValue>
  399.     <Status>0</Status>
  400.     <CreatedBy>AMA</CreatedBy>
  401.     <CreatedDate>2008-09-05</CreatedDate>
  402.     <ModifiedBy>SAF</ModifiedBy>
  403.     <ModifiedDate>2008-09-05</ModifiedDate>
  404.     <Transform>
  405.       <TransformID>5</TransformID>
  406.       <TransformCode>T5</TransformCode>
  407.       <Description>Delete tag range, from tag 15 to tag 18</Description>
  408.       <TransformType>DELR</TransformType>
  409.       <SourceTag>15</SourceTag>
  410.       <DestTag>18</DestTag>
  411.       <ConstValue></ConstValue>
  412.       <Status>0</Status>
  413.       <CreatedBy>AMA</CreatedBy>
  414.       <CreatedDate>2008-09-05</CreatedDate>
  415.       <ModifiedBy>SAF</ModifiedBy>
  416.       <ModifiedDate>2008-09-05</ModifiedDate>
  417.       <TransformProfileDetail>
  418.         <ProfileID>1</ProfileID>
  419.         <ProfileDetailID>2</ProfileDetailID>
  420.         <Priority>2</Priority>
  421.         <FilterID>1</FilterID>
  422.         <ActionType>T</ActionType>
  423.         <ActionID>5</ActionID>
  424.         <Status>0</Status>
  425.         <CreatedBy>AMA</CreatedBy>
  426.         <CreatedDate>2008-09-05</CreatedDate>
  427.         <ModifiedBy>SAF</ModifiedBy>
  428.         <ModifiedDate>2008-09-05</ModifiedDate>
  429.       </TransformProfileDetail>
  430.     </Transform>
  431.   </TransformList>
  432.  
  433.   <TransformList>
  434.     <TransformType>MOVE</TransformType>
  435.     <Description>Delete a tag and move its value to another tag</Description>
  436.     <IsSourceTag>true</IsSourceTag>
  437.     <IsTargetTag>true</IsTargetTag>
  438.     <IsConstValue>false</IsConstValue>
  439.     <Status>0</Status>
  440.     <CreatedBy>AMA</CreatedBy>
  441.     <CreatedDate>2008-09-05</CreatedDate>
  442.     <ModifiedBy>SAF</ModifiedBy>
  443.     <ModifiedDate>2008-09-05</ModifiedDate>
  444.     <Transform>
  445.       <TransformID>6</TransformID>
  446.       <TransformCode>T6</TransformCode>
  447.       <Description>Delete tag 625 and move its value to tag 55</Description>
  448.       <TransformType>MOVE</TransformType>
  449.       <SourceTag>625</SourceTag>
  450.       <DestTag>55</DestTag>
  451.       <ConstValue></ConstValue>
  452.       <Status>0</Status>
  453.       <CreatedBy>AMA</CreatedBy>
  454.       <CreatedDate>2008-09-05</CreatedDate>
  455.       <ModifiedBy>SAF</ModifiedBy>
  456.       <ModifiedDate>2008-09-05</ModifiedDate>
  457.       <TransformProfileDetail>
  458.         <ProfileID>2</ProfileID>
  459.         <ProfileDetailID>6</ProfileDetailID>
  460.         <Priority>3</Priority>
  461.         <FilterID>3</FilterID>
  462.         <ActionType>T</ActionType>
  463.         <ActionID>6</ActionID>
  464.         <Status>0</Status>
  465.         <CreatedBy>AMA</CreatedBy>
  466.         <CreatedDate>2008-09-05</CreatedDate>
  467.         <ModifiedBy>SAF</ModifiedBy>
  468.         <ModifiedDate>2008-09-05</ModifiedDate>
  469.       </TransformProfileDetail>
  470.  
  471.       <TransformProfileDetail>
  472.         <ProfileID>3</ProfileID>
  473.         <ProfileDetailID>7</ProfileDetailID>
  474.         <Priority>1</Priority>
  475.         <FilterID>1</FilterID>
  476.         <ActionType>T</ActionType>
  477.         <ActionID>6</ActionID>
  478.         <Status>0</Status>
  479.         <CreatedBy>AMA</CreatedBy>
  480.         <CreatedDate>2008-09-05</CreatedDate>
  481.         <ModifiedBy>SAF</ModifiedBy>
  482.         <ModifiedDate>2008-09-05</ModifiedDate>
  483.       </TransformProfileDetail>
  484.     </Transform>
  485.   </TransformList>
  486.  
  487.   <Filter>
  488.     <FilterID>-1</FilterID>
  489.     <FilterCode>ALL-APPLICATIONS</FilterCode>
  490.     <Description>Application messages only</Description>
  491.     <Status>0</Status>
  492.     <CreatedBy>AMA</CreatedBy>
  493.     <CreatedDate>2008-09-05</CreatedDate>
  494.     <ModifiedBy>SAF</ModifiedBy>
  495.     <ModifiedDate>2008-09-05</ModifiedDate>
  496.   </Filter>
  497.  
  498.   <Filter>
  499.     <FilterID>0</FilterID>
  500.     <FilterCode>ALL</FilterCode>
  501.     <Description>Administrative messages + Application messages</Description>
  502.     <Status>0</Status>
  503.     <CreatedBy>AMA</CreatedBy>
  504.     <CreatedDate>2008-09-05</CreatedDate>
  505.     <ModifiedBy>SAF</ModifiedBy>
  506.     <ModifiedDate>2008-09-05</ModifiedDate>
  507.   </Filter>
  508.  
  509.   <Filter>
  510.     <FilterID>1</FilterID>
  511.     <FilterCode>FILTER1</FilterCode>
  512.     <Description>Filter 1</Description>
  513.     <Status>0</Status>
  514.     <CreatedBy>AMA</CreatedBy>
  515.     <CreatedDate>2008-09-05</CreatedDate>
  516.     <ModifiedBy>SAF</ModifiedBy>
  517.     <ModifiedDate>2008-09-05</ModifiedDate>
  518.     <FilterDetail>
  519.       <FilterDetailID>1</FilterDetailID>
  520.       <FilterID>1</FilterID>
  521.       <FIXTag>35</FIXTag>
  522.       <FIXTagValue>D</FIXTagValue>
  523.       <Status>0</Status>
  524.       <CreatedBy>AMA</CreatedBy>
  525.       <CreatedDate>2008-09-05</CreatedDate>
  526.       <ModifiedBy>SAF</ModifiedBy>
  527.       <ModifiedDate>2008-09-05</ModifiedDate>
  528.     </FilterDetail>
  529.  
  530.     <FilterDetail>
  531.       <FilterDetailID>2</FilterDetailID>
  532.       <FilterID>1</FilterID>
  533.       <FIXTag>55</FIXTag>
  534.       <FIXTagValue>IBM</FIXTagValue>
  535.       <Status>0</Status>
  536.       <CreatedBy>AMA</CreatedBy>
  537.       <CreatedDate>2008-09-05</CreatedDate>
  538.       <ModifiedBy>SAF</ModifiedBy>
  539.       <ModifiedDate>2008-09-05</ModifiedDate>
  540.     </FilterDetail>
  541.  
  542.   </Filter>
  543.  
  544.   <Filter>
  545.     <FilterID>2</FilterID>
  546.     <FilterCode>FILTER2</FilterCode>
  547.     <Description>Filter 2</Description>
  548.     <Status>0</Status>
  549.     <CreatedBy>AMA</CreatedBy>
  550.     <CreatedDate>2008-09-05</CreatedDate>
  551.     <ModifiedBy>SAF</ModifiedBy>
  552.     <ModifiedDate>2008-09-05</ModifiedDate>
  553.     <FilterDetail>
  554.       <FilterDetailID>3</FilterDetailID>
  555.       <FilterID>2</FilterID>
  556.       <FIXTag>35</FIXTag>
  557.       <FIXTagValue>D</FIXTagValue>
  558.       <Status>0</Status>
  559.       <CreatedBy>AMA</CreatedBy>
  560.       <CreatedDate>2008-09-05</CreatedDate>
  561.       <ModifiedBy>SAF</ModifiedBy>
  562.       <ModifiedDate>2008-09-05</ModifiedDate>
  563.     </FilterDetail>
  564.  
  565.     <FilterDetail>
  566.       <FilterDetailID>4</FilterDetailID>
  567.       <FilterID>2</FilterID>
  568.       <FIXTag>55</FIXTag>
  569.       <FIXTagValue>SUNW</FIXTagValue>
  570.       <Status>0</Status>
  571.       <CreatedBy>AMA</CreatedBy>
  572.       <CreatedDate>2008-09-05</CreatedDate>
  573.       <ModifiedBy>SAF</ModifiedBy>
  574.       <ModifiedDate>2008-09-05</ModifiedDate>
  575.     </FilterDetail>
  576.  
  577.   </Filter>
  578.  
  579.   <Filter>
  580.     <FilterID>3</FilterID>
  581.     <FilterCode>FILTER3</FilterCode>
  582.     <Description>Filter 3</Description>
  583.     <Status>0</Status>
  584.     <CreatedBy>AMA</CreatedBy>
  585.     <CreatedDate>2008-09-05</CreatedDate>
  586.     <ModifiedBy>SAF</ModifiedBy>
  587.     <ModifiedDate>2008-09-05</ModifiedDate>
  588.     <FilterDetail>
  589.       <FilterDetailID>5</FilterDetailID>
  590.       <FilterID>3</FilterID>
  591.       <FIXTag>35</FIXTag>
  592.       <FIXTagValue>D</FIXTagValue>
  593.       <Status>0</Status>
  594.       <CreatedBy>AMA</CreatedBy>
  595.       <CreatedDate>2008-09-05</CreatedDate>
  596.       <ModifiedBy>SAF</ModifiedBy>
  597.       <ModifiedDate>2008-09-05</ModifiedDate>
  598.     </FilterDetail>
  599.  
  600.     <FilterDetail>
  601.       <FilterDetailID>6</FilterDetailID>
  602.       <FilterID>3</FilterID>
  603.       <FIXTag>38</FIXTag>
  604.       <FIXTagValue>3333</FIXTagValue>
  605.       <Status>0</Status>
  606.       <CreatedBy>AMA</CreatedBy>
  607.       <CreatedDate>2008-09-05</CreatedDate>
  608.       <ModifiedBy>SAF</ModifiedBy>
  609.       <ModifiedDate>2008-09-05</ModifiedDate>
  610.     </FilterDetail>
  611.   </Filter>
  612.  
  613.   <Filter>
  614.     <FilterID>4</FilterID>
  615.     <FilterCode>FILTER4</FilterCode>
  616.     <Description>Filter 4</Description>
  617.     <Status>0</Status>
  618.     <CreatedBy>AMA</CreatedBy>
  619.     <CreatedDate>2008-09-05</CreatedDate>
  620.     <ModifiedBy>SAF</ModifiedBy>
  621.     <ModifiedDate>2008-09-05</ModifiedDate>
  622.     <FilterDetail>
  623.       <FilterDetailID>7</FilterDetailID>
  624.       <FilterID>4</FilterID>
  625.       <FIXTag>35</FIXTag>
  626.       <FIXTagValue>D</FIXTagValue>
  627.       <Status>0</Status>
  628.       <CreatedBy>AMA</CreatedBy>
  629.       <CreatedDate>2008-09-05</CreatedDate>
  630.       <ModifiedBy>SAF</ModifiedBy>
  631.       <ModifiedDate>2008-09-05</ModifiedDate>
  632.     </FilterDetail>
  633.  
  634.     <FilterDetail>
  635.       <FilterDetailID>8</FilterDetailID>
  636.       <FilterID>4</FilterID>
  637.       <FIXTag>55</FIXTag>
  638.       <FIXTagValue>CA</FIXTagValue>
  639.       <Status>0</Status>
  640.       <CreatedBy>AMA</CreatedBy>
  641.       <CreatedDate>2008-09-05</CreatedDate>
  642.       <ModifiedBy>SAF</ModifiedBy>
  643.       <ModifiedDate>2008-09-05</ModifiedDate>
  644.     </FilterDetail>
  645.   </Filter>
  646.  
  647.   <TransformProfile>
  648.     <ProfileID>1</ProfileID>
  649.     <ProfileCode>PROFILE1</ProfileCode>
  650.     <Description>Profile 1</Description>
  651.     <FIXVersion>4.4</FIXVersion>
  652.     <Status>0</Status>
  653.     <CreatedBy>AMA</CreatedBy>
  654.     <CreatedDate>2008-09-05</CreatedDate>
  655.     <ModifiedBy>SAF</ModifiedBy>
  656.     <ModifiedDate>2008-09-05</ModifiedDate>
  657.   </TransformProfile>
  658.  
  659.   <TransformProfile>
  660.     <ProfileID>2</ProfileID>
  661.     <ProfileCode>PROFILE2</ProfileCode>
  662.     <Description>Profile 2</Description>
  663.     <FIXVersion>4.1</FIXVersion>
  664.     <Status>0</Status>
  665.     <CreatedBy>AMA</CreatedBy>
  666.     <CreatedDate>2008-09-05</CreatedDate>
  667.     <ModifiedBy>SAF</ModifiedBy>
  668.     <ModifiedDate>2008-09-05</ModifiedDate>
  669.   </TransformProfile>
  670.  
  671.   <TransformProfile>
  672.     <ProfileID>3</ProfileID>
  673.     <ProfileCode>PROFILE3</ProfileCode>
  674.     <Description>Profile 3</Description>
  675.     <FIXVersion>4.1</FIXVersion>
  676.     <Status>0</Status>
  677.     <CreatedBy>AMA</CreatedBy>
  678.     <CreatedDate>2008-09-05</CreatedDate>
  679.     <ModifiedBy>SAF</ModifiedBy>
  680.     <ModifiedDate>2008-09-05</ModifiedDate>
  681.   </TransformProfile>
  682.  
  683.   <TransformProfile>
  684.     <ProfileID>4</ProfileID>
  685.     <ProfileCode>PROFILE4</ProfileCode>
  686.     <Description>Profile 1</Description>
  687.     <FIXVersion>4.1</FIXVersion>
  688.     <Status>0</Status>
  689.     <CreatedBy>AMA</CreatedBy>
  690.     <CreatedDate>2008-09-05</CreatedDate>
  691.     <ModifiedBy>SAF</ModifiedBy>
  692.     <ModifiedDate>2008-09-05</ModifiedDate>
  693.   </TransformProfile>
  694. </FIXadapter2>
Nov 13 '08 #1
3 11846
jkmyoung
2,057 Recognized Expert Top Contributor
Minor thing:
</FIXadapter2>
should be
</FIXadaptor2>

Don't know if that's the problem though.
Nov 13 '08 #2
popprem
19 New Member
Minor thing:
</FIXadapter2>
should be
</FIXadaptor2>

Don't know if that's the problem though.
thanks
It was that XmlRootElement prob.

i gt anothr prob nw
i gt a ClassCastExcept ion nw when this statement is executed :

JAXBElement poe = (JAXBElement) u.unmarshal(new FileInputStream ("/home/prasad/Design/XMLFile.xml"));

error:
Exception in thread "main" java.lang.Class CastException: com.rcfi.qxlink .xmlp.schema.FI Xadaptor2 cannot be cast to javax.xml.bind. JAXBElement.


Is thr any othr way to gt the JAXBElement?

Thanks in advance.
Nov 14 '08 #3
jkmyoung
2,057 Recognized Expert Top Contributor
Need more context:
1. What class is u?

JAXBElement poe = (JAXBElement) u.unmarshal(new FileInputStream ("/home/prasad/Design/XMLFile.xml"));
-------

Original poster has reported this as solved. Closing thread.
Nov 14 '08 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
6566
by: Hal Vaughan | last post by:
I'm using JDK 1.4.1 for Java 2. According to the API docs, I can use javax packages, but when I add: import javax.crypto; I get an error that it can't find the package. Is there some special way to get javax packages? According to a web page at Sun, the crypto is supposed to be included with 1.4. (That's how they write it -- no 1.4.1 or 1.4.2, just written as 1.4.)
5
14718
by: Asad Khan | last post by:
Hi, I am using DrJava, and I am writing a program that has the following statement: import javax.swing; It gives me this error when compiled: File: C:\Program Files\DrJava\CustomJFrame.java
0
4506
by: Shawn | last post by:
I am getting the following error with a Java Applet being served out by IIS over HTTPS/SSL using a Verisign certificate: java.lang.NoClassDefFoundError: javax/help/HelpSetException at java.lang.Class.getDeclaredConstructors0(Native Method) at java.lang.Class.privateGetDeclaredConstructors(Class.java:1590) at java.lang.Class.getConstructor0(Class.java:1762) at java.lang.Class.newInstance0(Class.java:276) at...
2
3542
by: stud | last post by:
import java.util.logging.*; import java.io.*; import java.util.Properties; import javax.mail.*; import javax.mail.internet.*;
3
4866
by: Sherrod Faulks | last post by:
I'm using Jython and in the python script I do: from javax import swing result = javax.swing.JOptionPane.showInputDialog(wC, cmd,"Prompt from " + client.serverName, JOptionPane.PLAIN_MESSAGE) wC is a JFrame, cmd is a String and client.serverName is a String. It won't show the JOptionPane, why?
0
2110
by: Raquel | last post by:
I downloaded UDB PE8.1.3 on Win XP. JDK gets downloaded along with it (Java version 1.3.1). However, when I am trying to compile a java program which uses DataSource interface for Connections (by importing javax.sql.*), it gives me an error message that it could not locate javax.sql package. Found the following on Sun's website: "If your driver vendor bundles the javax.sql package with its product, as many are expected to do, you do...
12
11347
oll3i
by: oll3i | last post by:
when i launch the application from sun application server the console opens throws something i cannt even read what and closes before the application opened and threw nullpointerexception now it suddenly stopped even opening ? but when i run it form bat with JAVA_CLIENT parameter it throws javax.ejb.EJBException: nested exception is: java.rmi.RemoteException: package library.common; import java.sql.ResultSet;
8
6172
oll3i
by: oll3i | last post by:
it worked but suddenly when i run it and click a button it throws exception ? D:\SR>java Producent queue1 queue2 queue3 queue4 queue1,queue2,queue3,queue4 javax.naming.NoInitialContextException: Cannot instantiate class: org.exolab.jms .jndi.InitialContextFactory at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:6 57) at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:288 )
0
2011
by: JAYROO5245 | last post by:
Hi, We are running Weblogic in a clustered environment (2 servers), Citrix as our presentation servers (2) and Oracle as our database backend. We are getting this stacktrace... java.rmi.UnmarshalException: error unmarshalling arguments; nested exception is: java.lang.ClassNotFoundException: Failed to load class com.ams.SomeObject... at weblogic.rjvm.ResponseImpl.unmarshalReturn(ResponseImpl.java:195) at...
0
9666
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10410
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
10139
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9984
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9020
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7529
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6769
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5418
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
4093
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.