Parsing errors with CDATA tags using oracle xml parser v2

I'm using the oracle.xml.parser.v2 parser to combine a
generated xml document from a database with a static
xsl file to produce html. Within the xml document, there
are fairly large CDATA sections (500 lines) which happen
to contain javaScript.
Occasionally, I'm getting xml tags in the final html
document! It seems that the oracle parser pukes
on a certain type of data within a CDATA tag, and then
replaces an angle bracket (<) of a tag with a #60. This
can cause html tags being viewed in the document. At
first, I thought the amount of JavaScript within the
CDATA tag was too large for the parser to handle,
because when I split it up into 2 or more parts the errors
went away. But, re-arranging the JavaScript (String in the CDATA tag)
can make the errors disappear. And, if I
use the Saxon parser to manually combine the xsl with
the xml, the output is fine. If anyone knows that this is
a confirmed bug by Oracle, or any other relevant info on
this, please let me know.

Hi,
Your lucky, i've just finished a project that used the oracle parser extensively.
I think the problem may stem from your xsl. Although your cdata tags may be well formed, in the xsl you might need to escape the text again, this may mean that the xsl needs to print a further cdata tag around the data. This is because the parser (well the version I was using) strips the cdata tags before the transformation happens.
This is the probably the cause of the nasty html output.

Similar Messages

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

  • Problem for using oracle xml parser v2 for 8.1.7

    My first posting was messed up. This is re-posting the same question.
    Problem for using oracle xml parser v2 for 8.1.7
    I have a sylesheet with
    <xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">.
    It works fine if I refer this xsl file in xml file as follows:
    <?xml-stylesheet type="text/xsl" href="http://...../GN.xsl"?>.
    When I use this xsl in pl/sql package, I got
    ORA-20100: Error occurred while processing: XSL-1009: Attribute 'xsl:version' not found in 'xsl:stylesheet'.
    After I changed name space definition to
    <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> in xsl file, I got
    ORA-20100: Error occurred while processing: XSL-1019: Expected ']' instead of '$'.
    I am using xml parser v2 for 8.1.7
    Can anyone explain why it happens? What is the solution?
    Yi

    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Steven Muench ([email protected]):
    Element's dont have text content, they [b]contain text node children.
    So instead of trying to setNodeValue() on the element, construct a Text node and use the appendChild method on the element to append the text node as a child of the element.<HR></BLOCKQUOTE>
    Steve,
    We are also creating an XML DOM from java and are having trouble getting the tags created as we want. When we use XMLText it creates the tag as <tagName/>value rather than <tagName>value</tagName>. We want separate open and close tags. Any ideas?
    Lori

  • Oracle XML Parser for PL/SQL - troubles with charset

    Hi,
    I'm using Oracle XML Parser for PL/SQL and have some troubles with charset of results xmldom.writeToBuffer and xmldom.writeToCLOB procedures.
    Some tags in my DOM documents contain text values in RUSSIAN (server nls_charset is CL8ISO8859P5). When I write document in varchar2 variable, buffer content is in UTF8 charset ( convert UTF8->CL8ISO8859P5 -OK).
    xmldom.setCharset(doc, 'ISO-8859-5') just after xmldom.newDOMDocument has no effect.
    xmldom.setCharset(doc, 'CL8ISO8859P5') has no effect also.
    Explicit charset direction in third parameter of
    xmldom.writeToBuffer and xmldom.writeToCLOB procedure has no effect.
    When I write document in CLOB, and then read part of CLOB in varchar2 buffer - result contain '?' in place of all russian text characters.
    What's a problem?
    How can I force XML Parser write XML in server charset?
    Oracle XML Parser for PL/SQL v 1.0.2

    I have the same problem. But in my case I am allowed only to use XML Parser for PL/SQL.
    Characterset 'WE8ISO8859P1' is used. And the language is latvian.
    After parsing a XML document and printing its contents, all latvian characters are replaced by "f".
    xmldom.setcharset(doc,'WE8ISO8859P1') has no effect.

  • 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

  • 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

  • Java.lang.ClassCastException: oracle.xml.parser.v2.XMLText cannot be cast to org.w3c.dom.Element

    Hello
    I am getting java.lang.ClassCastException: oracle.xml.parser.v2.XMLText cannot be cast to org.w3c.dom.Element error. This code is in java which is present in java embedding.
    The SOA is parsing the xml in java code using oracle.xml.parser.v2 . This wont be a problem if the SOA uses default w3c DOM parser. How do i force SOA to use w3c DOM parser.
    Is there any thing i can do with class loading?
    Kindly help.
    Regards
    Sharat

    Can you paste your java code here ? I assume, you must have tried type-casting.

  • Oracle.xml.parser.v2.XSLException: XSL-1045

    I'm trying to migrate from 8.1.6 to 8.1.7. In 8.1.6, I have a working java stored procedure that implements an extended namespace in XSL. I deployed the same working code in 8.1.7 and got the following error.
    processor.processXSL(styleSheet,xmlDoc)>>
    oracle.xml.parser.v2.XSLException: XSL-1045:
    Extension function error: Class not found 'com/redknife/util/xslExtend'
    The xslExtend class is loaded via loadjava and resolves with no errors. Is there a difference between the 8.1.6 implementation and 8.1.7?
    - Craig

    I've recreated the database and the instance...I've loaded all the classes and they are valid... The exact code set works in 8.1.6 but not in 8.1.7.
    Here lies the difference. In 8.1.6, I loaded the xmlparserv2.jar, but hoping for the natively compiled version being preloaded in 8.1.7, I did not load it. The error then occurs. I did a dropjava on the xmlparserv2.jar, and then a loadjava, and now it works.
    My assumption is that it was the natively compiled xml parser that made the difference. Once I removed it, and replaced it with byte code, everything worked.
    Hope I'm wrong... Craig

  • Oracle reports developer 11g java.lang.NoClassDefFoundError oracle/xml/parser/v2/XMLParserException

    Hi All,
    Need expertise help to resolve the issue I am getting with Oracle Report builder.
    I have installed and configured Oracle Forms and Reports Builder 11g  on my Windows 7 & 64 bit machine.
    Oracle Forms are working fine and I am getting an error while I am launching the Oracle Report Builder.
    It says
    The error is;
    java.lang.NoClassDefFoundError:
    oracle/xml/parser/v2/XMLParserException
    once I close th eabove error window, then it says java.lang.NullPOinterException.
    I have done all modifications to Middleware\as_1\bin rwbuilder.bat file as below
    @echo off
    @echo INFO: The Reports Builder is only supported on the Linux x86 and Windows x86 operating systems, for further information, please refer to the Release Notes ...
    @echo Starting Reports 11g Builder...
    setlocal
    call C:\Oracle\Middleware\asinst_1\config\reports\bin\reports.bat
    @echo on
    start C:\Oracle\Middleware\as_1\bin\rwbuilder.exe %*
    @echo off
    endlocal
    :end
    @echo on
    But report builder is not working. (Error comes when launching the Report Builder ).
    Quick support is highly appreciated.
    Thanks
    Muditha

    Hi All,
    Need expertise help to resolve the issue I am getting with Oracle Report builder.
    I have installed and configured Oracle Forms and Reports Builder 11g  on my Windows 7 & 64 bit machine.
    Oracle Forms are working fine and I am getting an error while I am launching the Oracle Report Builder.
    It says
    The error is;
    java.lang.NoClassDefFoundError:
    oracle/xml/parser/v2/XMLParserException
    once I close th eabove error window, then it says java.lang.NullPOinterException.
    I have done all modifications to Middleware\as_1\bin rwbuilder.bat file as below
    @echo off
    @echo INFO: The Reports Builder is only supported on the Linux x86 and Windows x86 operating systems, for further information, please refer to the Release Notes ...
    @echo Starting Reports 11g Builder...
    setlocal
    call C:\Oracle\Middleware\asinst_1\config\reports\bin\reports.bat
    @echo on
    start C:\Oracle\Middleware\as_1\bin\rwbuilder.exe %*
    @echo off
    endlocal
    :end
    @echo on
    But report builder is not working. (Error comes when launching the Report Builder ).
    Quick support is highly appreciated.
    Thanks
    Muditha

  • Oracle XML Parser - "comments"  BUG!

    hey fellas
    I have almost wrapped up my project except for one stupid bug
    that am getting. I'm using Oracle XML parser for Java.9.0
    I am adding some comments in the output xml file but it is giving trouble.
    My code:
    ====
    Comment comment =xmldocument.createComment("mary had a lazy lamb");
    xmldocument.appendNode(comment);
    =====
    Now comments are being added in the output xml file. BUT GUESS what -
    Instead of putting the string like -
    <!-- mary had a lazy lamb -->
    It is putting it like -
    <?#comment mary had a lazy lamb comments?>
    This, inadverantly throws an error when I open the file using a browser.
    How to over come this.
    Thanks

    Hey fellas I urgently need a response!!Long-term solution: report it to Oracle as a bug.
    Short-term solutions: don't write comments to your document. Or try a different serializer.

  • Oracle XML Parser validation against XML Sxhema

    Hi,
    I am developing a program in C++ on Unix, that does parsing on an XML document. For parsing I am using "Oracle XML Parser" [using DOM API]. My question is, Can Oracle XML Parser validate xml document against an XML Schema file also? I have read in many tutorials that it can validate against DTD. Please clarify my question as early as possible?
    Regards,
    Raghuram.

    Hi Kulkarni,
    I think you are trying to retrieve the text of the parent element of book. For example if this is the xml element
    <bookdetails>
    <book>Harry Potter</book>
    <author>JK Rowling</author>
    <price>34.55</price>
    </book>
    </bookdetails>
    You must be trying to retrieving the text of bookdetails.
    Check XMLNode.getNodeName() to retrieve the name of the node.
    To get 'Harry Potter' as output you need to traverse till book and then use XMLNode.getText()
    You can check the 'getQuestions()' method in Survey Sample
    to know how to tranverse to any element of an XML using Java.
    The Survey Sample is located at
    http://otn.oracle.com/sample_code/tech/xml/survey/content.html
    Download the sample and unjar it. The location of Analyser.java is
    SurveySample\code\Survey\src\oracle\otnsamples\survey\business\Analyser.java
    Have a look at it.
    Regards,
    Anupama
    http://otn.oracle.com/sample_code/content.html

  • 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

  • ClassCastException oracle.xml.parser.v2.XMLElement with correlation receive

    Hi,
    I am trying to run an asynchronous process that makes an invocation to an external WLI process, then gets an asynchronous receive from a second WLI process using correlation callbacks. We have two 10.1.3.3.0 servers, and the process works perfectly on the first server. The second server invokes WLI fine, and goes into a receive. But then when I call back into the BPEL process, I get the following error:
    Receive_1 (faulted)
    [2008/02/08 09:46:37] Waiting for "receive" from "client". Asynchronous callback.
    [2008/02/08 09:46:53] "ClassCastException" has been thrown.less
    oracle.xml.parser.v2.XMLElement
    It's the same process, calling the same external processes, with identical input/output. What does the error on the second server mean?
    Thank you,
    Nicholas

    Hi,
    I'm using BPEL process manager for calling a asynchronous web service,I can invoke the service from BPEL and the service is invoked correctly,but when I view the business process flow my process is stopped at receive state and doesn't pass it.
    Could anybody tell me if any thing should be set to receive a callback from an asynchronous web service to BPEL process?
    Thnx in advance,
    Nasim

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

    I'm reposting this error that I recently received one more time before removing the XML transforms from my Java projects and doing them in .NET.
    Code that was working fine suddenly getting a transform error using JDeveloper.
    Get the following:
    javax.servlet.ServletException: javax.xml.transform.TransformerConfigurationException: XML-22000: (Fatal Error) Error while parsing XSL file (weblogic.xml.jaxp.RegistryXMLReader cannot be cast to oracle.xml.parser.v2.SAXParser).
         at weblogic.servlet.jsp.PageContextImpl.handlePageException(PageContextImpl.java:417)
    Seems that
    <!--
    <%@ taglib uri="http://java.sun.com/jsp/jstl/xml" prefix="x" %>
    <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
    <h1>Project Weekly Hours Worked</h1>
    <table>
    <c:import url="HoursWorked.xml" var="xmlHoursWorked" charEncoding="windows-1252"/>
    <c:import url="./HoursWorked3.xsl" var="xslt" charEncoding="windows-1252"/>
    <x:transform xml="${xmlHoursWorked}" xslt="${xslt}" />
    </table>
    -->
    will not transform XML to HTML via XSL in JSP anymore.
    If I run the XSL i get the HTML results I expected in an HTML test page.
    So I know the XML and XSL is sound.
    XSL and DOM parsing in Java/Oracle was a major pain in the ass in the first place and now this.
    Well I've spent hours going through Oralce/Java documentation on XML, DOM and XSL transforms.
    All that time spent and still so unstable. I don't think I was ever able to really get what I wanted
    which was to transform my XML document to HTML, update via JSP and have the XML document
    be updated and ready to view in a summary page. The XML document changes were never really
    available unless I closed the app and restarted. So all in all a failure of capabilities compared to my
    use of XML in .NET.
    So........
    Me thinks it will be a good idea to take out the transforms and have my JSP use a script to invoke a
    method in a class that extracts it from a message. Just have PL/SQL interface with XML and do the
    transform or serialize thing there.
    I don't want to give up on XML but I'm tired of trying to jam a square peg into a round hole
    with Java and JDeveloper.
    Brian

    We don't support file references ("cv1_0.dtd"). Only url type references
    are supported, of the form:
    @ <!DOCTYPE cv1 SYSTEM "http://www.oracle.com/public/cv1_0.dtd>
    Note that the url should be accessible to the world without the need to authenticate.
    you could put your dtd in the "public" area in your iFS system.
    Thanks,
    Sirisha
    null

Maybe you are looking for

  • How to Include Double Quotes in the Column Name

    Hi, I am using Dynamic Sql for creating the columns of a table. I am getting a situation where the user will give the double quotes for some column names. So,Can we add double quote to the column name. Thanks in advance. Regards, Alok Dubey

  • I check the firmware version on my BT Home Hub

    So the other day HH4 (Type A) received a new firmware check HH fw ....but I have a wired hub as an extention to overcome WiFi deadzone. I have now swapped the extention to be the Master (as when in slave is not connected to interwebs & won't receive

  • 903/902/BC4J can't get OC4J data-sources.xml conn pooling to work in production: help

    [cross posted to the j2ee forum] I have several BC4J ears deployed to a 903 instance of OC4J being configured as a standalone instance. I've had this problem since I started deploying in development on 902. So it's some basic problem that I've not ma

  • URGENT!These errors shutdown one server in cluster.

    Hi, We are getting following errors in our portal which ultimately shutdown one server in the cluster. Can anybody help? Fri Mar 08 13:28:40 SGT 2002:<I> <JDBC Pool commercePool> A connection from pool commercePool was tested during reserve with a se

  • Load Search Interfaces in Endeca 3.0

    Hi, In version 2.4 we had this nice LoadIndexingConfiguration graph which sets some input attributes to searchable and create different search interfaces based on the input file. In version 3.0 this graph is gone and now (as far as I see) the LoadCon