Oracle xml parser v2 and non "UTF-8" encoding

Hi!
I trying to create XMLDocument with oracle xml parser v2
JXDocumentBuilderFactory factory = (JXDocumentBuilderFactory) JXDocumentBuilderFactory.newInstance ();
JXDocumentBuilder documentBuilder = (JXDocumentBuilder) factory.newDocumentBuilder();
XMLDocument document = (XMLDocument) documentBuilder.newDocument();
document.setVersion("1.0");
document.setEncoding("windows-1251");
but resulted document still have "<?xml version="1.0" encoding="UTF-8"?>"

Is the XML document generated with the XMLPrintDriver?
http://www.devx.com/xml/Article/34552/0/page/3

Similar Messages

  • Documentation for Oracle XML parser Classes and Interfaces

    I would like to use the oracle XMLParser V2 classes with JDeveloper 3.1, but I cannot find any reference documentation for the classes and interfaces in help.
    I am especially interested in a documentation for the XSLProcessor class. The only information I found was provided with the few provided samples.

    I don't think the javadoc for this was included in the release. You can get the Javadoc (as well as the latest version of the XML Parser v2) here on OTN.
    Take Care,
    Rob
    null

  • Oracle XML Parser C++ V2 - BUG

    One of the features of the v2 C++ XML parser is support for UTF-8 encoding. However if you create a XML document with the following header
    <?xml version="1.0" encoding="UTF-8"?>
    then the parser throws out the following error "unsupported encoding". Does this mean that this parser does not support UTF-8 encoding or is there some flag in the parser that needs to be checked?

    The xmlparseBuffer() method of class XMLParser accepts an XML buffer in its first oratext * argument.
    Though you say xmlparseBuffer() accepts filenames, it works with buffers, I'm using it.
    null

  • 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?

  • Oracle XML parser and IBM jdk bug

    Hello,
    From a few messages found in the XML forum it seems that IBM jvm could cause problems with oracle XML parser. ( see http://technet.oracle.com:89/ubb/Forum11/HTML/003823.html )
    I am using IBM jvm (jdk 1.3) on a linux box, and problems are starting to arise:
    I have
    - 1 BC4J based jsp app which works fine.
    - 2 XML parsing BC4J apps which cause strange errors (like parsing 40 documents fine and failing on the 41st for no apparent reason)
    Hopefully, Steven Muench provided precious advice on this (basically, disabling the JIT), however some issues are still open:
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>You should file a bug with IBM to get this fixed, using your stylesheet as a testcase. Lots of people have hit this problem.<HR></BLOCKQUOTE>
    Has anyone (from oracle or else) done this yet? I have gone (quickly) through IBM website but I didn't find any bug report utility or the like...
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Disable your JIT compiler (or switch JVM's) and you won't have the error.<HR></BLOCKQUOTE>
    Turning off the JIT indeed made the errors vanish, thanks a lot for the tip!
    I have a few more questions though :
    * As the BC4J framework uses the xml parser, It is fairly possible that the ibm jvm bug will affect it...
    I haven't had any problems (yet?) with the BC4J part of my applications, but I'm a bit concerned about having random bugs lurking around (I have more than enough of my own :) )
    Has anyone stumbled upon IBM JVM vs oracle parser issues in BC4J? (oracle.xml.parser.v2.XXXXXX exceptions...)
    * If BC4J is indeed affected, what's the solution?
    - Disable the JIT? (And forget about performance?... hmmm... no)
    - Switch parsers? (oracle parser is too tightly integrated in the BC4J Framework isn't it?.. hmm... not possible either)
    - Wait for a patch from IBM (and use another one in the meantime) / switch JVM :
    In either case, I'd really like to know what is the JVM that oracle people use / would advise.
    Thanks for your help
    null

    For those interested,
    last week i reported this bug in the ibm jvm news forum.
    They said that the problem had been investigated and would be fixed in their next service release.
    FYI: the current release (SR7, labeled "build cx130-20010329) still has various problems wih oracle XML parser.
    Remi
    null

  • Why the oracle XML parser "parses" the DTD comments?

    Hi all,
    I always use the header
    <?xml version = '1.0' encoding='ISO-8859-1' ?>
    to be able to use foreign characters in the XML documents.
    The oracle xml parser handles this correctly.
    My problem is, when I write comments inside the DTD, the
    parser reports "Invalid UTF8 encoding".
    Why the parser "parse" the comments? (protected by <!-- and -->)
    How do I say that the DTD encoding is different from UTF, like
    ISO-8859-1?
    Example of a correct DTD and corresponding XML, reporting
    problems, related to the 2nd comment in the DTD specification,
    written with ISO-8859-1 characters.
    The DTD:
    <!-- valid.dtd -->
    <!ELEMENT valid ( B, C ) >
    <!-- valid represents the concept "Identificagco" -->
    <!ELEMENT B (#PCDATA) >
    <!ELEMENT C (#PCDATA) >
    The XML:
    <?xml version = '1.0' encoding='ISO-8859-1' ?>
    <!DOCTYPE valid SYSTEM 'valid.dtd'>
    <valid>
    <B>How are you, Conceigco</B>
    <C>I'm fine, thank you.</C>
    </valid>
    The parser output:
    [jgr@frontera test-dtd]$ java oracle.xml.parser.v2.oraxml -v
    valid.xml
    Error while parsing input sourcevalid.xml(Invalid UTF8 encoding.)
    Thank you for any help.
    Jorge Gustavo Rocha

    I was wrong in saying that the attributes are not added to the element.My main aim is to add a array of elements to the root node.
    Is there a efficient manner in adding the elements , rather than adding them individually with the help of appendChild method.
    Thanks in advance.
    null

  • 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

  • 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

  • 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.

  • ANN: Oracle XML Parser for Java v1.0.1.1 Maintenance

    The first maintenance release of the Oracle XML Parser for
    Java is available for download here.
    It has the following fixes and changes since 1.0.1:
    Bug Fixes:
    #843157, parseDTD(InputSource, rootElement) and
    parseDTD(URL, rootelement) then parse(InputSource) bugs;
    #843143, parse(InputSource) bug;
    #793012, no need to print a trace of an exception which is
    rethrown.
    Changes: None
    Oracle XML Team
    http://technet.oracle.com
    Oracle Technology Network
    null

    The first maintenance release of the Oracle XML Parser for
    Java is available for download here.
    It has the following fixes and changes since 1.0.1:
    Bug Fixes:
    #843157, parseDTD(InputSource, rootElement) and
    parseDTD(URL, rootelement) then parse(InputSource) bugs;
    #843143, parse(InputSource) bug;
    #793012, no need to print a trace of an exception which is
    rethrown.
    Changes: None
    Oracle XML Team
    http://technet.oracle.com
    Oracle Technology Network
    null

  • Oracle.xml.parser.v2.XPathException: Extension function error: Method not f

    Hi all,
    When I am trying to call an external java function in XSLT it is throwing the following exception .
    Exception in thread "main" oracle.xml.parser.v2.XPathException: Extension functi
    on error: Method not found 'getValue'
    at oracle.xml.parser.v2.XSLExtFunctions.getMethod(XSLExtFunctions.java:2
    85)
    at oracle.xml.parser.v2.XPathExtFunction.evaluateMethod(XPathExtFunction
    .java:178)
    at oracle.xml.parser.v2.XPathExtFunction.getValue(XPathExtFunction.java:
    137)
    at oracle.xml.parser.v2.XSLExprBase.getStringValue(XSLExprBase.java:369)
    at oracle.xml.parser.v2.XSLValueOf.processAction(XSLValueOf.java:99)
    at oracle.xml.parser.v2.XSLNode.processChildren(XSLNode.java:369)
    at oracle.xml.parser.v2.XSLResultElement.processAction(XSLResultElement.
    java:176)
    at oracle.xml.parser.v2.XSLNode.processChildren(XSLNode.java:369)
    at oracle.xml.parser.v2.XSLResultElement.processAction(XSLResultElement.
    java:176)
    at oracle.xml.parser.v2.XSLNode.processChildren(XSLNode.java:369)
    at oracle.xml.parser.v2.XSLTemplate.processAction(XSLTemplate.java:200)
    at oracle.xml.parser.v2.XSLApplyTemplates.processAction(XSLApplyTemplate
    s.java:214)
    at oracle.xml.parser.v2.XSLApplyTemplates.processAction(XSLApplyTemplate
    s.java:120)
    at oracle.xml.parser.v2.XSLNode.processChildren(XSLNode.java:369)
    at oracle.xml.parser.v2.XSLTemplate.processAction(XSLTemplate.java:200)
    at oracle.xml.parser.v2.XSLStylesheet.execute(XSLStylesheet.java:474)
    at oracle.xml.parser.v2.XSLStylesheet.execute(XSLStylesheet.java:451)
    at oracle.xml.parser.v2.XSLProcessor.processXSL(XSLProcessor.java:248)
    at oracle.xml.parser.v2.XSLProcessor.processXSL(XSLProcessor.java:138)
    at oracle.xml.parser.v2.XSLProcessor.processXSL(XSLProcessor.java:210)
    at Transformer.main(Transformer.java:25)
    My small code is of XSL is:
    <xsl:stylesheet version = '1.0'
    xmlns:xsl='http://www.w3.org/1999/XSL/Transform' xmlns:XYZ="http://www.oracle.com/XSL/Transform/java/pack/XYZ">
    <xsl:template match="PatientRecord">
    <patientKey>
    <LastName>
    <xsl:value-of select="XYZ:getValue()"/>
    </LastName>
    <DOB>
    <xsl:value-of select="DOB"/>
    </DOB>
    </patientKey>
    </xsl:template>
    </xsl:stylesheet>
    My small code of java is :
    package pack;
    public class XYZ{
    public String getValue(){
    return "Hello World";
    My small piece of XML is:
    <PatientRecord>
    <RecordType>P</RecordType>
    <FirstName>JAVA</FirstName>
    <LastName>DEVELOPER</LastName>
    <SSN>737747777</SSN>
    <DOB>19740310</DOB>
    <DoctorID>20874</DoctorID>
    <VisitReason>
    Programming stress disorders
    </VisitReason>
    </PatientRecord>
    I added the xmlparserv2.jar and xyz.jar file to classpath and XYZ.class file is in xyz.jar file .
    Could any body help me if they have encounter or know the answer.
    Thanks,
    Reddy

    Hi Vetsrini, Thank you for your response.
    1. I checked the values in the xml and found no nulls. I see all 0 or non-zero numbers.
    2. Following MetaLink Doc ID 362496.1, I find:
    - PDF Producer: PDF file properties shows PDF Producer "Oracle XML Publisher 5.6.3"
    - AD_BUGS SQL: The SQL results show that I have the 5.6.3 patch, but the SQL in the Doc only includes patch numbers up to 5.6.3. I'm not sure how I can find out the patch numbers of more recent patches, to see if i have those.
    - File version of the MetaInfo.class: $Header MetaInfo.java 115.28 2006/08/17 01:24:59 bgkim noship $
    What is the latest XDO patch? I can't find anything newer than what I have in MetaLink, but I probably am missing something...

  • XML validation using Oracle XML parser v2

    Not sure if this is the right forum for this question as I didn't found any.
    I had a tough time trying to build an XMLSchema (Oracle XML Parser V2) object from the input schema having include/import. Actually I am working on a Java program to validate the input xml with input schema using Oracle XML parser v2 api.
    The issue is that the code doesn't work for schema that has some "include" in it. The code is working fine for the schema without any import/include. Here is the lines of code -
    XSDBuilder builder = new XSDBuilder();
    schema = builder.build(new InputSource(xsdReader));
    I am writing this in JDeveloper. The error is -
    oracle.xml.parser.schema.XSDException: Can not build schema 'http://www.fpml.org/2005/FpML-4-2' located at 'xsd\FpML42\xml\fpml-fx-4-2.xsd'
    I also tried creating the EntityResolver to specify the path of included schema. But that doesn't solves the problem.
    I am not sure whether parser is able to locate the included schema or not.The main schema and included schema are all in same folder. The included schema is perfectly fine and has no errors.
    Please help if you have encountered this issue and resolved it. I will really appreciate any pointers or clue to solve this issue.
    Thanks.

    Thanks for the reply. But it does not seem to be working. Am I missing something
    I put <TrxDate xsi:nil="true"/> but still getting error.
    Here's my xsd:
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    elementFormDefault="qualified">
    <xsd:element name="TrxDate" type="xsd:date" nillable="true" />
    XML:
    <?xml version="1.0" encoding="UTF-8" ?>
    <ServiceRequest>
    <TrxDate nil="true"/>
    </ServiceRequest>

  • 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

  • Java.lang.NoClassDefFoundError at oracle.xml.parser.v2.NonValidatingParser

    Hi All,
    While accessing the JPDK provider URL that is integrated with PeopleSoft application, I am getting the following error
    500 Internal Server Error
    java.lang.NoClassDefFoundError at oracle.xml.parser.v2.NonValidatingParser.(NonValidatingParser.java:172) at oracle.xml.parser.v2.XMLParser.(XMLParser.java:174) at oracle.xml.parser.v2.DOMParser.(DOMParser.java:92) at oracle.portal.utils.xml.v2.XMLUtil.getParser(Unknown Source) at oracle.portal.utils.xml.v2.XMLUtil.parseDocument(Unknown Source) at oracle.portal.provider.v2.http.DefaultProviderLoader.parseRegistry(Unknown Source) at oracle.portal.provider.v2.http.DefaultProviderLoader.getProviderDefinition(Unknown Source) at oracle.portal.provider.v2.http.DefaultProviderLoader.validate(Unknown Source) at oracle.webdb.provider.v2.adapter.soapV1.ProviderAdapter.validate(Unknown Source) at oracle.webdb.provider.v2.adapter.soapV1.ProviderAdapter.showTestPage(Unknown Source) at oracle.webdb.provider.v2.adapter.soapV1.ProviderAdapter.handleHttp(Unknown Source) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at oracle.webdb.provider.v2.adapter.SOAPServlet.doHTTPCall(Unknown Source) at oracle.webdb.provider.v2.adapter.SOAPServlet.service(Unknown Source) at javax.servlet.http.HttpServlet.service(HttpServlet.java:856) at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64) at com.peoplesoft.pt.portlet.jpdk.provider.PSProviderFilter.doFilter(PSProviderFilter.java:78) at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15) at com.peoplesoft.pt.portlet.logging.DynamicFilter.doFilter(DynamicFilter.java:83) at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:619) at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:368) at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:866) at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:448) at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:302) at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:190) at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260) at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303) at java.lang.Thread.run(Thread.java:595)
    As our application uses AXIS to do WebServices, we have removed the default oracle xml shared library by using remove-inherited in orion-application.xml. In addition, we package our own xerces in our application ear file. It looks like PDK is looking for oracle xml parser resulting in the NoClassDefFoundError exception.
    The above exception is thrown if I access the JDPK provider URL after accessing our application.
    However, if I restart the OC4J and ccess the JPDK provider URL without accessing our application, I get the following error
    500 Internal Server Error
    oracle.classloader.util.AnnotatedLinkageError: class oracle.xml.parser.schema.XSDNode cannot access its superinterface oracle.xml.parser.schema.XSDComponent Invalid class: oracle.xml.parser.schema.XSDNode Loader: oracle.cache:10.1.3 Code-Source: /D:/Oracle/OAS101310/OracleAS_1/LIB/xschema.jar Configuration: (ignore manifest Class-Path) in META-INF/boot.xml in D:\Oracle\OAS101310\OracleAS_1\j2ee\home\oc4j.jar Dependent class: oracle.xml.parser.v2.XMLNode Loader: PeopleSoft2.web.pspc:0.0.0 Code-Source: /D:/Oracle/OAS101310/OracleAS_1/j2ee/PeopleSoft2/applications/PeopleSoft2/pspc/WEB-INF/lib/xmlparserv2.jar Configuration: WEB-INF/lib/ directory in D:\Oracle\OAS101310\OracleAS_1\j2ee\PeopleSoft2\applications\PeopleSoft2\pspc\WEB-INF\lib at oracle.classloader.PolicyClassLoader.findLocalClass (PolicyClassLoader.java:1462) [D:/Oracle/OAS101310/OracleAS_1/j2ee/home/lib/pcl.jar (from system property java.class.path), by sun.misc.Launcher$AppClassLoader@26795951] at oracle.classloader.SearchPolicy$FindLocal.getClass (SearchPolicy.java:167) [D:/Oracle/OAS101310/OracleAS_1/j2ee/home/lib/pcl.jar (from system property java.class.path), by sun.misc.Launcher$AppClassLoader@26795951] at oracle.classloader.SearchSequence.getClass (SearchSequence.java:119) [D:/Oracle/OAS101310/OracleAS_1/j2ee/home/lib/pcl.jar (from system property java.class.path), by sun.misc.Launcher$AppClassLoader@26795951] at oracle.classloader.SearchPolicy.loadClass (SearchPolicy.java:645) [D:/Oracle/OAS101310/OracleAS_1/j2ee/home/lib/pcl.jar (from system property java.class.path), by sun.misc.Launcher$AppClassLoader@26795951] at oracle.classloader.SearchPolicy$CheckSharedLibraries.getClass (SearchPolicy.java:396) [D:/Oracle/OAS101310/OracleAS_1/j2ee/home/lib/pcl.jar (from system property java.class.path), by sun.misc.Launcher$AppClassLoader@26795951] at oracle.classloader.SearchSequence.getClass (SearchSequence.java:119) [D:/Oracle/OAS101310/OracleAS_1/j2ee/home/lib/pcl.jar (from system property java.class.path), by sun.misc.Launcher$AppClassLoader@26795951] at oracle.classloader.PolicyClassLoader.internalLoadClass (PolicyClassLoader.java:1674) [D:/Oracle/OAS101310/OracleAS_1/j2ee/home/lib/pcl.jar (from system property java.class.path), by sun.misc.Launcher$AppClassLoader@26795951] at oracle.classloader.PolicyClassLoader.loadClass (PolicyClassLoader.java:1635) [D:/Oracle/OAS101310/OracleAS_1/j2ee/home/lib/pcl.jar (from system property java.class.path), by sun.misc.Launcher$AppClassLoader@26795951] at oracle.classloader.PolicyClassLoader.loadClass (PolicyClassLoader.java:1620) [D:/Oracle/OAS101310/OracleAS_1/j2ee/home/lib/pcl.jar (from system property java.class.path), by sun.misc.Launcher$AppClassLoader@26795951] at java.lang.ClassLoader.loadClassInternal (ClassLoader.java:319) [jre bootstrap, by jre.bootstrap:1.5.0_06] at oracle.xml.parser.v2.XMLNode. (XMLNode.java:4123) [D:/Oracle/OAS101310/OracleAS_1/j2ee/PeopleSoft2/applications/PeopleSoft2/pspc/WEB-INF/lib/xmlparserv2.jar (from WEB-INF/lib/ directory in D:\Oracle\OAS101310\OracleAS_1\j2ee\PeopleSoft2\applications\PeopleSoft2\pspc\WEB-INF\lib), by PeopleSoft2.web.pspc:0.0.0] at oracle.xml.parser.v2.NonValidatingParser. (NonValidatingParser.java:172) [D:/Oracle/OAS101310/OracleAS_1/j2ee/PeopleSoft2/applications/PeopleSoft2/pspc/WEB-INF/lib/xmlparserv2.jar (from WEB-INF/lib/ directory in D:\Oracle\OAS101310\OracleAS_1\j2ee\PeopleSoft2\applications\PeopleSoft2\pspc\WEB-INF\lib), by PeopleSoft2.web.pspc:0.0.0] at oracle.xml.parser.v2.XMLParser. (XMLParser.java:174) [D:/Oracle/OAS101310/OracleAS_1/j2ee/PeopleSoft2/applications/PeopleSoft2/pspc/WEB-INF/lib/xmlparserv2.jar (from WEB-INF/lib/ directory in D:\Oracle\OAS101310\OracleAS_1\j2ee\PeopleSoft2\applications\PeopleSoft2\pspc\WEB-INF\lib), by PeopleSoft2.web.pspc:0.0.0] at oracle.xml.parser.v2.DOMParser. (DOMParser.java:92) [D:/Oracle/OAS101310/OracleAS_1/j2ee/PeopleSoft2/applications/PeopleSoft2/pspc/WEB-INF/lib/xmlparserv2.jar (from WEB-INF/lib/ directory in D:\Oracle\OAS101310\OracleAS_1\j2ee\PeopleSoft2\applications\PeopleSoft2\pspc\WEB-INF\lib), by PeopleSoft2.web.pspc:0.0.0] at oracle.portal.utils.xml.v2.XMLUtil.getParser (Unknown source file) [D:/Oracle/OAS101310/OracleAS_1/j2ee/PeopleSoft2/applications/PeopleSoft2/pspc/WEB-INF/lib/ptlshare.jar (from WEB-INF/lib/ directory in D:\Oracle\OAS101310\OracleAS_1\j2ee\PeopleSoft2\applications\PeopleSoft2\pspc\WEB-INF\lib), by PeopleSoft2.web.pspc:0.0.0] at oracle.portal.utils.xml.v2.XMLUtil.parseDocument (Unknown source file) [D:/Oracle/OAS101310/OracleAS_1/j2ee/PeopleSoft2/applications/PeopleSoft2/pspc/WEB-INF/lib/ptlshare.jar (from WEB-INF/lib/ directory in D:\Oracle\OAS101310\OracleAS_1\j2ee\PeopleSoft2\applications\PeopleSoft2\pspc\WEB-INF\lib), by PeopleSoft2.web.pspc:0.0.0] at oracle.portal.provider.v2.http.DefaultProviderLoader.parseRegistry (Unknown source file) [D:/Oracle/OAS101310/OracleAS_1/j2ee/PeopleSoft2/applications/PeopleSoft2/pspc/WEB-INF/lib/pdkjava.jar (from WEB-INF/lib/ directory in D:\Oracle\OAS101310\OracleAS_1\j2ee\PeopleSoft2\applications\PeopleSoft2\pspc\WEB-INF\lib), by PeopleSoft2.web.pspc:0.0.0] at oracle.portal.provider.v2.http.DefaultProviderLoader.getProviderDefinition (Unknown source file) [D:/Oracle/OAS101310/OracleAS_1/j2ee/PeopleSoft2/applications/PeopleSoft2/pspc/WEB-INF/lib/pdkjava.jar (from WEB-INF/lib/ directory in D:\Oracle\OAS101310\OracleAS_1\j2ee\PeopleSoft2\applications\PeopleSoft2\pspc\WEB-INF\lib), by PeopleSoft2.web.pspc:0.0.0] at oracle.portal.provider.v2.http.DefaultProviderLoader.validate (Unknown source file) [D:/Oracle/OAS101310/OracleAS_1/j2ee/PeopleSoft2/applications/PeopleSoft2/pspc/WEB-INF/lib/pdkjava.jar (from WEB-INF/lib/ directory in D:\Oracle\OAS101310\OracleAS_1\j2ee\PeopleSoft2\applications\PeopleSoft2\pspc\WEB-INF\lib), by PeopleSoft2.web.pspc:0.0.0] at oracle.webdb.provider.v2.adapter.soapV1.ProviderAdapter.validate (Unknown source file) [D:/Oracle/OAS101310/OracleAS_1/j2ee/PeopleSoft2/applications/PeopleSoft2/pspc/WEB-INF/lib/pdkjava.jar (from WEB-INF/lib/ directory in D:\Oracle\OAS101310\OracleAS_1\j2ee\PeopleSoft2\applications\PeopleSoft2\pspc\WEB-INF\lib), by PeopleSoft2.web.pspc:0.0.0] at oracle.webdb.provider.v2.adapter.soapV1.ProviderAdapter.showTestPage (Unknown source file) [D:/Oracle/OAS101310/OracleAS_1/j2ee/PeopleSoft2/applications/PeopleSoft2/pspc/WEB-INF/lib/pdkjava.jar (from WEB-INF/lib/ directory in D:\Oracle\OAS101310\OracleAS_1\j2ee\PeopleSoft2\applications\PeopleSoft2\pspc\WEB-INF\lib), by PeopleSoft2.web.pspc:0.0.0] at oracle.webdb.provider.v2.adapter.soapV1.ProviderAdapter.handleHttp (Unknown source file) [D:/Oracle/OAS101310/OracleAS_1/j2ee/PeopleSoft2/applications/PeopleSoft2/pspc/WEB-INF/lib/pdkjava.jar (from WEB-INF/lib/ directory in D:\Oracle\OAS101310\OracleAS_1\j2ee\PeopleSoft2\applications\PeopleSoft2\pspc\WEB-INF\lib), by PeopleSoft2.web.pspc:0.0.0] at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native method) [unknown, by unknown] at sun.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:39) [unknown, by unknown] at sun.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:25) [unknown, by unknown] at java.lang.reflect.Method.invoke (Method.java:585) [unknown, by unknown] at oracle.webdb.provider.v2.adapter.SOAPServlet.doHTTPCall (Unknown source file) [D:/Oracle/OAS101310/OracleAS_1/j2ee/PeopleSoft2/applications/PeopleSoft2/pspc/WEB-INF/lib/pdkjava.jar (from WEB-INF/lib/ directory in D:\Oracle\OAS101310\OracleAS_1\j2ee\PeopleSoft2\applications\PeopleSoft2\pspc\WEB-INF\lib), by PeopleSoft2.web.pspc:0.0.0] at oracle.webdb.provider.v2.adapter.SOAPServlet.service (Unknown source file) [D:/Oracle/OAS101310/OracleAS_1/j2ee/PeopleSoft2/applications/PeopleSoft2/pspc/WEB-INF/lib/pdkjava.jar (from WEB-INF/lib/ directory in D:\Oracle\OAS101310\OracleAS_1\j2ee\PeopleSoft2\applications\PeopleSoft2\pspc\WEB-INF\lib), by PeopleSoft2.web.pspc:0.0.0] at javax.servlet.http.HttpServlet.service (HttpServlet.java:856) [D:/Oracle/OAS101310/OracleAS_1/j2ee/home/lib/servlet.jar (from (ignore manifest Class-Path) in META-INF/boot.xml in D:\Oracle\OAS101310\OracleAS_1\j2ee\home\oc4j.jar), by api:1.4.0] at com.evermind.server.http.ResourceFilterChain.doFilter (ResourceFilterChain.java:64) [D:/Oracle/OAS101310/OracleAS_1/j2ee/home/lib/oc4j-internal.jar (from in META-INF/boot.xml in D:\Oracle\OAS101310\OracleAS_1\j2ee\home\oc4j.jar), by oc4j:10.1.3] at com.peoplesoft.pt.portlet.jpdk.provider.PSProviderFilter.doFilter (PSProviderFilter.java:78) [D:/Oracle/OAS101310/OracleAS_1/j2ee/PeopleSoft2/applications/PeopleSoft2/pspc/WEB-INF/classes/ (from WEB-INF/classes/ in D:\Oracle\OAS101310\OracleAS_1\j2ee\PeopleSoft2\applications\PeopleSoft2\pspc\WEB-INF\classes), by PeopleSoft2.web.pspc:0.0.0] at com.evermind.server.http.EvermindFilterChain.doFilter (EvermindFilterChain.java:15) [D:/Oracle/OAS101310/OracleAS_1/j2ee/home/lib/oc4j-internal.jar (from in META-INF/boot.xml in D:\Oracle\OAS101310\OracleAS_1\j2ee\home\oc4j.jar), by oc4j:10.1.3] at com.peoplesoft.pt.portlet.logging.DynamicFilter.doFilter (DynamicFilter.java:83) [D:/Oracle/OAS101310/OracleAS_1/j2ee/PeopleSoft2/applications/PeopleSoft2/pspc/WEB-INF/classes/ (from WEB-INF/classes/ in D:\Oracle\OAS101310\OracleAS_1\j2ee\PeopleSoft2\applications\PeopleSoft2\pspc\WEB-INF\classes), by PeopleSoft2.web.pspc:0.0.0] at com.evermind.server.http.ServletRequestDispatcher.invoke (ServletRequestDispatcher.java:619) [D:/Oracle/OAS101310/OracleAS_1/j2ee/home/lib/oc4j-internal.jar (from in META-INF/boot.xml in D:\Oracle\OAS101310\OracleAS_1\j2ee\home\oc4j.jar), by oc4j:10.1.3] at com.evermind.server.http.ServletRequestDispatcher.forwardInternal (ServletRequestDispatcher.java:368) [D:/Oracle/OAS101310/OracleAS_1/j2ee/home/lib/oc4j-internal.jar (from in META-INF/boot.xml in D:\Oracle\OAS101310\OracleAS_1\j2ee\home\oc4j.jar), by oc4j:10.1.3] at com.evermind.server.http.HttpRequestHandler.doProcessRequest (HttpRequestHandler.java:866) [D:/Oracle/OAS101310/OracleAS_1/j2ee/home/lib/oc4j-internal.jar (from in META-INF/boot.xml in D:\Oracle\OAS101310\OracleAS_1\j2ee\home\oc4j.jar), by oc4j:10.1.3] at com.evermind.server.http.HttpRequestHandler.processRequest (HttpRequestHandler.java:448) [D:/Oracle/OAS101310/OracleAS_1/j2ee/home/lib/oc4j-internal.jar (from in META-INF/boot.xml in D:\Oracle\OAS101310\OracleAS_1\j2ee\home\oc4j.jar), by oc4j:10.1.3] at com.evermind.server.http.AJPRequestHandler.run (AJPRequestHandler.java:302) [D:/Oracle/OAS101310/OracleAS_1/j2ee/home/lib/oc4j-internal.jar (from in META-INF/boot.xml in D:\Oracle\OAS101310\OracleAS_1\j2ee\home\oc4j.jar), by oc4j:10.1.3] at com.evermind.server.http.AJPRequestHandler.run (AJPRequestHandler.java:190) [D:/Oracle/OAS101310/OracleAS_1/j2ee/home/lib/oc4j-internal.jar (from in META-INF/boot.xml in D:\Oracle\OAS101310\OracleAS_1\j2ee\home\oc4j.jar), by oc4j:10.1.3] at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run (ServerSocketReadHandler.java:260) [D:/Oracle/OAS101310/OracleAS_1/j2ee/home/lib/oc4j-internal.jar (from in META-INF/boot.xml in D:\Oracle\OAS101310\OracleAS_1\j2ee\home\oc4j.jar), by oc4j:10.1.3] at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket (ServerSocketAcceptHandler.java:239) [D:/Oracle/OAS101310/OracleAS_1/j2ee/home/lib/oc4j-internal.jar (from in META-INF/boot.xml in D:\Oracle\OAS101310\OracleAS_1\j2ee\home\oc4j.jar), by oc4j:10.1.3] at oracle.oc4j.network.ServerSocketAcceptHandler.access$700 (ServerSocketAcceptHandler.java:34) [D:/Oracle/OAS101310/OracleAS_1/j2ee/home/lib/oc4j-internal.jar (from in META-INF/boot.xml in D:\Oracle\OAS101310\OracleAS_1\j2ee\home\oc4j.jar), by oc4j:10.1.3] at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run (ServerSocketAcceptHandler.java:880) [D:/Oracle/OAS101310/OracleAS_1/j2ee/home/lib/oc4j-internal.jar (from in META-INF/boot.xml in D:\Oracle\OAS101310\OracleAS_1\j2ee\home\oc4j.jar), by oc4j:10.1.3] at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run (ReleasableResourcePooledExecutor.java:303) [D:/Oracle/OAS101310/OracleAS_1/j2ee/home/lib/oc4j-internal.jar (from in META-INF/boot.xml in D:\Oracle\OAS101310\OracleAS_1\j2ee\home\oc4j.jar), by oc4j:10.1.3] at java.lang.Thread.run (Thread.java:595) [jre bootstrap, by jre.bootstrap:1.5.0_06]

    On further test, If I let the default oracle xml parser be loaded, then I do not get the the exception.
    I have removed the following lines from orion-application.xml
         <imported-shared-libraries>
              <remove-inherited name="oracle.xml"/>
         </imported-shared-libraries>
    Now, If I access the JPDK provider URL
    http://ple-fjunod.peoplesoft.com:9820/pspc/providers/psprovider/ps/EMPLOYEE
    I get the excepted page
    Congratulations! You have successfully reached your Provider's Test Page.
    Recognizing Portlets...
    Recognizing component versions...
    ptlshare.jar version: 10.1.3.2.0
    pdkjava.jar version: 10.1.3.2.0
    Can someone please tell me that if I remove the inherited default oracle XML parser using remove-inherited tag in orion-application.xml, how do I make the JPDK use my own packaged xerces XML parser.
    Thanks

Maybe you are looking for