Invalid InputSource Error using XML Parser V2

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

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

Similar Messages

  • Error in Parsing XML using fx:XML/ [Error- 1090: XML parser failure: element is malformed]

    Hi All,
    I am getting error while loading XML in <fx:XML> tag.
    Error:
    TypeError: Error #1090: XML parser failure: element is malformed.
    MXML Code:
    <fx:Declarations>
    <fx:XML id="xmlSource2" source="sample.xml"/>
    </fx:Declarations>
    Sample XML Used: (sample.xml)
    <?xml version="1.0" encoding="UTF-8"?>
    <File>
        <Chemical id="000035676" displayFormula="C39-H45-N2-O6"
            displayName="Dimethyltubocurarine">
            <NameList>
                <NameOfSubstance>
                    Dimethyltubocurarine
                    <SourceList>
                        <Source>MESH</Source>
                    </SourceList>
                </NameOfSubstance>
                <SystematicName>
                    Tubocuraranium, 6,6',7',12'-tetramethoxy-2,2',2'-trimethyl-
                    <SourceList>
                        <Source>NLM</Source>
                    </SourceList>
                </SystematicName>
                <Synonyms>
                    Dimethyltubocurarine
                    <SourceList>
                        <Source>NLM</Source>
                    </SourceList>
                </Synonyms>
                <Synonyms>
                    Dimethyltubocurarinium
                    <SourceList>
                        <Source>NLM</Source>
                    </SourceList>
                </Synonyms>
                <Synonyms>
                    Methyltubocurarinum
                    <SourceList>
                        <Source>NLM</Source>
                    </SourceList>
                </Synonyms>
            </NameList>
            <NumberList>
                <CASRegistryNumber>
                    35-67-6
                    <SourceList></SourceList>
                </CASRegistryNumber>
                <RelatedRegistryNumber>
                    518-26-3 (iodide.hydriodide)
                    <SourceList>
                        <Source>MESH</Source>
                    </SourceList>
                </RelatedRegistryNumber>
            </NumberList>
            <ClassificationList>
                <ClassificationCode>
                    Neuromuscular nondepolarizing agents
                    <SourceList>
                        <Source>MESH</Source>
                    </SourceList>
                </ClassificationCode>
            </ClassificationList>
            <FormulaList>
                <MolecularFormula>
                    C39-H45-N2-O6
                    <SourceList>
                        <Source>NLM</Source>
                    </SourceList>
                </MolecularFormula>
            </FormulaList>
            <FormulaFragmentList></FormulaFragmentList>
            <NoteList></NoteList>
            <LocatorList>
                <FileLocator
                    url="http://cnetdb.nci.nih.gov/cgi-bin/srchcgi.exe?DBID=****3&SFMT=****_basic%2F10%2F0%2F0&TYPE=search&SRCHFORM=passthru%3D%Asrchform%3ASRCH%3A&FIELD_001=[CAS]35-67-6&#38;GoButton=Search&#38;FIELD_001_CTL=EXPR&#38;FIELD_908=&#38;FIELD908_CTL=HASABSTRACT&#38;FIELD_903=&#38;FIELD_903_CTL=YEARFORE&#38;DOCPAGE=10">CANCERLIT</FileLocator>
                <FileLocator
                    url="http://toxnet.nlm.nih.gov/cgi-bin/sis/search/r?dbs+toxline:@and+@term+@rn+35-67-6+@term+@org+DART">DART/ETIC</FileLocator>
                <FileLocator
                    url="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=search&db=PubMed&term=35-67-6[ECNO]+OR+&#34;~&#34;[MH]">MEDLINE</FileLocator>
                <FileLocator
                    url="http://www.nlm.nih.gov/cgi/mesh/2K/MB_cgi?term=35-67-6&rn=1">MESH</FileLocator>
                <FileLocator
                    url="http://toxnet.nlm.nih.gov/cgi-bin/sis/search/r?dbs+toxline:@term+@rn+35-67-6+@OR+@mh+""">TOXLINE</FileLocator>
            </LocatorList>
        </Chemical>
    </File>
    Also, when I am using HttpService to load same XML I am getting no such error!!
    <s:HTTPService id="employeeService"
                           url="sample.xml"
                           result="employeeService_resultHandler(event)"
                           fault="employeeService_faultHandler(event)"/>
    Please help!!
    Thanks.
    Abhinav

    I think url in XML is creating problem here.
    <FileLocator
                    url="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=search&db=PubMed&term=23-95-0[ECNO]+OR+&#34;~&#34;[MH]">MEDLINE</FileLocator>
    Is there any way to parse this XML using <fx:XML/> ??
    Thanks.

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

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

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

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

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

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

  • Error: The XML parser encountered an Error

    Error: The XML parser encountered an Error, and could not complete the conversion for portlet id=6,343, it returned the following message: XML Parsing Error.
    I am a beginning portal developer and need help identifying what is causing this error. I have gone into navigator, clicked the provider tab then clicked on the provider that I wanted to work with and got the above error. Can anyone tell me what is wrong.

    Please try posting your question to the Oracle Portal Development Kit (PDK) forum.
    null

  • LPX-00217 invalid character error - Using reference characters in XML file

    Hi, I hope you will help me to understand and to fix the error I get during insert of an XML file into a table with XML Type field.
    I used Oracle documentation for this:
    1. Create table
    CREATE TABLE XMLDOC
    ( XMLCOLUMN xmltype);
    2. Create external directory
    CREATE OR REPLACE DIRECTORY FILESDIR AS 'E:\ora_xml_test\';
    3. Create function
    CREATE OR REPLACE function DSS.getClobDocument(
    filename in varchar2,
    charset in varchar2 default NULL)
    return CLOB deterministic
    is
    file bfile := bfilename('FILESDIR',filename);
    charContent CLOB := ' ';
    targetFile bfile;
    lang_ctx number := DBMS_LOB.default_lang_ctx;
    charset_id number := 0;
    src_offset number := 1 ;
    dst_offset number := 1 ;
    warning number;
    begin
    if charset is not null then
    charset_id := NLS_CHARSET_ID(charset);
    end if;
    targetFile := file;
    DBMS_LOB.fileopen(targetFile, DBMS_LOB.file_readonly);
    DBMS_LOB.LOADCLOBFROMFILE(charContent, targetFile,
    DBMS_LOB.getLength(targetFile), src_offset, dst_offset,
    charset_id, lang_ctx,warning);
    DBMS_LOB.fileclose(targetFile);
    return charContent;
    end;
    And now appears the problem when I use different character references - one of them are parsed by the XML parser and another -are not:
    test1.xml - Contains a charachter from Latin language -ă (&#x103)
    <?xml version="1.0" encoding="UTF-8"?>
    <ROWSET>
    <ROW
    <IDNO>1</IDNO>
    <NAME>aaa (&#x103)</NAME>
    </ROW>
    </ROWSET>
    --a semicolumn must be added after 103
    SQL> insert into XMLDOC values(xmltype(getClobDocument('test1.xml','UTF8')));
    1 row created.
    test2.xml - Contains a charachter from Cyrillic language -ш (&#x404)
    <?xml version="1.0" encoding="UTF-8"?>
    <ROWSET>
    <ROW>
    <IDNO>1</IDNO>
    <NAME>aaa (&#x404)</NAME>
    </ROW>
    </ROWSET>
    --a semicolumn must be added after 404
    SQL> insert into XMLDOC values(xmltype(getClobDocument('test2.xml','UTF8')));
    insert into XMLDOC values(xmltype(getClobDocument('test2.xml','UTF8')))
    ERROR at line 1:
    ORA-31011: XML parsing failed
    ORA-19202: Error occurred in XML processing
    LPX-00217: invalid character 1028 (\u0404)
    Error at line 5
    ORA-06512: at "SYS.XMLTYPE", line 0
    ORA-06512: at line 1
    I am not familiar to Unicode and encoding maybe I ' missing something.
    Please help!!!

    Which database version are you using and what is the characterset used during its creation...?
    There is a lot on this forum which has been already answered / addressed but the database must support it, in other words the characterset must support it. Among others, see Re: XML-Document with special characters for instance.
    Conversion like you are doing (&#x103) is not needed.

  • Abstract Method Error and XML Parsing

    I am using wl6sp1. I am parsing an XML file from within the
    servlet using jaxp1.1 and crimson.
    Following is code:
    1- SAXParserFactory spf = SAXParserFactory.newInstance();
    2- sp = spf.newSAXParser();
    3- xr = sp.getXMLReader();
    4- xr.setContentHandler(new ParseXML());
    5- xr.parse( new InputSource("Example3.xml"));
    This program works fine when execute from command line but in servlet on line
    3 it says:
    "Abstract Method Error"
    I have created XML Registry to use Crimson as XML parser rather than default.
    I think somehow wl is still using jaxp1.0 which is built in
    support in wlsp1.
    Whats wrong with the code...or what configuration i am missing???

    I'm assuming you have already put crimson.jar first in the classpath for the java
    command you use to start WebLogic. If so, have you tried putting the servlet in
    a .war file with the crimson.jar in its' WEB-INF/lib directory?
    Regards,
    Mike Wooten
    "anyz" <[email protected]> wrote:
    >
    I am using wl6sp1. I am parsing an XML file from within the
    servlet using jaxp1.1 and crimson.
    Following is code:
    1- SAXParserFactory spf = SAXParserFactory.newInstance();
    2- sp = spf.newSAXParser();
    3- xr = sp.getXMLReader();
    4- xr.setContentHandler(new ParseXML());
    5- xr.parse( new InputSource("Example3.xml"));
    This program works fine when execute from command line but in servlet
    on line
    3 it says:
    "Abstract Method Error"
    I have created XML Registry to use Crimson as XML parser rather than
    default.
    I think somehow wl is still using jaxp1.0 which is built in
    support in wlsp1.
    Whats wrong with the code...or what configuration i am missing???

  • Invalid WSDL error using adapters-db-101-MasterDetail Sample

    I'm exploring the use of the SOA samples provided at http://java.net/projects/oraclesoasuite11g/pages/DBAdapters.
    I have downloaded and unzipped the subject sample, then opened the Application and Project in JDeveloper. I can see the composite, but when I attempt to edit the Service or Reference, I'm getting the following window popup:
    Error while reading wsdl file
    <mydirectory>/adapters-db-101-MasterDetail/adapters-db-101-MasterDetail/DB_MasterDetail/MasterDetail.
    Exception:
    WSDLException: faultcode=INVALID_WSDL: Invalid XML in document at:
    <mydirectory>/adapters-db-101-MasterDetail/adapters-db-101-MasterDetail/DB_MasterDetail/MasterDetail/,
    line: 1, column: 1: oracle.xml.parser.v2.XMLPParseException: Start of root element expected.
    and the following messages:
    Mar 22, 2012 9:10:21 AM oracle.tip.tools.ide.fabric.model.SCAWSDLManager
    SEVERE: SCA WSDL Manager could not load : file:<mydirectory>/adapters-db-101-MasterDetail/adapters-db-101-MasterDetail/DB_MasterDetail/MasterDetail/
    Mar 22, 2012 9:10:21 AM oracle.tip.tools.ide.fabric.model.SCAWSDLManager
    SEVERE: SCA WSDL Manager could not load : file:<mydirectory>/adapters-db-101-MasterDetail/adapters-db-101-MasterDetail/DB_MasterDetail/MasterDetail/
    Looks to me like it is not finding the defined InboundService.wsdl and OutboundService.wsdl.
    I have done the same thing with the subsequent adapters-db-102-Select.zip, and have no problems.
    Any ideas? Thank you.
    Leon Swan

    Sorry,
    I was reading about DB adapter and tried to solve a problem with insert data from file into a table, but the order of data is not correct, so I then desided to
    use insert of type instead.
    That is the reason for post here.

  • 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

  • XML Publisher Report ends with Warning -- Invalid Character Error in XML

    Hi,
    I have migrated the standard report 'Invoice Print Selected Invoices' from Reports 6i to XML Publisher. It has to print a Euro(€) in the report. It does not even generate the XML File fully. It gives the below error in the XML File. When i remove the special character, it works fine.
    Please let me know the settings to ensure that XML file also accepts the special characters. How do i get the Euro symbol printed in XML File with out giving Invalid Character Error?
    ===========================================================The XML page cannot be displayed
    Cannot view XML input using XSL style sheet. Please correct the error and then click the Refresh button, or try again
    later.
    An invalid character was found in text content. Error processing resource 'http://dfw1svdevapp03.ora.rackspace.com:8040/OA_...
    <C_INV_CURRENCY_SYMBOL>
    N class="m">>
    <LINE_UOM />
    <LINE_UNIT_SELLING_PRICE />
    ===========================================================
    The XML File even does not show which character set it uses. The output file starts with:
    ===========================================================
    <?xml version="1.0" ?>
    - <!-- Generated by Oracle Reports version 6.0.8.25.0
    -->
    ===========================================================

    Hi Tim,
    Thanks for your adhoc response.
    I have gone thru the Document 222663.1 and it says that the Developer 6.0.8.23 is required to handle this problem. We are using almost the updated Developer version i.e., Developer 6.0.8.25. So, this should be handled automatically, but it still errors out. Please suggest.
    Thanks,
    Kesava

  • 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

  • 2-byte error in XML Parser for PL/SQL

    environment:
    oracle 8.1.5
    XML parser for Java 2.0.2.6.0
    XML parser for PL/SQL 1.0.1.0.0
    we use CLOB as xml data container, but it does not work properly with 2 byte chracter set.
    I tested same situation except using VARCHAR2 instead of CLOB, it works without problem.
    I think there is some bug in method parseClob of oracle.xml.parser.plsql.XMLParserCover about converting CLOB into String.
    I appreciate any help to work around this problem.

    Hi,
    We couldn't reproduce this error with our test case. Can you please post a test case that gives you this problem so we can assist you further?
    Thank you,
    Oracle XML Team

  • Since I updated Firefox 4, I cannot open any attachments in my Gmail, whether Word or PDF files, I can only view them. When trying to download attachments I get an error message: "XML Parsing Error:undefined entity. Help!

    The full error message is the following:
    XML Parsing Error: Undefined entity
    Location chrome://mozapps/content/downloads/unknown content type.xul
    Line Number 30, Column 18

    In order to use ''nxm://'' links, Nexus Mod Manager must be installed and associated with the ''nxm'' protocol.
    * http://www.nexusmods.com/skyrim/mods/modmanager/
    In case of problems with this third-party program, please refer to its support forum:
    * http://forums.nexusmods.com/index.php?/forum/1413-nmm-code-development-chat

  • Error with XML Parsing

    Hello,
    Getting the following error :
    ORA-31011: XML parsing failed
    ORA-19202: Error occurred in XML processing
    LPX-00217: invalid character 0 (U+0000)
    Error at line 1-31011
    I have an xml data in a clob and looks like one of the tag has a invalid character due to which the parsing fails. Anyway to get around this issue?
    example
    DECLARE
    l_clob CLOB;
    l_xml XMLTYPE;
    BEGIN
    l_clob := ' <tag>
    <tag1>32434234</tag1>
    <tag2>junk character</tag2>
    </tag>'
    l_xml := XMLTYPE(l_clob);
    END;
    The value has is being populated into the tag1 and tag2 are coming from a oracle type that comes from a different service altogether.
    Thanks,
    VJ

    LPX-00217: invalid character 0 (U+0000)Looks like you have some ASCII 0 characters.
    What about if you do
    declare
         l_clob clob;
         l_xml  xmltype;
    begin
         l_clob := ' <tag>
    <tag1>32434234</tag1>
    <tag2>junk character</tag2>
    </tag>';
         l_xml := xmltype (replace (l_clob, chr (0)));
    end;
    /??

  • Errors installing XML Parser for PL/SQL

    I tried to install the parser and get the following errors :
    D:\xml\lib\java>loadjava -user user/pwd -r -v xmlparserv2.jar
    initialization complete
    loading : oracle/xml/parser/v2/XSLResultElement
    creating : oracle/xml/parser/v2/XSLResultElement
    Error while retrieving errors for oracle/xml/parser/v2/XSLResultElement
    ORA-00904: invalid column name
    loading : oracle/xml/parser/v2/XSLCopy
    creating : oracle/xml/parser/v2/XSLCopy
    Error while retrieving errors for oracle/xml/parser/v2/XSLCopy
    ORA-00904: invalid column name
    loading : oracle/xml/parser/v2/XMLByteReader
    creating : oracle/xml/parser/v2/XMLByteReader
    Error while retrieving errors for oracle/xml/parser/v2/XMLByteReader
    ORA-00904: invalid column name
    We have Oracle 8.1.5.0.0 running with JRE 1.1.8 installed.
    I updated loadjava.bat to call JRE 1.1.8 instead of JRE 1.1.7.
    Can't afford an upgrade to 8.1.6
    Any help appreciated

    Geoff Hicks (guest) wrote:
    : Problems being experienced trying to install the XML parser for
    : PL/SQL (zip file plxmlparser_v1_0_0_1_tar.gz).
    : We are on Oracle8i (8.1.5.0.0) (with JServer).
    : On installing the Oracle XML parser for PL/SQL the following
    : errors appear having run the loadjava command line tool for
    : xmlparser.jar:-
    : loading : META-INF/MANIFEST.MF
    : creating : META-INF/MANIFEST.MF
    : Error while creating resource META-INF/MANIFEST.MF
    : ORA-29547: Java system class not available:
    : oracle/aurora/rdbms/Compiler
    : loading : xmlparser_1.0.1.4_production
    : creating : xmlparser_1.0.1.4_production
    : Error while creating resource xmlparser_1.0.1.4_production
    : ORA-29547: Java system class not available:
    : oracle/aurora/rdbms/Compiler
    : Lots of the following resolver errors are returned:-
    : resolver :
    : Error while resolving class org/w3c/dom/html/HTMLDivElement
    : ORA-00904: invalid column name
    It looks like you have not initialized JServer in your 8.1.5
    database. This needs to be done first.
    Oracle XML Team
    http://technet.oracle.com
    Oracle Technology Network
    null

Maybe you are looking for

  • Mail takes a long time to send messages

    After a power outage in my neighborhood and being given new incoming and outgoing mail servers by my ISP -- AT&T and it's Yahoo portal -- Mail is taking a long time to actually send messages after clicking the send button -- a minute or two. Thunderb

  • How can I change my login user name to my current new email

    I need to change mu iCloud user name from my old email to me new one but it won't let me because it is the same as my rescue email address. How do I get around this if it is the only email address I have?

  • PHP and multiple DB doesn`t work

    Hi I've been all day trying to find some clues on how to get data from two SSID on the same server (under Oracle 10g and PHP5 w/oci) I'll explain: The Oracle server has two schemas: datos and global. datos: localhost:1521 SID: datos global: localhost

  • WEB AS Java 640 and Sap Gateway

    Hello, I have installed a J2EE 640 in HA for internet sales (ISA) in the following scenario: SCS in failover switch group and a Central Instance on node A, Dialogue Instance node B. Then I installed a SAP Gateway on node B for TREX 6.0, but I'm havin

  • What is a OSStatus error -108

    Having problem exporting a iPhoto project - keep getting an (OSStatus error -108). Not sure what the issue is or the solution. Thanks