Java EE 5.0 support schedule?

hi
has Oracle published any release schedules on Java EE 5.0 support availability in JDeveloper and OC4J?

"This JSR is to develop Java EE 5, the next release of the Java Platform, Enterprise Edition, targeted to ship in the second quarter of 2006."
http://www.jcp.org/en/jsr/detail?id=244
http://java.sun.com/javaee/5/

Similar Messages

  • Support schedule print out for every maintainance contract

    Hi Experts
    Below is the scenario
    I create a maintainance contract with below items
    Contract num:900001    customer:A contract period- 1yr
    Material           Description                             Qty          Maint fee
    12345              car- GMC-full maint                   2             1000*2=2000/month
    10001              car-maruti-ful maint                   5              50*5=250/month
    20001              truck-engine serv only               2              2000*2=4000/month
    20016              truck-ful maint                          1              6000*1=6000/month
    For this contract I need to generate, print and send a service schedule for the customer A when I create contract.
                    SUPPORT SCHEDULE
    Contract num:900001    customer:A contract period- 1yr
    Description              Qty          Maint fee
    car maint                   7             2250/month
    truck service              3             10000/monnth
    Total = 12250
    How can I generate this output and make it available for print for each contract?should we use any form?
    Request your valuable and earliest comments.
    Thanks
    Banu

    James,
    Failure to properly print ligatures would not typically have anything to do with RIP processing. Assuming that your "Xerox printer" has a RIP that has Adobe PostScript, fonts in the PostScript stream (or in the orignal PDF file if appropriate)
    always override any fonts that are resident in the RIP. And for that matter, for PostScript printing, the PostScript printer driver is irrelevant as well since InDesign generates all the PostScript and simply uses the driver to channel that PostScript to the spooler and hence to the printer itself.
    As suggested in earlier responses in this thread, the symptoms suggest that the print stream was generated without all fonts embedded (or
    properly embedded) in the print stream. The original poster (Jason) did not indicate what version of InDesign he was using but there was a problem with a very old InDesign version (possibly InDesign 2.0 or 3.0) in which one of the print dialog's font options did not work correctly and omitted some glyphs from the output stream. That problem definitely was fixed long ago. It is certainly no longer an issue with InDesign 4 (CS2) and InDesign 5 (CS3) in which case make sure that in the InDesign print dialog's "graphics" pane, you set "fonts" to "download complete" (or "download subset") and also enable the "download PPD fonts" option. (If you are using an older InDesign version and having this problem, simply change "download subset" to "download complete" or vice versa - still enabling the "download PPD fonts" option - and see if that solves the problem).
    If you are running either InDesign 4 or 5 and still having this problem after making the appropriate print dialog fonts settings adjustment, we'd be very interested in (1) knowing exactly what printer is having this problem and (2) your sending us a simple example InDesign document exhibiting this issue.
    - Dov

  • Java.sql.SQLException: Non supported character set: oracle-character-set-17

    Hi,
    i am trying to execute an Oracle procedure from JDBC. The procedure accepts a Nested table as an input parameter. Definition of the nested table is given below.
    Database – Oracle 10g.
    Application Server – JBOSS 4.2.1
    I get the following exception._
    java.sql.SQLException: Non supported character set: oracle-character-set-178
    at oracle.gss.util.NLSError.throwSQLException(NLSError.java:46)
    I.  JDBC  Code_
    Session s = HibernateUtil.getSession();
    Transaction tr = s.beginTransaction();
    con=s.connection();
    oraConn = (OracleConnection) con.getMetaData().getConnection();
    TableObject obj=new TableObject();
    obj.setId(new Integer(123));//Tested ok, stroing in DB
    obj.setDescr("test"); // this line throwing error
    obj.setCre_user(new Integer(456));
    obj.setUpd_user(new Integer(789));
    obj.setXfr_flag("Y");
    ArrayList al=new ArrayList();
    al.add(obj);
    Object[] objAray = al.toArray();
    ArrayDescriptor arrayDescriptor =ArrayDescriptor.createDescriptor("T_TEST_SYN", oraConn);
    ARRAY oracleArray = new ARRAY(arrayDescriptor, oraConn, objAray);
    cs = (OracleCallableStatement)oraConn.prepareCall("call PKG_OBJ_TEST.accept_ui_input(?) ");
    cs.setArray(1, oracleArray);
    cs.execute();
    tr.commit();
    public class TableObject implements SQLData{
    private String sql_type = "T_OBJ_TEST";
    private int id;
    private String descr;
    //private Date cre_date;
    private int cre_user;
    //private Date upd_date;
    private int upd_user;
    private String xfr_flag;
    public TableObject()
    public TableObject (int id,String descr,int cre_user,int upd_user,String xfr_flag)
    // this.sql_type = sql_type;
    this.id = id;
    this.descr = descr;
    // this.cre_date=cre_date;
    this.cre_user=cre_user;
    //this.upd_date=upd_date;
    this.upd_user=upd_user;
    this.xfr_flag=xfr_flag;
    public String getSQLTypeName() throws SQLException {
    return "T_OBJ_TEST";
    public void readSQL(SQLInput stream, String typeName) throws SQLException {
    //sql_type = typeName;
    id=stream.readInt();
    descr=stream.readString();
    //cre_date=stream.readDate();
    cre_user=stream.readInt();
    //upd_date=stream.readDate();
    upd_user=stream.readInt();
    xfr_flag=stream.readString();
    public void writeSQL(SQLOutput stream) throws SQLException {
    try {
    stream.writeInt(this.id);
    System.out.println("Iddddd");
    stream.writeString(this.descr);
    System.out.println("Desccccccccccccccc"+":"+descr);
    //stream.writeDate(cre_date);
    stream.writeInt(this.cre_user);
    System.out.println("userrrrrrrrrrrr");
    //stream.writeDate(upd_date);
    stream.writeInt(this.upd_user);
    System.out.println("upd uiserrrrrrrrrrr");
    stream.writeString(this.xfr_flag);
    System.out.println("flagggggggggggggggggggg"+xfr_flag);
    }catch (SQLException se) {
    System.out.println("Table object sql exception");
    se.printStackTrace();
    catch (Exception e) {
    System.out.println("Table object exception");
    * @return the id
    public int getId() {
    return id;
    * @param id the id to set
    public void setId(Object obj) {
    Integer iobj= (Integer)obj;
    this.id =iobj.intValue();
    * @return the descr
    public String getDescr() {
    System.out.println("getDescr "+descr);
    return descr;
    * @param descr the descr to set
    public void setDescr(Object obj) {
    System.out.println("setDescr "+obj);
    String sobj = (String)obj;
    this.descr=sobj.toString();
    System.out.println("setDescr "+obj);
    * @return the cre_user
    public int getCre_user() {
    return cre_user;
    * @param cre_user the cre_user to set
    public void setCre_user(Object obj) {
    Integer iobj=(Integer)obj;
    this.cre_user = iobj.intValue();
    * @return the upd_user
    public int getUpd_user() {
    return upd_user;
    * @param upd_user the upd_user to set
    public void setUpd_user(Object obj) {
    Integer iobj=(Integer)obj;
    this.upd_user = iobj.intValue();
    * @return the xfr_flag
    public String getXfr_flag() {
    return xfr_flag;
    * @param xfr_flag the xfr_flag to set
    public void setXfr_flag(Object obj) {
    this.xfr_flag = (String)xfr_flag;
    II.  Oracle database object details
    Details of Object and Nested table created in the database.
    T_TEST_SYN is a public synonym created for t_tab_obj_test
    CREATE OR REPLACE TYPE t_obj_test as object (
    id number(10),
    descr varchar2(100),
    --cre_date  date,
    cre_user number(10),
    --upd_date  date,
    upd_user number(10),
    xfr_flag varchar2(1),
    CONSTRUCTOR FUNCTION t_obj_test ( id IN NUMBER DEFAULT NULL,
    descr IN varchar2 default null,
    --cre_date  in date      default null,
    cre_user in number default null,
    --upd_date  in date      default null,
    upd_user in number default null,
    xfr_flag in varchar2 default null ) RETURN SELF AS RESULT ) ;
    CREATE OR REPLACE TYPE BODY t_obj_test as
    CONSTRUCTOR FUNCTION t_obj_test ( id IN NUMBER DEFAULT NULL,
    descr IN varchar2 default null,
    --cre_date  in date      default null,
    cre_user in number default null,
    --upd_date  in date      default null,
    upd_user in number default null,
    xfr_flag in varchar2 default null ) RETURN SELF AS RESULT IS
    BEGIN
    SELF.id := id ;
    SELF.descr := descr ;
    --SELF.cre_date  := cre_date ;
    SELF.cre_user := cre_user ;
    --SELF.upd_date  := cre_date ;
    SELF.upd_user := cre_user ;
    SELF.xfr_flag := xfr_flag ;
    RETURN ;
    END ;
    END ;
    CREATE OR REPLACE TYPE t_tab_obj_test AS TABLE OF t_obj_test ;
    CREATE OR REPLACE PACKAGE BODY PKG_OBJ_TEST AS
    PROCEDURE accept_ui_input ( p_tab_obj_test in T_TAB_OBJ_TEST ) IS
    BEGIN
    FOR row IN p_tab_obj_test.First .. p_tab_obj_test.LAST
    LOOP
    INSERT INTO OBJ_TEST ( ID,
    DESCR,
    CRE_DATE,
    CRE_USER,
    UPD_DATE,
    UPD_USER,
    XFR_FLAG )
    VALUES ( p_tab_obj_test(row).ID,
    p_tab_obj_test(row).DESCR,
    NULL,
    p_tab_obj_test(row).CRE_USER,
    NULL,
    p_tab_obj_test(row).UPD_USER,
    p_tab_obj_test(row).XFR_FLAG ) ;
    END LOOP ;
    COMMIT ;
    END accept_ui_input ;
    END PKG_OBJ_TEST;
    /

    Check your CLASSPATH enviroment variable. Try to add something like c:\Ora10g\jlib\orai18n.jar.
    From "JDBC Developer’s Guide and Reference":
    orai18n.jar
    Contains classes for globalization and multibyte character sets support
    This solved the same error in my case.

  • Does WLS 7 support Java 1.4.1_06? And what is the latest version of Java that WLS7 does support?

    Can anybody give me a clear answer (or a reference to it) of what versions Java that WLS7 does support?
    We're interested in upgrading Java on our servers to version 1.4.1_06 - does WLS7 support this?
    And what is the latest version of Java that WLS7 does support?
    Rgds,
    Søren Andersen
    Cph/Denmark

    Soren,
    WebLogic 7.0 supports JDK 1.31
    WebLogic 8.1 supports JDK 1.41
    Deepak
    Søren Andersen <san@[NO---SPAM]mondo.dk> wrote:
    Can anybody give me a clear answer (or a reference to it) of what versions
    Java that WLS7 does support?
    We're interested in upgrading Java on our servers to version 1.4.1_06
    - does WLS7 support this?
    And what is the latest version of Java that WLS7 does support?
    Rgds,
    Søren Andersen
    Cph/Denmark

  • Java.sql.SQLException: Non supported character set: oracle-character-set-860

    Hi,
    I am working on resultset.updateRow() and found some problem.
    I've tried the same jsp page on 2 WebLogic server
    one is on a Solaris Platfoem and another is on a NT platform
    On NT Platform it seems to be OK and update the database successfully.
    On Solaris, on error message on WebLogic log but error found in the JDBC log
    java.sql.SQLException: Non supported character set: oracle-character-set-860
    P.S. both jsp page connection to the same database server Oracle 8
    The testing JSP page:
    <%@ page language="java" import="java.sql.*, oracle.jdbc.driver.*,
    java.util.*, javax.sql.*" %>
    <html>
    <head>
    <title>Weblogic Oracle Testing - Store Procedure</title>
    <meta http-equiv="Content-Type" content="text/html; charset=big5">
    </head>
    Oracle Connection Testing
    <br>
    <body bgcolor="#FFFFFF">
    <%
    Connection conn = null;
    Statement stmt = null;
    ResultSet rs = null;
    String sql;
    Driver myDriver =
    (Driver)Class.forName("oracle.jdbc.driver.OracleDriver").newInstance();
    try {
    conn=DriverManager.getConnection("jdbc:oracle:thin:sa/z0y1z2y3@oradev01:1521
    :DEV01a");
    DatabaseMetaData DBMetaData = conn.getMetaData();
    boolean support1 =
    DBMetaData.supportsResultSetType(ResultSet.TYPE_SCROLL_SENSITIVE);
    boolean support2 =
    DBMetaData.supportsResultSetType(ResultSet.CONCUR_UPDATABLE);
    %>
    <p><%=support1%></p>
    <p><%=support2%></p>
    <%
    //create a statement
    stmt = conn.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE,
    ResultSet.CONCUR_UPDATABLE);
    //execute a query
    rs = stmt.executeQuery("SELECT tbl_web_trx_hdr.* FROM tbl_web_trx_hdr");
    int concurrency = rs.getConcurrency();
    int type = rs.getType();
    %>
    <p>concurrency: <%=concurrency%></p>
    <p>type: <%=type%></p>
    <%
    rs.moveToInsertRow();
    rs.updateString("org_idx", "CCC");
    rs.updateString("trx_num", "ABC2");
    rs.updateDate("trx_dte", java.sql.Date.valueOf("2001-06-01"));
    rs.updateString("description", "123");
    rs.insertRow();
    rs.updateRow();
    } catch (SQLException e)
    { System.out.println("SQLMessage: " + e.getMessage());
    finally
    { rs.close();
    stmt.close();
    conn.close(); }
    %>
    </body>
    </html>
    Please help
    regards,
    Fannie

    yupp finally i got the solution. . .
    I was using connection from tomcat connection pooling.
    Hence, even though i was setting the classes12.jar and nls_charset12.jar in the classpath and compiling, -In runtime tomcat was using its own classes in the common/lib folder. . .(which might not support oracle-character-set-178.)
    So just added this jars into the common/lib of tomcat instead of web-inf/lib of my project
    and things began working. . .
    Thanks for the hint jshell. . .

  • Does Java Card 2 API support all the smart card?

    Does Java Card 2 API support all the smart card? I guess all the java cards are smart card but all the smart card are not java card. so Java card 2 API supports only java card. It does not support all the smart card. Please somebody let me know wheather I am correct or not. Because I want to make an application which supports all the smart card. I am confuse wheather I have to use JavaCard API or OCF or any other framework/API. Please help me. Thanks

    I am clear with java card.
    But I want to make an application which can verify the PIN inside card and read logon certificate, which is saved inside card. Is there any framework which I can use to full fill my simple requiremnt. I dont want to deal with any applet inside card.

  • Java 6 HttpURLConnection SPNEGO support

    I am trying to access a protected resource from a server that is setup for SPNEGO authentication.
    On the client side I am logged on to the same domain and did all the required setup (at least I think so)
    for getting the identity and tickets from the Windows cache.
    When I access the resource from Internet Explorer everything works fine but when I try to access it
    from Java 6 HttpURLConnection I still get HTTP 401 error although Java 6 HttpURLConnection should support SPNEGO.
    If I attach by myself the "Negotiate..." header with the token that I build by myself I get the resource and HTTP 200
    although I receive also a Negotiate header with a token of type 96 that I cannot pass it to initSecContext as stated
    in SPNEGO RFC that I should do.
    I have two questions:
    1. What should I do in order to use the built in SPNEGO support in Java 6 for HttpURLConnection when working
    with tickets from Windows cache ?
    2. What could be the reason that I receive on the last authentication leg on HTTP 200 a token that is not of type
    context but application (value = 96) and cannot be used for fininshing the security context establishment ?
    Thanks.

    See Rhino.
    This is essentially the scripting engine that's incorporated in Java SE 6.0.
    You can ofcourse download it and use it with Java 5.0 or earlier versions.
    See also JSR 223.

  • Java.sql.SQLException: Non supported SQL92 token at position: 377:

    hi,
    i have to create oracle-java source from java program. my code is :
    ( In Java which create java source in oracle)
    strQuery = "CREATE OR REPLACE AND RESOLVE JAVA SOURCE NAMED
    \"ASCOMPONENT\" AS ";
    strQuery += "import javax.xml.parsers.DocumentBuilderFactory; ";
    strQuery += "import javax.xml.parsers.DocumentBuilder; ";
    strQuery += "import org.xml.sax.SAXException; ";
    strQuery += "import org.xml.sax.SAXParseException; ";
    strQuery += "import org.w3c.dom.Document; ";
    strQuery += "import org.w3c.dom.*; ";
    strQuery += "import java.io.*; ";
    strQuery += "import oracle.jdbc.driver.*; ";
    strQuery += "import java.sql.*; ";
    strQuery += "public class ASComponent ";
    strQuery += "\n ";
    strQuery += "{ "; // error here.../
    strQuery += "\n ";
    strQuery += "public static void readXML(String strXML,String
    strTable) ";
    strQuery += "\n ";
    strQuery += "{ ";
    strQuery += "\n ";
    strQuery += " } ";
    strQuery += "\n ";
    strQuery += " } ";
    strQuery += "\n ";
    System.out.println("Query = " + strQuery);
    stmt.executeQuery(strQuery);
    i am getting error :
    java.sql.SQLException: Non supported SQL92 token at position: 377:
    so, what is that error ?
    i think when it is getting '{ ' it is giving error...?
    how we can use token '{}' in jdbc.
    so, what is the error..?
    please help me its urgent..
    Thanks in advance...

    thanks for reply.
    according to my project requirement i have to execute that script using my java program.
    java source which i am creating in oracle is :
    CREATE OR REPLACE AND RESOLVE JAVA SOURCE NAMED "ASCOMPONENT" AS
    import javax.xml.parsers.DocumentBuilderFactory;
    import javax.xml.parsers.DocumentBuilder;
    import org.xml.sax.SAXException;
    import org.xml.sax.SAXParseException;
    import org.w3c.dom.Document;
    import org.w3c.dom.*;
    import java.io.*;
    import oracle.jdbc.driver.*;
    import java.sql.*;
    public class ASComponent
    public static void readXML(String strXML,String strTable)
    // code here
    when i am creating above program from sql prompt, it works fine.
    but when i am creting that from java program, it is giving me exception.
    my java code to create above script is :
    conn = getConnection();
    stmt = conn.createStatement();
    strQuery = "CREATE OR REPLACE AND RESOLVE JAVA SOURCE
    NAMED \"ASCOMPONENT\" AS ";
    strQuery += "\n ";
    strQuery += "import javax.xml.parsers.DocumentBuilderFactory; ";
    strQuery += "\n ";
    strQuery += "import javax.xml.parsers.DocumentBuilder; ";
    strQuery += "import org.xml.sax.SAXException; ";
    strQuery += "import org.xml.sax.SAXParseException; ";
    strQuery += "import org.w3c.dom.Document; ";
    strQuery += "import oracle.jdbc.driver.*; ";
    strQuery += "import java.sql.*; ";
    strQuery += "public class ASComponent ";
    strQuery += "\n ";
    strQuery += " { ";
    strQuery += "\n ";
    strQuery += "public static void readXML(String strXML,String strTable) ";
    strQuery += "\n ";
    strQuery += " { ";
    strQuery += "\n ";
    strQuery += " } ";
    strQuery += "\n ";
    strQuery += " } ";
    strQuery += "\n ";
    System.out.println("Query = " + strQuery);
    stmt.executeQuery(strQuery);
    so, how we can create above sql script from java program ?
    i think token " { } " is not supporting that...
    please reply , its urgent....

  • Java Plug-in / JSObject support with IE and Firefox

    Hi there,
    Basicaly, the idea behind is to write objects in Java to replace or extend functionnalities of a web page (like XMLHttpRequest object). Those objects should support event handler writen in Javascript.
    My first idea was to create JavaBeans and instantiate them through OBJECT tags in HTML (not as ActiveX objects). I don't find a way to instatiate a Javabean which was not also an applet.
    Does someone knows how to ?
    Anyway, the OBJECT tag may not work with Netscape. So, I went to use the APPLET tag with the Sun Java Plug-in.
    I've made some tests with IE and Firefox and there is at least two differences between them (both use the Sun Java Plug-in) :
    1/ Firefox / JSObject
    When you pass a Javascript object to a Java method, it seems that you
    cannot use methods like 'getMember', 'call', etc on this object.
    (invocation of the method works but returns null)
    But, if you access the same object form inside Java starting by
    JSObject.getWindows(...) and so on, it works fine.
    IE works in all cases.
    Example, with the Java applet and HTML below :
    . Java applet :
    | package JavaJS;
    |
    | import netscape.javascript.*;
    |
    | public class FirefoxApplet
    |        extends java.applet.Applet {
    |   netscape.javascript.JSObject win = null;
    |  
    |   public void init() {
    |     win = netscape.javascript.JSObject.getWindow(this);
    |   }
    |
    |   public Object getJSObjectMember( netscape.javascript.JSObject jso, String member ) {
    |     return jso.getMember(member);
    |   }
    |
    |   public netscape.javascript.JSObject getJSObjectFromPath( String jsoPath ) {
    |     String [] jsoNames = jsoPath.split("\\.");
    |     netscape.javascript.JSObject jso = win;
    |
    |     for( int i = 0; ( i < jsoNames.length ); i++ )
    |       jso = (netscape.javascript.JSObject)jso.getMember(jsoNames);
    |
    | return jso;
    | }
    |
    | public Object getJSObjectPathMember( String jsoPath, String member ) {
    | return getJSObjectMember(getJSObjectFromPath(jsoPath),member);
    | }
    | }
    [i]. HTML page :| <HTML>
    | <HEAD>
    | <TITLE>FirefoxApplet</TITLE>
    | <META http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    | <META http-equiv="Content-Script-Type" content="text/javascript">
    | <SCRIPT>
    | var ffxa = null;
    | var txa = null;
    |
    | var o = {
    | s : "object o, member s",
    | o : {
    | s : "object o.o, member s"
    | }
    | }
    |
    | function go() {
    | print(ffxa.getJSObjectMember(o,"s"));
    | print(ffxa.getJSObjectMember(o.o,"s"));
    | print(ffxa.getJSObjectPathMember("o","s"));
    | print(ffxa.getJSObjectPathMember("o.o","s"));
    | print(ffxa.getJSObjectMember(ffxa.getJSObjectFromPath("o"),"s"));
    | print(ffxa.getJSObjectMember(ffxa.getJSObjectFromPath("o.o"),"s"));
    | }
    |
    | function print( text ) {
    | txa.value = txa.value+text+"\n";
    | }
    |
    | function loaded() {
    | ffxa = document.getElementById("ffxa");
    | txa = document.getElementById("txa");
    |
    | }
    | </SCRIPT>
    | </HEAD>
    | <BODY onload="loaded()">
    | <APPLET id="ffxa"
    | code="JavaJS.FirefoxApplet.class"
    | width="0"
    | height="0"
    | MAYSCRIPT>
    | </APPLET><BR>
    | <INPUT type="button" onclick="go()" value="Go"><BR>
    | <TEXTAREA id="txa" rows="10" cols="40"></TEXTAREA>
    | </BODY>
    | </HTML>
    When the HTML page has loaded, a click on the Go button gives :
    . Firefox output :
    | null
    | null
    | object o, member s
    | object o.o, member s
    | null
    | null
    . IE output :
    | object o, member s
    | object o.o, member s
    | object o, member s
    | object o.o, member s
    | object o, member s
    | object o.o, member s
    2/ Internet Explorer / JSObject
    As we have seen in the previous example, passing Javascript object to
    an applet method works. Here, the problem comes when a Javascript object
    is pass to a method that's not an applet's method.
    If within the applet, you instantiate a new Java object and then
    call from Javascript a method on this object with a Javascript object as
    parameter then an Exception is raised when invoking that method.
    Firefox works fine here.
    Example, with the Java applet and HTML page below :
    . Java applet :
    | package JavaJS;
    |
    | public class IEApplet extends java.applet.Applet {
    |  
    |   public void init() {
    |   }
    |  
    |   public Object echo( Object object ) {
    |     return object;
    |   }
    |  
    |   public Object newEcho() {
    |     return new Echo();
    |   }
    | }
    . Java Echo class
    | package JavaJS;
    |
    | public class Echo {
    |  
    |   public Echo() {
    |   }
    |
    |   public Object echo(Object object) {
    |     return object;
    |   }
    | }
    . HTML page :
    | <HTML>
    |   <HEAD>
    |     <TITLE>IEApplet</TITLE>
    |     <META http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    |     <META http-equiv="Content-Script-Type" content="text/javascript">
    |     <SCRIPT>
    |       var iea = null;
    |       var txa = null;
    |
    |       var o = {
    |         s : "object o, member s",
    |         o : {
    |           s : "object o.o, member s"
    |         }
    |       }
    |
    |       function go() {
    |         print(iea.echo(o));
    |         print(iea.newEcho().echo(o));
    |       }
    |      
    |       function print( text ) {
    |         txa.value = txa.value+text+"\n";
    |       }
    |
    |       function loaded() {
    |         iea = document.getElementById("iea");
    |         txa = document.getElementById("txa");
    |        
    |       }
    |     </SCRIPT>
    |   </HEAD>
    |   <BODY onload="loaded()">
    |     <APPLET id="iea"
    |             code="JavaJS.IEApplet.class"
    |             width="0"
    |             height="0"
    |             MAYSCRIPT>
    |     </APPLET><BR>
    |     <INPUT type="button" onclick="go()" value="Go"><BR>
    |     <TEXTAREA id="txa" rows="10" cols="40"></TEXTAREA>
    |   </BODY>
    | </HTML>When the HTML page has loaded, a click on the Go button gives :
    . Firefox output :
    | [object Object]
    | [object Object]
    . IE output :
    | [object Object]
    with this Exception on the second method invocation :
    | java.lang.ClassCastException
    |      at sun.plugin.com.DispatchImpl.convertParams(Unknown Source)
    |      at sun.plugin.com.DispatchImpl.invokeImpl(Unknown Source)
    |      at sun.plugin.com.DispatchImpl$1.run(Unknown Source)
    |      at java.security.AccessController.doPrivileged(Native Method)
    |      at sun.plugin.com.DispatchImpl.invoke(Unknown Source)
    | java.lang.Exception: java.lang.ClassCastException
    |      at sun.plugin.com.DispatchImpl.invokeImpl(Unknown Source)
    |      at sun.plugin.com.DispatchImpl$1.run(Unknown Source)
    |      at java.security.AccessController.doPrivileged(Native Method)
    |      at sun.plugin.com.DispatchImpl.invoke(Unknown Source)There is a workaround for this, it's possible to wrap the Javascript object
    in a Java object with an applet method and then use this Java object as
    parameter.
    Anyway, my questions are : regarding points 1/ and 2/ are these bugs with the Sun Java Plug-in ? or someone could explain these behaviors ?
    Thanks for your reading.
    Software infos :
    . Firefox version 1.0.7
    . Internet Explorer version 6.0.2800.1106 / JScript version 5.6
    . Plug-in Java(TM): Version 1.4.2_08
    . JSDK version 1.4.2_08
    . Windows 2000 Server version 5.00.2195 sp4

    Please test with the new Java Plug-In available in 6u10 at http://jdk6.dev.java.net/6u10ea.html. The Java/JavaScript bridge has been completely rewritten and is now more complete and portable than ever before. Longstanding issues should be fixed with this new version. Please try it and post if you continue to have problems.

  • Java error while opening Batch Scheduler in Hyperion Workspace

    Hello Guys,
    I get this error while trying to open the Batch Scheduler in Hyperion Workspace. Please assist.
    Error:
    ; nested exception is:
    java.lang.NullPointerException

    Hello Everybody,
    I have recently installed Hyperion 11.1.2.2(Foundation Services and Interactive Reporting) in our environment.
    The installation and configuration are successful. Also when I ran a sample BQY it works fine.
    If I try to run the sample programs on the Hyperion server in their actual location, they work fine.
    I am having problem setting up the SDK remotely and run the sample program.
    I am getting the following error when trying to run the sample Login.java provided in /EPMSystem11R1/products/biplus/SDK/samples/java/
    Unable to setup SDK for Hyperion 11.1.2.2 remotely
    Please help, thanks in advance

  • Java AWT with QT support

    Is it possible to build J2SE (J2SDK1.6) with QT support on linux so that GUI rendered is with QT toolkit instead of GTK toolkit. This is for my specific usecase requirement

    Try googling for "Java QT" and see if you get any hits for QT bindings for Java.

  • Java 1.4.2_03 support on Windows 2003 RC2

    I installed Windows 2003 RC2 64-bit onto a Sun X4100.
    Put in all the drivers and tools and everything works fine.
    There is a cool tool called "LSI Logic MyManager" that utilizes java to monitor the status of the hardware OS mirror on the LSI controller.
    However, after my customer installed some of their applications, the LSI Logic MyManager couldn't start anymore. Further investigation found out that the java went quiet.
    Below are a few findings:
    1. After new installation, when java was still working, the command "java -version" will show the correct java and version installed. But now, the same command just skips a line and back to prompt.
    2. When I start the LSI Logic MyManager, it shows an error saying "Couldn't find the correct java version (1.4.2_03)"
    3. Tried installing newer java like 1.4, 1.5 and also 1.6 but the software specifically looks for 1.4.2_03 only.
    4. Tried uninstalling the software but erred with "Couldn't find the correct java version (1.4.2_03)" too
    5. Tried installing the software onto another server (the application is able to start, as well as java) and copy the whole directory back to the server with problem. Application behave the same, shows error, and java has no response (like dead).
    6. There are no newer version of LSI Logic MyManager available that hopefully supports newer java version.
    So, that'all above things that I tried to solve the mystery. Anyone, any advice or solution will be greatly appreciated. Thanks.

    Sorry for the duplicated message. It's my first post and I messed up a little with the right section.
    A new downloaded copy of the file or other versions of Java failed to install with the same error message.
    I've learned there is a product ID in the registry that must be present for the installer to run. I'm searching for this "mysterious" product ID and how to set the right Windows XP Registry entry for the JSE 1.4.2_03 version.
    I'm still not sure this will fix the problem.
    Thanks for replying.

  • Java 7 or 8 support for Crystal Server 2011 SP8

    I was searching this wonderful site and didn't see any specific about what version of Java 7 or 8 that SAP supports for Crystal Server 2011 SP8.  If anyone knows please reply back.
    Thanks,
    Adam

    Ashvin,
    I have those option but it won't create another discussion.  I am getting this error on one report:
    The viewer could not process an event. Error in File Case Usage Analysis by Patient: Encapsulating page failed.
    I have search the internet and the community network for a solution with no luck.  This happens on only one report.  It's an oracle database 11g, and the report has one subreport.  Any help would be appreciated.
    Thanks,
    Adam

  • Two related questions:  ColdFusion 10/Java applications and J2EE supported servers

    I have two related questions:
    1.  CF10 and integration with Java Web applications
    We have a couple of Java applications running on JRun and interfacing with CF9 applications.  The JRun clusters were created through the JRun Admin and, apart from lack of Axis 2.0 support, have served us well for years now.  And, as would be the case, the ColdFusion9/Java/Flash application is a critical public-facing application that the business uses for bidding on projects.
    It appears that with ColdFusion 10 on Tomcat, we will not be able to run those Java applications on a Tomcat-CF10 JVM cluster.  Is this correct?  IF so, what are our options? 
    2.  J2EE Application Servers supported by Adobe for CF10
    Which of these is correct?
    A.  This URL (http://www.adobe.com/products/coldfusion-enterprise/faq.html) states "ColdFusion 10 supports IBM® WebSphere, Oracle® WebLogic, Adobe JRun, Apache Tomcat, and JBoss."
    B.  This URL (http://wwwimages.adobe.com/www.adobe.com/content/dam/Adobe/en/products/coldfusion/pdfs/cf1 0/coldfusion10-support-matrix.pdf) states:
    "J2EE application servers: WebLogic Server 10.3, 11.1, WebSphere Application Server 7, ND 7 JBoss 5.1, 6.0, 7.1.0"
    I *think* "A" above is wrong re. support for Adobe JRun.  It does not specify a version of Apache Tomcat unless it is simply referring to the custom version the comes with CF10.
    Option "B" above shows no support of Adobe JRun or 'standard' Apache Tomcat.
    Thanks,
    Scott

    Question 1 above was answered:  "No support for Java web applications under CF10's custom version of Tomcat"
    Question 2:  No answer yet:  Is Apache Tomcat (NOT Adobe's customized version) supported for CF10 J2EE deployment?  I do not see any installation instructions on how to install CF10 on Apache Tomcat 6 or 7.
    Is anybody using Apache Tomcat as their J2EE app servers and, again, NOT Adobe's customized/limited version? 
    Thanks,
    Scott

  • Sun Java System Web Server support for Red Hat EL 5

    Does anyone have any information when the Sun Java System Web Server might be supported on Red Hat Enterprise Linux 5 Server?
    Thanks

    Certification of RHEL5 will likely happen with one of the upcoming Update releases.
    There is, as far as I know, no reason why Web Server won't run on RHEL5 today though (I use it on Fedora Core 7 without ill effect, and the RHEL trail the Fedora releases a bit in technology versions).

Maybe you are looking for

  • WOW! Major video issues here..and everywhere it seems!!

    I have the latest iTunes version and runnin Windows Vista. Multiple issues with new 64gb ipod touch..well with itunes: I can drag and drop new vids, songs pix etc to my touch, but when I go to convert to ipod verison on the vid the screen wither lock

  • Configuring BPM with the UWL

    Hello Experts, I need to set up an Universal Work List on EP server to list all the Tasks and Process including  BPM based ones... Part of Landscape is; we have an SRM Portal Working on SRM ECC, a BPM server (Which is my side basicly) and an EP Porta

  • Error upon executing driver program

    Hi guys, iam getting the following error when executing print program; I/O error from text Z_TABLE_DATA ST EN. (actually am trying to pass the subroutine pool prog.through perform statement , in that i inlcuded the standard text). Regards chandrakant

  • Library re-imported from troubled backup doing odd things

    So i had a bit of a crisis over the past few days, osx partition corrupted, my backup drive was screwed up, so i did some juggling and managed to back up as much as i could... anyway, so now im on a fresh installation of osx and installed iphoto...i

  • BEx - Query Analiser - 500 Internal Error

    Hi ALL, When I execute Query in BEx, the PORTAL logon is displayed and after input the user and pass shows the 500 Internal Error. Caused by: com.sap.mw.jco.JCO$Exception: (102) RFC_ERROR_COMMUNICATION: Connect to message server host failed Connect_P