Installing JRE 1.4.2_04 error: Error reading setup initialization file

I'm getting the following error when trying to install the Java 2 Runtime Environment.
Diaglog box containing message: Error reading setup initialization file.
I get this error on any of the installers for Java 2 Runtime Environment, Standard Edition 1.4.2_0x; Windows Platform; Windows Offline Installation and Windows Installation.
I do not get this error with the installer for Java 2 Runtime Environment, Standard Edition 1.4.2.
According to the InstallShield web site, this error is caused by an invalid setting for the MSI Engine Location property in the release. See Q105447 on the InstallShield web site Knowledge Base.

I doubt that the root cause is the modification of the file because of the following:
- I have a machine (XP) on which I downloaded j2sdk-1_4_2_09-windows-i586-p.exe and was able to run the install without issue.
- I then mounted a drive on a windows2003 machine and copied the same file to it, the file size was exactly the same. When I ran the install, I got the error "Error reading setup initialization file" and the button with no text.
- I searched through google and found this thread. I used pkzip to package the file and on the original platform, copied it to the 2003 machine and unzipped it. Once again, the same error showed up.
The explanation for the error provided in this thread is not plausible because:
- there are no firewalls/proxy in play in a file share
- the same thing happens when the install is transferred through a zip. Something would need to alter the zipped file in transit without corrupting the zip itself for this explanation to be valid. This is simply not plausible.
There is clearly something going on that has yet to be explained. An explanation of the problem and (even better) a workaround would be welcome.

Similar Messages

  • Palm Desktop 6.2 Install - "Error reading setup initialization file"

    I am trying to install Palm Desktop 6.2 and HotSync Manager on Win Vista Home Premium 32-bit.
    When I execute PalmDesktopWin62.exe I get a message “Error reading setup initialization file.”
     I am installing this to sync my Sprint Centro via usb.
     Thanks for any help
    Post relates to: Centro (Sprint)
    Post relates to: Centro (Sprint)

    I had this problem as well. I solved it by using an old Palm Desktop download instead of the one that Palm is providing now. My old copy was provided as a zip archive and the single file in the archive was named simply setup.exe. I guess the only difference between my old file and the file that Palm provides now has something to do with the installation software (it may be InstallShield; I don't remember for sure). In any case, if you are having this problem you might be able to find a usable file out there somewhere.

  • Error reading setup initialization file

    I am trying to download and install
    J2SE v 1.4.2_04 SDK and
    J2SE v 1.4.2_04 JRE
    on a Windows XP platform SP1. The machine is a dual XEON 3.0 G machine with 1G of memory.
    I downloaded the software and saved it to my desktop. When I double clicked on either application I get a dialog box with the following message...
    "Error reading setup initialization file"...This message appears in a dialog box with no header and no lettering in the button to dismiss the dialog box.
    I tried looking through the forums and contacting SUN without any success....Can someone help me?

    Update to previous post
    I found the source of the error. Either the firewall server or proxy server that our site is using had altered the file. Both servers do some type of 'content' filtering for viruses, etc. To confirm this, I downloaded the file while at another site and then compared the two files. There was differences between the two files. The alteration wasn't enought to completely break the executable, but enough so that InstallShield couldn't run properly.

  • Error Reading setup Intialization file on client side

    Hi Expert,
    When i install the Client setup at client side it's give me the error "Error Reading setup Intialization file".
    I take the setup from the Server B1_shr folder.
    Please reply ASAP.
    Thanks & Regards,
    Tushar Nathwani

    Hi Tushar Nathwani,
    "Error Reading setup Initialization file" implies the setup file is corrupted. You have to find a working copy of it.
    There is no other way around.
    Thanks,
    Gordon

  • Win8繁体装lv打包的程序出错fatal error unable to find initialization file

    win8繁体装lv打包的程序出错fatal error unable to find initialization file

    我的labview是2012简体版本,在win7简体系统上开发

  • Error while reading indesign(.indd) file through COM object in c#

    I want to read InDesign(.indd) file in c#. I have installed adobe InDesignCS6.
    I have added COM reference of 'Adobe InDesign CS6 Type Library' in my c# application.
    Code snippet is as follows.
            [STAThread]
            static void Main(string[] args)
                InDesign.Application app = (InDesign.Application)COMCreateObject("InDesign.Application");
                Document doc = app.ActiveDocument;
                Page page = doc.Pages[1];
                TextFrame frame = page.TextFrames[1];
                Console.WriteLine(frame.Contents.ToString());
            public static object COMCreateObject(string sProgID)
                // We get the type using just the ProgID
                Type oType = Type.GetTypeFromProgID(sProgID);
                if (oType != null)
                    return Activator.CreateInstance(oType);
                return null;
    But the first line itself throwing an following error while type casting output of COMCreateObject method into InDesign.Application type.
    Error :
    Unable to cast COM object of type 'System.__ComObject' to interface type 'InDesign.Application'. This operation failed because the QueryInterface call on the COM component for the interface with IID '{ABD4CBB2-0CFE-11D1-801D-0060B03C02E4}' failed due to the following error: No such interface supported (Exception from HRESULT: 0x80004002 (E_NOINTERFACE)).
    Kindly help me. Its urgent.

    try this,
    InDesign.Application app = (InDesign.Application)COMCreateObject("InDesign.Application.CS6");

  • Error in reading from excel file

    hi,
    I have written a program which reads from excel file
    and based on the value of the column i have to do something.
    Everything is fine but when i run it, it produces an error message
    Exception: For input string: "851.0"
    the value 851.0 is acually the value of the first column.
    Here is the code and i hope someone can help me to find the solution
    try{
                               Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
                               Connection con = DriverManager.getConnection( "jdbc:odbc:exceltest" );
                               Statement st = con.createStatement();
                               ResultSet rs = st.executeQuery( "Select * from [Sheet1$] " );
                               ResultSetMetaData rsmd = rs.getMetaData();
                               int numberOfColumns = rsmd.getColumnCount();
                               while (rs.next()) {
                                            for (int i = 1; i <= numberOfColumns; i++) {
                                                 if(i==1){
                                                            String columnValue1 = rs.getString(i);
                                                            custNo =Integer.parseInt(columnValue1);
                                                           // System.out.println(columnValue1);     
                                                            found=search(custNo);
                                                            if (found==false)
                                                                 insert(custNo);
                                                            System.out.println(columnValue1);     
                                                 else if (i == numberOfColumns && found==false)
                                                           String columnValue = rs.getString(i);
                                                           if(columnValue=="a")
                                                                incrementCusta();
                                                           else if (columnValue=="b")
                                                                incrementCustB();
                                                           else if(columnValue=="c")
                                                                incrementCustc();
                                                           else if(columnValue=="d")
                                                                incrementCustId();
                                            System.out.println("");     
                                       st.close();
                                       con.close();
                                      } catch(Exception ex) {
                                           System.err.print("Exception: ");
                                           System.err.println(ex.getMessage());
                                 }

    Maybe 851.0 is float value, not string.
    Try Object columnValue1 =
    rs.getObject(i); instead of String
    columnValue1 = rs.getString(i);
    You are absolutely right i actually change the line
    custNo =Integer.parseInt(columnValue1);
    into
    custNo =Double.parseDouble(columnValue1);
    Thanks alot :)

  • Getting an Error after reading a excel file

    hi
    I am reading a excel file using POI
    my code is
    package businessLogic;
    import java.io.FileInputStream;
    import java.io.IOException;
    import java.io.InputStream;
    import org.apache.poi.hssf.eventusermodel.HSSFEventFactory;
    import org.apache.poi.hssf.eventusermodel.HSSFListener;
    import org.apache.poi.hssf.eventusermodel.HSSFRequest;
    import org.apache.poi.hssf.record.BOFRecord;
    import org.apache.poi.hssf.record.BoundSheetRecord;
    import org.apache.poi.hssf.record.LabelSSTRecord;
    import org.apache.poi.hssf.record.NumberRecord;
    import org.apache.poi.hssf.record.Record;
    import org.apache.poi.hssf.record.RowRecord;
    import org.apache.poi.hssf.record.SSTRecord;
    import org.apache.poi.poifs.filesystem.POIFSFileSystem;
    * This example shows how to use the event API for reading a file.
    public class EventExample implements HSSFListener
    private SSTRecord sstrec;
    * This method listens for incoming records and handles them as required.
    * @param record The record that was found while reading.
    public void processRecord(Record record)
         try
    switch (record.getSid())
    // the BOFRecord can represent either the beginning of a sheet or the workbook
    case BOFRecord.sid:
    BOFRecord bof = (BOFRecord) record;
    if (bof.getType() == bof.TYPE_WORKBOOK)
    System.out.println("Encountered workbook");
    // assigned to the class level member
    } else if (bof.getType() == bof.TYPE_WORKSHEET)
    System.out.println("Encountered sheet reference");
    break;
    case BoundSheetRecord.sid:
    BoundSheetRecord bsr = (BoundSheetRecord) record;
    System.out.println("New sheet named: " + bsr.getSheetname());
    break;
    case RowRecord.sid:
    RowRecord rowrec = (RowRecord) record;
    System.out.println("Row found, first column at " + rowrec.getFirstCol() + " last column at " + rowrec.getLastCol());
    break;
    case NumberRecord.sid:
    NumberRecord numrec = (NumberRecord) record;
    System.out.println("Cell found with value " + numrec.getValue()+ " at row " + numrec.getRow() + " and column " + numrec.getColumn());
    break;
    // SSTRecords store a array of unique strings used in Excel.
    case SSTRecord.sid:
    sstrec = (SSTRecord) record;
    for (int k = 0; k < sstrec.getNumUniqueStrings(); k++)
    System.out.println("String table value " + k + " = " + sstrec.getString(k));
    break;
    case LabelSSTRecord.sid:
    LabelSSTRecord lrec = (LabelSSTRecord) record;
    System.out.println("String cell found with value " + sstrec.getString(lrec.getSSTIndex()));
    break;
         catch(Exception ex)
    * Read an excel file and spit out what we find.
    * @param args Expect one argument that is the file to read.
    * @throws IOException When there is an error processing the file.
    public static void main(String[] args) throws IOException
    // create a new file input stream with the input file specified
    // at the command line
         try
              FileInputStream fin = new FileInputStream("C:/FTERPending/FTER format.xls");
              // create a new org.apache.poi.poifs.filesystem.Filesystem
              POIFSFileSystem poifs = new POIFSFileSystem(fin);
              //      get the Workbook (excel part) stream in a InputStream
              InputStream din = poifs.createDocumentInputStream("Workbook");
              // construct out HSSFRequest object
              HSSFRequest req = new HSSFRequest();
              // lazy listen for ALL records with the listener shown above
              req.addListenerForAllRecords(new EventExample());
              // create our event factory
              HSSFEventFactory factory = new HSSFEventFactory();
              //      process our events based on the document input stream
              factory.processEvents(req, din);
              // once all the events are processed close our file input stream
              fin.close();
              // and our document input stream (don't want to leak these!)
              din.close();
              System.out.println("done.");
         catch(Exception ex)
    It prints correctly the output at the console and after that it throws an exception as
    java.lang.reflect.InvocationTargetException
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
         at java.lang.reflect.Constructor.newInstance(Unknown Source)
         at org.apache.poi.hssf.record.RecordFactory.createRecord(RecordFactory.java:224)
         at org.apache.poi.hssf.eventusermodel.HSSFEventFactory.genericProcessEvents(HSSFEventFactory.java:183)
         at org.apache.poi.hssf.eventusermodel.HSSFEventFactory.processEvents(HSSFEventFactory.java:101)
         at businessLogic.EventExample.main(EventExample.java:103)
    Caused by: java.lang.ArrayIndexOutOfBoundsException
         at java.lang.System.arraycopy(Native Method)
         at org.apache.poi.hssf.record.UnknownRecord.<init>(UnknownRecord.java:62)
         at org.apache.poi.hssf.record.SubRecord.createSubRecord(SubRecord.java:57)
         at org.apache.poi.hssf.record.ObjRecord.fillFields(ObjRecord.java:99)
         at org.apache.poi.hssf.record.Record.fillFields(Record.java:90)
         at org.apache.poi.hssf.record.Record.<init>(Record.java:55)
         at org.apache.poi.hssf.record.ObjRecord.<init>(ObjRecord.java:61)
         ... 8 more
    I am not getting why this exception is cming
    can anyone help me pls reply

    Does your Excel file has the "AutoFilter" activated?
    If that is the problem, you have here a solution for reading a file with AutoFilter : http://article.gmane.org/gmane.comp.jakarta.poi.user/4690

  • Error While reading an Excel file from KM Folder.

    Hi Guru's,
    In my PDK Application I am trying to read an Excel file from KM Folder.
    Workbook workbook = Workbook.getWorkbook(new File("/irj/go/km/docs/documents/test/Test.xls"));
    It gives an error:
    Error:java.io.FileNotFoundException: \irj\go\km\docs\documents\test\Test.xls (The system cannot find the path specified)
    Details of appli:
    In my JspDynpage I am calling a utility Java file.
    There I have to read an  Excel and to passit to JSP.
    Details of jar files  used:
      jxl-2.6
      com.sap.security.api.jar
    Regards,
    Ram

    Hi,
    You are trying to read file wrong way. In the tutorial of Java Excel Api: "JExcelApi can read an Excel spreadsheet from a file stored on the local filesystem or from some input stream.". You are trying to read from file system. So you must get file input stream then you can read it. Please search forums KM file read.

  • Lightroom encountered an error when reading a catalog file and needs to quit.

    Since I installed Snow Leopard, I keep getting this error. LR restarts and the catalog is fine, but I leave it running and come back an hour or so later and there is the same error.
    I verified the file system on my USB drive and it is fine. It is a brand new catalog that I created from exporting an old one. I've never had this issue before.
    Sorry if this is a double post, I can't seem to find the original post I thought I made.
    /Chris

    Deleting the preference file didn't resolve the issue.
    I am using USB, but the enclosure I'm using is eSATA and USB. I use to use the eSATA connector, but my eSATA control is not supported by Snow Leopard. I'll try to find a Fireware enclosure to use this weekend.
    I spoke with Apple support who told me I need a firmware upgrade for the hard disk. That doesn't make any sense to me.
    Thanks,
    /Chris

  • Recovery Disk Error : cannot read from source file or disk HOW TO FIX ISSUE

    I have had my satellite L655-S5096 for some time now.. I had to switch out hard-drives the other day and installed windows 7 home on it from my own disk.  I tried to download all the drivers needed, but the graphics and wifi drivers never worked, so I pulled out the old toshiba disks to start from new with this harddrive.. It gets to asking me for the second disc, then the second disc gives me the the "cannot read from source file or disk PREINST8.SWM"  This is from the "out of the box" setting, which is recommended.  I do not know how to fix this issue besides reinstalling windows 7 from my disc and trying to get the drivers to work again.. however I shouldn't have to since I have the Toshiba recovery disks.. do I need new disks? 
    Yes, I also had the hard drive drivers and all of that installed.. my toshiba reads the HDD just fine.
    ~Drew

    Satellite L655-S5096
    Downloads here.
    the second disc gives me the the "cannot read from source file or disk PREINST8.SWM"
    My best guess is that the disc is not readable. Try copying it to another. Sometimes that works.
    Otherwise, order new discs from Toshiba.
    -Jerry

  • Error when reading a XML File

    When I am reading an XML file in a folder I am getting extra characters like squares before and after each and every character of the XML file.
    Why is this so.I thought they are spaces and trimmed it but i didnt work.I replaced thinking as escape characters and that also did not work.But when I am prionting the ASCII value of the first character of the file I am getting -17.
    Please can anyone help me out of this.
    Thanks,
    Sravanthi

    public class Example()
    File file = new File("C:/SCTMUnZip/"+files);
    System.out.println("Files inside the directory:::"+files[i]);
    String filedata = getContentsofFile(file);
    if(file.getName().contains(".xml"))
    InputStreamReader reader = new InputStreamReader(new FileInputStream("C:/SCTMUnZip/"+files[i]+"/"));
    System.out.println("Encoding Style:::"+reader.getEncoding());
    byte[] filebytes = filedata.getBytes("UTF-16");//byte[] utf8String = Encoding.UTF8.GetBytes(srcString);
    System.out.println("This is a XML File...");
    file1.setMStrFileName(files[i]);
    file1.setMPFileData(filebytes);
    //file1.setMStrFileName(files[i]);
    /*Pattern pattern = Pattern.compile("[^]");
    Matcher matcher = pattern.matcher(filedata);
    String str = matcher.replaceAll("");
    filedata = str;
    System.out.print(str);*/
    else
    System.out.println("This is a normal file...");
    file1.setMStrFileName(files[i]);
    file1.setMPFileData(filedata.getBytes());
    static public String getContentsofFile(File file)
    StringBuilder filecontents = new StringBuilder();
    try
    BufferedReader input = new BufferedReader(new FileReader(file));
    try
    String line = null; //not declared within while loop
    * readLine is a bit quirky :
    * it returns the content of a line MINUS the newline.
    * it returns null only for the END of the stream.
    * it returns an empty String if two newlines appear in a row.
    while (( line = input.readLine()) != null){
    filecontents.append(line);
    filecontents.append(System.getProperty("line.separator"));
    finally {
    input.close();
    catch (IOException ex){
    ex.printStackTrace();
    return filecontents.toString();
    The files in the folder are log.txt and output.xml(has UTF-16 as the encoding style in the first line).log.txt is read fine but output.xml is not.

  • Error while reading a property file from a war.

    Hi,
    I am trying to read a property file which is available in the properties folder.
    The piece of code that does this read is as follows.
    InputStream is = ClassLoader.getSystemResourceAsStream("codemap.properties");
    System.out.println("Reading file:"+is);
    properties.load(is);
    The "codemap.properties" file is available in the properties folder.
    Following is my directory structure in the war file
    sample.war
    |
    |
    WEB-INF
    |
    |
    classes
    |
    |
    properties
    |
    |______ codemap.properties
    Inside the war file I have WEB-INF and properties folder.
    Inside WEB-INF i have the classes folder which has the classes
    Inside the properties folder I have the codemap.properties file.
    I am using Jboss. In the class path I have ./properties
    I have also added this classpath in the manifest file.
    Problem: The piece of code that I have written to read the property file is not able to locate the file and this it returns null.
    I am not sure what i am missing here.
    If anyone there have any solutions please let me know.
    Thanks in Advance
    Balaji.

    I think you've to change this line
    InputStream is = ClassLoader.getSystemResourceAsStream("codemap.properties");with this.
    InputStream is = ClassLoader.getSystemResourceAsStream("properties/codemap.properties");it is unable to find the path you specified. by default it'll check the WEB-INF directory. so you've to give the relative path to it.
    Diablo

  • Error in reading a xml file

    Hi,
    I have created a data server in the topology manager for xsd file with the below paramters in url
    jdbc:snps:xml?d=E:\ODI\Ibrm_gl_data.xsd&s=GLDATA&dod=true
    And successfully imported the metada from xsd file in to a model.
    I have written the below command in the odi procedure on target tab to load the data from xml file in to the schema.
    LOAD FILE "E:\ODI\test.xml"  ON SCHEMA GLDATA REPLACE  AUTO_UNLOCK READONLY
    When i execute the procedure iam getting the below error.
    ODI-1228: Task IMPORT_XML (Procedure) fails on the target XML connection BRM_XSD.
    Caused By: java.sql.SQLException: class org.xml.sax.SAXException
    Found PCDATA in element Element-0065 values ({_DATA=4})
    Iam using the ODI version11.1.1.3
    Can any one help me in trouble shooting this issue?
    Thanks in advance
    Balaji TK

    Could it be related to support issue described in Doc ID 1462171.1 ?

  • Error when reading of XML file

    Hi Guys
    Basically I wanted to read following parameter in the XML
    <?xml version="1.0" encoding="UTF-8"?>
    <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:sh="http://www.clarify.com/asms/v7000/StandardHeader">
      <SOAP-ENV:Body>
        <mfo:orderRequest xmlns:mfo="http://www.clarify.com/2005/12/13/oneIT/Capabilities/ManageOrder" xmlns:header="http://www.clarify.com/asms/v7000/StandardHeader">
          <header:standardHeader>
            <header:serviceState>
              <header:stateCode>OK</header:stateCode>
            </header:serviceState>
          </header:standardHeader>
          <mfo:order>
            <mfo:orderDate>2002-10-08T17:23:53</mfo:orderDate>
            <mfo:orderItem>
              <mfo:requiredDateTime>1753-01-01T00:00:00</mfo:requiredDateTime>
              <mfo:payloadList />
              <mfo:dueDate>1753-01-01T00:00:00</mfo:dueDate>
              <mfo:proposedDateTime>1753-01-01T00:00:00</mfo:proposedDateTime>
              <mfo:committedDateTime>1753-01-01T00:00:00</mfo:committedDateTime>
              <mfo:isPriority>TRUE</mfo:isPriority>
              <mfo:originalBlob><![CDATA[A4N 66379791000120NEW    0350605722               I   L  JOHN                            66 MARLBOROUGH RD WLGHBY                                                        2068201110182310201]]>
              </mfo:originalBlob>
            </mfo:orderItem>
          </mfo:order>
        </mfo:orderRequest>
      </SOAP-ENV:Body>
    </SOAP-ENV:Envelope>For that I have used the below query, But it doesn't seem to be working.
    select x.eventtime,  x.mro
    from TABLE_X_JMS_MSG xjm
        ,XMLTABLE(XMLNamespaces(
             'http://schemas.xmlsoap.org/soap/envelope/' as "SOAP-ENV"
             ,'http://schemas.xmlsoap.org/soap/encoding/' as "SOAP-ENC"
             ,'http://www.clarify.com/2005/12/13/oneIT/Capabilities/ManageOrder' as "mfo"
           , 'http://www.clarify.com/asms/v7000/StandardHeader' as "header")
           , '/SOAP-ENV:Envelope/SOAP-ENV:Body/mfo:orderRequest/mfo:order' 
                  PASSING XMLTYPE(XJM.X_MSG_XML)
                  COLUMNS eventtime timestamp PATH 'mfo:orderDate'
                  ,mro VARCHAR2(2) PATH 'mfo:orderItem/mfo:originalBlob'
                 ) x
    WHERE  XJM.X_MSG_XML LIKE  '%SUT198890001%'
    AND XJM.objid = '269811874'What could be the reason.
    Cheers
    Shabar

    interesting
    SQL> select * from v$version;
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Prod
    PL/SQL Release 10.2.0.1.0 - Production
    CORE    10.2.0.1.0      Production
    TNS for 32-bit Windows: Version 10.2.0.1.0 - Production
    NLSRTL Version 10.2.0.1.0 - Production
    SQL>
    SQL> with table_x_jms_msg as(
      2  select ('<?xml version="1.0" encoding="UTF-8"?>
      3  <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:SOAP-ENC="h
    ttp://schemas.xmlsoap.org/soap/encoding/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmln
    s:xsd="http://www.w3.org/2001/XMLSchema" xmlns:sh="http://www.clarify.com/asms/v7000/StandardHeader"
    >
      4    <SOAP-ENV:Body>
      5      <mfo:orderRequest xmlns:mfo="http://www.clarify.com/2005/12/13/oneIT/Capabilities/ManageOrd
    er" xmlns:header="http://www.clarify.com/asms/v7000/StandardHeader">
      6        <header:standardHeader>
      7          <header:serviceState>
      8            <header:stateCode>OK</header:stateCode>
      9          </header:serviceState>
    10        </header:standardHeader>
    11        <mfo:order>
    12          <mfo:orderDate>2002-10-08T17:23:53</mfo:orderDate>
    13          <mfo:orderItem>
    14            <mfo:requiredDateTime>1753-01-01T00:00:00</mfo:requiredDateTime>
    15            <mfo:payloadList />
    16            <mfo:dueDate>1753-01-01T00:00:00</mfo:dueDate>
    17            <mfo:proposedDateTime>1753-01-01T00:00:00</mfo:proposedDateTime>
    18            <mfo:committedDateTime>1753-01-01T00:00:00</mfo:committedDateTime>
    19            <mfo:isPriority>TRUE</mfo:isPriority>
    20            <mfo:originalBlob><![CDATA[A4N 66379791000120NEW    0350605722               I   L  J
    OHN                            66 MARLBOROUGH RD WLGHBY                                            
               2068201110182310201]]>
    21            </mfo:originalBlob>
    22          </mfo:orderItem>
    23        </mfo:order>
    24      </mfo:orderRequest>
    25    </SOAP-ENV:Body>
    26  </SOAP-ENV:Envelope>
    27  ') X_MSG_XML from dual)
    28  --
    29  select XMLTYPE(XJM.X_MSG_XML) from TABLE_X_JMS_MSG xjm
    30  /
    XMLTYPE(XJM.X_MSG_XML)
    <?xml version="1.0" encoding="UTF-8"?>
    <SOAP-ENV:Envelope xmlns:SOAP-ENV="http:/
    SQL> xml looks ok
    {quote}
    10:51:45 ORA-31011: XML parsing failed
    10:51:45 ORA-19202: Error occurred in XML processing
    10:51:45 LPX-00210: expected '<'x'
    10:51:45 Error at line 1
    10:51:45 ORA-06512: at "SYS.XMLTYPE", line 254
    10:51:45 ORA-06512: at line 1
    {quote}
    hmm
    btw
    SQL> with table_x_jms_msg as(
      2  select ('<?xml version="1.0" encoding="UTF-8"?>
      3  <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:SOAP-ENC="h
    ttp://schemas.xmlsoap.org/soap/encoding/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmln
    s:xsd="http://www.w3.org/2001/XMLSchema" xmlns:sh="http://www.clarify.com/asms/v7000/StandardHeader"
    >
      4    <SOAP-ENV:Body>
      5      <mfo:orderRequest xmlns:mfo="http://www.clarify.com/2005/12/13/oneIT/Capabilities/ManageOrd
    er" xmlns:header="http://www.clarify.com/asms/v7000/StandardHeader">
      6        <header:standardHeader>
      7          <header:serviceState>
      8            <header:stateCode>OK</header:stateCode>
      9          </header:serviceState>
    10        </header:standardHeader>
    11        <mfo:order>
    12          <mfo:orderDate>2002-10-08T17:23:53</mfo:orderDate>
    13          <mfo:orderItem>
    14            <mfo:requiredDateTime>1753-01-01T00:00:00</mfo:requiredDateTime>
    15            <mfo:payloadList />
    16            <mfo:dueDate>1753-01-01T00:00:00</mfo:dueDate>
    17            <mfo:proposedDateTime>1753-01-01T00:00:00</mfo:proposedDateTime>
    18            <mfo:committedDateTime>1753-01-01T00:00:00</mfo:committedDateTime>
    19            <mfo:isPriority>TRUE</mfo:isPriority>
    20            <mfo:originalBlob><![CDATA[A4N 66379791000120NEW    0350605722               I   L  J
    OHN                            66 MARLBOROUGH RD WLGHBY                                            
               2068201110182310201]]>
    21            </mfo:originalBlob>
    22          </mfo:orderItem>
    23        </mfo:order>
    24      </mfo:orderRequest>
    25    </SOAP-ENV:Body>
    26  </SOAP-ENV:Envelope>
    27  ') X_MSG_XML from dual)
    28  --
    29  select x.eventtime,  x.mro
    30  from TABLE_X_JMS_MSG xjm
    31      ,XMLTABLE(XMLNamespaces(
    32           'http://schemas.xmlsoap.org/soap/envelope/' as "SOAP-ENV"
    33           ,'http://schemas.xmlsoap.org/soap/encoding/' as "SOAP-ENC"
    34           ,'http://www.clarify.com/2005/12/13/oneIT/Capabilities/ManageOrder' as "mfo"
    35         , 'http://www.clarify.com/asms/v7000/StandardHeader' as "header")
    36         , '/SOAP-ENV:Envelope/SOAP-ENV:Body/mfo:orderRequest/mfo:order' 
    37                PASSING XMLTYPE(XJM.X_MSG_XML)
    38                COLUMNS eventtime timestamp PATH 'mfo:orderDate'
    39                ,mro VARCHAR2(2) PATH 'mfo:orderItem/mfo:originalBlob'
    40               ) x
    41  --WHERE  XJM.X_MSG_XML LIKE  '%SUT198890001%'
    42  --AND XJM.objid = '269811874'
    43  /
    with table_x_jms_msg as(
    ERROR at line 1:
    ORA-31011: XML parsing failed
    ORA-19202: Error occurred in XML processing
    LPX-00601: Invalid token in: '/*/mfo:orderDate'
    SQL> but after any change
    SQL> with table_x_jms_msg as(
      2  select ('<?xml version="1.0" encoding="UTF-8"?>
      3  <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:SOAP-ENC="h
    ttp://schemas.xmlsoap.org/soap/encoding/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmln
    s:xsd="http://www.w3.org/2001/XMLSchema" xmlns:sh="http://www.clarify.com/asms/v7000/StandardHeader"
    >
      4    <SOAP-ENV:Body>
      5      <mfo:orderRequest xmlns:mfo="http://www.clarify.com/2005/12/13/oneIT/Capabilities/ManageOrd
    er" xmlns:header="http://www.clarify.com/asms/v7000/StandardHeader">
      6        <header:standardHeader>
      7          <header:serviceState>
      8            <header:stateCode>OK</header:stateCode>
      9          </header:serviceState>
    10        </header:standardHeader>
    11        <mfo:order>
    12          <mfo:orderDate>2002-10-08T17:23:53</mfo:orderDate>
    13          <mfo:orderItem>
    14            <mfo:requiredDateTime>1753-01-01T00:00:00</mfo:requiredDateTime>
    15            <mfo:payloadList />
    16            <mfo:dueDate>1753-01-01T00:00:00</mfo:dueDate>
    17            <mfo:proposedDateTime>1753-01-01T00:00:00</mfo:proposedDateTime>
    18            <mfo:committedDateTime>1753-01-01T00:00:00</mfo:committedDateTime>
    19            <mfo:isPriority>TRUE</mfo:isPriority>
    20            <mfo:originalBlob><![CDATA[A4N 66379791000120NEW    0350605722               I   L  J
    OHN                            66 MARLBOROUGH RD WLGHBY                                            
               2068201110182310201]]>
    21            </mfo:originalBlob>
    22          </mfo:orderItem>
    23        </mfo:order>
    24      </mfo:orderRequest>
    25    </SOAP-ENV:Body>
    26  </SOAP-ENV:Envelope>
    27  ') X_MSG_XML from dual)
    28  --
    29  select y.orderdate, y.mro
    30  from TABLE_X_JMS_MSG xjm
    31      ,XMLTABLE(XMLNamespaces(
    32           'http://schemas.xmlsoap.org/soap/envelope/' as "SOAP-ENV"
    33           ,'http://schemas.xmlsoap.org/soap/encoding/' as "SOAP-ENC"
    34           ,'http://www.clarify.com/2005/12/13/oneIT/Capabilities/ManageOrder' as "mfo"
    35         , 'http://www.clarify.com/asms/v7000/StandardHeader' as "header")
    36         , '/SOAP-ENV:Envelope/SOAP-ENV:Body/mfo:orderRequest' 
    37                passing xmltype(xjm.x_msg_xml)
    38                COLUMNS orderDateXml xmltype PATH '*'             
    39               ) x    
    40       ,xmltable(xmlnamespaces(       
    41              'http://www.clarify.com/2005/12/13/oneIT/Capabilities/ManageOrder' as "mfo"
    42              , 'http://www.clarify.com/asms/v7000/StandardHeader' as "header")
    43              , '/mfo:order' passing x.orderdatexml
    44              columns orderdate varchar2(100) path '/mfo:order/mfo:orderDate'
    45                    , mro VARCHAR2(2000) PATH '/mfo:order/mfo:orderItem/mfo:originalBlob'
    46              ) y
    47  /
    ORDERDATE
    MRO
    2002-10-08T17:23:53
    A4N 66379791000120NEW    0350605722               I   L  JOHN
             66 MARLBOROUGH RD WLGHBY
             2068201110182310201
    SQL>

Maybe you are looking for

  • FILE ADAPTER ERROR IN FTP

    Hi, Iam getting the following error in sender file adapter: Could not process due to error: com.sap.aii.adapter.file.ftp.FTPEx: 550 *** ERROR *** NO BATCHES FOR TRANSMISSION Could anyone help me in this. Thanks &Regards, Y.Raj

  • Adobe Genuine Software Validation Failure

    Can't download Adobe Application Manager. Keep getting "Adobe Genuine Software Validation Failure: The product you are trying to install is not an Adobe Genuine Software and appears to be counterfeit." What do I do? I've tried several times and I kee

  • How to make a Word for Mac 2008 doc into a PDF using Acrobat Macintosh

    Any ideas how to turn a Word for Mac 2008 document into a PDF using Acrobat Pro? Thank you if you can help.

  • EncoderServer and Thumbnail not responding

    I just opened up my iDVD for the first time (bought computer in March). Software update asked if I wanted to update things... I did. Now my computer is getting super hot and loud. When I bring up activity monitor it shows EncoderServer and Thumbnail(

  • Acl + wildcard pattern user's

    hi, i have this contexts - I have a Sun1DirectoryServer 5.2 pth4 running - I have a Sun1WebProxyServer 4.0.3 running in same machine wich Directory i have entries with pattern "cn=httpProxy" in their DN and other entries not have. I want to allow in