XML parsing enconde error

Hello experts,
I have a custom component which allow a dynamic navigation in some
pages of the Portal. This same component works fine with another two
Enperprise Portal (Implementation-Version=6.2.0.39.200606211833 and JDK-Version=1.3.1) and any error appears. Now, I have a different portal
(NW04 SPS18 and JDK-Version=1.3) and I get errors when parsing the xml
files. I thought that error is due to the enconding of the file but I
checked and adapted all files enconding and the problem persists. Now,
I think that maybe the problem is due to the new version of JDK
because maybe this JDK version deals different the xml files and this
cause that the code we had for the other portals, now fails.
Any idea how can I resolve this problem?
Regards,
Sonia

Hi
You can upgrade your JDK use 1.4.2_06 or any higher version.There are many docs available for that.In case you face any prob feel free to ask
Reward points if usefull

Similar Messages

  • I have Dreamweaver CS5.5 and all of a sudden I can't open it says XML parsing fatel error.  Invalid Document Structure  What do I do?  Thanks

    I have Dreamweaver CS5.5 and all of a sudden I can't open it says XML parsing fatel error.  Invalid Document Structure  What do I do?  Thanks

    You need to rename the Configuration folder to Configuration_BU.
    The folder can be found by following this http://www.dmxzone.com/go/16740/clearing-dreamweaver-s-cache/

  • Need help with error: XML parser failed: Error An exception occurred! Type:......

    <p>Need help with the following error.....what does it mean....</p><p>28943 3086739136 XML-240304 3/7/07 7:13:23 PM |SessionNew_Job1<br /><font color="#ff0000">28943 3086739136 XML-240304 3/7/07 7:13:23 PM XML parser failed: Error <An exception occurred! Type:UnexpectedEOFException, Message:The end of input was not expected> at</font><br />28943 3086739136 XML-240304 3/7/07 7:13:23 PM line <7>, char <8> in <<?xml version="1.0" encoding="WINDOWS-1252" ?><br />28943 3086739136 XML-240304 3/7/07 7:13:23 PM <DSConfigurations><br />28943 3086739136 XML-240304 3/7/07 7:13:23 PM <DSConfiguration default="true" name="Configuration1"><br />28943 3086739136 XML-240304 3/7/07 7:13:23 PM <case_sensitive>no</case_sensitive><br />28943 3086739136 XML-240304 3/7/07 7:13:23 PM <database_type>Oracle</database_type><br />28943 3086739136 XML-240304 3/7/07 7:13:23 PM <db_alias_name1>ODS_OWNER</db_alias_name1><br />28943 3086739136 XML-240304 3/7/07 7:13:23 PM <db_ali>, file <>.<br />28943 3086739136 XML-240307 3/7/07 7:13:23 PM |SessionNew_Job1<br />28943 3086739136 XML-240307 3/7/07 7:13:23 PM XML parser failed: See previously displayed error message.</p><p>Any help would be greatly appreciated.  It&#39;s something to do with my datasource and possibly the codepage but I&#39;m really not sure.</p><p>-m<br /></p>

    please export your datastore as ATL and send it to support. Somehow the internal language around configurations got corrupted - never seen before.

  • XML parsing fatal error [subject edited by moderator]

    Hello, when I try to open dreamweaver CS 5  I have this message: XML parsing fatal error: Invalid document structure, line: 1, File:C:\Users\Jean\AppData\Roaming\Adobe\Dreamweaver CS5\fr_FR\configuration\Workspace\Designer.xml    Please help me.
    Thank you to help me for this question about fatal error.

    Deleting a corrupted cache file

  • Dreamweaver stopped working. XML parsing fatal error: Invalid document structure, line1  Tried reloading DW. Didn't work.

    Dreamweaver (CS5) stopped working.  The error message says - XML parsing fatal error: Invalid document structure, line: 1, I tried to reload DW. No change. I also tried to reset the computer to an earlier date before I reloaded. Also didn't work. Can anybody shed some light?

    The first thing to try is Deleting Corrupted Cache.  Be sure to turn on Hidden Files & Folders in your file manager (Win Explorer or Mac Finder).
    http://forums.adobe.com/thread/494811
    If that doesn't help, try Restore Preferences
    http://helpx.adobe.com/dreamweaver/kb/restore-preferences-dreamweaver-cs4-cs5.html
    If all else fails, use the CC Cleaner Tools below to wipe DW from your system, followed by a software re-install.
    http://helpx.adobe.com/creative-suite/kb/cs5-cleaner-tool-installation-problems.html
    Keep us posted on your results.
    Nancy O.

  • XML parsing fatal error: Invalid document structure, line: 1, file: ... (in this case "Classic.xml"

    dreamweaver not initiating..claiming a parsing fatal cerr because classic.xml is corrupted. I tried re-installing dreamweaver... nothing

    See here Dreamweaver CS5 fatal error XML parsing: Invalid document structure, line:1, File: C:\User\Tyler\App

  • What classes handles the XML Parser's Error Messages?

    I am using Xerces and it successfully parse the XML file and display the error message including the Line and Column Number..
    but... would like to change the messages and translate it to different langauges (like Chinese, Japanese)..
    Please guide me on how to translate the error message came from the parse class...
    thanks a lot.

    I am using Xerces and found the org/apache/xerces/impl/msg/XMLMessages.properties
    Then, I just need to create a localized property file (XMLMessages_ja.properties).
    but don't know on how to set the Parser to read the ja file instead of default locale.

  • Adobe Flash Cs4 : xml parsing fatal error invalid document structure line 1 file

    Hi there.. Well, this is in the title.. I got a problem with adobe flash cs4 : I can't launch it normaly and its says that a fatal error has occured.. I really don't know what I must do.. Please, help me.... I've just lost like 3 or 4 files of adobe by trying to reinstall it.. Help me please..
    ** My tools are now invisible **

    Say do you have a designer.xml file

  • WebRowSet & com.sun.xml.parser.Resolver error

    Hi all,
    I have a xml file which is generated by a webrowset on the server and which is read by a webrowset object in an applet with readXml method. I know that the xml is sent in a well-formed format as I checked it in IE6.
    I also know that the applet is reading the url correctly. From my searches I have found people refering to chaning the SYTEM_ID property which keeps the location of the DTD file to point to a local copy to avoid lookup problems. I have done this and still get the error.
    I have an idea that it may be the way the XML file is being read. (See code below.)
    URL url = new URL ("http","localhost",8081,"/getXML.jsp");
    HttpURLConnection host =(HttpURLConnection)url.openConnection();
    host.connect();
    java.io.Reader tmp = new java.io.InputStreamReader(host.getInputStream());
    java.io.BufferedReader buf = new BufferedReader(tmp);
    webrs.readXml (buf);
    Any ideas or pointer appreciated.
    TIA

    Hmm. Could you perhaps post the full stack trace and error message from the exception.
    .P.

  • Dreamweaver cs5 : cant launch it suddenly due to XML parsing fatal error. WHY ?

    System asked me to load a correct layout from WINDOWS - WORKSPACE
    1/ it was not like that yesterday
    2/ from the folder window ,I could not
    find any file named WORKSPACE
    * MY  o/s - Windows 7
    ==> should I re-install dreamweaver first before doing anything ?
    ==> how can I load that layout ?
    3/ my dreamweaver cs3 is no problem

    before I noted your comments,I uninstalled it already.
    Last time I failed after uninstalling & reinstalling it probably
    becos I forgot to restart the computer.
    Now , it resumes normal

  • Dreamweaver CS5 Fatal Error XML Parsing

    Can anyone help me with CS5 dreamweaver - It has a fatal error on windows 7 - it states XML Parsing fatal error an exception occurred, Type: unexpected of exception message: the end of input was not expected, line 22 file: c\users\danny\appdata\roaming\adobe\dreamweaver cs5\en_us\configuration\workspace\designer.xml.
    I cannot use dreamweaver at all - PLEASE HELP ME. Thanks

    The xml file which defines the Workspace layout has become corrupt.
    Navigate to the file via the path listed in your post, delete it and relaunch Dreamweaver.
    http://forums.adobe.com/message/2124385
    If Dreamweaver still won't launch. delete the entire Configuration folder. Dreamweaver should then create a fresh Configuration folder the next time you launch it.
    Locating your personal configuration folder
    http://forums.adobe.com/thread/494812

  • Dreamweaver CS5 fatal error XML parsing: Invalid document structure, line:1, File: C:\User\Tyler\App

    XML parsing fatal error: Invalid document structure, line: 1, file: C:\User\Tyler\AppData\Roaming\Adobe\Dreamweaver CS5\en_US\Configureation\Workspace\Classic.xml
    I have gone through older disscussion forums and have followed the steps recommended by deleting the corrupted .xml file itself (in this case "Classic.xml") but imidiatly after when i try to open Dreamweaver again, i am prompted with the same fatal error message including the file that i have just deleted. Next i deleted the entire configure file and this did not help either.
    It is also odd that when i follow the path to find the corrupted .xml file from the prompt, the path is different in that i do not find the "Classic.xml" file through th "en_US\Configuration\Weorkspace" navigation, however i do find the corrupt "Classic.xml" file in the "configure" folder of the "Adobe Dreamweaver CS5" file.
    Im not sure what to do now and i would really like Dreamweaver back up and running so please help if you can!!!
    Thanks
    -Tyler

    Step 1: Close DW, Navigate to C:\User\Tyler\AppData\Roaming\Adobe\Dreamweaver CS5\en_US\Configureation\Workspace\ and delete that Classic.xml file
    Re-open DW. DW should auto-create your Workspace layout XML file again. See if it works fine.
    PROCEED TO STEP 2 ONLY IF STEP 1 DOESN'T SOLVE THE ISSUE
    Step 2: Navigate to C:\Users\Tyler\AppData\Roaming\Adobe\Dreamweaver CS5\en-US\Configuration and delete the entire 'CONFIGURATION' folder. Re-open DW. DW should auto-create your configuration folder based on predefined layouts and config options. This will definitely fix your issue.
    Reason for this issue: This issue would have been caused due to a malformed workspace layout configuration. That may happen due to customizations you may have done to the layout/ improper file permissions/ improper shutdown on Windows.
    See if these fixes resolve your issue and post your results here.
    Cheers,
    ST

  • XML Parser Exception in Install of AIA 11.1.1.5 on SOA 11.1.1.5

    I am attempting to install AIA Foundation Pack on a SOA domain and continually encounter an XML parsing exception error as the installer is attempting to install WSM security policies. Here are the key details:
    AIA version = 11.1.1.5
    SOA Suite = 11.1.1.5
    WebLogic = 10.3.5
    Operating System = Fedora14 (a home lab machine but I don't think this is an OS issue)
    The error is encountered about 17 minutes into the lengthy process. Just before the error appears in the installation log, the following message appears indicating roughly what step is being performed:
    [zip] Building zip: /opt/oraclemw/aia11115/aia_instances/dev1/tmp/aia_security_policies.zip
    The core error messages are:
    [exec] SEVERE: WSM-01605 XML parser exception
    [exec] oracle.xml.parser.v2.XMLParseException: Expected 'EOF'.
    [exec] at oracle.xml.parser.v2.XMLError.flushErrors1(XMLError.java:323)
    The python modules being executed by the WLST scripting tool at the time of the failure are:
    [exec] Problem invoking WLST - Traceback (innermost last):
    [exec] File "/opt/oraclemw/aia11115/Infrastructure/Install/AID/lib/py/importpolicy.py", line 29, in ?
    [exec] File "/opt/oraclemw/oracle_common/common/wlst/wsmManage.py", line 719, in importRepository
    [exec] File "/opt/oraclemw/oracle_common/common/wlst/lib/ora_util.py", line 51, in raiseScriptingException
    [exec] OracleScriptingException: None
    Finally, the outer XML files being used as input for the deployer that seems to be running at the time are:
    /opt/oraclemw/aia11115/Infrastructure/Install/AID/AIAExecuteDriver.xml
    with references to lines 221 and 64.
    The problem occurs whether I try to use Java JDK 16.0.20 or JRockit R28.2.0 as the JRE when running the AIA installer. (The WebLogic domain is configured to use JRockit).
    Any suggestions? Is there a library conflict being picked up between different releases of XercesImpl? I would hope there isn't actually a bad XML file in the AIA artifacts or WSM (Web Service Management) policies being deployed.

    HI
    How this issue was resolved? Please explain in detail. I am facing the same issue.
    Regards
    Arun

  • ANN: XML Parser for Java v1.0.1.3

    A new maintenance release of the Oracle Parser for Java is
    available for download. It has the following fixes and changes:
    Bug fixes for #860330, XML parser cannot parse documents with
    stylesheet PI's in them;
    #860329, XML parser gives errors in validate mode if doc doesn't
    have a DTD;
    #856914, XML document should accept a java.io.printwriter; and
    some enhancements were made to optimize performance in the non-
    validating mode.
    This is the third production patch release. Oracle XML Parser
    1.0.1.2.0
    Oracle XML Team
    http://technet.oracle.com
    Oracle Technology Network
    null

    Hi,
    Are you sure I can use the downloaded XML Parser for C v2 on Oracle 7.3 and Oracle 8? Because in the lib directory there are the following libraries:
    libcore8.a, libnls8.a, libxml8.a, libxmlc8.a
    I think they are for Oracle 8i instead. I tried to compiled the Oracle XML Parser for C v1.0.0.0.1 before on Oracle 7.3 and it failed because of libraries problem. How can I get the libraries required for Oracle 7.3 and Oracle 8? Please verify.
    Many thanks!
    Francis

  • Com.ibm.xml.parser.Parser Not Found

    Hi,
    I am getting error of Package not found i.e com.ibm.xml.parser.Parser
    But i had this package in my libraries and that have been set to project classpath.
    Still i m getting error , i m totally confused , please tell me how to resolve it I m using NetBeans.
    Nitin

    Hi Ben,
    I have no solution (sorry), but I've the same trouble.
    I would appreciate if you can forward me any given solution.
    Thanks in advance,
    François Le Rolland
    "Benjamin Hyatt" <[email protected]> wrote:
    >
    Weblogic server 5.1sp6, Weblogic Commerce Server 3.1.
    Sun Solaris 5.6, jdk 1.2.2
    When starting commerce server(StartCommerce.sh), I get a 'java.lang.ClassNotFoundException: com.ibm.xml.parser.SAXDriver" error message to stdout.
    I'm having a hard time understanding why. Weblogicaux.jar is in the weblogic server classpath. Just for sanity sake, in StartCommerce.sh I echoed the $JDK_HOME variable under #-- Start WebLogic with the above parameters --
    It is indeed being loaded in the classpath. A quick check via the console confirms this as well.
    Any help is appreciated.
    Thanks,
    -Ben

Maybe you are looking for

  • Snow Leopard 10.6.2 and Word 2004

    Since upgrading to Snow Leopard I have found that when I try to Insert Picture into a Word document (Word 2004), the Media browser for Photo no longer works. I can find pictures elsewhere on the disk. I assume Word is not connecting through to the iP

  • HT4484 iTunes is reporting over 5 access on our account but ..NOT

    We had a desk top crash and bought a new one.When I tried to recover my Itune library the apple store said we had exceeded our 5 appliance limit. How do we update apple's records?

  • Import order

    Hi Pankaj, Please carify the sloyution you have given for Bondedware house plant to main plant (STO) 4. J1IEX - Capture BOE 5. MIGO - Goods Receipt w.r.t. Outbound Delivery (Here also refer Customs Invoice) FI Entry will be; Stock A/c - Dr GR/IR Clea

  • Call failed, call failed

    I bought an iPhone 4 from ebay. The seller said he was not quite sure about whether the phone was locked or not, but vodafone's micro-sim card is OK. I bought a vodafone pay as you go micro-sim card and insert it, but neither making or receiving a ph

  • Retrieving browser info

    Does anyone know how to retrieve information about a client's browser (i.e. what browser, what version, etc), possibly from the HTTP request or some other way, via JSP? Thanks. --Amanda