Invalid content was found starting with element

Hi,
I am getting an error while parsing(unmarshallling) the xml using JAXB thru XSD validation.
Here is the xsd, that I am using for the validation followed by the xml sample and exception that I am getting.
<?xml version="1.0"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
     <xs:complexType name="process_variable_type">
           <xs:sequence>
          <xs:element name="variable_name" type="xs:string"/>
          <xs:element name="label" type="xs:string"/>
          <xs:element name="value" type="xs:string"/>
          <xs:element name="previous_value" type="xs:string"/>
          <xs:element name="format" type="xs:string"/>
           </xs:sequence>
     </xs:complexType>
     <xs:complexType name="text_field_type">
       <xs:complexContent>
         <xs:extension base="process_variable_type">
         </xs:extension>
       </xs:complexContent>
     </xs:complexType>
     <xs:complexType name="part_type">
       <xs:sequence>
        <xs:choice>
          <xs:element name="textFieldElement" type="text_field_type" />
        </xs:choice>
       </xs:sequence>
       <xs:attribute name="name" type="xs:string" />
     </xs:complexType>
     <xs:element name="variable">
       <xs:complexType>
        <xs:sequence>
          <xs:element name="part" type="part_type" minOccurs="1" maxOccurs="1" />
        </xs:sequence>
       <xs:attribute name="dataIncluded" type="xs:string" />
       <xs:attribute name="hasData" type="xs:string" />
       <xs:attribute name="name" type="xs:string" />
       <xs:attribute name="version" type="xs:string" />
       </xs:complexType>
     </xs:element>
</xs:schema>
Sample XML:
<variable dataIncluded="yes" hasData="true" name="V1" version="25">
   <part name="textFieldElement">
      <textFieldElement xmlns="http://schemas.xmlsoap.org/ws/2003/03/business-process/" xmlns:abx="http://www.activebpel.org/bpel/extension" xmlns:bpws="http://schemas.xmlsoap.org/ws/2003/03/business-process/" xmlns:ext="http://www.activebpel.org/2.0/bpel/extension" xmlns:ns1="urn:ValueDisplayer" xmlns:ns2="urn:ValueProvider" xmlns:ns3="Invalid Document" xmlns:ns4="http://temp" xmlns:ns5="http://active-endpoints.com/services/order" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
         <variable_name>Variable1</variable_name>
         <label>Label2</label>
         <value>Value1</value>
         <previous_value>prevValue1</previous_value>
         <format>format1</format>
         <form_element_type>formElement1</form_element_type>
      </textFieldElement>
   </part>
</variable>
Error that I am getting is:
javax.xml.bind.UnmarshalException
- with linked exception:
[org.xml.sax.SAXParseException: cvc-complex-type.2.4.a: Invalid content was found starting with element 'textFieldElement'. One of '{"":textFieldElement}' is expected.]
     at javax.xml.bind.helpers.AbstractUnmarshallerImpl.createUnmarshalException(AbstractUnmarshallerImpl.java:315)
     at com.sun.xml.bind.v2.runtime.unmarshaller.UnmarshallerImpl.createUnmarshalException(UnmarshallerImpl.java:476)
     at com.sun.xml.bind.v2.runtime.unmarshaller.UnmarshallerImpl.unmarshal0(UnmarshallerImpl.java:204)
     at com.sun.xml.bind.v2.runtime.unmarshaller.UnmarshallerImpl.unmarshal(UnmarshallerImpl.java:173)
     at javax.xml.bind.helpers.AbstractUnmarshallerImpl.unmarshal(AbstractUnmarshallerImpl.java:137)
     at javax.xml.bind.helpers.AbstractUnmarshallerImpl.unmarshal(AbstractUnmarshallerImpl.java:194)
     at com.enfs.bpel.client.BpelClientUtility.unMarshal(BpelClientUtility.java:158)
     at com.enfs.bpel.client.BpelClientUtility.main(BpelClientUtility.java:140)
Caused by: org.xml.sax.SAXParseException: cvc-complex-type.2.4.a: Invalid content was found starting with element 'textFieldElement'. One of '{"":textFieldElement}' is expected.
     at com.sun.org.apache.xerces.internal.jaxp.validation.Util.toSAXParseException(Unknown Source)
     at com.sun.org.apache.xerces.internal.jaxp.validation.ErrorHandlerAdaptor.error(Unknown Source)
     at com.sun.org.apache.xerces.internal.impl.XMLErrorReporter.reportError(Unknown Source)
     at com.sun.org.apache.xerces.internal.impl.XMLErrorReporter.reportError(Unknown Source)
     at com.sun.org.apache.xerces.internal.impl.xs.XMLSchemaValidator$XSIErrorReporter.reportError(Unknown Source)
     at com.sun.org.apache.xerces.internal.impl.xs.XMLSchemaValidator.reportSchemaError(Unknown Source)
     at com.sun.org.apache.xerces.internal.impl.xs.XMLSchemaValidator.handleStartElement(Unknown Source)
     at com.sun.org.apache.xerces.internal.impl.xs.XMLSchemaValidator.startElement(Unknown Source)
     at com.sun.org.apache.xerces.internal.jaxp.validation.ValidatorHandlerImpl.startElement(Unknown Source)
     at com.sun.xml.bind.v2.runtime.unmarshaller.ValidatingUnmarshaller.startElement(ValidatingUnmarshaller.java:67)
     at com.sun.xml.bind.v2.runtime.unmarshaller.SAXConnector.startElement(SAXConnector.java:117)
     at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.startElement(Unknown Source)
     at com.sun.org.apache.xerces.internal.impl.XMLNSDocumentScannerImpl.scanStartElement(Unknown Source)
     at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$FragmentContentDispatcher.dispatch(Unknown Source)
     at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown Source)
     at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(Unknown Source)
     at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(Unknown Source)
     at com.sun.org.apache.xerces.internal.parsers.XMLParser.parse(Unknown Source)
     at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.parse(Unknown Source)
     at com.sun.xml.bind.v2.runtime.unmarshaller.UnmarshallerImpl.unmarshal0(UnmarshallerImpl.java:200)
     ... 5 moreIf I remove the following attribute in the textFieldElement from the sample, then I am able to unmarshal it successfully.
xmlns="http://schemas.xmlsoap.org/ws/2003/03/business-process/" But at the runtime, I cannot avoid this attribute in the XML message which I should unmarshal it.
Need help to resolve this.
..Thiruppathy.R

Hi,
So, the error is because of the validation failure due to the xmlns="http://schemas.xmlsoap.org/ws/2003/03/business-process/". And because of some data is missing in the textFieldElement, which is required by xmlns="http://schemas.xmlsoap.org/ws/2003/03/business-process/".
Pls correct me if I am wrong?
But, as you understood, the textFieldElement has simple data. In that case, Is there any way to by pass the validation for xmlns="http://schemas.xmlsoap.org/ws/2003/03/business-process/", without removing it from the XML sample? Also please note, but the validation should happen for the xsd, that I have.
Thanks
Thiruppathy.R

Similar Messages

  • Invalid content was found starting with element 'url-pattern'

    Hi,it looks there is something wrong with my web.xml:
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5">
    <display-name>TestAA</display-name>
    <welcome-file-list>
    <welcome-file>index.jsf</welcome-file>
    </welcome-file-list>
    <servlet>
    <servlet-name>Faces Servlet</servlet-name>
    <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
    <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping>
    <servlet-name>Faces Servlet</servlet-name>
    <url-pattern>*.jsf</url-pattern>
    </servlet-mapping>
    <security-constraint>
         <web-resource-collection>
              <url-pattern>/secure/*</url-pattern> ...................................................................error here
    </web-resource-collection>
         <auth-constraint>
              <role-name>retuser</role-name>
         </auth-constraint>
         </security-constraint>
    <login-config>
         <auth-method>FROM</auth-method>
         <form-login-config>
              <form-login-page>/login.xhtml</form-login-page>
              <form-error-page>/loginError.xhtml</form-error-page>
         </form-login-config>
    </login-config>
    </web-app>
    error message:
    cvc-complex-type.2.4.a: Invalid content was found starting with element 'url-pattern'. One of '{"http://java.sun.com/xml/ns/javaee":web-resource-name}' is expected.

    Hi Linyin,
    Please refer to: http://middlewaremagic.com/weblogic/?p=2034
    The Problem is missing element *<web-resource-name>* in your *"web.xml"* file..... which must be a Unique name of your Resource set which u want to make secure.....
    Example:
    <security-constraint>
    <web-resource-collection>
    *<web-resource-name>MySecureResource</web-resource-name>* <----------This line should come Just above <url-pattern>
    <url-pattern>/secure/*</url-pattern>
    </web-resource-collection>
    <auth-constraint>
    <role-name>retuser</role-name>
    </auth-constraint>
    </security-constraint>
    Thanks
    Jay SenSharma
    http://middlewaremagic.com/weblogic (Middleware Magic Is Here)

  • 2 level schema import: cvc-complex-type.2.4.a: Invalid content was found...

    HI
    I'm writing an application that gathers xml documents into batches, sends these batches to translation, receives them from translation and unpacks them.
    My documents are ads. I have a schema (x1.xsd) describing them. This schema imports another schema (x2.xsd). None of these are controlled by me (I need a very good reason to change them).
    I have created a new schema (x.xsd) for my batches. This schma imports the ad schema (x1.xsd).
    When I validate an example ad (x1.xml) using the ad schema (x1.xsd), validation is OK. This is the same for XML Spy, oracle.xml.schemavalidator.XSDValidator and org.dom4j.io.SAXReader
    When I validate an example batch (x.xml) with the same ad data in the batch,
    XML Spy says: Unexpected element 'AD' in element 'ADS'. Expected: AD
    oracle.xml.schemavalidator.XSDValidator says: XML-24521: (Error) Element not completed: 'ADS'org.dom4j.io.SAXReader says: cvc-complex-type.2.4.a: Invalid content was found starting with element 'AD'. One of '{"x/translation":AD}' is expected.
    By changing my batch xml by removing xmlns="x/ad" from the AD tag and prefix all "x/ad"-owned tags with ad:, I can make all validators validate.
    But I don't see the reason for this, and thus have some problems telling the supplier that we need to change the schema and xml...
    Notice that I do not have the corresponding problem in the x1.xsd / x2.xsd relationship !!??
    Any suggestions will be appreciated.
    /Jornsen
    I enclose a copy of the files mentioned above:
    x.xml:
    <TRANSLATION_BATCH batchId="8" xmlns="x/translation" xmlns:ad="x/ad" xmlns:gp="x/groups"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:tl="x/translation" xsi:schemaLocation="x/translation
    C:\tmp\t.xsd">
      <LANGUAGES anattr="monoLanguageXmlAd">
        <LANG LangId="3"/>
        <LANG LangId="4"/>
      </LANGUAGES>
      <ADS>
        <AD adattr="hest" xmlns="x/ad" xmlns:gp="x/groups" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
          <LANGLIST>
            <LANG LangId="17"/>
          </LANGLIST>
          <ITEMLIST>
            <ITEM xmlns="x/groups" anattr="hund">
              <ITEM_INFO name="hest"/>
            </ITEM>
          </ITEMLIST>
        </AD>
      </ADS>
    </TRANSLATION_BATCH>x1.xml:
    <AD adattr="hest" xmlns="x/ad" xmlns:gp="x/groups" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="x/ad C:\tmp\t1.xsd">
      <LANGLIST>
        <LANG LangId="17"/>
      </LANGLIST>
      <ITEMLIST>
        <ITEM xmlns="x/groups" anattr="hund">
          <ITEM_INFO name="hest"/>
        </ITEM>
      </ITEMLIST>
    </AD>x.xsd:
    <xs:schema targetNamespace="x/translation" attributeFormDefault="unqualified" elementFormDefault="qualified"
    xmlns="x/translation" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:tl="x/translation" xmlns:ad="x/ad">
      <xs:import namespace="x/ad" schemaLocation="t1.xsd"/>
      <xs:element name="TRANSLATION_BATCH">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="LANGUAGES">
              <xs:complexType>
                <xs:sequence>
                  <xs:element name="LANG" maxOccurs="unbounded">
                    <xs:complexType>
                      <xs:attribute name="LangId" type="xs:string" use="required"/>
                    </xs:complexType>
                  </xs:element>
                </xs:sequence>
                <xs:attribute name="anattr" type="xs:string"/>
              </xs:complexType>
            </xs:element>
            <xs:element name="ADS">
              <xs:complexType>
                <xs:sequence>
                  <xs:element name="AD" type="ad:ADType"/>
                </xs:sequence>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
          <xs:attribute name="batchId" type="xs:string" use="required"/>
        </xs:complexType>
      </xs:element>
    </xs:schema>x1.xsd:
    <xs:schema targetNamespace="x/ad" attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns="x/ad"
    xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:ad="x/ad" xmlns:gp="x/groups">
      <xs:import namespace="x/groups" schemaLocation="t2.xsd"/>
      <xs:element name="AD" type="ad:ADType">
      </xs:element>
      <xs:complexType name="ADType">
        <xs:sequence>
          <xs:element name="LANGLIST" type="ad:LANGLISTType">
          </xs:element>
          <xs:element name="ITEMLIST" type="gp:ITEMLISTType">
          </xs:element>
        </xs:sequence>
        <xs:attribute name="adattr" type="xs:string" use="optional"/>
      </xs:complexType>
      <xs:complexType name="LANGType">
        <xs:attribute name="LangId" type="xs:int" use="required"/>
      </xs:complexType>
      <xs:complexType name="LANGLISTType">
        <xs:sequence>
          <xs:element name="LANG" type="ad:LANGType" maxOccurs="unbounded"/>
        </xs:sequence>
      </xs:complexType>
    </xs:schema>x2.xsd:
    <xs:schema xmlns="x/groups" xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="x/groups"
    elementFormDefault="qualified" attributeFormDefault="unqualified">
      <xs:complexType name="ITEMLISTType">
        <xs:sequence>
          <xs:element name="ITEM" minOccurs="0" maxOccurs="unbounded">
            <xs:complexType>
              <xs:sequence>
                <xs:element name="ITEM_INFO" maxOccurs="unbounded">
                  <xs:complexType>
                    <xs:attribute name="name" type="xs:string" use="required"/>
                  </xs:complexType>
                </xs:element>
              </xs:sequence>
              <xs:attribute name="anattr" type="xs:string"/>
            </xs:complexType>
          </xs:element>
        </xs:sequence>
      </xs:complexType>
    </xs:schema>Message was edited by:
    Jornsen - formatting
    Message was edited by:
    Jornsen

    Hi Linyin,
    Please refer to: http://middlewaremagic.com/weblogic/?p=2034
    The Problem is missing element <web-resource-name> in your "web.xml" file..... which must be a Unique name of your Resource set which u want to make secure.....
    <security-constraint>
    <web-resource-collection>
    *<web-resource-name>MySecureResources</web-resource-name>*
    <description>Some Description</description>
    <url-pattern>/*</url-pattern>
    <http-method>GET</http-method>
    <http-method>POST</http-method>
    </web-resource-collection>
    <auth-constraint>
    <role-name>admin</role-name>
    </auth-constraint>
    </security-constraint>
    <login-config>
    <auth-method>BASIC</auth-method>
    </login-config>
    <security-role>
    <role-name>admin</role-name>
    </security-role>
    Thanks
    Jay SenSharma
    http://middlewaremagic.com/weblogic   (Middleware Magic Is Here)

  • Com.sap.aii.utilxi.misc.api.BaseRuntimeException:An invalid XML character (Unicode: 0x1f) was found in the element content of the document

    Hi,
    I'm getting the below runtime exception during IDOC- SOAP message mapping in Integration engine.
    "Runtime exception occurred during application mapping com/sap/xi/tf/<<<\\Message mapping object name\\>>>; com.sap.aii.utilxi.misc.api.BaseRuntimeException:An invalid XML character (Unicode: 0x1f) was found in the element content of the document"
    I have no clue why this exception occurs. Could anyone say the reason of the exception?
    Thanks!
    Regards,
    Gopi

    Hi Gopinath
    Check this thread
    An invalid XML character (Unicode: 0x1d) was found in the element
    Kind regards
    Javi

  • An invalid XML character (Unicode: 0x1d) was found in the element

    Hi Guys,
      i am getting below error in moni,
       An invalid XML character (Unicode: 0x1d) was found in the element content of the document
       when i am taking source payload from moni and i tried to test with payload in mapping also i am getting same error.
       Can any one help me on this...
    Thanks,
    Siva.

    Hi Stefan,
       This is my source xml in moni..
    xmlns:prx="urn:sap.com:proxy:ECP:/1SAI/TAS5BFDF495190544E4B506:701:2008/06/06">
      <SiteId>0080</SiteId>
      <UCC>42027519 91029010015</UCC>
    My interface is SAP(Proxy) to Database(Synchronous).
       SAP (PROXY) --> PI --> DATABASE ( Synchronous Communication )
    Let me know if u need any information from my side...
    Thanks for ur help...
    Thanks,
    Siva..

  • XML Publisher Report - Invalid character was  found in text content

    Hi Techies,
    Version Background
    Oracle apps : 11.5.10
    Oracle 9i Database
    Oracle Reports 6i
    I created a XML output type concurrent program and attached a data definition & template to it.
    My program completed with status "Warning".
    The Error is : An invalid character was found in text content.
    Then i downloaded the XML and opened it in notepad++. I found there are 2 weird characters like this ( , )
    FYI, It is a non-Ascii character so not able to paste it in this forum text field. the characters looks like double sided arrow and a forward arrow.
    I also tried loading the XML locally from RTF Template. Again it throws me same error
    Error No: -1072896760: An invalid character was found in text content.
    Additional Information:
    Data is coming from table "gl_alloc_batches.description"
    Encoding Type: UTF-8
    Please Help me how to handle such a non-ascii characters
    Edited by: 868779 on Feb 22, 2012 10:48 PM

    Hi,
    Please find below sql which will find the special characters in column of table,
    SET serveroutput ON size 1000000
    DECLARE
    PROCEDURE gooey (v_table VARCHAR2, v_column VARCHAR2)
    IS
    TYPE t_id IS TABLE OF NUMBER;
    TYPE t_dump IS TABLE OF VARCHAR2 (20000);
    TYPE t_data IS TABLE OF VARCHAR2 (20000);
    l_id t_id;
    l_data t_data;
    l_dump t_dump;
    CURSOR a
    IS
    SELECT DISTINCT column_name
    FROM dba_tab_columns
    WHERE table_name = v_table
    AND data_type = 'VARCHAR2'
    AND column_name NOT IN ('CUSTOMER_KEY', 'ADDRESS_KEY');
    BEGIN
    FOR x IN a
    LOOP
    l_id := NULL;
    l_data := NULL;
    l_dump := NULL;
    EXECUTE IMMEDIATE 'SELECT '
    || v_column
    || ', '
    || x.column_name
    || ', '
    || 'dump('
    || x.column_name
    || ')'
    || ' FROM '
    || v_table
    || ' WHERE RTRIM((LTRIM(REPLACE(TRANSLATE('
    || x.column_name
    || ',''ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789@#$%^&*()_+
    -=,!\`~{}./?:";''''[ ]'',''A''), ''A'', '''')))) IS NOT NULL'
    BULK COLLECT INTO l_id, l_data, l_dump;
    IF l_id IS NOT NULL
    THEN
    FOR k IN 1 .. l_id.COUNT
    LOOP
    DBMS_OUTPUT.put_line ( v_table
    || ' - '
    || x.column_name
    || ' - '
    || TO_CHAR (l_id (k), '999999999999')
    DBMS_OUTPUT.put_line (l_data (k));
    DBMS_OUTPUT.put_line (l_dump (k));
    DBMS_OUTPUT.put_line ('*********************');
    END LOOP;
    END IF;
    END LOOP;
    END gooey;
    BEGIN
    gooey ('GL_ALLOC_BATCHES', 'DESCRIPTION');
    END;
    Thanks,
    Amogh

  • Windows Experience Index fails: An invalid character was found in text content winsat\main.cpp(1041)

    Hi
    I have been tearing my hair out over this, but found this thread which seems to be exactly what I am seeing
    (sorry for some reason I can't post links or images they have been stripped out)
    However the answer, scars me a bit and I need someone to step me through it.
    I have run SMBIOS viewer and spotted an odd looking character after the version 1 (looks like two
    small square zeros) removed it from registry but this did not solve the issue.
    ran winsat formal with admin  error. failed to load XML An invalid character was found in text content winsat\main.cpp(1041) unable to process
    xml file. winsat\main.cpp(4742) Error: cannot process assessment results cannot load xml data from string an invalid character was found in text content from interface msxm16.dll:Ixmldomdocument2
    Please help, I am tearing my hair out with this :(
    Here is my system spec, only a week old, ignore the voltages which are wrongly reported.
    Thanks
    Mike

    (Still can't post images here for some reason, can't even give you a link to see the screen shot :(
    Please verify your account in the following link
    http://social.technet.microsoft.com/Forums/en-US/947dcd6b-41c5-41c1-a39d-44a3cff60889/verify-your-account-19?forum=reportabug
    Have you tried to reset WEI as I mentioned above? What is the result?
    For HW info, we can also run msinfo32.exe to display the info.
    we can also reset BIOS to the default setting to check the issue.
    Regarding to SMBIOS, you can find detailed information in this link
    http://www.dmtf.org/standards/smbios
    NOTE
    This response contains
    a reference to a third party World Wide Web site. Microsoft is providing this information as a convenience to you.
    Microsoft does not control these sites and
    has not tested any software or information found on these sites.
    Yolanda Zhu
    TechNet Community Support

  • Wddx An invalid character was found in text content

    I've this xml file:
    <wddxPacket
    version='1.0'><header/><data><array
    length='50'><struct><var
    name='CONTENTCONTAINERID'><number>11.0</number></var><var
    name='ITEMDATE'><string>03/25/2009</string></var><var
    name='TITLE'><string>Senator's sign ...AND THE REST IS NOT
    SHOWN HERE.
    I got this error message:
    An invalid character was found in text content. Error
    processing resource 'file:///Z:/publisher/logs/pu...
    Budget Proposal</string></var><var
    name='ARTICLENUM'>&l...-indent:-2em">- <struct>
    Notice the -indent -2em. That must be some special
    characters. If I'm correct, em stands for end of medium.
    My question: how can I fix this problem? The xml file shown
    above created with wddx does not allow me to change the encoding
    scheme.

    Please refer
    http://www.w3schools.com/XML/xml_encoding.asp

  • Smartview: XML Load Error: An invalid character was found in text content.

    Hi,
    Im using hyperion 11.1.2.1 with SmartView installed with Office 2007. A lot of forms are working fine on it but we have entered data recently on a number of them and we are unable to open them in SmartView either through the icon and menu options in workspace or through the smartview panel in excel 2007. The error we are getting is "XML Load Error: An invalid character was found in text content."
    Cheers,
    Imran

    Have a look on Oracle Support - "SmartView XML Load Error: "An Invalid Character was Found in Text Content" [ID 968808.1]"
    It may be the same issue as you are experiencing.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • "XML Load error: An invalid character was found in text content" Drill Thru

    Hi,
    I am using Smart View, 2007 ms office.
    We are using EIS to have Drill Through reports.
    When I select the particular intersection and click on Hyperion --> Adhoc Analysis--> Drill Through Reports,
    Drill Through selection window is opening but when click on Launch/Execute.
    It throwing below Error
    "XML Load error: An invalid character was found in text content"
    This error is showing only some intersections...some other intersections are working fine.
    The same intersection if retrieve from ESSBASE --> Addins--> linked objects, Drill thru reports are showing fine.
    From Excel Addins everythg working fine.
    I tried in 2003 MS office from my colleague system. the same error.
    "XML Load error: An invalid character was found in text content"
    Please someone help me....!
    Regards,
    Rajendra Prasad Gella.
    Edited by: Rajendra Prasad Gella on Jun 10, 2010 4:26 AM

    This type of Issue does not happen using Excel Add-in but Smart View. We encountered it as well. I have a feeling the root cause is the ESSLANG which used to be selected during installation. If the Essbase has for instance "English Latin1" or "English US Ascii Binary" and the client does not have it, then this would occur.
    We had old SR on it because we were testin the APS 7.1.6. SR 2-603906: Excel Essbase Add-in splitting special characters such as the " ü " in. Whe we reinstalled and selected same ESSLANG as Essbase server the isue stopped.
    We did not have to chnage our code to scrub out ant special characters. !
    Jullin

  • An invalid character was found in text content. (msxml6.dll)

    while executing or saving the SSIS package we get this error...
    ===================================
    Failure saving package. (Microsoft Visual Studio)
    Program Location:
       at Microsoft.DataTransformationServices.Design.Serialization.DtrDesignerSerializer.SerializePackage(IDesignerSerializationManager manager, Package package, TextWriter textWriter)
       at Microsoft.DataTransformationServices.Design.Serialization.DtrDesignerSerializer.SerializeComponent(IDesignerSerializationManager manager, IComponent component, Object serializationStream)
       at Microsoft.DataWarehouse.Serialization.DesignerComponentSerializer.Serialize(IDesignerSerializationManager manager, Object value)
       at Microsoft.DataWarehouse.VsIntegration.Designer.Serialization.DataWarehouseDesignerLoader.Serialize()
       at Microsoft.DataWarehouse.VsIntegration.Designer.Serialization.BaseDesignerLoader.Flush(Boolean forceful)
       at Microsoft.DataWarehouse.VsIntegration.Designer.Serialization.BaseDesignerLoader.Flush()
       at Microsoft.DataWarehouse.VsIntegration.Designer.Serialization.DataWarehouseContainerManager.OnBeforeSave(UInt32 docCookie)
    ===================================
    An invalid character was found in text content.
     (msxml6.dll)
    Program Location:
       at Microsoft.SqlServer.Dts.Runtime.Package.SaveToXML(String& packageXml, IDTSEvents events)
       at Microsoft.DataTransformationServices.Design.Serialization.DtrDesignerSerializer.SerializePackage(IDesignerSerializationManager manager, Package package, TextWriter textWriter)
    ===================================
    An invalid character was found in text content.
     (msxml6.dll)
    Program Location:
       at Microsoft.SqlServer.Dts.Runtime.Wrapper.IDTSPackagePersist100.SavePackageToXML(Object& pvDestination, Boolean vbReturnDOM, IDTSEvents100 pEvents)
       at Microsoft.SqlServer.Dts.Runtime.Package.SaveToXML(String& packageXml, IDTSEvents events)
    sureshk

    I suggest you apply the steps from the restitution section of this KB http://support.microsoft.com/kb/977889
    Arthur My Blog

  • An invalid character was found in text content

    Hello.
    I'm trying to obtain the output of a report in XML format but when i open it the browser (IE 7) it shows me the message "An invalid character was found in text content".
    Does anyone know how to solve this problem. I'm in XDO 5.6.3 and EBS 11.5.10.2.
    Many thanks in advance.
    Octavio

    Please refer
    http://www.w3schools.com/XML/xml_encoding.asp

  • Apple TV "No Content Was Found"

    Some but not all of my music videos (about half) get a "no content was found" message when trying to play in Apple TV (2).  Most were originally downloaded from iTunes and similar sources. They all play fine on my computer.  If I repopulate the files individually, they work fine, but it would take me a very long time to check and repopulate the many dozens I have. Is there a quicker or simpler solution?

    I have this issue as well.  I updated my APTV2 software in the fall and began experiencing this problem.  I have a wired setup over 100MB connection to the APTV.  Some content is available for play while others are not.  The really maddening issue is that no matter what I do or to whom I speak with or correspond there seems to be no one who has the answer.  This smells like a bug in the software that no one is willing to fess up to and or fix.  As a long time Apple product user and buyer, I am seriously disappointed.  If anyone has any further ideas other than the following please let me know.
    Things I have tried:
    Turning off/on Home Sharing on both the host (Mac Mini) and the APTV
    Changing the energy saver settings for both the host and APTV
    Resetting the APTV (from scratch)
    Rebuilding the iTunes Library

  • Youtube "No content was found" issue

    Anyone else having issues getting to their youtube subscriptions?
    Here's my issue.  When I go to Youtube and log in with my Youtube account and go to Subscriptions I get the " No content was found" with There are no subscriptions for this account on Youtube.  When I log on from any of my computers I clearly do have subscriptions. Strange huh? So here is all what I have done to try and resolve the issue.
    1. Powercycle my Apple TV
    2. Logout of Youtube
    3. Log back in Youtube.
    4. Update Apple TV to 6.0 (6646.65)
    5. Reboot again.
    None of the above has worked. Any ideas?

    I may have found the issue. For some reason youtube linked my google+ account with my youtube account. Two seperate usernames. I temporarly unlinked the google+ account so my orginal youtube is the default account. When I get home from work tonight I'll give it a try. I have a good feeling this was the issue.
    -BC

  • No content was found

    My Apple TV is connected to the internet and I am able to watch YouTube Featured, Most Viewed, Most Recent, Top Rated... etc. And then I logged on my YouTube account using my gmail username and password.
    The problem is that every time I try to go to Favorites or Subscriptions I get this message:
    "No content was found. There is a problem communicating with YouTube. Try again later."
    Thank you for your help in advance.

    Hassaan wrote:
    The Favorites doesn't work still but the Subscriptions menu is working now!
    OK, bear in mind that not all content on youtube is accessible on the appletv.
    content can be blocked by the uploader so that it can only be viewed on the YT website. content also needs to be converted by YT before it can be viewed on an appletv/iphone/ipod touch.
    so don't expect to see everything on the appletv that you see on the YT website.

Maybe you are looking for

  • Can't export photos since upgrading to 10.5.3

    I don't know if these two things are related or not, but I upgraded to 10.5.3 a week or two ago and now I can't export any iPhoto pictures. When I try to save the new exported file the dialog says "unable to create /folder/photo name" I tried Batchmo

  • Adobe Pro Saving Problem

    I had to create a Huge 51 page PDF with graphics and the size is 21mb, but whenever I try to save it, it will take 30 minutes to do so. If I try to do something on the side, It will freeze and eventually crash the program.I open the Task manager, it

  • How can we stop generating spools for some batch jobs?

    HI guys, Is memory will be occupied in SAP  during spool generation from batch jobs ? If yes, to reduce occupied memory, we want to stop generating spools for few batch jobs. Please suggest me the way how we can acheive this.(Step details) Please hel

  • Where to find OS X Lion after the Mountain Lion release?

    I have an old MacBook Pro at work, and it's compatible with Mountain Lion. Currently it's running Snow Leopard, but I'd like to upgrade to Lion. Where can I find the download? Since Mountain Lion was released, Lion disapeared from the App store...

  • SAP SD benchmark in rel605 which mandt to choose

    hi , guys i got the rel605 folder. there are 2 folder:rel605_sp00,rel605_sp05 in rel605_sp00, mandt.car,mandt_2011.car and z_source_605_v2.tar in rel605_sp05, mandt.car,mandt_2012.car and mandt_2013.car in Inst_BMTools_V2_24 5.2 Prepare SAP ERP Syste