Siebel Adapter Error :- oracle.xml.parser.v2.XMLParseException

We are trying to insert records into Siebel using Oracle Siebel Adapter (10.1.3.1) and BPEL. We are successful using the JCA Test Tool with the following request.
<Siebel xmlns:sbl="urn:iwaysoftware:adapter:siebel:oct2004:request" xmlns="urn:iwaysoftware:adapter:siebel:oct2004:request" location="S/BO/MDT Patient/MDT Patient/insert">
<sbl:insert>
<sbl:Email_spcUsage/>
<sbl:First_spcName>NINA</sbl:First_spcName>
<sbl:Last_spcName>GOUBER</sbl:Last_spcName>
<sbl:M_slhF>F</sbl:M_slhF>
<sbl:Middle_spcName>E</sbl:Middle_spcName>
<sbl:Person_spcUId>0000007777</sbl:Person_spcUId>
<sbl:Suffix/>
</sbl:insert>
</Siebel>
But when the Adapter service is invoked from BPEL the following error is coming in the JCA logs.
Thu, 17 Jan 2008 16:09:14.0671 CST - Thread[HTTPThreadGroup-61,5,HTTPThreadGroup] [info ] [IWAF JCA Siebel] IWAFManagedConnection for Siebel:test has listener registered: com.evermind.server.connector.ConnectionContext@1b5d88d
Thu, 17 Jan 2008 16:09:14.0749 CST - Thread[HTTPThreadGroup-61,5,HTTPThreadGroup] [info ] [IWAF JCA Siebel] IWAFManagedConnection for Siebel:test dispatch event 2
Thu, 17 Jan 2008 16:09:14.0749 CST - Thread[HTTPThreadGroup-61,5,HTTPThreadGroup] [error] [IWAF JCA Siebel] **** Error in parsing the input document.
oracle.xml.parser.v2.XMLParseException: Start of root element expected.
     at oracle.xml.parser.v2.XMLError.flushErrors1(XMLError.java:320)
     at oracle.xml.parser.v2.NonValidatingParser.parseRootElement(NonValidatingParser.java:341)
     at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:303)
     at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:205)
     at com.iwaysoftware.idom.XmlDocument.parse(XmlDocument.java:120)
     at com.iwaysoftware.idom.XmlDocument.setRootXML(XmlDocument.java:77)
     at com.ibi.afjca.cci.IWAFInteraction.execProcess(IWAFInteraction.java:195)
     at com.ibi.afjca.cci.IWAFInteraction.exec(IWAFInteraction.java:136)
     at com.ibi.afjca.cci.IWAFInteraction.execute(IWAFInteraction.java:93)
     at oracle.tip.adapter.fw.wsif.jca.WSIFOperation_JCA.executeRequestResponseOperation(WSIFOperation_JCA.java:470)
     at com.collaxa.cube.ws.WSIFInvocationHandler.invoke(WSIFInvocationHandler.java:431)
     at com.collaxa.cube.ws.WSInvocationManager.invoke2(WSInvocationManager.java:416)
     at com.collaxa.cube.ws.WSInvocationManager.invoke(WSInvocationManager.java:222)
     at com.collaxa.cube.engine.ext.wmp.BPELInvokeWMP.__invoke(BPELInvokeWMP.java:736)
     at com.collaxa.cube.engine.ext.wmp.BPELInvokeWMP.__executeStatements(BPELInvokeWMP.java:371)
     at com.collaxa.cube.engine.ext.wmp.BPELActivityWMP.perform(BPELActivityWMP.java:195)
     at com.collaxa.cube.engine.CubeEngine.performActivity(CubeEngine.java:3271)
     at com.collaxa.cube.engine.CubeEngine.handleWorkItem(CubeEngine.java:1697)
     at com.collaxa.cube.engine.dispatch.message.instance.PerformMessageHandler.handleLocal(PerformMessageHandler.java:75)
     at com.collaxa.cube.engine.dispatch.DispatchHelper.handleLocalMessage(DispatchHelper.java:184)
     at com.collaxa.cube.engine.dispatch.DispatchHelper.sendMemory(DispatchHelper.java:269)
     at com.collaxa.cube.engine.CubeEngine.endRequest(CubeEngine.java:5244)
     at com.collaxa.cube.engine.CubeEngine.createAndInvoke(CubeEngine.java:1083)
     at com.collaxa.cube.engine.ejb.impl.CubeEngineBean.createAndInvoke(CubeEngineBean.java:132)
     at com.collaxa.cube.engine.ejb.impl.CubeEngineBean.syncCreateAndInvoke(CubeEngineBean.java:161)
     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
Any help would be appreciated.
Thanks,
Praveen

Following is the WSDL
<?xml version="1.0" encoding="UTF-8"?>
<definitions name="insert"
targetNamespace="http://xmlns.oracle.com/pcbpel/iWay/wsdl/Siebel/test/insert"
xmlns:plt="http://schemas.xmlsoap.org/ws/2003/05/partner-link/"
xmlns:jca="http://xmlns.oracle.com/pcbpel/wsdl/jca/"
xmlns:iWay="http://xmlns.oracle.com/pcbpel/adapter/iWay/"
xmlns:pc="http://xmlns.oracle.com/pcbpel/"
xmlns:insert="http://xmlns.oracle.com/pcbpel/iWay/wsdl/Siebel/test/insert"
xmlns:iWayResponse="urn:iwaysoftware:adapter:siebel:oct2004:response"
xmlns:iWayRequest="urn:iwaysoftware:adapter:siebel:oct2004:request"
xmlns="http://schemas.xmlsoap.org/wsdl/">
<types>
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
targetNamespace="urn:iwaysoftware:adapter:siebel:oct2004:request"
xmlns:sbl="urn:iwaysoftware:adapter:siebel:oct2004:request"
elementFormDefault="qualified">
<xsd:element name="Siebel">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="insert" type="sbl:record"/>
</xsd:sequence>
<xsd:attribute name="location" type="xsd:string" use="optional"
default="S/BO/MDT Patient/MDT Patient/insert"/>
</xsd:complexType>
</xsd:element>
<xsd:complexType name="record">
<xsd:sequence>
<xsd:element name="AMA_spcTOP" type="xsd:string" minOccurs="0"/>
<xsd:element name="Academic_spcEmail" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Access_spcLevel" type="xsd:string" minOccurs="0"/>
<xsd:element name="Accomplishments" type="xsd:string" minOccurs="0"/>
<xsd:element name="Account" type="xsd:string" minOccurs="0"/>
<xsd:element name="Account_spcAddress_spcName" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Account_spcCurrency_spcCode" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Account_spcCurrency_spcCode_spcDummy"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Account_spcFor_spcOutlook" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Account_spcId" type="xsd:string" minOccurs="0"/>
<xsd:element name="Account_spcIntegration_spcId" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Account_spcLocation" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Account_spcMod_spcId" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Account_spcNumber" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Account_spcOrganization" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Account_spcPartner_spcFlag" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Account_spcParty_spcUId" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Account_spcPrice_spcList_spcId" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Account_spcPrimary_spcAddress_spcId"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Account_spcPrimary_spcBill_spcTo_spcAddress_spcId"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Account_spcPrimary_spcBill_spcTo_spcPerson_spcId"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Account_spcPrimary_spcMarket" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Account_spcPrimary_spcShip_spcTo_spcAddress_spcId"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Account_spcPrimary_spcShip_spcTo_spcPerson_spcId"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Account_spcRow_spcId" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Account_spcStatus" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Account_spcStreet_spcAddress" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Account_spcSurvey_spcType" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Account_spcType" type="xsd:string" minOccurs="0"/>
<xsd:element name="Action_spcContact_spcRow_spcStatus"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Action_spcRow_spcStatus" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Action_spcType" type="xsd:string" minOccurs="0"/>
<xsd:element name="Active_spcStatus" type="xsd:string" minOccurs="0"/>
<xsd:element name="Address_spcDisable_spcDataCleansing"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Address_spcName" type="xsd:string" minOccurs="0"/>
<xsd:element name="Address_spcName_spcLocked_spcFlag"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Address_spcS-S_spcInstance" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Address_spcType" type="xsd:string" minOccurs="0"/>
<xsd:element name="Affiliated_spcAccount" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Affiliated_spcAccount_spcId" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Affiliations" type="xsd:string" minOccurs="0"/>
<xsd:element name="Affinity_spcGroups" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Age" type="xsd:string" minOccurs="0"/>
<xsd:element name="Agenda" type="xsd:string" minOccurs="0"/>
<xsd:element name="Agent_spcNumber" type="xsd:string" minOccurs="0"/>
<xsd:element name="Alert" type="xsd:string" minOccurs="0"/>
<xsd:element name="Algorithm_spcType" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Alias" type="xsd:string" minOccurs="0"/>
<xsd:element name="Alignment" type="xsd:string" minOccurs="0"/>
<xsd:element name="All_spcFunds_spcManaged" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Alliance_spcPartner_spcFlag" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Alternate_spcEmail_spcAddress" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Alternate_spcPhone_spc_pnd" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Alternate_spcPhone_spcId" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Alternate_spcPhone_spcIntegration_spcId"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Alternate_spcPhone_spcMedium_spcType"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Alternate_spcPhone_spcName" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Alternate_spcPhone_spcNumber" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Annual_spcIncome" type="xsd:string" minOccurs="0"/>
<xsd:element name="Annual_spcRevenue" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Applicant_spcType" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Applicant_spcType_spcINT" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Application_spcName" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Application_spcOwnership_spcType_spcINT"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Approval_spcAuthority" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Approval_spcAuthority_spcFINCORP" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Area_spcof_spcExpertise" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Assessment_spcName" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Assessment_spcScore" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Assessment_spcStar_spcValue" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Assessment_spcValue" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Asset_spcBalance" type="xsd:string" minOccurs="0"/>
<xsd:element name="Asset_spcCurrency" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Asset_spcId" type="xsd:string" minOccurs="0"/>
<xsd:element name="Asset_spcLiability_spcRelation_spcCode"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Asset_spcLiability_spcStart_spcDate"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Asset_spcRelationship" type="xsd:string"
minOccurs="0"/>
<xsd:element name="AssetLiab_spcOwnership_spc_pct" type="xsd:string"
minOccurs="0"/>
<xsd:element name="AssetLiab_spcOwnership_spcValue" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Assignment_spcExcluded" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Assistant" type="xsd:string" minOccurs="0"/>
<xsd:element name="Assistant_spcEmail_spcAddress" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Assistant_spcPhone_spc_pnd" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Attempted_spcValidation" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Authorization_spcLevel" type="xsd:string"
minOccurs="0"/>
<xsd:element name="AutoSchedule_spcDuration_spcMinutes"
type="xsd:string" minOccurs="0"/>
<xsd:element name="AutoSchedule_spcEnd_spcDate" type="xsd:string"
minOccurs="0"/>
<xsd:element name="AutoSchedule_spcStart_spcDate" type="xsd:string"
minOccurs="0"/>
<xsd:element name="AutoSchedule_spcWeekends" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Average_spcno._spcof_spcmiles_slhkm_spcdriven_spcper_spcyear"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Banking_spcRelationship" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Bankruptcy_spcRelationship_spcType"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Best_spcCall_spcTime" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Bill_spcPay_spcAmount_spcLimit" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Bill_spcPay_spcBSP_spcCustomer_spcId"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Bill_spcPay_spcEnrolled" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Bill_spcPayment_spcEnrollment_spcFlag"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Bill_spcPresentment_spcEnrollment_spcFlag"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Birth_spcDate" type="xsd:string" minOccurs="0"/>
<xsd:element name="BirthYear" type="xsd:string" minOccurs="0"/>
<xsd:element name="Board_spcSeat" type="xsd:string" minOccurs="0"/>
<xsd:element name="Branch" type="xsd:string" minOccurs="0"/>
<xsd:element name="Branch_spcId" type="xsd:string" minOccurs="0"/>
<xsd:element name="Brick_spcId" type="xsd:string" minOccurs="0"/>
<xsd:element name="Brick_spcName" type="xsd:string" minOccurs="0"/>
<xsd:element name="Business_spcCity" type="xsd:string" minOccurs="0"/>
<xsd:element name="Business_spcCountry" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Business_spcPostal_spcCode" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Business_spcResults" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Business_spcState" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Business_spcStreet_spcAddress" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Business_spcStreet_spcAddress_spc2"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Buying_spcStyle" type="xsd:string" minOccurs="0"/>
<xsd:element name="COB_spcFlg" type="xsd:string" minOccurs="0"/>
<xsd:element name="COB_spcFlg_spcDisplay_spcValue" type="xsd:string"
minOccurs="0"/>
<xsd:element name="CSN" type="xsd:string" minOccurs="0"/>
<xsd:element name="CT1" type="xsd:string" minOccurs="0"/>
<xsd:element name="CT2" type="xsd:string" minOccurs="0"/>
<xsd:element name="CT3" type="xsd:string" minOccurs="0"/>
<xsd:element name="CT4" type="xsd:string" minOccurs="0"/>
<xsd:element name="CT5" type="xsd:string" minOccurs="0"/>
<xsd:element name="CT6" type="xsd:string" minOccurs="0"/>
<xsd:element name="Calc_spcName" type="xsd:string" minOccurs="0"/>
<xsd:element name="Calculated_spcAccount_spcId" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Calculated_spcType" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Call" type="xsd:string" minOccurs="0"/>
<xsd:element name="Call_spcClass" type="xsd:string" minOccurs="0"/>
<xsd:element name="Case_spcRel_spcType_spcCode" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Cellular_spcPhone_spc_pnd" type="xsd:string"
minOccurs="0"/>
<xsd:element name="ChallengeAnswer" type="xsd:string" minOccurs="0"/>
<xsd:element name="ChallengeQuestion" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Child_spcAction_spcType" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Citizenship" type="xsd:string" minOccurs="0"/>
<xsd:element name="City" type="xsd:string" minOccurs="0"/>
<xsd:element name="Clinical_spcRole" type="xsd:string" minOccurs="0"/>
<xsd:element name="Coach" type="xsd:string" minOccurs="0"/>
<xsd:element name="Comment" type="xsd:string" minOccurs="0"/>
<xsd:element name="Communication_spcAddress_spcId" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Communication_spcAddress_spcIntegration_spcId"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Communication_spcAddress_spcMedium_spcType"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Communication_spcAddress_spcName" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Communication_spcAddress_spcPerson_spcId"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Company_spcIdentifier" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Completed_spcSpine_spcFellowship" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Computer_spcOwnership_spcFlag" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Confidential_spcReason" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Consumer_spcFlag" type="xsd:string" minOccurs="0"/>
<xsd:element name="Contact_spcAlert_spcActive_spc_lprInteger_rpr"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Contact_spcCreated_spcDate" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Contact_spcId" type="xsd:string" minOccurs="0"/>
<xsd:element name="Contact_spcImage_spcDescription" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Contact_spcImage_spcDock_spcStatus"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Contact_spcImage_spcId" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Contact_spcOrganization_spcIntegration_spcId"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Contact_spcPreference" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Contact_spcRegion" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Contact_spcUpdated_spcDate" type="xsd:string"
minOccurs="0"/>
<xsd:element name="ContactImgFileAutoUpdFlg" type="xsd:string"
minOccurs="0"/>
<xsd:element name="ContactImgFileDate" type="xsd:string"
minOccurs="0"/>
<xsd:element name="ContactImgFileDockStatFlg" type="xsd:string"
minOccurs="0"/>
<xsd:element name="ContactImgFileExt" type="xsd:string"
minOccurs="0"/>
<xsd:element name="ContactImgFileName" type="xsd:string"
minOccurs="0"/>
<xsd:element name="ContactImgFileSize" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Contacted" type="xsd:string" minOccurs="0"/>
<xsd:element name="Contract_spcFlag" type="xsd:string" minOccurs="0"/>
<xsd:element name="Contracted_spcSince" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Correspondence_spcPreference" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Cost_spcCenter" type="xsd:string" minOccurs="0"/>
<xsd:element name="Country" type="xsd:string" minOccurs="0"/>
<xsd:element name="County" type="xsd:string" minOccurs="0"/>
<xsd:element name="Courses" type="xsd:string" minOccurs="0"/>
<xsd:element name="Created_spcAt" type="xsd:string" minOccurs="0"/>
<xsd:element name="Created_spcBy_spcName" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Credit_spcAgency" type="xsd:string" minOccurs="0"/>
<xsd:element name="Credit_spcBureau_spc_pnd" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Credit_spcScore" type="xsd:string" minOccurs="0"/>
<xsd:element name="CurrYear" type="xsd:string" minOccurs="0"/>
<xsd:element name="Currency_spcCode" type="xsd:string" minOccurs="0"/>
<xsd:element name="Current_spcFunds_spcManaged" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Current_spcStay_spcId" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Current_spcStay_spcOverdue_spcNum"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Customer_spcNumber" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Customer_spcSession" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Customer_spcUntil_spcDate" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Customer_spcValue" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Customer_spcValue_spc1" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Customer_spcValue_spc2" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Customer_spcValue_spc3" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Customer_spcValue_spc4" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Customer_spcValue_spc5" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Customer_spcValue_spcIndicator" type="xsd:string"
minOccurs="0"/>
<xsd:element name="DEA_spcExpr_spc-_spcold" type="xsd:string"
minOccurs="0"/>
<xsd:element name="DEA_pnd_spc-_spcold" type="xsd:string"
minOccurs="0"/>
<xsd:element name="DL_spcExpiration_spcDate" type="xsd:string"
minOccurs="0"/>
<xsd:element name="DL_spcNumber" type="xsd:string" minOccurs="0"/>
<xsd:element name="DL_spcState" type="xsd:string" minOccurs="0"/>
<xsd:element name="DUNS_spcNumber" type="xsd:string" minOccurs="0"/>
<xsd:element name="Date_spcEntered_spcHousehold" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Date_spcExited_spcHousehold" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Date_spcof_spcBirth" type="xsd:string"
minOccurs="0"/>
<xsd:element name="DeDup_spcKey_spcModification_spcDate"
type="xsd:string" minOccurs="0"/>
<xsd:element name="DeDup_spcKeys" type="xsd:string" minOccurs="0"/>
<xsd:element name="DeDup_spcLast_spcMatch_spcDate" type="xsd:string"
minOccurs="0"/>
<xsd:element name="DeDup_spcToken" type="xsd:string" minOccurs="0"/>
<xsd:element name="Deceased_spcFlag" type="xsd:string" minOccurs="0"/>
<xsd:element name="Decile" type="xsd:string" minOccurs="0"/>
<xsd:element name="Decision_spcCriteria_spcBusiness" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Decision_spcCriteria_spcProduct" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Decision_spcIssue_spcName" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Decision_spcIssues" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Decision_spcOrientation" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Dedup_spcToken" type="xsd:string" minOccurs="0"/>
<xsd:element name="Deduplication_spcMatch_spcScore" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Deduplication_spcObject_spcId" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Default_spcRole" type="xsd:string" minOccurs="0"/>
<xsd:element name="Degree" type="xsd:string" minOccurs="0"/>
<xsd:element name="Degree_spcof_spcInfluence" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Denorm_spcContact_spcFirst_spcName"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Denorm_spcContact_spcLast_spcName"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Department" type="xsd:string" minOccurs="0"/>
<xsd:element name="Designation" type="xsd:string" minOccurs="0"/>
<xsd:element name="Designations" type="xsd:string" minOccurs="0"/>
<xsd:element name="Directory_spcKey" type="xsd:string" minOccurs="0"/>
<xsd:element name="DirectoryKey" type="xsd:string" minOccurs="0"/>
<xsd:element name="Disable_spcDataCleansing" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Discount_spcEligible" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Discount_spcUsed_spcin_spcPast" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Dislikes" type="xsd:string" minOccurs="0"/>
<xsd:element name="Division_spcDescription" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Dock_spcFlag" type="xsd:string" minOccurs="0"/>
<xsd:element name="Dollars_spcSpent_spcwith_spcfacility_spcfor_spcservice_spcand_spcparts"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Driver_spcLicense_spcExpiration" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Driver_spcLicense_spcNumber" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Driver_spcLicense_spcState" type="xsd:string"
minOccurs="0"/>
<xsd:element name="EP_spcAdministrative_spcCoordinator_spcFirst_spcName"
type="xsd:string" minOccurs="0"/>
<xsd:element name="EP_spcAdministrative_spcCoordinator_spcId"
type="xsd:string" minOccurs="0"/>
<xsd:element name="EP_spcAdministrative_spcCoordinator_spcLast_spcName"
type="xsd:string" minOccurs="0"/>
<xsd:element name="ESP_spcDecision_spcOrientation" type="xsd:string"
minOccurs="0"/>
<xsd:element name="ESP_spcOrg_spcStatus" type="xsd:string"
minOccurs="0"/>
<xsd:element name="ESP_spcPolitical_spcAnalysis" type="xsd:string"
minOccurs="0"/>
<xsd:element name="ESP_spcRole" type="xsd:string" minOccurs="0"/>
<xsd:element name="ESP_spcTime_spcSpent" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Economic_spcBuyer" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Education" type="xsd:string" minOccurs="0"/>
<xsd:element name="Educational_spcBackground" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Educational_spcBackground_spcINACTIVE"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Email_spcAddress" type="xsd:string" minOccurs="0"/>
<xsd:element name="Email_spcAddress_spc2" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Email_spcSR_spcUpdates_spcFlag" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Email_spcUsage" type="xsd:string" minOccurs="0"/>
<xsd:element name="Email_spcUsage_spc2" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Employee_spcFirst_spcName" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Employee_spcFlag" type="xsd:string" minOccurs="0"/>
<xsd:element name="Employee_spcId" type="xsd:string" minOccurs="0"/>
<xsd:element name="Employee_spcLast_spcName" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Employee_spcLogin_spcName" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Employee_spcNumber" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Employer_spcId" type="xsd:string" minOccurs="0"/>
<xsd:element name="Employer_spcName" type="xsd:string" minOccurs="0"/>
<xsd:element name="Employer_spcName_spcFree_spcText" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Employer_spcSite" type="xsd:string" minOccurs="0"/>
<xsd:element name="Encryption_spcIndex_spcKey" type="xsd:string"
minOccurs="0"/>
<xsd:element name="End_spcDate" type="xsd:string" minOccurs="0"/>
<xsd:element name="Evidence_spcto_spcsupport_spcrating"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Exchange_spcDate" type="xsd:string" minOccurs="0"/>
<xsd:element name="Exists_spcNew_spcOutBound_spcEmail_spcActivities"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Experience_spcLevel" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Exprience_spcwith_spcIntitution" type="xsd:string"
minOccurs="0"/>
<xsd:element name="FINS_spcEducation" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Faculty_spcComments" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Faculty_spcStatus" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Family" type="xsd:string" minOccurs="0"/>
<xsd:element name="Family_spcMembers" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Fax_spcAddress" type="xsd:string" minOccurs="0"/>
<xsd:element name="Fax_spcPhone_spc_pnd" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Fed_spcIncome_spcTax_spcBracket" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Fellow_spcSuggestions" type="xsd:string"
minOccurs="0"/>
<xsd:element name="First_spcImplant_spcDate" type="xsd:string"
minOccurs="0"/>
<xsd:element name="First_spcName" type="xsd:string" minOccurs="0"/>
<xsd:element name="Firstlogic_spcMatch_spcKey" type="xsd:string"
minOccurs="0"/>
<xsd:element name="For_spcContract_spcFlag" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Frequency_spcof_spcreplacement" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Full_spcAddress" type="xsd:string" minOccurs="0"/>
<xsd:element name="Full_spcAddress_spc2" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Full_spcAddress_spc2_spcActive_spcFlag"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Full_spcName" type="xsd:string" minOccurs="0"/>
<xsd:element name="Full_spcName_spcFor_spcINS" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Full_spcName_spcFor_spcOutlook" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Full_spcName_spcFor_spcOutlook_spcENU"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Full_spcName_spcFor_spcOutlook_spcJPN"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Full_spcName_spcNo_spcSpace" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Geographic_spcPreference" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Global_spcOpt_spcIn_slhOut" type="xsd:string"
minOccurs="0"/>
<xsd:element name="GotoeDealerView" type="xsd:string" minOccurs="0"/>
<xsd:element name="Guarantor_spcFlag" type="xsd:string"
minOccurs="0"/>
<xsd:element name="HLS_spcCitizenship" type="xsd:string"
minOccurs="0"/>
<xsd:element name="HMS_spcPhysician_spcID" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Hard_spcTo_spcReach" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Has_spcAlerts" type="xsd:string" minOccurs="0"/>
<xsd:element name="Head_spcId" type="xsd:string" minOccurs="0"/>
<xsd:element name="High_spcPrescriber_spcFlag" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Hire_spcDate" type="xsd:string" minOccurs="0"/>
<xsd:element name="Hire_spcMonth" type="xsd:string" minOccurs="0"/>
<xsd:element name="Hired_spcBy" type="xsd:string" minOccurs="0"/>
<xsd:element name="Hobbies" type="xsd:string" minOccurs="0"/>
<xsd:element name="Hobby" type="xsd:string" minOccurs="0"/>
<xsd:element name="Home_spcPhone_spc_pnd" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Household" type="xsd:string" minOccurs="0"/>
<xsd:element name="Household_spcId" type="xsd:string" minOccurs="0"/>
<xsd:element name="Household_spcIntegration_spcId" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Household_spcName" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Household_spcNumber" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Household_spcParty_spcUId" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Household_spcStatus" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Households" type="xsd:string" minOccurs="0"/>
<xsd:element name="ICD_spcProcedure_spcDecile" type="xsd:string"
minOccurs="0"/>
<xsd:element name="ID_spcExpiration_spcDate" type="xsd:string"
minOccurs="0"/>
<xsd:element name="ID_spcInformation" type="xsd:string"
minOccurs="0"/>
<xsd:element name="ID_spcState" type="xsd:string" minOccurs="0"/>
<xsd:element name="ID_spcType" type="xsd:string" minOccurs="0"/>
<xsd:element name="INS_spcEmployers_spcName" type="xsd:string"
minOccurs="0"/>
<xsd:element name="INS_spcHousehold_spcId" type="xsd:string"
minOccurs="0"/>
<xsd:element name="INS_spcHousehold_spcName" type="xsd:string"
minOccurs="0"/>
<xsd:element name="INS_spcIncome" type="xsd:string" minOccurs="0"/>
<xsd:element name="INS_spcInsured_spcItem_spcRole" type="xsd:string"
minOccurs="0"/>
<xsd:element name="INS_spcOccupation" type="xsd:string"
minOccurs="0"/>
<xsd:element name="INS_spcPersonal_spcAddress_spcId" type="xsd:string"
minOccurs="0"/>
<xsd:element name="INS_spcPersonal_spcAddress_spcIndicator"
type="xsd:string" minOccurs="0"/>
<xsd:element name="INS_spcPersonal_spcAddress_spcName"
type="xsd:string" minOccurs="0"/>
<xsd:element name="INS_spcPersonal_spcAddress_spcType"
type="xsd:string" minOccurs="0"/>
<xsd:element name="INS_spcPersonal_spcCity" type="xsd:string"
minOccurs="0"/>
<xsd:element name="INS_spcPersonal_spcCountry" type="xsd:string"
minOccurs="0"/>
<xsd:element name="INS_spcPersonal_spcCounty" type="xsd:string"
minOccurs="0"/>
<xsd:element name="INS_spcPersonal_spcIntegration_spcId"
type="xsd:string" minOccurs="0"/>
<xsd:element name="INS_spcPersonal_spcPostal_spcCode"
type="xsd:string" minOccurs="0"/>
<xsd:element name="INS_spcPersonal_spcState" type="xsd:string"
minOccurs="0"/>
<xsd:element name="INS_spcPersonal_spcStreet_spcAddress"
type="xsd:string" minOccurs="0"/>
<xsd:element name="INS_spcPersonal_spcStreet_spcAddress_spc2"
type="xsd:string" minOccurs="0"/>
<xsd:element name="IPG_spcProcedure_spcDecile" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Ideal_spcCall_spcTime" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Identifier" type="xsd:string" minOccurs="0"/>
<xsd:element name="Implanter_spcFlag" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Income" type="xsd:string" minOccurs="0"/>
<xsd:element name="Income_spcCurrency_spcCode" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Income_spcExchange_spcDate" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Income_spcExpense_spcRelation_spcCode"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Income_spcExpenses_spcOwnership_spc_pct"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Income_spcExpenses_spcOwnership_spcValue"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Income_spcExpenses_spcStart_spcDate"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Industry" type="xsd:string" minOccurs="0"/>
<xsd:element name="Industry_spcCORE" type="xsd:string" minOccurs="0"/>
<xsd:element name="Influencer_spcFirst_spcName" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Influencer_spcLast_spcName" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Insurance_spcPlan_spcAccept" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Insurance_spcPlan_spcBelong" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Integration_spcId" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Interest_spcLevel" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Interest_spcPrice" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Interest_spcQuantity" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Interest_spcReport_spcDate" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Interest_spcType" type="xsd:string" minOccurs="0"/>
<xsd:element name="Interests" type="xsd:string" minOccurs="0"/>
<xsd:element name="Investigator_spcFlag" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Investment_spcExperience" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Investment_spcHorizon" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Investment_spcKnowledge" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Investment_spcPortfolio_spcRisk_spcAssessment"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Investment_spcProfile" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Invite_spcTo_spcSeminars" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Invoice_spcComments" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Is_spcAgent" type="xsd:string" minOccurs="0"/>
<xsd:element name="Is_spcLife_spcSciences" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Is_spceDealer" type="xsd:string" minOccurs="0"/>
<xsd:element name="Job_spcTitle" type="xsd:string" minOccurs="0"/>
<xsd:element name="Jobs_spcin_spcFive_spcYears" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Joined_spcAccount_spcId" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Key_spcOpinion_spcLeader" type="xsd:string"
minOccurs="0"/>
<xsd:element name="LOY_spcMember_spcId" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Language_spcId" type="xsd:string" minOccurs="0"/>
<xsd:element name="Language_spcPreference" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Last_spcClnse_spcDate" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Last_spcCredit_spcDate" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Last_spcName" type="xsd:string" minOccurs="0"/>
<xsd:element name="Last_spcName_cma_spcFirst_spcName"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Last_spcName_cma_spcFirst_spcName_spcENU"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Last_spcName_cma_spcFirst_spcName_spcJPN"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Last_spcUpdate_spc-_spcSDQ" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Legal_spcName" type="xsd:string" minOccurs="0"/>
<xsd:element name="Liability_spcBalance" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Liability_spcCurrency" type="xsd:string"
minOccurs="0"/>
<xsd:element name="License_spcExpiry_spcDate" type="xsd:string"
minOccurs="0"/>
<xsd:element name="License_spcNumber" type="xsd:string"
minOccurs="0"/>
<xsd:element name="License_spcState" type="xsd:string" minOccurs="0"/>
<xsd:element name="License_spcStatus" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Life_spcEvent" type="xsd:string" minOccurs="0"/>
<xsd:element name="Life_spcEvent_spcId" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Life_spcEvent_spcValue" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Life_spcEvents" type="xsd:string" minOccurs="0"/>
<xsd:element name="Likes" type="xsd:string" minOccurs="0"/>
<xsd:element name="Liquid_spcNet_spcWorth" type="xsd:string"
minOccurs="0"/>
<xsd:element name="List_spcMgmt_spcList_spcId" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Locators" type="xsd:string" minOccurs="0"/>
<xsd:element name="Logan_spcTest_crt" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Login" type="xsd:string" minOccurs="0"/>
<xsd:element name="Login_spcName" type="xsd:string" minOccurs="0"/>
<xsd:element name="Login_spcPassword" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Loyalty_spcComment" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Loyalty_spcContact_spcFull_spcName"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Loyalty_spcEmergency_spcContact_spcId"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Loyalty_spcMember_spcId" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Loyalty_spcMember_spcType" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Loyalty_spcMember_spcType_spcCal" type="xsd:string"
minOccurs="0"/>
<xsd:element name="M_slhF" type="xsd:string" minOccurs="0"/>
<xsd:element name="M_slhM" type="xsd:string" minOccurs="0"/>
<xsd:element name="MDT_spcAccount_spcAddress_spcName"
type="xsd:string" minOccurs="0"/>
<xsd:element name="MDT_spcActiva" type="xsd:string" minOccurs="0"/>
<xsd:element name="MDT_spcActivity_spcRole" type="xsd:string"
minOccurs="0"/>
<xsd:element name="MDT_spcAdoption" type="xsd:string" minOccurs="0"/>
<xsd:element name="MDT_spcBusiness_spcManager_spcFlag"
type="xsd:string" minOccurs="0"/>
<xsd:element name="MDT_spcClinical_spcResearcher_spcflag"
type="xsd:string" minOccurs="0"/>
<xsd:element name="MDT_spcClinical_spcStudies_spcflag"
type="xsd:string" minOccurs="0"/>
<xsd:element name="MDT_spcContact_spcFullName" type="xsd:string"
minOccurs="0"/>
<xsd:element name="MDT_spcContract_spcExpiration_spcDate"
type="xsd:string" minOccurs="0"/>
<xsd:element name="MDT_spcDART_spcAddress_spcRead_spcOnly_spcFlag"
type="xsd:string" minOccurs="0"/>
<xsd:element name="MDT_spcDART_spcDeceased_spcDate" type="xsd:string"
minOccurs="0"/>
<xsd:element name="MDT_spcDART_spcDo_spcNot_spcContact_spcFlag"
type="xsd:string" minOccurs="0"/>
<xsd:element name="MDT_spcDART_spcDo_spcNot_spcTrack_spcFlag"
type="xsd:string" minOccurs="0"/>
<xsd:element name="MDT_spcDART_spcDuplicate_spcFlag" type="xsd:string"
minOccurs="0"/>
<xsd:element name="MDT_spcDART_spcEmail_spcUndeliverable_spcFlag"
type="xsd:string" minOccurs="0"/>
<xsd:element name="MDT_spcDART_spcMedtronic_spcId" type="xsd:string"
minOccurs="0"/>
<xsd:element name="MDT_spcDART_spcPatient_spcID" type="xsd:string"
minOccurs="0"/>
<xsd:element name="MDT_spcDART_spcPatient_spcID_spcType"
type="xsd:string" minOccurs="0"/>
<xsd:element name="MDT_spcDART_spcPrivacy_spcFlag" type="xsd:string"
minOccurs="0"/>
<xsd:element name="MDT_spcDART_spcProtected_spcFlag" type="xsd:string"
minOccurs="0"/>
<xsd:element name="MDT_spcDART_spcRefuse_spcSSN_spcFlag"
type="xsd:string" minOccurs="0"/>
<xsd:element name="MDT_spcDART_spcSpecial_spcNeeds" type="xsd:string"
minOccurs="0"/>
<xsd:element name="MDT_spcDistrict" type="xsd:string" minOccurs="0"/>
<xsd:element name="MDT_spcITB" type="xsd:string" minOccurs="0"/>
<xsd:element name="MDT_spcImplanter" type="xsd:string" minOccurs="0"/>
<xsd:element name="MDT_spcKey_spcContact_spc1" type="xsd:string"
minOccurs="0"/>
<xsd:element name="MDT_spcKey_spcContact_spc2" type="xsd:string"
minOccurs="0"/>
<xsd:element name="MDT_spcKey_spcContact_spc3" type="xsd:string"
minOccurs="0"/>
<xsd:element name="MDT_spcKey_spcContact_spcType" type="xsd:string"/>
<xsd:element name="MDT_spcMGU_spcDecile" type="xsd:string"
minOccurs="0"/>
<xsd:element name="MDT_spcMGU_spcDecile_spcType" type="xsd:string"
minOccurs="0"/>
<xsd:element name="MDT_spcMGU_spcDrug_spcDescription"
type="xsd:string" minOccurs="0"/>
<xsd:element name="MDT_spcMGU_spcMultiple_spcProcedures"
type="xsd:string" minOccurs="0"/>
<xsd:element name="MDT_spcMGU_spcNRx" type="xsd:string"
minOccurs="0"/>
<xsd:element name="MDT_spcMGU_spcTRx" type="xsd:string"
minOccurs="0"/>
<xsd:element name="MDT_spcMGU_spcTherapy_spcMix" type="xsd:string"
minOccurs="0"/>
<xsd:element name="MDT_spcManaging_spcPhysician" type="xsd:string"
minOccurs="0"/>
<xsd:element name="MDT_spcMedtronic_spcfaculty_spcflag"
type="xsd:string" minOccurs="0"/>
<xsd:element name="MDT_spcNational_spcRank" type="xsd:string"
minOccurs="0"/>
<xsd:element name="MDT_spcNeuro_spcSegType" type="xsd:string"
minOccurs="0"/>
<xsd:element name="MDT_spcNum_spcPatients" type="xsd:string"
minOccurs="0"/>
<xsd:element name="MDT_spcNum_spcPatients_spcManaged_slhReferred"
type="xsd:string" minOccurs="0"/>
<xsd:element name="MDT_spcNum_spcof_spcProgrammers" type="xsd:string"
minOccurs="0"/>
<xsd:element name="MDT_spcPain_spcPump" type="xsd:string"
minOccurs="0"/>
<xsd:element name="MDT_spcPain_spcStim" type="xsd:string"
minOccurs="0"/>
<xsd:element name="MDT_spcPatient_spcMgmt_spcCoordinator_spcFlag"
type="xsd:string" minOccurs="0"/>
<xsd:element name="MDT_spcPatient_spcType" type="xsd:string"
minOccurs="0"/>
<xsd:element name="MDT_spcPhysician_spcFinder_spcFlag"
type="xsd:string" minOccurs="0"/>
<xsd:element name="MDT_spcPrimary_spcContact_spcAgreement_spcId"
type="xsd:string" minOccurs="0"/>
<xsd:element name="MDT_spcProf_spcAssn" type="xsd:string"
minOccurs="0"/>
<xsd:element name="MDT_spcProgrammer_spcFlag" type="xsd:string"
minOccurs="0"/>
<xsd:element name="MDT_spcProjected_spcClaims" type="xsd:string"
minOccurs="0"/>
<xsd:element name="MDT_spcRDT" type="xsd:string" minOccurs="0"/>
<xsd:element name="MDT_spcRegion" type="xsd:string" minOccurs="0"/>
<xsd:element name="MDT_spcRole" type="xsd:string" minOccurs="0"/>
<xsd:element name="MDT_spcSegType" type="xsd:string" minOccurs="0"/>
<xsd:element name="MDT_spcSource_spcId" type="xsd:string"
minOccurs="0"/>
<xsd:element name="MDT_spcSource_spcName" type="xsd:string"
minOccurs="0"/>
<xsd:element name="MDT_spcSpeaker_spcFlag" type="xsd:string"
minOccurs="0"/>
<xsd:element name="MDT_spcSpeakerComp_spcFlag" type="xsd:string"
minOccurs="0"/>
<xsd:element name="MDT_spcTargeted" type="xsd:string" minOccurs="0"/>
<xsd:element name="MDT_spcTherapy" type="xsd:string" minOccurs="0"/>
<xsd:element name="MDT_spcTrial" type="xsd:string" minOccurs="0"/>
<xsd:element name="MDT_spcVisited_spcHQ_spcFlag" type="xsd:string"
minOccurs="0"/>
<xsd:element name="MDTAnalyticsImplanterProfile" type="xsd:string"
minOccurs="0"/>
<xsd:element name="MDTMGUContactAnalyticsReport" type="xsd:string"
minOccurs="0"/>
<xsd:element name="MDTMGUContactBOReport" type="xsd:string"
minOccurs="0"/>
<xsd:element name="MDTMGUTgtReadOnly" type="xsd:string"
minOccurs="0"/>
<xsd:element name="MDTNeuroContactAnalyticsReport" type="xsd:string"
minOccurs="0"/>
<xsd:element name="MDTNeuroContactBOReport" type="xsd:string"
minOccurs="0"/>
<xsd:element name="MDTReadOnly" type="xsd:string" minOccurs="0"/>
<xsd:element name="MDTTgtReadOnly" type="xsd:string" minOccurs="0"/>
<xsd:element name="MDU_spcMGU_spcDrug_spcDescription"
type="xsd:string" minOccurs="0"/>
<xsd:element name="ME_spcSpeaker_spcFlag" type="xsd:string"
minOccurs="0"/>
<xsd:element name="MVG_spcPrimary_spcEmployee_spcId" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Maiden_spcName" type="xsd:string" minOccurs="0"/>
<xsd:element name="Mail_spcStop" type="xsd:string" minOccurs="0"/>
<xsd:element name="Mail_spcType_spcCode" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Manager" type="xsd:string" minOccurs="0"/>
<xsd:element name="Manager_spcFirst_spcName" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Manager_spcId" type="xsd:string" minOccurs="0"/>
<xsd:element name="Manager_spcIntegration_spcId" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Manager_spcLast_spcName" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Manager_spcMiddle_spcName" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Manager_spcPrimary_spcOrganization"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Manager_spcPrimary_spcOrganization_spcId"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Manager_spcTenure" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Manager_spcUId" type="xsd:string" minOccurs="0"/>
<xsd:element name="Marital_spcStatus" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Market_spcCap_spcPref" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Market_spcPotential" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Market_spcSegment" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Married" type="xsd:string" minOccurs="0"/>
<xsd:element name="Mega_spcPhysician" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Member_spcFlag" type="xsd:string" minOccurs="0"/>
<xsd:element name="Member_spcNumber" type="xsd:string" minOccurs="0"/>
<xsd:element name="Memberships" type="xsd:string" minOccurs="0"/>
<xsd:element name="Merge_spcSequence_spcNumber" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Middle_spcName" type="xsd:string" minOccurs="0"/>
<xsd:element name="Mobile_spcPhone_spcTxt_spcAddress"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Mode" type="xsd:string" minOccurs="0"/>
<xsd:element name="Months_spcat_spcResidence" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Mother_spcMaiden_spcName" type="xsd:string"
minOccurs="0"/>
<xsd:element name="My_spcPosition_spcId" type="xsd:string"
minOccurs="0"/>
<xsd:element name="No_spcNew_spcOutBound_spcEmail_spcActivities"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Number_spcOf_spcDependents" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Number_spcof_spcImplants" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Number_spcof_spcMDT_spcImplants" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Number_spcof_spcReferrals" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Number_spcof_spcYears_spcat_spcSchool"
type="xsd:string" minOccurs="0"/>
<xsd:element name="OK_spcTo_spcSample" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Opportunity" type="xsd:string" minOccurs="0"/>
<xsd:element name="Opportunity_spcAccount" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Opportunity_spcAccount_spcLocation"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Opportunity_spcContact_spcComment"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Opportunity_spcEnd_spcDate" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Opportunity_spcId" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Opportunity_spcStart_spcDate" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Org_spcStatus" type="xsd:string" minOccurs="0"/>
<xsd:element name="Organization" type="xsd:string" minOccurs="0"/>
<xsd:element name="Organization_spcDummy" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Organization_spcId" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Organization_spcIntegration_spcId"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Original_spcCreate_spcDate" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Other_spcID_spcExpiration_spcDate"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Other_spcID_spcNumber" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Other_spcID_spcState" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Other_spcID_spcType" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Overall_spcInvestment_spcObjective"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Own_spcor_spcRent" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Owned_spcBy" type="xsd:string" minOccurs="0"/>
<xsd:element name="Owned_spcBy_spcId" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Ownership_spcInd." type="xsd:string"
minOccurs="0"/>
<xsd:element name="PIM_spcCurrent_spcUser_spcSync_spcFlag"
type="xsd:string" minOccurs="0"/>
<xsd:element name="PIM_spcSync_spcOwner" type="xsd:string"
minOccurs="0"/>
<xsd:element name="PT_spcMember_spcFlag" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Page_spc_pnd" type="xsd:string" minOccurs="0"/>
<xsd:element name="Pager_spcTxt_spcAddress" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Par_spcOppty_spcName" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Parent_spcOppty_spcId" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Partnership_spcContact_spcFlag" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Partnership_spcKey_spcContact_spcFlag"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Party_spcName" type="xsd:string" minOccurs="0"/>
<xsd:element name="Party_spcType_spcCode" type="xsd:string"/>
<xsd:element name="Party_spcUId" type="xsd:string"/>
<xsd:element name="Password" type="xsd:string" minOccurs="0"/>
<xsd:element name="Percent_spcOwned" type="xsd:string" minOccurs="0"/>
<xsd:element name="Permenant_spcResident" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Permission_spcfor_spcMDT_spcTo_spcContact"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Persistency_spcRatio" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Person_spcUId" type="xsd:string"/>
<xsd:element name="Personal_spcAddress_spcId" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Personal_spcAddress_spcIntegration_spcId"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Personal_spcAddress_spcName" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Personal_spcAddress_spcStart_spcDate"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Personal_spcAgenda" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Personal_spcCity" type="xsd:string" minOccurs="0"/>
<xsd:element name="Personal_spcContact" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Personal_spcCountry" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Personal_spcFull_spcAddress" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Personal_spcPostal_spcCode" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Personal_spcProvince" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Personal_spcState" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Personal_spcStreet_spcAddress" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Personal_spcStreet_spcAddress_spc2"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Personal_spcUse_spcof_spcService" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Personal_spcWin" type="xsd:string" minOccurs="0"/>
<xsd:element name="Personality" type="xsd:string" minOccurs="0"/>
<xsd:element name="Pharma_spcApp" type="xsd:string" minOccurs="0"/>
<xsd:element name="Photograph_spcAvailable_spcFlag" type="xsd:string"
minOccurs="0"/>
<xsd:element name="PhysNum" type="xsd:string" minOccurs="0"/>
<xsd:element name="Place_spcof_spcBirth" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Political_spcAnalysis" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Political_spcStrategy" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Position" type="xsd:string" minOccurs="0"/>
<xsd:element name="Position_spcId" type="xsd:string" minOccurs="0"/>
<xsd:element name="Position_spcIntegration_spcId" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Position_spcLast_spcCall_spcDate" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Position_spcPrimary_spcAddress_spcId"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Position_spcStatus" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Postal_spcCode" type="xsd:string" minOccurs="0"/>
<xsd:element name="Pr_spcEmp_spcof_spcContact_spcPr_spcPostn"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Practice_spcEmail" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Practice_spcExperience" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Practice_spcInterest" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Preferred_spcCommunication_spcMethod"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Preferred_spcCommunications" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Preferred_spcEmail" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Preferred_spcLanguage_spcCode" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Preferred_spcMethod_spcof_spcSales_slhService_spcFollow_spcUp"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Preferred_spcMethod_spcof_spcService_spcReminder"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Preferred_spcName" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Preferred_spcPhone_spcType" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Prescriber_spcFlag" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Presenter_spcLevel" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Presenter_spcTitle" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Previous_spcJobs" type="xsd:string" minOccurs="0"/>
<xsd:element name="Price_spcList" type="xsd:string" minOccurs="0"/>
<xsd:element name="Price_spcList_spcId" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Price_spcList_spcIntegration_spcId"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Primary_spcAccount_spcAddress_spcId"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Primary_spcAccount_spcName" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Primary_spcAddress_spcId" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Primary_spcAddress_spcIntegration_spcId"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Primary_spcAddress_spcMod_spcId" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Primary_spcAffiliation" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Primary_spcAlternate_spcEmail_spcId"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Primary_spcAlternate_spcPhone_spcId"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Primary_spcArea_spcof_spcExpertise_spcId"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Primary_spcAsset_spcId" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Primary_spcAssignment_spcDenorm_spcFlag"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Primary_spcAssignment_spcManual_spcFlag"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Primary_spcAssignment_spcSystem_spcFlag"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Primary_spcCategory_spcId" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Primary_spcCity" type="xsd:string" minOccurs="0"/>
<xsd:element name="Primary_spcCountry" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Primary_spcCourse_spcId" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Primary_spcDecile_spcId" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Primary_spcDegree_spcId" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Primary_spcDesignation_spcId" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Primary_spcEmployee_spcId_spcOf_spcPrimary_spcCompany_spcPosition"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Primary_spcEmployee_spcId_spcOf_spcPrimary_spcContact_spcPosition"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Primary_spcEmployee_spcLogin_spcOf_spcPrimary_spcCompany_spcPosition"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Primary_spcEmployee_spcLogin_spcOf_spcPrimary_spcContact_spcPosition"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Primary_spcFax_spcNumber_spcId" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Primary_spcFinancial_spcGoals" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Primary_spcGroup_slhHousehold_spcId"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Primary_spcHobby_spcId" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Primary_spcHousehold" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Primary_spcIdentity_spcFirst_spcName"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Primary_spcIdentity_spcId" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Primary_spcIdentity_spcLast_spcName"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Primary_spcImage_spcId" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Primary_spcIndustry" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Primary_spcIndustry_spcId" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Primary_spcLocators_spcId" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Primary_spcMembership_spcId" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Primary_spcNote_spcId" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Primary_spcOpportunity_spcId" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Primary_spcOrganization" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Primary_spcOrganization_spcId" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Primary_spcOther_spcID_spcId" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Primary_spcPIM_spcSync_spcOwner_spcId"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Primary_spcPatPopu_spcId" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Primary_spcPersonal_spcAddress_spcId"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Primary_spcPersonal_spcAddress_spcIndicator"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Primary_spcPersonal_spcCity" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Primary_spcPersonal_spcCountry" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Primary_spcPersonal_spcPayment_spcProfile_spcId"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Primary_spcPersonal_spcPostal_spcCode"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Primary_spcPersonal_spcState" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Primary_spcPersonal_spcStreet_spcAddress"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Primary_spcPersonal_spcZip" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Primary_spcPosition_spcId" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Primary_spcPosition_spcId_spcOf_spcCompany"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Primary_spcPostal_spcCode" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Primary_spcProduct_spcLine_spcId" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Primary_spcProfAssn_spcId" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Primary_spcResponsibility_spcId" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Primary_spcSMS_spcNumber_spcId" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Primary_spcSecurity_spcId" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Primary_spcSegmentation_spcId" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Primary_spcService_spcAgreement_spcId"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Primary_spcSoftware_spcId" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Primary_spcSpecial_spcNeeds_spcId"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Primary_spcSpecialty" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Primary_spcSpecialty_spcId" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Primary_spcState" type="xsd:string" minOccurs="0"/>
<xsd:element name="Primary_spcState_spcLicense_spcId"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Primary_spcStreet_spcAddress" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Primary_spcSub_spcSpecialty_spcId"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Primary_spcTerritory_spcId" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Primary_spcTherapy_spcMix_spcId" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Primary_spcTraining_spcInterests_spcId"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Primary_spcTraining_spcLocStateCoun_spcId"
type="xsd:string" minOccurs="0"/>
<xsd:element name="Priority_spcFlag" type="xsd:string" minOccurs="0"/>
<xsd:element name="Privacy_spcCode" type="xsd:string" minOccurs="0"/>
<xsd:element name="Privacy_spcCode_spcURL" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Procedures_spcor_spcImplants" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Product_spcLine" type="xsd:string" minOccurs="0"/>
<xsd:element name="Professional_spcSkill" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Profile_spcReview_spcDate" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Profile_spcReviewed_spcBy" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Profile_spcStatus" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Project_spcAccount_spcId" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Project_spcContact_spcComment" type="xsd:string"
minOccurs="0"/>
<xsd:element name="Project_spcId" type="xsd:string" minOccurs="0"/>
<xsd:element name="Project_spcName" type="xsd:string" minOccurs="0"/>
<xsd:element n

Similar Messages

  • XML publisher : Error oracle.xml.parser.v2.XMLParseException: Expected ';'

    I am trying to output a customer list containing customer number and customer name using 11i ( 11.5.10 CU2) with latest XML publisher patches on.
    How do I debug the following error in OPP log:
    [UNEXPECTED] [72156:RT1088889] oracle.xml.parser.v2.XMLParseException: Expected ';'.
    The XML ouput file is generated fine but get the following error in the log file.
    | Starting concurrent program execution...
    +-----------------------------
    Spawned Process 13471
    Executing request completion options...
    ------------- 1) PUBLISH -------------
    Beginning post-processing of request 1088898 on node O11IDEV at 03-APR-2006 13:57:35.
    Post-processing of request 1088898 failed at 03-APR-2006 13:57:37 with the error message:
    One or more post-processing actions failed. Consult the OPP service log for details.
    ------------- 2) PRINT   -------------
    Finished executing request completion options.
    The OPP service log messge is :
    [4/3/06 6:02:53 AM] [main] Starting GSF service with concurrent process id = 72156.
    [4/3/06 6:02:53 AM] [main] Initialization Parameters: oracle.apps.fnd.cp.opp.OPPServiceThread:2:0:max_threads=5
    [4/3/06 6:02:53 AM] [Thread-12] Service thread starting up.
    [4/3/06 6:02:53 AM] [Thread-13] Service thread starting up.
    [4/3/06 1:16:08 PM] [OPPServiceThread0] Post-processing request 1088889.
    [4/3/06 1:16:08 PM] [72156:RT1088889] Executing post-processing actions for request 1088889.
    [4/3/06 1:16:09 PM] [72156:RT1088889] Starting XML Publisher post-processing action.
    [4/3/06 1:16:09 PM] [72156:RT1088889]
    Template code: COCXDOTEST
    Template app: COC
    Language: en
    Territory: US
    Output type: PDF
    [040306_011610131][][EXCEPTION] [DEBUG] ------- Preferences defined PreferenceStore -------
    [040306_011610132][][EXCEPTION] [DEBUG] ------- Environment variables stored in EnvironmentStore -------
    [040306_011610133][][EXCEPTION] [DEBUG] [FND_JDBC_BUFFER_MAX]:[2]
    [040306_011610134][][EXCEPTION] [DEBUG] [USER_ID]:[-1]
    [040306_011610134][][EXCEPTION] [DEBUG] [FND_JDBC_PLSQL_RESET]:[false]
    [040306_011610135][][EXCEPTION] [DEBUG] [NLS_TERRITORY]:[AMERICA]
    [040306_011610135][][EXCEPTION] [DEBUG] [RESP_APPL_ID]:[-1]
    [040306_011610136][][EXCEPTION] [DEBUG] [FND_MAX_JDBC_CONNECTIONS]:[500]
    [040306_011610136][][EXCEPTION] [DEBUG] [NLS_SORT]:[BINARY]
    [040306_011610137][][EXCEPTION] [DEBUG] [FND_JDBC_IDLE_THRESHOLD.LOW]:[-1]
    [040306_011610138][][EXCEPTION] [DEBUG] [FND_JDBC_BUFFER_MIN]:[1]
    [040306_011610138][][EXCEPTION] [DEBUG] [RESP_ID]:[-1]
    [040306_011610139][][EXCEPTION] [DEBUG] [NLS_NUMERIC_CHARACTERS]:[.,]
    [040306_011610139][][EXCEPTION] [DEBUG] [FND_JDBC_BUFFER_DECAY_SIZE]:[5]
    [040306_011610140][][EXCEPTION] [DEBUG] [NLS_LANGUAGE]:[AMERICAN]
    [040306_011610140][][EXCEPTION] [DEBUG] [FND_JDBC_IDLE_THRESHOLD.HIGH]:[-1]
    [040306_011610140][][EXCEPTION] [DEBUG] [NLS_DATE_LANGUAGE]:[AMERICAN]
    [040306_011610141][][EXCEPTION] [DEBUG] [LOGIN_ID]:[-1]
    [040306_011610141][][EXCEPTION] [DEBUG] [NLS_DATE_FORMAT]:[DD-MON-RR]
    [040306_011610142][][EXCEPTION] [DEBUG] [APPS_JDBC_URL]:[jdbc:oracle:thin:@(DESCRIPTION=(LOAD_BALANCE=YES)(FAILOVER=YES)(ADDRESS_LIST=(ADDRESS
    =(PROTOCOL=tcp)(HOST=O11IDEV.concentra.com)(PORT=9200)))(CONNECT_DATA=(SID=DEV1)))]
    [040306_011610143][][EXCEPTION] [DEBUG] [SECURITY_GROUP_ID]:[0]
    [040306_011610144][][EXCEPTION] [DEBUG] [NLS_CHARACTERSET]:[US7ASCII]
    [040306_011610144][][EXCEPTION] [DEBUG] [FND_JDBC_CONTEXT_CHECK]:[true]
    [040306_011610145][][EXCEPTION] [DEBUG] [FND_JDBC_BUFFER_DECAY_INTERVAL]:[300]
    [040306_011610145][][EXCEPTION] [DEBUG] [FND_JDBC_USABLE_CHECK]:[false]
    [040306_011610147][][EXCEPTION] [DEBUG] ------- Properties stored in Java System Properties -------
    [040306_011610148][][EXCEPTION] [DEBUG] [FND_JDBC_BUFFER_MAX]:[2]
    [040306_011610149][][EXCEPTION] [DEBUG] [sun.cpu.isalist]:[pa2.0 pa1.2 pa1.1 pa1.0]
    [040306_011610149][][EXCEPTION] [DEBUG] [java.version]:[1.3.1.09]
    [040306_011610150][][EXCEPTION] [DEBUG] [java.awt.graphicsenv]:[sun.awt.X11GraphicsEnvironment]
    [040306_011610150][][EXCEPTION] [DEBUG] [java.specification.vendor]:[Sun Microsystems Inc.]
    [040306_011610151][][EXCEPTION] [DEBUG] [sun.io.unicode.encoding]:[UnicodeBig]
    [040306_011610151][][EXCEPTION] [DEBUG] [JTFDBCFILE]:[oracle/app/dev1app/dev1appl/fnd/11.5.0/secure/o11idev_dev1.dbc]
    [040306_011610152][][EXCEPTION] [DEBUG] [java.runtime.name]:[Java(TM) 2 Runtime Environment, Standard Edition]
    [040306_011610153][][EXCEPTION] [DEBUG] [user.home]:[u02/app/dev1app]
    [040306_011610153][][EXCEPTION] [DEBUG] [java.specification.version]:[1.3]
    [040306_011610154][][EXCEPTION] [DEBUG] [java.vm.info]:[mixed mode]
    [040306_011610154][][EXCEPTION] [DEBUG] [user.dir]:[u02/app/dev1app/dev1appl/dev1csf/log/DEV1_o11idev]
    [040306_011610155][][EXCEPTION] [DEBUG] [java.io.tmpdir]:[var/tmp/]
    [040306_011610155][][EXCEPTION] [DEBUG] [LONG_RUNNING_JVM]:[true]
    [040306_011610155][][EXCEPTION] [DEBUG] [java.ext.dirs]:[opt/java1.3/jre/lib/ext]
    [040306_011610156][][EXCEPTION] [DEBUG] [dbcfile]:[oracle/app/dev1app/dev1appl/fnd/11.5.0/secure/o11idev_dev1.dbc]
    [040306_011610156][][EXCEPTION] [DEBUG] [FND_JDBC_BUFFER_MIN]:[1]
    [040306_011610157][][EXCEPTION] [DEBUG] [java.awt.fonts]:[]
    [040306_011610157][][EXCEPTION] [DEBUG] [java.class.version]:[47.0]
    [040306_011610158][][EXCEPTION] [DEBUG] [OVERRIDE_DBC]:[true]
    [040306_011610158][][EXCEPTION] [DEBUG] [sun.cpu.endian]:[big]
    [040306_011610159][][EXCEPTION] [DEBUG] [java.class.path]:[/opt/java1.3/lib/rt.jar:/opt/java1.3/lib/tools.jar:/opt/java1.3/jre/lib/rt.jar:/opt
    /java1.3/jre/lib/i18n.jar:/oracle/app/dev1app/dev1comn/java/appsborg.zip:/oracle/app/dev1app/dev1ora/8.0.6.9/forms60/java:/oracle/app/dev1app/d
    ev1comn/java]
    [040306_011610160][][EXCEPTION] [DEBUG] [os.name]:[HP-UX]
    [040306_011610160][][EXCEPTION] [DEBUG] [sun.boot.class.path]:[/opt/java1.3/jre/lib/rt.jar:/opt/java1.3/jre/lib/i18n.jar:/opt/java1.3/jre/lib/
    sunrsasign.jar:/opt/java1.3/jre/classes]
    [040306_011610161][][EXCEPTION] [DEBUG] [java.vendor.url.bug]:[http://www.hp.com/go/Java]
    [040306_011610161][][EXCEPTION] [DEBUG] [user.timezone]:[America/Chicago]
    [040306_011610162][][EXCEPTION] [DEBUG] [java.vm.name]:[Java HotSpot(TM) Server VM]
    [040306_011610163][][EXCEPTION] [DEBUG] [CACHEMODE]:[DISTRIBUTED]
    [040306_011610164][][EXCEPTION] [DEBUG] [cpid]:[72156]
    [040306_011610164][][EXCEPTION] [DEBUG] [java.vm.specification.name]:[Java Virtual Machine Specification]
    [040306_011610165][][EXCEPTION] [DEBUG] [java.vm.vendor]:[Hewlett-Packard Company]
    [040306_011610165][][EXCEPTION] [DEBUG] [user.language]:[en]
    [040306_011610166][][EXCEPTION] [DEBUG] [java.library.path]:[/opt/java1.3/bin/../jre/lib/PA_RISC2.0/native_threads:/opt/java1.3/bin/../jre/lib
    /PA_RISC2.0/server:/opt/java1.3/bin/../jre/lib/PA_RISC2.0:/oracle/app/dev1app/dev1ora/iAS_1.0.2/lib:/oracle/app/dev1app/dev1ora/8.0.6.9/network
    /jre11/lib/PA_RISC/native_threads:/oracle/app/dev1app/dev1appl/cz/11.5.0/bin::/oracle/app/dev1app/dev1ora/8.0.6.9/lib:/usr/lib:/usr/lib]
    [040306_011610167][][EXCEPTION] [DEBUG] [path.separator]:[:]
    [040306_011610167][][EXCEPTION] [DEBUG] [java.vm.specification.version]:[1.0]
    [040306_011610168][][EXCEPTION] [DEBUG] [java.awt.printerjob]:[sun.awt.motif.PSPrinterJob]
    [040306_011610168][][EXCEPTION] [DEBUG] [file.separator]:[]
    [040306_011610169][][EXCEPTION] [DEBUG] [java.runtime.version]:[1.3.1.09-030418-12:59]
    [040306_011610170][][EXCEPTION] [DEBUG] [java.vm.specification.vendor]:[Sun Microsystems Inc.]
    [040306_011610171][][EXCEPTION] [DEBUG] [java.vendor]:[Hewlett-Packard Co.]
    [040306_011610172][][EXCEPTION] [DEBUG] [file.encoding.pkg]:[sun.io]
    [040306_011610172][][EXCEPTION] [DEBUG] [java.vendor.url]:[http://www.hp.com/go/Java]
    [040306_011610173][][EXCEPTION] [DEBUG] [logfile]:[oracle/app/dev1app/dev1appl/dev1csf/log/DEV1_o11idev/FNDOPP72156.txt]
    040306_011610174][][EXCEPTION] [DEBUG] [os.arch]:[PA_RISC2.0]
    [040306_011610174][][EXCEPTION] [DEBUG] [os.version]:[B.11.11]
    [040306_011610174][][EXCEPTION] [DEBUG] [java.home]:[opt/java1.3/jre]
    [040306_011610175][][EXCEPTION] [DEBUG] [java.specification.name]:[Java Platform API Specification]
    [040306_011610175][][EXCEPTION] [DEBUG] [sun.boot.library.path]:[opt/java1.3/jre/lib/PA_RISC2.0]
    [040306_011610176][][EXCEPTION] [DEBUG] [line.separator]:[
    [040306_011610176][][EXCEPTION] [DEBUG] [file.encoding]:[8859_1]
    [040306_011610177][][EXCEPTION] [DEBUG] [user.name]:[oradev]
    [040306_011610177][][EXCEPTION] [DEBUG] [java.vm.version]:[1.3.1 1.3.1.09-_18_apr_2003_14_01 PA2.0]
    [4/3/06 1:16:13 PM] [UNEXPECTED] [72156:RT1088889] oracle.xml.parser.v2.XMLParseException: Expected ';'.
    at oracle.xml.parser.v2.XMLError.flushErrors1(XMLError.java:205)
    at oracle.xml.parser.v2.XMLReader.scanNameChars(XMLReader.java:1001)
    at oracle.xml.parser.v2.XMLReader.scanQName(XMLReader.java:1677)
    at oracle.xml.parser.v2.XMLReader.getEntity(XMLReader.java:1928)
    at oracle.xml.parser.v2.NonValidatingParser.parseContentEntityRef(NonValidatingParser.java:1575)
    at oracle.xml.parser.v2.NonValidatingParser.parseElement(NonValidatingParser.java:1202)
    at oracle.xml.parser.v2.NonValidatingParser.parseRootElement(NonValidatingParser.java:301)
    at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:268)
    at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:227)
    at oracle.apps.xdo.common.xml.XSLTClassic.transform(XSLTClassic.java:172)
    at oracle.apps.xdo.common.xml.XSLTWrapper.transform(XSLTWrapper.java:160)
    at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:1015)
    at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:968)
    at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:209)
    at oracle.apps.xdo.template.FOProcessor.createFO(FOProcessor.java:1561)
    at oracle.apps.xdo.template.FOProcessor.generate(FOProcessor.java:951)
    at oracle.apps.xdo.oa.schema.server.TemplateHelper.runProcessTemplate(TemplateHelper.java:5975)
    at oracle.apps.xdo.oa.schema.server.TemplateHelper.processTemplate(TemplateHelper.java:3555)
    at oracle.apps.xdo.oa.schema.server.TemplateHelper.processTemplate(TemplateHelper.java:3614)
    at oracle.apps.fnd.cp.opp.XMLPublisherProcessor.process(XMLPublisherProcessor.java:229)
    at oracle.apps.fnd.cp.opp.OPPRequestThread.run(OPPRequestThread.java:153)

    I was able to correct the error. The data contained an '&' sign and that was causing the xml parser to fail with the above error. If the & is replaced by a different character other than & then this error does not occur.
    Ashok

  • B2B-50029:  B2B runtime error: oracle.xml.parser.v2.XMLParseException: Start of root element expected.

    Dear All,
    I am a beginner to Oracle B2B.
    I have created an agreement to Recieve 852, Product Activity data(POS) from one of the Trading partner. This is an inbound process.
    A  SOA composite application is created to Recieve the data and insert into perticular columns of the database table using database adapter.
    I have tested the Interface with some couple of file and it went perfect without any error. Now I have to test the interface with some other files.
    This time also I am not getting any error in Business Message, Wire message and Application message but the composite application is not picked.
    The log file shows : B2B-50029: B2B runtime error: oracle.xml.parser.v2.XMLParserException: Start of root element expected.
    Please let me know if anyone has faced this issue. it will be of great help.
    Thanks,
    Abhas Kushwaha

    Hello,
    Just a thought, When I had the similar problem, it appeared to be a BOM (Byte order mark - Wikipedia, the free encyclopedia) in the xml file, which is the very first character in the xml file, so the file was not identified to be a valid xml file. Removing the BOM from the xml file fixed my problem, however, I did not spend much time in fixing using B2B, the vendor  (sender of the file) fixed the file and started sending without BOM. So my work was easier.
    The character is not visible in all XML editors, however, it was visible in JDeveloper. I used a tool to identify and remove during testing until the vendor fixed the file, the tool is called file bom detector,http://www.bryntyounce.com/filebomdetector.htm
    Hope this helps,
    Thanks,
    Venkatesh

  • Getting oracle.xml.parser.v2.XMLParseException: Start Of root Element

    Hi All,
    I am getting below error while creating STUB/Skeleton in Jdeveloper to call a web service from OAF Page But getting below error while trying to creating Stub/Skeleton to call weservice
    ERROR:
    oracle.xml.parser.v2.XMLParseException: Start Of root Element
    Any suggestion on This
    P.S: I am calling a third party web service so can not able to make changes in XML
    Regards,
    903096

    Possibility is that there is a problem in the XML that is being passed. Can you double check with the third party software? Also check if you can try it outside OA Framework first and then if its tested you can integrate with EBS.

  • Oracle.xml.parser.v2.XMLParseException: Start of root element expected

    Hi,
    while trying to get a soapelement from xml file, i have the error : oracle.xml.parser.v2.XMLParseException: Start of root element expected
    the code i m using is as follow :
    public static SOAPMessage XMLDocToSOAP(String soapBodyAsString ) throws SAXException, IOException,
    SOAPException,
    ParserConfigurationException {
    SOAPMessage message = null;
    DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
    dbf.setNamespaceAware(true);
    InputStream is = new ByteArrayInputStream(soapBodyAsString.getBytes());
    Document doc = dbf.newDocumentBuilder().parse(is);
    MessageFactory factory = MessageFactory.newInstance();
    message = factory.createMessage();
    message.saveChanges();
    SOAPBodyElement element = message.getSOAPBody().addDocument(doc);
    return message;
    }

    Looks like the XML you are passing is not valid. Check that the XML complies the the definition.
    Also can you post a XML that works and the one that fails.
    cheers
    James

  • Deployment problem : oracle.xml.parser.v2.XMLParseException

    Hi to all.
    I have a strange problem deplying an application. When the first jsp is loaded the follwing excteption is raised :
    OracleJSP: oracle.jsp.parse.JspParseException: Line # 1, <%@ taglib uri="/webapp/DataTags.tld" prefix="jbo" %>
    Error: oracle.xml.parser.v2.XMLParseException ( /notifiche.jsp ):
    line #:10 column #:10 : Element taglib not complete, expected elements '[validator, listener, tag]'.
    With the embedded OC4J server all works fine. This is not the first application i deploy but this is the first time i have a problem. I'm doing somthings wrong in the deployment descriptor ?
    TIA
    sergio sette

    After restarting the JDeveloper its working.

  • Java.lang.ClassNotFoundException: oracle.xml.parser.v2.XMLParseException

    Hi there Masters
    I am new in Java and I would need your help please..
    I am calling a function in Java passing 1 parameter and returning an XML back but at the point of execution I get an error below... At the end I have attached my java code...PLEASE HELP
    Exception in thread "main" java.lang.NoClassDefFoundError: oracle/xml/parser/v2/XMLParseException
         at oracle.xdb.XMLTypeFactory.create(XMLTypeFactory.java:78)
         at oracle.sql.OPAQUE.toClass(OPAQUE.java:328)
         at oracle.sql.OPAQUE.toJdbc(OPAQUE.java:278)
         at oracle.sql.OPAQUE.toJdbc(OPAQUE.java:259)
         at oracle.jdbc.driver.NamedTypeAccessor.getObject(NamedTypeAccessor.java:190)
         at oracle.jdbc.driver.NamedTypeAccessor.getObject(NamedTypeAccessor.java:117)
         at oracle.jdbc.driver.OracleCallableStatement.getObject(OracleCallableStatement.java:1578)
         at oracle.jdbc.driver.OracleCallableStatementWrapper.getObject(OracleCallableStatementWrapper.java:815)
         at hospitaltool.RunAsnIn.runAsnIn(RunAsnIn.java:41)
         at hospitaltool.HospitalTool.main(HospitalTool.java:38)
    Caused by: java.lang.ClassNotFoundException: oracle.xml.parser.v2.XMLParseException
         at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
         at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:247)
         ... 10 more
    =====================JAVA CODE====================================
    package hospitaltool;
    import java.sql.*;
    import oracle.jdbc.*;
    import oracle.xdb.XMLType;
    public class RunAsnIn {
    public void runAsnIn(Connection con, Boolean fam) throws SQLException {
    System.out.println("RunASNIn Section");
    String messStatus;
    int numRecs = 0; //to hold the number of Records processed
    int totRecs = 0; //to hold the number of total records processed
    ResultSet rs = null;
    Statement stmt = null;
    stmt = con.createStatement();
    //Delete all already caused messages
    try {
    rs = stmt.executeQuery("DELETE FROM asnin WHERE message_num IN(SELECT message_num FROM asnin MINUS SELECT message_num FROM hospital WHERE family = 'ASNIn')");
    //Select all the uncaused messages
    rs = stmt.executeQuery("SELECT message_num FROM hospital WHERE family = 'ASNIn' and rownum <= 1 MINUS SELECT message_num FROM asnin");
    //Go thru the uncaused messages
    } catch (Exception e) {
    while (rs.next()) {
    String messageNum = rs.getString(1);
    // System.out.println("tableName=" + messageNum);
    System.out.println(messageNum);
    //Get the XMLDoc
    XMLType xml = null;
    //Get the XML Doc
    CallableStatement cs1 = null;
    //CallableStatement proc = con.prepareCall("? {call rmsauto.hospitaltool.getmessagedoc(?)}");
    try {
    cs1 = con.prepareCall("{? = call rmsauto.hospitaltool.getmessagedoc(?)}");
    cs1.registerOutParameter(1, OracleTypes.OPAQUE, "SYS.XMLTYPE");
    cs1.setString(2, messageNum);
    cs1.execute();
    } catch (Exception e) {
    xml = (XMLType) cs1.getObject(1);
    System.out.println(xml.getStringVal());
    }

    I did google this and found that I needed a specific jar file called xmlparserv2.jar and I did download it and loaded it on as part of my Libraries the I got a new error... I am using NetBeans
    Exception in thread "main" java.lang.NoClassDefFoundError: oracle/xml/binxml/BinXMLMetadataProvider
         at oracle.xdb.XMLTypeFactory.create(XMLTypeFactory.java:78)
         at oracle.sql.OPAQUE.toClass(OPAQUE.java:328)
         at oracle.sql.OPAQUE.toJdbc(OPAQUE.java:278)
         at oracle.sql.OPAQUE.toJdbc(OPAQUE.java:259)
         at oracle.jdbc.driver.NamedTypeAccessor.getObject(NamedTypeAccessor.java:190)
         at oracle.jdbc.driver.NamedTypeAccessor.getObject(NamedTypeAccessor.java:117)
         at oracle.jdbc.driver.OracleCallableStatement.getObject(OracleCallableStatement.java:1578)
         at oracle.jdbc.driver.OracleCallableStatementWrapper.getObject(OracleCallableStatementWrapper.java:815)
         at hospitaltool.RunAsnIn.runAsnIn(RunAsnIn.java:41)
         at hospitaltool.HospitalTool.main(HospitalTool.java:38)
    Caused by: java.lang.ClassNotFoundException: oracle.xml.binxml.BinXMLMetadataProvider
         at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
         at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:247)
         ... 10 more
    Java Result: 1

  • Internal Exception: oracle.xml.parser.v2.XMLParseException xsi:type "toplin

    i am using toplink 10.1.3.0.0 with oracle app server 10.1.2.2, i am using change field optimistic locking and generating the project xml,
    application runs great locally in the jdeveloper, but when it is deployed on app server getting following error
    here are the headers from both my project.xml as well as session xml..
    <?xml version="1.0" encoding="UTF-8"?>
    <toplink:object-persistence version="Oracle TopLink - 10g Release 3 (10.1.3.0.0) (Build 060118)" xmlns:opm="http://xmlns.oracle.com/ias/xsds/opm" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:toplink="http://xmlns.oracle.com/ias/xsds/toplink" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <opm:name>PROJ</opm:name>
    <opm:class-mapping-descriptors>
    <opm:class-mapping-descriptor xsi:type="toplink:relational-class-mapping-descriptor">
    <?xml version="1.0" encoding="UTF-8"?>
    <toplink-sessions version="4.5" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <session xsi:type="server-session">
    <name>PROJSession</name>
    <event-listener-classes/>
    <logging xsi:type="toplink-log">
    <log-level>finer</log-level>
    </logging>
    <primary-project xsi:type="xml">PROJ.xml</primary-project>
    <login xsi:type="database-login">
    <platform-class>oracle.toplink.platform.database.oracle.OraclePlatform</platform-class>
    <user-name></user-name>
    any help/idea appreciated...
    Exception [TOPLINK-9005] (Oracle TopLink - 10g Release 3 (10.1.3.0.0) (Build 060118)): oracle.toplink.exceptions.SessionLoaderException
    Exception Description: An exception was thrown while loading the <project-xml> file [PROJ.xml].
    Internal Exception: Exception [TOPLINK-25004] (Oracle TopLink - 10g Release 3 (10.1.3.0.0) (Build 060118)): oracle.toplink.exceptions.XMLMarshalException
    Exception Description: An error occurred unmarshalling the document
    Internal Exception: Exception [TOPLINK-27101] (Oracle TopLink - 10g Release 3 (10.1.3.0.0) (Build 060118)): oracle.toplink.platform.xml.XMLPlatformException
    Exception Description: An error occurred while parsing the document.
    Internal Exception: oracle.xml.parser.v2.XMLParseException: xsi:type "toplink:changed-field-locking-policy" not resolved to a type definition
    at oracle.toplink.exceptions.SessionLoaderException.failedToLoadProjectXml(SessionLoaderException.java:74)
    at oracle.toplink.tools.sessionconfiguration.TopLinkSessionsFactory.loadProjectConfig(TopLinkSessionsFactory.java:316)
    at oracle.toplink.tools.sessionconfiguration.TopLinkSessionsFactory.createSession(TopLinkSessionsFactory.java:241)
    at oracle.toplink.tools.sessionconfiguration.TopLinkSessionsFactory.buildServerSessionConfig(TopLinkSessionsFactory.java:215)
    at oracle.toplink.tools.sessionconfiguration.TopLinkSessionsFactory.buildSession(TopLinkSessionsFactory.java:168)
    at oracle.toplink.tools.sessionconfiguration.TopLinkSessionsFactory.buildTopLinkSessions(TopLinkSessionsFactory.java:124)
    at oracle.toplink.tools.sessionconfiguration.XMLSessionConfigLoader.load(XMLSessionConfigLoader.java:103)
    at oracle.toplink.tools.sessionmanagement.SessionManager.getSession(SessionManager.java:367)
    at oracle.toplink.tools.sessionmanagement.SessionManager.getSession(SessionManager.java:334)
    at myProjectPackage.common.data.toplink.ToplinkDataManagerPeer.<init>(ToplinkDataManagerPeer.java:41)
    at myProjectPackage.common.data.DataManagerFactory.getDataManagerInstance(DataManagerFactory.java:40)
    at myProjectPackage.common.servlet.NYSDOTFilter.getDataManager(NYSDOTFilter.java:964)
    at myProjectPackage.common.servlet.NYSDOTFilter.doFilter(NYSDOTFilter.java:144)
    at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:16)
    at myProjectPackage.caf.servlet.NYSDOTCAFFilter.doFilter(NYSDOTCAFFilter.java:90)
    at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:20)
    at myProjectPackage.common.servlet.NYSDOTLoginFilter.doFilter(NYSDOTLoginFilter.java:95)
    at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:669)
    at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:340)
    at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:830)
    at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:228)
    at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:133)
    at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:192)
    at java.lang.Thread.run(Thread.java:570)

    first thanks for your reply,
    i already figured that out and deployed it using 10.1.3.1 jars
    my question
    1) if it is a bug , how come it works fine with jdeveloper (
    i would appreciate if you could provide any info about it.
    2) i dont want to sound sarcastic , but 10.1.3.1 has of optimistic locking and the recommended solution i found was to use descriptor.getQueryManager().setUpdateCallCacheSize(0);
    looks like 10.1.3.1 fixed one bug and introduced other one which was working fine earlier...
    is there any other way of fixing optimistic locking issue other than using the
    descriptor.getQueryManager().setUpdateCallCacheSize(0);
    where i can find the latest/greatest (up to date patched version of toplink)
    thanks again for your help

  • Oracle.xml.parser.v2.XMLParseException: Invalid char in text. in BPEL

    Hi,
    Non Recoverable Business Fault :
    <bpelFault><faultType>1</faultType><operationErroredFault xmlns="http://xmlns.oracle.com/bpel/workflow/taskService"><part name="payload"><operationErroredFault xmlns="http://xmlns.oracle.com/bpel/workflow/taskService"><faultInfo>oracle.xml.parser.v2.XMLParseException: Invalid char in text.</faultInfo></operationErroredFault></part></operationErroredFault></bpelFault>
      I got the above error before calling to human task from my BPEL process. Any idea?

    Assuming this is SOA Suite 11g. Did you start the WLS with UTF8? Is your database using UTF8?
    Nothing else is supported.
    If you are on unix.
    $ export LANG="en_US.utf8"
    $ export LC_ALL="en_US.utf8"
    Then locale should display something like this
    $ locale
    LANG=en_US.utf8
    LC_CTYPE="en_US.utf8"
    LC_COLLATE="en_US.utf8"
    LC_MONETARY="en_US.utf8"
    LC_NUMERIC="en_US.utf8"
    LC_TIME="en_US.utf8"
    LC_MESSAGES="en_US.utf8"
    LC_ALL=en_US.utf8
    And then you should be able to start the SOA Suite correctly.

  • Caused by: oracle.xml.parser.v2.XMLParseException: '=' missing in attribute

    This is a Bursting problem under EBS 5.6.3. In production we have 5.6.2 and since our development system to 5.6.3 has been upgraded, the following error occurs on every single Burst being done using the Concurrent Manager only:
    Caused by: oracle.xml.parser.v2.XMLParseException: '=' missing in attribute.
         at oracle.xml.parser.v2.XMLError.flushErrors1(XMLError.java:205)
         at oracle.xml.parser.v2.NonValidatingParser.parseAttrValue(NonValidatingParser.java:1502)
         at oracle.xml.parser.v2.NonValidatingParser.parseAttr(NonValidatingParser.java:1408)
         at oracle.xml.parser.v2.NonValidatingParser.parseAttributes(NonValidatingParser.java:1350)
         at oracle.xml.parser.v2.NonValidatingParser.parseElement(NonValidatingParser.java:1180)
         at oracle.xml.parser.v2.NonValidatingParser.parseRootElement(NonValidatingParser.java:301)
         at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:268)
         at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:201)
         at oracle.apps.xdo.batch.BurstingProcessorEngine.burstingConfigParser(BurstingProcessorEngine.java:1340)
         at oracle.apps.xdo.batch.BurstingProcessorEngine.process(BurstingProcessorEngine.java:1297)
         at oracle.apps.xdo.batch.DocumentProcessor.process(DocumentProcessor.java:213)
         at xxwel.ebs.xmlp.XXWELBurster.processDocuments(XXWELBurster.java:143)
    I can run the same file through 5.6.3 ($JAVA_TOP) libraries mounted on my JDev with no problems. Also the same XML file runs fine on Production under 5.6.2 - no problems. I have also checked the XML file using a syntax checker. I know this is not a syntax issue even though it looks like it.
    Could someone point me in the right direction - explain what this means. Getting desperate as 5.6.3 will be going into production soon and all Bursting will fail with this error. I can't get the simplest XML File to Burst - NOTE this is only occurring on the EBS system (even running without the CM ie. a standalone java main it fails). I think this has something to do with the XML parser version and the EBS environment.
    Please help...

    Hi Tim, good thinking - wouldn't have thought to check this file. Anyway can confirm that the problem is happening with multiple burst control files so I haven't checked the files themselves as the problem seems systemic. anyway here is an example.
    <?xml version="1.0" encoding="UTF-8"?>
    <xapi:requestset xmlns:xapi="http://xmlns.oracle.com/oxp/xapi">
    <xapi:request select="/XXWEL_BIP_UNI_INVOICES/LIST_G_CUSTOMER_NUMBER/G_CUSTOMER_NUMBER">
    <xapi:delivery>
    <xapi:email server="mailwa01" port="25"
    from="${ADMIN_EMAIL}" reply-to ="${ADMIN_EMAIL}">
    <xapi:message id="111" to="${ADMIN_EMAIL}" attachment="true" subject="Unigas Inv
    oice No: ${TRX_NUMBER}">
    </xapi:message>
    </xapi:email>
    </xapi:delivery>
    <xapi:document output-type="pdf" delivery="111">
    <xapi:template type="rtf" location="/u02/prod/prodappl/wel/11.5.0/interface/bip/templates/uni_invoice_template.rtf">
    </xapi:template>
    </xapi:document>
    </xapi:request>
    </xapi:requestset>
    I will start stripping the control files to make sure they are not the problem in the meantime.

  • Oracle.xml.parser.v2.XMLParseException: Missing entity 'nsim' Exception

    Hi All,
    Can anyone tell me what could be the reason for the following parsing exception?
    oracle.xml.parser.v2.XMLParseException: Missing entity 'nsim'.
         at java.lang.Throwable.fillInStackTrace(Native Method)
         at java.lang.Throwable.fillInStackTrace(Compiled Code)
         at java.lang.Throwable.<init>(Compiled Code)
         at java.lang.Exception.<init>(Compiled Code)
         at org.xml.sax.SAXException.<init>(SAXException.java:45)
         at org.xml.sax.SAXParseException.<init>(SAXParseException.java:116)
         at oracle.xml.parser.v2.XMLParseException.<init>(XMLParseException.java:62)
         at oracle.xml.parser.v2.XMLError.flushErrors(Compiled Code)
         at oracle.xml.parser.v2.NonValidatingParser.parseDocument(Compiled Code)
         at oracle.xml.parser.v2.XMLParser.parse(Compiled Code)
         at com.elsevier.util.xml.XMLHelper.parse(Compiled Code)
         at com.elsevier.util.xml.XMLHelper.parse(Compiled Code)
         at com.elsevier.util.xml.XMLHelper.parse(Compiled Code)
         at com.elsevier.cds.xml.XMLDocManagement.PublicationInformation(Compiled Code)
         at com.elsevier.cds.promis.FetchPublicationXML.getPublicationXML(Compiled Code)
         at com.elsevier.cds.promis.NewPromisData.processPublications(Compiled Code)
         at com.elsevier.cds.promis.NewPromisData.<init>(NewPromisData.java:152)
         at com.elsevier.cds.promis.NewPromisData.main(NewPromisData.java:451)
    XML parse error in file com.elsevier.cds.promis:/PubID=623277
    at line 382, character 40
    Missing entity 'nsim'.
    Thanks,
    Raghu

    Is an Entity used in the xml document and not defined in the document?

  • Compiler error "oracle.xml.parser.v2.XMLElement" not found in class com.ora

    Compiler error "oracle.xml.parser.v2.XMLElement" not found in class com.oracle.demos......?
    I am currently testing a simple sample application with a java code similar to the one shown at
    the bottom of this post.
    However during deployment/compilation the compiler gives an error:
    Error(26,23): XMLElement not found in class com.oracle.demos.orderbooking.ApproveImpl
    Additionally similar other errors appear:
    Error(23,66): JAXBException not found in class com.oracle.demos.orderbooking.ObjectFactory
    Error(51,58): UnmarshalException not found in class com.oracle.demos.orderbooking.ObjectFactory
    Error(9,92): Element not found in interface com.oracle.demos.orderbooking.Approve
    What's wrong?
    It seems to me that I have to add some (more) *.jar files/libraries to the project?
    Which *.jars and where should I add them in JDeveloper?
    source code:
    package com.oracle.demos.orderbooking;
    public class ApproveImpl extends com.oracle.demos.orderbooking.ApproveTypeImpl implements com.oracle.demos.orderbooking.Approve
    public ApproveImpl(oracle.xml.parser.v2.XMLElement node)
    super(node);
    }

    Hai James this the response I am getting can you please tell what should I write inside ora:getNodeValue() to get the value of node <genReturnText>
    The drag and dropping the variable name is not working, I have to write the path manually but I dont know how.
    <ns1:getRoutingAndFrameJumpersResponse xmlns:ns1="com.NetworkInstallations">
    -<com.GetRoutingAndFrameJumpersOutput>
    <destination>
    SW
    </destination>
    <e2EData>
    busProcOriginator
    </e2EData>
    <genReturnCode>
    40777
    </genReturnCode>
    <genReturnText>
    EMW_Get_Routing_And_FrameJumpers_Succeeded
    </genReturnText>
    <supplCode>
    ISY002
    </supplCode>
    <supplText>
    Transaction successfully completed.
    </supplText>
    <severityCode>
    S
    </severityCode>
    <retriable>
    false
    </retriable>
    </com.GetRoutingAndFrameJumpersOutput>
    </ns1:getRoutingAndFrameJumpersResponse>

  • B2B-50014:  General Error: java.lang.ClassCastException: oracle.xml.parser.

    Hi Gurus,
    Trying to pass an OAG XML 9.0 payload to a remote trading Partner, over an AS2 channel -- message is both Signed and Encrypted, Cert has been imported.
    I get the B2B-50014: General Error.
    B2B is able to identify the Agreement correctly.
    LOGS:
    [2011-05-12T12:27:03.292+00:00] [soa_ms_1] [ERROR] [] [oracle.soa.b2b.engine] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@243d15ed] [userId: <anonymous>] [ecid: bb3e7e8ee8316823:74cad781:12fc9c42815:-7ff5-0000000000172f4e,0] [APP: soa-infra] Error -: B2B-50014: General Error: java.lang.ClassCastException: oracle.xml.parser.v2.XMLParseException cannot be cast to oracle.tip.b2b.system.B2BDomainException[[
         at oracle.tip.b2b.engine.Engine.processOutgoingMessageImpl(Engine.java:1571)
         at oracle.tip.b2b.engine.Engine.processOutgoingMessage(Engine.java:800)
         at oracle.tip.b2b.engine.Engine.handleMessageEvent(Engine.java:3785)
         at oracle.tip.b2b.engine.Engine.processEvents(Engine.java:3127)
         at oracle.tip.b2b.engine.ThreadWorkExecutor.processEvent(ThreadWorkExecutor.java:619)
         at oracle.tip.b2b.engine.ThreadWorkExecutor.run(ThreadWorkExecutor.java:220)
         at oracle.integration.platform.blocks.executor.WorkManagerExecutor$1.run(WorkManagerExecutor.java:120)
         at weblogic.work.j2ee.J2EEWorkManager$WorkWithListener.run(J2EEWorkManager.java:183)
         at weblogic.work.DaemonWorkThread.run(DaemonWorkThread.java:30)
    Caused by: java.lang.ClassCastException: oracle.xml.parser.v2.XMLParseException cannot be cast to oracle.tip.b2b.system.B2BDomainException
         at oracle.tip.b2b.document.oag.OagDocumentPlugin.validateXMLDocument(OagDocumentPlugin.java:1237)
         at oracle.tip.b2b.document.oag.OagDocumentPlugin.processOutgoingDocument(OagDocumentPlugin.java:819)
         at oracle.tip.b2b.msgproc.Request.outgoingRequestPostColab(Request.java:1483)
         at oracle.tip.b2b.msgproc.Request.outgoingRequest(Request.java:990)
         at oracle.tip.b2b.engine.Engine.processOutgoingMessageImpl(Engine.java:1511)
         ... 8 more
    java.lang.ClassCastException: oracle.xml.parser.v2.XMLParseException cannot be cast to oracle.tip.b2b.system.B2BDomainException
         at oracle.tip.b2b.document.oag.OagDocumentPlugin.validateXMLDocument(OagDocumentPlugin.java:1237)
         at oracle.tip.b2b.document.oag.OagDocumentPlugin.processOutgoingDocument(OagDocumentPlugin.java:819)
         at oracle.tip.b2b.msgproc.Request.outgoingRequestPostColab(Request.java:1483)
         at oracle.tip.b2b.msgproc.Request.outgoingRequest(Request.java:990)
         at oracle.tip.b2b.engine.Engine.processOutgoingMessageImpl(Engine.java:1511)
         at oracle.tip.b2b.engine.Engine.processOutgoingMessage(Engine.java:800)
         at oracle.tip.b2b.engine.Engine.handleMessageEvent(Engine.java:3785)
         at oracle.tip.b2b.engine.Engine.processEvents(Engine.java:3127)
         at oracle.tip.b2b.engine.ThreadWorkExecutor.processEvent(ThreadWorkExecutor.java:619)
         at oracle.tip.b2b.engine.ThreadWorkExecutor.run(ThreadWorkExecutor.java:220)
         at oracle.integration.platform.blocks.executor.WorkManagerExecutor$1.run(WorkManagerExecutor.java:120)
         at weblogic.work.j2ee.J2EEWorkManager$WorkWithListener.run(J2EEWorkManager.java:183)
         at weblogic.work.DaemonWorkThread.run(DaemonWorkThread.java:30)
    Error -: B2B-50014: General Error: java.lang.ClassCastException: oracle.xml.parser.v2.XMLParseException cannot be cast to oracle.tip.b2b.system.B2BDomainException
         at oracle.tip.b2b.engine.Engine.processOutgoingMessageImpl(Engine.java:1571)
         at oracle.tip.b2b.engine.Engine.processOutgoingMessage(Engine.java:800)
         at oracle.tip.b2b.engine.Engine.handleMessageEvent(Engine.java:3785)
         at oracle.tip.b2b.engine.Engine.processEvents(Engine.java:3127)
         at oracle.tip.b2b.engine.ThreadWorkExecutor.processEvent(ThreadWorkExecutor.java:619)
         at oracle.tip.b2b.engine.ThreadWorkExecutor.run(ThreadWorkExecutor.java:220)
         at oracle.integration.platform.blocks.executor.WorkManagerExecutor$1.run(WorkManagerExecutor.java:120)
         at weblogic.work.j2ee.J2EEWorkManager$WorkWithListener.run(J2EEWorkManager.java:183)
         at weblogic.work.DaemonWorkThread.run(DaemonWorkThread.java:30)
    Caused by: java.lang.ClassCastException: oracle.xml.parser.v2.XMLParseException cannot be cast to oracle.tip.b2b.system.B2BDomainException
         at oracle.tip.b2b.document.oag.OagDocumentPlugin.validateXMLDocument(OagDocumentPlugin.java:1237)
         at oracle.tip.b2b.document.oag.OagDocumentPlugin.processOutgoingDocument(OagDocumentPlugin.java:819)
         at oracle.tip.b2b.msgproc.Request.outgoingRequestPostColab(Request.java:1483)
         at oracle.tip.b2b.msgproc.Request.outgoingRequest(Request.java:990)
         at oracle.tip.b2b.engine.Engine.processOutgoingMessageImpl(Engine.java:1511)
         ... 8 more
    Kindly advise.
    Regards,
    Sambhav.

    Hi Anuj,
    Thanks, i disabled the agreement validation, ran the file through. It worked.
    Also, tried to validate the XML instance with the XSD, and it threw no errors, so the payload conforms to the XSD, but will validate.
    Other thing being, this is an OAG-XML PO, so had the XSD, not the Guideline file.
    Regards,
    Sambhav.

  • Oracle9i: Difference between oraxml and oracle.xml.parser.v2.DOMParser?

    I have parsed the following xml document with the oraxml batch
    and with the sample '..\xdk\demo\java\parser\dom\DOMSample' and
    observed a diffent behavior in Oracle9i:
    <?xml version="1.0" encoding="utf-8" standalone="yes" ?>
    <Document xmlns:n1='urn:example:some-names'
    xmlns:n2='urn:example:some-names'>
    <BadAttrs_XML_1.0 att='1' att='2' />
    <BadAttrs_Namespaces n1:att='1' n2:att='2' />
    <OKAttrs_XML_1.0 att='1' n2:att='2' />
    </Document>
    ----------------------------1.) oraxml
    C:\oracle\ora9011\xdk\demo\java\parser\dom>oraxml -version
    -warning Namespaces2.xml
    Parser version: Oracle XDK Java 9.0.1.0.0 Production
    The input XML file is parsed without errors using partial
    validation mode
    Oraxml does not recognize the two attributes with the same name
    in element 'BadAttrs_XML_1.0' as an error.
    2.) oracle.xml.parser.v2.DOMParser
    C:\oracle\ora9011\xdk\demo\java\parser\dom>java DOMSample
    Namespaces2.xml
    file:Namespaces2.xml<Line 8, Column 38>: XML-0124: (Fata
    l Error) An attribute cannot appear more than once in the same
    start tag.
    oracle.xml.parser.v2.XMLParseException: An attribute cannot
    appear more than once in the same start tag.
    I have modified the DomSample.java. The DomParser just checks for
    well-formed documents and doesn't validate the document anymore.
    (only a comment before
    parser.setValidationMode(DOMParser.DTD_VALIDATION);)
    My question is:
    Is there really a difference between oracle.xml.parser.v2.oraxml
    and oracle.xml.parser.v2.DOMParser or which parameters do I have
    to use to get the same results?
    With Oracle8i, both report an xml error!!
    (Oracle9i, Win2000, JDK1.3)
    Thanx in advance!
    Markus

    It would appear that there is a difference when a loadjava is given a jar vs. the individual class files. When I load the jar, I get the previously described error, but when I load the individual class files (the same class files that the jar contains) the error goes away.
    Why?

  • Invalid InputSource Error using XML Parser V2

    I'm using the following code to read xml from
    a clob field in an Oracle database.
    try
    // Parse xsl and xml documents
    parser = new DOMParser();
    parser.setPreserveWhitespace(true);
    Statement sqlSel=conn.createStatement();
    ResultSet xmlDet=sqlSel.executeQuery("SELECT * FROM USER_XML WHERE IHC_USER_ID='123456789'");
    if (xmlDet.next())
    CLOB xmlCLOB= ((OracleResultSet)xmlDet).getCLOB(2);
    int index=0;
    Reader clobStream=xmlCLOB.getCharacterStream();
    parser.parse(clobStream);
    Everything seems to work fine, and I can
    create a String from the stream which contains the entire XML document. However, if I try to do the above and parse the Stream, or alternatively parse the String resulting from the stream, I get the following Error:
    nvalid InputSource.
    void oracle.xml.parser.v2.XMLError.flushErrors()
    void oracle.xml.parser.v2.XMLError.error(int, int, java.lang.String, java.lang.String, java.lang.String, int, java.lang.Exception, int, boolean)
    void oracle.xml.parser.v2.XMLError.error(oracle.xml.parser.v2.XMLReader, java.lang.String, int, java.lang.Exception, int, boolean)
    void oracle.xml.parser.v2.XMLReader.pushXMLReader(org.xml.sax.InputSource)
    void oracle.xml.parser.v2.XMLParser.parse(java.lang.String)
    void xmlquerydb.testParse()
    void xmlquerydb.main(java.lang.String[])
    Any ideas what could cause this?

    I'm quite sure the xml documents are valid.
    At present, I'm just using booklist.xml,
    which comes as an example with the XML SQL
    utility. The problem is not really with the
    parsing (If I convert the xml into a url then it parses fine).
    My real problem is pulling the document out
    of a CLOB field. Regardless of what I pass to the parser( a string or a stream), or which xml its parsing, I still get the Invalid inputsource error.

Maybe you are looking for