XML C++ Parser on Tru64 UNIX

Are there any plans to provide a version of the XML C++ Parser on Compaq Tru64 UNIX?
Thanks and regards
...colin

We do not currently support Compaq Tru64 UNIX. We have not yet made any announcement regarding this platform.
Oracle XML Team

Similar Messages

  • Install Oracle 8.1.7 (TRU64 UNIX 5.1)

    Need information on how to initate the istallation of Oracle
    Software on TRU64 UNIX 5.1. Prior to 8.1.7, the "orainst" shell
    for UNIX was used from the command line. The installation
    instructions for 8.1.7 require the setting of the variable
    DISPLAY, and the execution of the script "runInstaller". For
    what I can tell, the new installation routine requires X-windows
    to run, but I cannot figure out how to set it up.
    Thank you in advance for any help on this subject.
    Eduardo Bedoya

    Dirk:
    I had the same problem, which is caused by a
    wrong version of Java. Follow the instructions
    in Denis Claric's Oracle page:
    http://staff.in2.hr/denis/oracle/
    BUT do NOT install the RPM packages from the
    RH7.1 CD-ROMs, get them from RedHat's web site instead.
    -Ramon

  • XML SAX parser that support  LexicalHandler

    Hello,
    I'm looking for an XML SAX parser that support a LexicalHandler.
    I have xml files that are not well formed, ie: (&, <, >, etc...) characters within tags and I need to ignore them.
    Anyone have a link to some opensource library ??
    Thanks,
    Samir

    Don't waste your time. Using a LexicalHandler isn't going to help with parsing malformed XML. You should get the person who produced those files to replace them with correct XML.
    PC&#178;

  • Install Oracle 8.1.7 on Tru64 UNIX 4.0F

    hello:
    I have installed oracle8.1.7 on Tru64 UNIX 4.0F.
    After startup database and start listener,at first only one listener service could be found using command lsnrctl status looks like:
    Service "ORA8" has 1 instance(s).
    The command completed successfully
    ,but after while (2-3min) use the same command can find another result, looks like:
    Service "ORA8" has 1 instance(s).
    Service "ORA8" has 3 instance(s).
    The command completed successfully
    Then client can not connect to database.
    I can not find the reason.
    Can you?
    Thanks a lot!

    make sure the required characeter set (called subset in TRU64 UNIX) is loaded in OS ...
    you can check with command 'setld -l <>'
    i dont have a UNIX box with me now ... so i can't tell you exactly what it is ..
    take help of any OS (TRU64 UNIX) expert !
    good luck

  • Does Oracle 8.1.5 Run On Tru64 Unix 5.1

    Does Oracle 8.1.7 Run On Tru64 Unix 5.1
    We plan to upgrade the OS and Oracle in two steps.
    1. First weekend - upgrade the operating system from Tru64 4.0d to Tru64 5.1.
    2. Second weekend - upgrade Oracle from 8.1.5 to 8.1.7
    Questions:
    1. Will Oracle 8.1.5 run successfully on Tru64 5.1 during the one-week transition period?
    2. Does it make any difference if we upgrade the OS to Tru64 5.1a instead of 5.1?
    Thanks in advance,
    Alan Holsted
    Metro, Portland, OR.
    null

    A question along the same lines, does Oracle 7.3.4 run On Tru64 Unix 5.1?
    We plan to upgrade the OS and Oracle in two steps.
    1. Firstly - upgrade the operating system from Tru64 4.0F to Tru64 5.1 (via 5.0A).
    2. Secondly - upgrade Oracle from 7.3.4 to 8.1.7 or perhaps 9.x
    Questions:
    1. Will Oracle 7.3.4 run successfully on Tru64 5.1 during the transition period?
    2. Does it make any difference if we upgrade the OS to Tru64 5.1A instead of 5.1?
    TIA
    Chris

  • OAS 4.0.8.1 on Compaq Tru64 UNIX 4.0F (Digital Unix 4.0F) : Help !!!

    My installation of OAS 4.0.8.1 on Digital Unix
    4.0F is failing when it comes to try to
    relink something called ntcontab.o
    , an apparently missing header file :
    cc: Severe: /usr/include/sys/types.h, line 77:
    Cannot find file <standards.h> specified in #include directive.
    (I did find the header file on the system but in a different place.
    I tried a link to make it
    appear where it should but that didn't work for
    some reason)
    My release notes specify 4.0D is required,
    maybe thats the problem, though I wouldn't
    expect a whole header file to be moved between
    minor releases.
    Any help very gratefully recieved. I am really
    stuck.
    Thanks
    Alan McCulloch
    email : [email protected]
    BTW - I'm new to Digital Unix, previously
    worked on Solaris. My subjective impression is Digital
    Unix is alot less well supported and prevalent
    than Solaris, and my feeling is we would
    be more secure on Solaris.
    Is this at all a valid point of view ? I'd
    be very happy to be wrong about this !
    null

    Hi Peter,
    I believe that functionality was broken in the field test version of coordinate systems that shipped in 8.1.6 only for transforming data stored in the SDO_POINT type. I'm not sure, but I doubt this will be patched on tru64 unix.
    If you need to get this working you might want to try storing your point data using the elem_info_array and the ordinate array rather than the optimized point type.
    This problem is fixed in 8.1.7.
    Hope this helps,
    dan

  • Is Generic Connectivity included in 8.1.7 on Compaq Tru64 Unix?

    Is Generic Connectivity included in 8.1.7 on Compaq Tru64 Unix? How could I find out via SQL*Plus (if at all)?
    TIA,
    Rob

    Robin,
    Generic Connectivity is not available on Tru64. It is available on Solaris, NT as of 8.1.6 and on HP and AIX as of 8.1.7.

  • Using XDKs XML Schema Parser

    I want to parse an XML schema(XSD file) and extract the types from it, ComplexType etc. Does anyone know to even begin this. Ive managed to parse and any XML file sucessfully returning all element types,names and values using the DOM parser but cant seem to find suitable methods in the oracle.xml.parser.schema library. I have started along these lines
    XSDBuilder bob =new XSDBuilder();
    XMLSchema sch = (XMLSchema)bob.build(url);
    where URL is string referencing the xsd file. But after that all I can get is the targetnamespace using
    String display = sch.getSchemaTargetNS();
    Any help greatly appreciated.

    Srinivas,
    Thanks for the reply. But that is not my requirement.Suppose I have a schema representing the following xml
    <Student>
    <Name>ABC</Name>
    <Class>XYZ</Class>
    <Course>PQR</Course>
    </Student>
    When I parse the XML Schema representing the above XML, it should give me a Java object that represents this XML structure. (Similar to Document object that is obtained when we an XML is parsed)
    Hope this is more clear.

  • XML C++ Parser in Solaris 2.6 could not parse with encoding UTF-16

    I tried to use UTF-16 encoding in the XML C++ Parser in Solaris 2.6.
    xmlinit() fails and returns error 201 - i.e.Unknown encoding. Though the ORACLE documentation has many encodings including UTF-16. Quite a few of these encodings are not working.
    Can any one help about UTF-16.
    Thanks
    Vijay Kumar

    Do you have Oracle's NLS data files?

  • Oracle Performance problem in Tru64 Unix

    Hello All,
    I am having performance problem in Tru6u Unix. Details are mentioned below :
    OS: Tru64 Unix
    Oracle Version : 8.1.7.4.0
    Forms : 6.0
    Mode: Oracle Parallel Server
    When, developers are trying to save some data using forms, it's taking too much time.
    Any hint/idea, how to start tracking the things, will be highly appreciated.
    Regards,
    Rajeev Tomar

    Check what are the session waits from v$session_wait and try to tune them.
    If possible, get the code and tune the sqls.
    Without knowing the application behaviour and other related stuff, no one can simple adice on performance problems.
    Jaffar

  • XML C++ Parser in Solaris 2.6 could not parse with base64

    I am using XML C++ Parser (version 2.0.4) in Solaris 2.6
    I am using the following definition in dtd file to process binary data.
    <!ELEMENT Agent (base64)>
    I have two problem from xmlparse() function.
    1. This declaration always produces a warning:
    LPX-00103: warning: document structure does not match DTD.
    2. This causes the parser to fail completely if the corresponding data is empty. This field needs to be optional.
    Any ideas how to handle this situation.
    Thanks in advance
    Vijay Kumar

    You can either turn off validation or read section 3.2 of http://www.w3.org/TR/1998/REC-xml-19980210 on how to write a proper DTD.
    null

  • NullPointerException in XML Schema Parser

    I have run the XML Schema parser across the sample xml files without problems, but when
    I try to run it against my own xml/xsd combo
    I get a null pointer exception. :-(
    Unfortunately the xml file and schema are
    not something that I can share openly.
    I can use gdb to get a traceback, but without the source I cannot get much more info:
    % jdb
    Initializing jdb...
    run XSDSetSchema SASOMI.xsd GetAllTables.xmlrun XSDSetSchema SASOMI.xsd GetAllTables.xml
    >
    VM Started:
    Exception occurred: java.lang.NullPointerException (uncaught) thread="main", oracle.xml.parser.schema.XSDBuilder.parseComplexTypeContent(), line=1074, bci=383
    main[1] where
    [1] oracle.xml.parser.schema.XSDBuilder.parseComplexTypeContent (XSDBuilder.java:1074)
    [2] oracle.xml.parser.schema.XSDBuilder.parseComplexType (XSDBuilder.java:905)
    [3] oracle.xml.parser.schema.XSDBuilder.parseTopLevelElem (XSDBuilder.java:466)
    [4] oracle.xml.parser.schema.XSDBuilder.buildSchema (XSDBuilder.java:367)
    [5] oracle.xml.parser.schema.XSDBuilder.build (XSDBuilder.java:223)
    [6] oracle.xml.parser.schema.XSDBuilder.build (XSDBuilder.java:206)
    [7] XSDSetSchema.main (XSDSetSchema.java:24)
    main[1] ?
    Any ideas as to how to proceed?

    A quick update on this.
    In case anybody is inclined to look into
    this problem, I have a testcase you can
    try:
    http://www.realtime.net/~mburns/xml/critters/Hawk1.xml
    and corresponding schema: http://www.realtime.net/~mburns/xml/critters/Critters.xsd
    null

  • Reports Developer 6i availability for Tru64 Unix?

    Is Reports 6i Release 2 actually available for Tru64 Unix? I can't seem to find any information to indicate that it is -- or is it only available through the Application Server package?
    thanks,
    Allan Tin

    hello,
    please take a look at metalink.oracle.com where you can find the latest porting information for our products.
    regards,
    the oracle reports team

  • Is There An XML Schema Parser From Oracle ?

    Is XML parser available from oracle different from Xml Schema parser ? Is schema parser available at all ? Where can I download it ? I tried a brief search and could not find ?
    Help appreciated.
    Thanx
    Soorya

    Thank you. I got it. I am trying to validate against an existing schema. But it always enters the "XMLParseException" handler.
    Could you direct me to the documents which gives some examples ? or a 3 lines to validate would be helpful.
    Thanx again.
    Soorya
    null

  • Sdo_cs.transform on Compaq tru64 UNIX

    We have managed to get sdo_cs.transform function working on NT after applying the latest patches. We now need to have it work on Compaq Tru64 Ver 4.0F where we have just installed Oracle 8.1.6.3.0 with all the latest patches.
    We get the error:
    "ORA-03113: end-of-file on communication channel"
    whenever we try the sdo_cs.transform function.
    The following code works on our NT installation but fails on the UNIX installation:
    SQL> SELECT * FROM AMG56_AGD66;
    PLACE_NAME
    POSITION(SDO_GTYPE, SDO_SRID, SDO_POINT(X, Y, Z), SDO_ELEM_INFO, SDO_ORDINATES)
    AMG56_AGD66
    SDO_GEOMETRY(2001, 81938, SDO_POINT_TYPE(498910, 6966131, NULL), NULL, NULL)
    SQL> SELECT c.place_name "Name",
    2 c.position.sdo_srid,
    3 c.position.sdo_point.x "Easting 1",
    4 c.position.sdo_point.y "Northing 1",
    5 c.position,
    6 sdo_cs.transform(c.position,m.diminfo,82413)
    7 FROM AMG56_AGD66 c, user_sdo_geom_metadata m
    8 WHERE m.table_name = 'AMG56_AGD66'
    9 AND m.column_name = 'POSITION';
    SELECT c.place_name "Name",
    ERROR at line 1:
    ORA-03113: end-of-file on communication channel
    SQL> SELECT * FROM AMG56_AGD66;
    SELECT * FROM AMG56_AGD66
    ERROR at line 1:
    ORA-03114: not connected to ORACLE
    SQL>
    Any ideas???
    Regards
    Peter Cohen
    null

    Hi Peter,
    I believe that functionality was broken in the field test version of coordinate systems that shipped in 8.1.6 only for transforming data stored in the SDO_POINT type. I'm not sure, but I doubt this will be patched on tru64 unix.
    If you need to get this working you might want to try storing your point data using the elem_info_array and the ordinate array rather than the optimized point type.
    This problem is fixed in 8.1.7.
    Hope this helps,
    dan

Maybe you are looking for

  • IMac G5 - hang on start-up with roaring fans

    Hi all Problem occured after trying to instal CD that came with WD-external hard disk 250Gb. My friends iMac G5 will not cont when starting-up after showing the Apple. • Showing Apple and moving it slightly down with a jump (less than 1cm) • No rotat

  • Why won't Mail allow centered images, as they are sent?

    I am on a Macbook Po using 10.8.3. My trouble is with Mail. But this has been an ongoing problem for years. I send a lot of drawings and photos via email. When I send them I frequently center them in Mail. They look great. But when I send the file th

  • Customer payment advice - where can I look up payment advice that are used

    Hi Guru, I use FEB3 to look for payment advices created and use them to apply for payment.  Once I use the particular payment advice,  I am unable to view that advice through FEB3 again.  If I need to view the advice again,  where can I do it??

  • Open a file in safari crashes

    when I go to upload a file by selecting file / open file. It begins to load Imovie project library and safari freezes. Is there any way I can make it so that when I go to upload a file. As in trying to upload pictures to facebook that it opens Iphoto

  • How do you stop tabs from displaying "Connecting..." forever and even after the pages have loaded?

    Even after all of my pages have loaded, the tabs continue to say "Connecting..." I don't have any kind of add-on/plugin like tabrenamer are anything that should be affecting the titles of my tabs. This can be an inconvenience when working with severa