EvermindJSPWriter.java is missing!!!

Hi,
I installed Ora92home and development suite on one machine.
I create a jsp page and one javabean. I can run the jsp. However, I got the following error message when I put breakpoints in jsp and javabean, and then debug them.
Unable to find source for package com.evermind.server.http, filename EvermindJSPWriter.java.
The code is below.
<%@ page contentType="text/html;charset=windows-1252"%>
<jsp:useBean id ="OurBean" scope="page" class="InTechs.mypackage.UserDataBean" />
<HTML>
<HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=windows-1252">
<TITLE>
Hello World
</TITLE>
</HEAD>
<BODY>
<H2>
The current time is:
</H2>
<P>
<% out.println((new java.util.Date()).toString()); %>
</P>
<h3>
Using Bean
</h3>
<%
String userName = request.getParameter("Name");
out.print(OurBean.getSSN());
out.print("\n\n");
out.print(OurBean.getID());
%>
</BODY>
</HTML>
Javabean is below.
package InTechs.mypackage;
import javax.swing.JPanel;
public class UserDataBean extends JPanel
//default constructor
public UserDataBean()
public int getID()
return 7;
public void setID(String sName)
public int getSSN()
return 3;
public void setSSN(String sName)
Many thanks in advance.
Chuck

I tried your example as is in JDev 903.1035.
I first create a new project.
Created a new JSP.
Added your jsp code.
Then I created the Javabean.
Then I compiled and ran the JSP. It worked fine.
See if you can duplicate what I did..

Similar Messages

  • Cant log on to my net-bank because i got a error message "java is missing". So how do i got java?

    Cant log on to my net-bank because i got a error message "java is missing". So how do i got java?
    This problem started after installation of osx mountain linon yesterday!
    I have tryed to look for java updates but cant find any.
    So what do i do???

    http://osxdaily.com/2012/08/01/install-java-in-os-x-mountain-lion/

  • Upgrade to 18.0 has disabled Java even though plugin checker says Java 7 Update 10 is up to date, yet webpages using java display "missing plug in" error

    Attempting to install the "missing plug-in" using the Firefox prompts results in Java 7 Update 10 being installed, re-installing it is successful and does not resolve the issue, Firefox 18 refuses to allow/display java content even with the proper updated version of Java installed.
    This problem ONLY occurred immediately following this mornings update to Firefox 18.0.

    Context:
    Yesterday: Java working fine.
    This morning: Update to Firefox 18.0
    Java will not work, not at all even with Java 7 Update 10 installed, not even the "verify java version" applet at http://www.java.com/en/download/installed.jsp will display.
    When attempting to view/display any java content the "missing plug-in" error bar at the top of the page displays and attempting to install the required plug-in via that method does not resolve the issue even though the correct version of Java is installed and the plug-in checker verified it was "up-to-date".

  • Why are Java SASLFactories missing when called via PL/SQL but not from JRE?

    Hi
    This may be quite a technical point about SASL and JCE Providers etc OR it may just be a question about how Oracle PL/SQL interfaces with Java.
    The background is that I am trying to get a Java opensource library to run in Oracle DB - this is for specialized communication from Database to other servers.
    The library uses a SASL mechanism to authenticate with the server and this (appears) to rely on JCE Providers installed and provided by the JRE.
    I have some Java code working which uses the library - this runs OK in NetBeans/Windows environment and also using Linux/Oracle JRE directly such as:
      +# $ORACLE_HOME/jdk/bin/java -classpath "./MyMain.jar:./OtherSupport.jar" package.TestClient+
    However it refuses to work (throws a NullPointerException) when called from PL/SQL.
      +FUNCTION send_a_message (iHost IN VARCHAR2,+
         iPort IN NUMBER,
        +iLogin IN VARCHAR2,+
        +iPasswd IN VARCHAR2,+
         iRecipient IN VARCHAR2,
         iMessage IN VARCHAR2) RETURN NUMBER
       AS LANGUAGE JAVA
       NAME package.TestClient.sendATextMessage(java.lang.String, int, java.lang.String, java.lang.String, java.lang.String, java.lang.String) return int';
    In the Java code this is:
       public static int sendATextMessage(String iHost,
         int iPort,
         String iLogin,
         String iPasswd
         String iRecipient,
         String iMessage)
    I've tracked the issue down to there being no SaslClientFactories (via Sasl.getSaslClientFactories()) showing when called from PL/SQL whereas 3 are available when run from within Java directly. This via:
       Enumeration<SaslClientFactory> facts = Sasl.getSaslClientFactories();
       System.out.println("Found Sasl Factories [" & (facts != null)  & "] size[" & Collections.list(facts).size() & "]");
    So, is there some aspect of Java initialisation that I'm missing when calling from PL/SQL (which means SASL factories aren't getting loaded into JRE) or is there something different in SASL setup?
    Any pointers appreciated.
    Thanks
    Dave

    Ok, after a bit of reading and general hacking about I have got this working.
    What I hadn't initially understood/remembered is that for a Stored Procedure the JVM installed on file system with Oracle isn't actually used - java code is loaded into the database and hence a different set of base functions are available. The following is a good explanation of this http://docs.oracle.com/cd/B14117_01/java.101/b12021/appover.htm#BGBIBDAJ
    So "out of the box" the Oracle Database appears to come loaded with only two of the Sun security providers i.e. no com.sum.security.SASL
    >
    OBJECT_NAME             OBJECT_TYPE     STATUS   TIMESTAMP
    com/sun/security/auth/NTSid  JAVA CLASS    VALID   2013-02-14:14:08:57
    com/sun/security/jgss/GSSUtil    JAVA CLASS    VALID   2013-02-14:14:08:57
    >
    This is from:
    >
    SELECT
      object_name,
      object_type,
      status,
      timestamp
    FROM
      user_objects
    WHERE
      (object_name NOT LIKE 'SYS_%' AND
       object_name NOT LIKE 'CREATE$%' AND
       object_name NOT LIKE 'JAVA$%' AND
       object_name NOT LIKE 'LOADLOB%') AND
       object_type LIKE 'JAVA %' AND
       object_name LIKE 'com/sun/security%'
    ORDER BY
      object_type,
      object_name;
    >
    My solution (which may well be a work-around) is the following:
    1) Downloaded JDK Source and extracted "com.sun.security.sasl" java code to my project
    2) Added following code to my Stored Procedure ()
    >
    Enumeration<SaslClientFactory> saslFacts = Sasl.getSaslClientFactories();
    if (!saslFacts.hasMoreElements()) {
      System.out.println("Sasl Provider not pre-loaded");
      int added = Security.addProvider(new com.sun.security.sasl.Provider());
      if (added == -1) {
        System.out.println("Sasl Provider could not be loaded");
        System.exit(added);
      else {
        System.out.println("Sasl Provider added");
    >
    3) Built my JAR file with the sasl package embedded (note: could only find Java 6 code, so had to comment out some GSS lines - but wasn't intending to use these)
    4) Loaded JAR to oracle via "loadjava".
    5) Add permissions (only found this out after a couple of failed runs)
    >
    call dbms_java.grant_permission('XMPP', 'SYS:java.security.SecurityPermission', 'putProviderProperty.SunSASL', '' );
    call dbms_java.grant_permission('XMPP', 'SYS:java.security.SecurityPermission', 'insertProvider.SunSASL', '' );
    >
    6) Run gives the following:
    >
    Sasl Provider not pre-loaded
    Sasl Provider added
    ...etc...
    >
    It works!. I confess I'm not sure of the implications of this for multiple calls/performance and if it will need to be added for each stored procedure call - may post back.
    For completeness I should point out that after my load the Security providers look like this:
    >
    OBJECT_NAME             OBJECT_TYPE     STATUS   TIMESTAMP
    com/sun/security/auth/NTSid    JAVA CLASS    INVALID  2013-02-15:09:11:36
    com/sun/security/jgss/GSSUtil    JAVA CLASS    INVALID  2013-02-15:09:11:37
    com/sun/security/sasl/Provider    JAVA CLASS    VALID    2013-02-15:10:03:21
    >
    i.e. the original couple are "INVALID" !
    Dave
    Edited by: 946763 on Feb 26, 2013 2:35 AM

  • Java File Missing while import

    Hi,
       When I try to import a project into the workspace, only one java file is missing(showing error : R3View does not exist).
       Before I import the project, the folder contains that java file in gen_wdp folder. but after import, it doesnt. It automatically got deleted. I dint know how it happens. I have taken one copy of that java file. So I have created a new java file(R3View.java) in gen_wdp folder and copied the code. Now it works fine. I have taken this backup folder.
      When I try to import it next time, the same problem exists. Actually the folder contains all the java files before import.
    Why this problem occurs? Kindly help me out.
    Regards,
    Kalai

    Hi,
    As abhilash stated the folder gen_wdp always have generated code based upon web dynpro metadata.
    You cann't contribute code by placing any souce file in this directory. That you have to do in some source directory that is generally "src\packages".
    If you place code in gen_wdp folder and reload the project, do a dc build, or simple project build ....... the file will get deleted.
    Regards,
    Ashwani Kr Sharma

  • AQ Servlet Help - AQHttp.java is  missing

    Have installed Oracle OAS 10g R2 on SUSE 8.
    The aim to to get the Oracle AQ servlet working.
    I have been following the Oracle Streams Advanced Queueing Guide:
    [http://docs.oracle.com/cd/E11882_01/server.112/e11013.pdf]
    Now, to test the AQ servlet it suggests:
    cd $ORACLE_HOME/rdbms/demo
    javac AQHttp.java
    My problem is that this Java source file is missing.
    I have checked the RDBMS 10g and 11g installed homes on the DB server as well and again class does not exists.

    Answer was to download and install the "Examples CD for 11g R2" (linux_11gR2_examples.zip) on the 11g database server. Includes all the AQ example/demo scripts mentioned in the Application Developers Guide.
    Note for versions < 11g , the examples CD was called the "Companion CD", so get that if you are on the older versions.
    After installing, the $ORACLE_HOME/rdbms/demo directory went from containing just aqxml.conf to:
    aadvdemo.sql cdemdpit.c cdemoplb.c dmxfdemo.java occiuni2_korean.txt sadvuwk.sql
    ADDRESS.java cdemdpit.dat cdemoqc2.c Emp.java occiuni2_russian.txt securefile
    anydata.sql cdemdplp.c cdemoqc.c epgdemo.sql occiuni2.sql smdim.sql
    anydset.sql cdemdplp.dat cdemoqc.sql exfdemo.sql occiuni2.typ smxmv1.sql
    anytype.sql cdemdplp.sql cdemorid.c extdemo0.sql occixa.cpp smxmv2.sql
    aqbzdemo.tar cdemdpno.c cdemorid.h extdemo1.sql oci02.c smxrw.sql
    aqdemo00.sql cdemdpno.dat cdemorid.sql extdemo2.c oci02.sql strmatp.sql
    aqdemo01.sql cdemdpro.c cdemort.c extdemo2.h oci03.c strmatREADME.txt
    aqdemo02.sql cdemdpro.ctl cdemort.h extdemo2.sql oci03.sql strmats.sql
    aqdemo03.sql cdemdpro.dat cdemosc.c extdemo3a.java oci04.c strmatu.sql
    aqdemo04.sql cdemdpss.c cdemosc.sql extdemo3.java oci04.sql strmmon.c
    aqdemo05.sql cdemdpss.dat cdemoses.c extdemo3.sql oci05.c strmmv1README.txt
    aqdemo06.sql cdemo1.c cdemoses.h extdemo4.c oci05.sql strmmv1.sql
    aqdemo07.sql cdemo2.c cdemoses.sql extdemo4.h oci06.c strmmv2README.txt
    aqdemo08.sql cdemo3.c cdemosp.c extdemo4.sql oci06.sql strmmv2.sql
    aqdemo09.sql cdemo4.c cdemosp.h extdemo5.c oci07.c strmmv2s.sql
    aqdemo10.sql cdemo5.c cdemostc.c extdemo5.h oci07.sql strmmvp1.sql
    aqdemo11.sql cdemo6.cc cdemostc.h extdemo5.sql oci08.c strmmvp2.sql
    aqdemo12.sql cdemo6.h cdemosyev.c extdemo6.c oci08.sql strmqp1.sql
    AQDemoServlet.java cdemo81.c cdemosyev.sql extdemo6.h oci09.c strmqry1README.txt
    AQHttp.java cdemo82.c cdemosyex.sql extdemo6.sql oci09.sql strmqry1.sql
    AQHttpRq.java cdemo82.h cdemothr.c fdemo1.for oci10.c summit2.sql
    aqjmsdemo01.java cdemo82.sql cdemothr.h fdemo2.for oci10.sql tyevdemo.sql
    aqjmsdemo02.java cdemoanydata1.c cdemoucb.c fdemo3.for oci11.c ulcase10.ctl
    aqjmsdemo03.java cdemoanydata1.sql cdemoucbl.c fgacdemo.sql oci11.sql ulcase10.sql
    aqjmsdemo04.java cdemoanydata2.c cdemoucb.sql giffile.dat oci12.c ulcase11.ctl
    aqjmsdemo05.java cdemoanydata2.sql cdemouni.c inhdemo.sql oci12.sql ulcase11.dat
    aqjmsdemo06.java cdemobj.c cdemoup1.c keystore oci13.c ulcase11.sql
    aqjmsdemo07.java cdemobj.h cdemoup2.c lobs oci13.sql ulcase1.ctl
    aqjmsdemo08.java cdemocoll.c cdemoupk.c maporder.sql oci14.c ulcase1.sql
    aqjmsdemo09.java cdemocoll.h cdemoupk.sql mddemo2.sql oci14.sql ulcase2.ctl
    aqjmsdemo10.java cdemocor1.c cdemoxml.c mddemo.sql oci15.c ulcase2.dat
    aqjmsdmo.sql cdemocor.c clobdemo.dat mdemo1.cpp oci15.sql ulcase3.ctl
    aqjmsdrp.sql cdemocor.h dattime1.sql mdemo1.h oci16.c ulcase3.sql
    aqjmskprb01a.sql cdemocor.sql dattime2.sql mdemo1o.cpp oci16.sql ulcase4.ctl
    aqjmskprb01b.sql cdemocp.c dattime3.sql mdemo1.sql oci17.c ulcase4.dat
    aqjmskprb01c.sql cdemocpproxy.c dattime4.sql mdemo1.typ oci17.sql ulcase4.sql
    aqjmskprb01d.sql cdemocpproxy.sql demo_rdbms32.mk MesgListener.java oci18.c ulcase5.ctl
    aqjmskprb01.java cdemocp.sql demo_rdbms64.mk Message.java oci18.sql ulcase5.dat
    aqjmsREADME.txt cdemodp0.h demo_rdbms.mk mymdemo1.h oci19.c ulcase5.sql
    aqorademo01.java cdemodp.c dmabdemo.java nchdemo1.c oci19.sql ulcase6.ctl
    aqorademo02.java cdemodp.h dmabdemo.sql nlsdemo0.sql oci20.c ulcase6.dat
    aqoradmo.sql cdemodp_lip.c dmaidemo.java nlsdemo1.sql oci20.sql ulcase6.sql
    aqoradrp.sql cdemodr1.c dmaidemo.sql nlsdemo2.sql oci21.c ulcase7.ctl
    AQPropServlet.java cdemodr1.h dmapplydemo.java nlsdemo3.sql oci21.sql ulcase7.dat
    aqxml01.xml cdemodr1.sql dmardemo.java nlsdemo4.sql oci22.c ulcase7e.sql
    aqxml02.xml cdemodr2.c dmardemo.sql nlsdemo5.sql oci22.sql ulcase7s.sql
    aqxml03.xml cdemodr2.h dmdtdemo.sql o8demo.sql oci23.c ulcase8.ctl
    aqxml04.xml cdemodr2.sql dmdtxvlddemo.sql o8idemo.sql oci23.sql ulcase8.dat
    aqxml05.xml cdemodr3.c dmexpimpdemo.java obndra.c oci24.c ulcase8.sql
    aqxml06.xml cdemodr3.h dmglcdemo.java occiaqlis.cpp oci24.sql ulcase91.dat
    aqxml07.xml cdemodr3.sql dmglcdem.sql occiaqop.cpp oci25.c ulcase92.dat
    aqxml08.xml cdemodsa.c dmglrdemo.java occiaqop.typ oci25.sql ulcase93.dat
    aqxml09.xml cdemodsa.sql dmglrdem.sql occiblob.cpp ociaqarraydeq.c ulcase94.dat
    aqxml10.xml cdemodsc.c dmhpdemo.sql occiclob.cpp ociaqarrayenq.c ulcase95.dat
    aqxml.conf cdemodsc.h dmkmdemo.java occicoll.cpp ociaqdemo00.c ulcase96.dat
    aqxmldemo.ear cdemodt.c dmkmdemo.sql occidemod.sql ociaqdemo01.c ulcase9.ctl
    aqxmldmo.sql cdemoext.c dmnbdemo.java occidemo.sql ociaqdemo02.c ulcase9.sql
    aqxmldrp.sql cdemoext.dat dmnbdemo.sql occidesc.cpp oci_f.sed ulcase.sh
    aqxmlhtp.sql cdemofil.c dmnmdemo.java occidml.cpp oci_m.sed viewdemo.sql
    aqxmloc4j.cert cdemofo.c dmnmdemo.sql occiinh.cpp ociucb32.mk xademo1.sql
    aqxmlREADME.txt cdemofor.c dmocdemo.java occiinh.typ ociucb.c xademo2.sql
    blobdemo.dat cdemoin1.c dmocdemo.sql occilbar.cpp ociucb.mk xmlgen1.sql
    calldemo.sql cdemoin1.h dmpademo.java occimb1.cpp olsdemo.sql xmlgen2.sql
    Cars.java cdemoin1.sql dmshgrants.sql occimb1.sql olsdrp.sql xmltype1.sql
    case1.rcv cdemoin2.c dmsh.sql occiobj.cpp ori_f.sed xmltype2.sql
    case2.rcv cdemoin2.h dmsvcdemo.java occiobj.typ orl_f.sed xmltype3.java
    case3.rcv cdemoin2.sql dmsvcdem.sql occipobj.cpp orl_m.sed xmltype3.sql
    case4.rcv cdemoin3.c dmsvodemo.java occipobj.typ oro_f.sed xrwutl.sql
    cbdem1.cob cdemoin3.h dmsvodem.sql occipool.cpp oro_m.sed xstream
    cbdem2.cob cdemoin3.sql dmsvrdemo.java occiproc.cpp ort_f.sed xtdemo01.dat
    cbdem3.cob cdemol2l.c dmsvrdem.sql occiscp.cpp PERSON.java xtdemo01.sql
    cdcdemo.sql cdemolb2.c dmtreedemo.java occistre.cpp readpipe.c xtdemo02.sql
    cdemdp9i.sql cdemolb.c dmtxtfe.sql occiuni1.cpp resultcache.sql xtdemo03.dat
    cdemdpco.c cdemolb.dat dmtxtnmfdemo.java occiuni1.sql rman2.sh xtdemo03.sql
    cdemdpco.dat cdemolb.h dmtxtnmf.sql occiuni2.cpp ruldemo.sql xtdemo04.dat
    cdemdpin.c cdemolbs.c dmtxtsvmdemo.java occiuni2_hindi.txt sadv91.sql xtdemo04.sql
    cdemdpin.dat cdemolb.sql dmtxtsvm.sql occiuni2_japanese.txt sadvdemo.sql xtsetup.sql

  • JDBC 8.1.6.0+OCI+Java 1.2/1.3 javai.dll missing dll

    Hi,
    I'm trying to run the latest JDBC OCI based driver with 1.2 or 1.3. It starts but the VM quickly reports a missing "javai.dll" which seems to be required by ocijdbc8.dll.
    This dll does appear anywhere in 1.2, 1.3 JRE or JDK or our Oracle 8i software.
    Apparently this dll was available with Java 1.1 ?
    Is the JDBC driver really 1.2 or greater compliant?
    Thanks

    I am currently running linux (Red Hat 6.2) with Oracle 8.1.6 standard edition. And I hope to use JDK 1.3 and the OCI driver, is this possible?
    Has anyone ever gotten this to work?
    If so where do I download the driver? I can only find the dirvers for NT and Solaris, if they are on the 8.1.6 download which zip file are they in?
    Thanks in advance,
    Todd Lynch

  • SMD + Java Services Missing on the System Copy Installation of SolMan

    Hello,
    I Installed Solution Manager with system copy option.
    Backup a database from source and restore it on the target
    I did the Export system image from the source and loaded it on the target system in one of the steps of SAPinst on the target system.
    When the process finished I found out that the SMD doesnt show up on the SAP Management Console and can't see any JAVA service running.
    It's Missing something ? I'll appreciate yours help.
    Regards,
    Sergio Maziano

    Hi Sergio,
    What release of SolMan?
    Please check note 1317500 (J2EE Engine does not start after target system installation)
    SMD is another SAP System  (Solution Manager Diagnostics) which is installed with SAPINST since new versions
    Regards.

  • Java install missing plugin

    I'm trying to update my GoPro Hero3 and it promts me to update my Java. I do this, then I test the Java and it says "missing plugin". I've made sure that my Java is checked and enabled in my preferences. I've closed and restarted my browser. I'm not sure what else to do. Any suggestions out there?

    Yes.

  • Java 7u51 "Missing installer.dll".

    Hi,
    There appears to be a mistake in update 51 when dealing with silent installs(both 32 and 64bit versions).
    In this particular case we are updating from 7u45 to 7u51(previous updates leading up to u45 have worked perfectly)
    We have been successfully updating JRE for some time now on roughly 1000 systems. However Update 51 fails consistently.
    Both methods(.exe or MSI) fail with the same "File missing C:\Program Files (x86)\Java\Jre7\Bin\\installer.dll"
    Notice the "\\" part - that really is part of the error message.
    Help please.
    Regards,
    Russ.

    Hey Russ
    I dont think that using the MSI is supported any more.
    I've been distributing Java for 10+ years now and have also always extracted the MSI (and this WAS supported earlier) https://www.java.com/en/download/faq/deploy-sysadmin.xml check the MSI Install link (supports v. 6)
    The problem is, that the MSI only seems to be a container that contains a zip file and like. The actual install is done via a custom action in the MSI. Not my idea of a real MSI.
    Using the EXE directly using https://www.java.com/en/download/help/silent_install.xml seems to work. Not perfectly.. but better.
    Regards,
    Christian

  • Color2.java:89: missing method body, or declare abstract

    I am creating a color chooser applet but I keep receiving this error please help me to resolve this as my heads wrecked.
    Here is my code:
    import java.awt.*;
    import java.applet.*;
    import java.awt.event.*;
    public class Color2 extends Applet implements AdjustmentListener, ActionListener
              Scrollbar redbar, grebar, blubar;
              TextField rfield, gfield, bfield;
              myColorSquare cSquare = new myColorSquare();
         public void init()
              cSquare.setSize(100,100);
              this.add(cSquare);
              Panel n= new Panel(new GridLayout(3,3));
              n.add(new Label("Red (0-255)"));
              this.redbar = new Scrollbar(Scrollbar.HORIZONTAL,0,10,0,265);
              this.redbar.addAdjustmentListener(this);
              n.add(redbar);
              this.rfield = new TextField("0",5);
              this.rfield.addActionListener(this);
              n.add(rfield);
              n.add(new Label("Green(0-255)"));
              this.grebar = new Scrollbar(Scrollbar.HORIZONTAL,0,10,0,265);
              this.grebar.addAdjustmentListener(this);
              n.add(grebar);
              this.gfield = new TextField("0",5);
              this.gfield.addActionListener(this);
              n.add(gfield);
              n.add(new Label("Blue(0-255)"));
              this.blubar = new Scrollbar(Scrollbar.HORIZONTAL,0,10,0,265);
              this.blubar.addAdjustmentListener(this);
              n.add(blubar);
              this.bfield = new TextField("0",5);
              this.bfield.addActionListener(this);
              n.add(bfield);
              this.add(n);
         private void updateColor()
              int red = this.redbar.getValue();
              int green = this.grebar.getValue();
              int blue = this.blubar.getValue();
              this.rfield.setText(""+red);
              this.gfield.setText(""+green);
              this.bfield.setText(""+blue);
              Color aColor = new Color(red,green,blue);
              this.cSquare.updateColor(aColor);
         public void adjustmentValueChanger(AdjustmentEvent e)
              this.updateColor();
         public void ActionPerformed(ActionEvent e)
                   if (e.getSource().equals(this.rfield))
                        int red = new Integer(this.rfield.getText()).intValue();
                        this.redbar.setValue(red);
                   if(e.getSource().equals(this.rfield))
                        int blue = new Integer(this.bfield.getText()).intValue();
                        this.blubar.setValue(blue);
                   if (e.getSource().equals(this.bfield))
                        int green = new Integer(this.gfield.getText()).intValue();
                        this.grebar.setValue(green);
                   this.updateColor();
              class myColorSquare extends Canvas
              Color c = Color.black;
              public void paint(Graphics g);
                        g.setColor(this.c);
                        g.fillRect(0,0,this.getSize().width, this.getSize().height);
              public void updateColor(Color v)
                        this.c = v;
                        this.repaint();

    What happens if:
    public void adjustmentValueChanger(AdjustmentEvent e)
    is changed to:
    public void adjustmentValueChanged(AdjustmentEvent e)

  • Java file missing in par file

    Hi all,
    We have a par file. After importing that par file in NWDS we could see only jsp pages. No Java file exists. 
    This par file is downloaded from our portal which is created by previous developer. I think previous developer did not selected "Include Source code" option while exporting par file to portal.
    Now we need to changes in R/3 side and in java file. For that we need to know the Function Module or Report used in R/3. I think this data will be in java file. 
    Can anybody let me know how to find the java file related to a par file?
    Regards,
    Swapna.

    Hi Bobby/n@v!n,
    Thank you for the inputs given.
    But I heard that we cant get the same java file (like original) when we use the Java Decompiler. We will get the file which gives the same output with different code. I'm not sure if we can the use the file given by java decompiler.
    Is there any other way to get the original java file of given par file?
    Regards,
    Swapna.

  • Why is the Options/Content Turn off Java check missing. Java won't turn off

    You removed the Check box from the Options/Content menu to turn off Java, and turning it off under app's has no effect. Java stays on no matter what I do.

    removing useful features to force users to use third-party add-ons is not considered "as part of an effort to simplify the Firefox options " your complicating simple things and creating problems just of the sake of it .
    the content used to have 3 things, 2 options are gone , load images automatically and enable java script .
    the jave scirpt had three sub options that i used frequently
    now I'm forced to install firefox 22 ,it will solve the problem.

  • NullPointerException & java file missing!

    I have a JSP which gets the following error, the problem is that the
              WEBLOGIC GENERATED JAVA FILE IS NOT THERE! When I search my hard drive, the
              _somethingwrongerrorpage.java file is NOT FOUND!!!!!
              The jsp code is at the bottom.
              Tue Jul 11 13:35:31 MDT 2000:<E> <ServletContext-General> Servlet failed
              with Ex
              ception
              java.lang.NullPointerException
              at
              jsp_servlet._jsp._somethingwrongerrorpage._jspService(_somethingwrong
              errorpage.java:75)
              at weblogic.servlet.jsp.JspBase.service(JspBase.java:27)
              at
              weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubIm
              pl.java:123)
              at
              weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubIm
              pl.java:141)
              at
              weblogic.servlet.internal.RequestDispatcherImpl.forward(RequestDispat
              cherImpl.java:143)
              at sitemaint.SiteMaintServlet.service(SiteMaintServlet.java:46)
              at javax.servlet.http.HttpServlet.service(HttpServlet.java:865)
              at
              weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubIm
              pl.java:123)
              at
              weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletCon
              textImpl.java:742)
              at
              weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletCon
              textImpl.java:686)
              at
              weblogic.servlet.internal.ServletContextManager.invokeServlet(Servlet
              ContextManager.java:247)
              at
              weblogic.socket.MuxableSocketHTTP.invokeServlet(MuxableSocketHTTP.jav
              a:363)
              at
              weblogic.socket.MuxableSocketHTTP.execute(MuxableSocketHTTP.java:263)
              at weblogic.kernel.ExecuteThread.run(ExecuteThread.java, Compiled
              Code)
              Here's the JSP :
              <HTML>
              <BODY>
              <%@ page isErrorPage="true" %>
              <BR>
              <H1>Site Maint Error page </H1>
              <BR>An error occured in the bean. Error Message is: <%=
              exception.getMessage() %><BR>
              Stack Trace is : <PRE><FONT COLOR="RED"><%
              java.io.CharArrayWriter cw = new java.io.CharArrayWriter();
              java.io.PrintWriter pw = new java.io.PrintWriter(cw,true);
              exception.printStackTrace(pw);
              out.println(cw.toString());
              %></FONT></PRE>
              <BR>
              User Name was : <PRE><FONT COLOR="RED"><%
              out.println(request.getParameter("user"));
              %></FONT></PRE>
              </BODY>
              </HTML>
              Thanks,
              Mark
              

              Also if you're deploying a webApp, make sure to have a keepgenerated entry in the
              webapp deployment descriptor.
              It looks like the implicit variable exception is null the time you're making the
              call exception.getMessage. I would suggest to change this line to exception !=
              null ? exception.getMessage() : "whatever error message you see fit".
              Try this with all other variables you're accessing in the JSP.
              This way you can pinpoint the location where you're trying dereferencing null.
              If the implicit variable exception is the cause try the combination of <%page
              errorPage=...%> in the page causing the error and <%page isErrorPage="true"%>
              in page handling the error.
              Hope this helps.
              Mamadou Cisse
              @ Kadius System Ltd.
              www.kadius.com
              Luke Taylor <[email protected]> wrote:
              >
              >
              >Mark Sellers wrote:
              >>
              >> I have a JSP which gets the following error, the problem is that the
              >> WEBLOGIC GENERATED JAVA FILE IS NOT THERE! When I search my hard drive,
              >the
              >> _somethingwrongerrorpage.java file is NOT FOUND!!!!!
              >>
              >
              >Have you configured the server to keep generated files? You have to
              >explicitly set the "keepgenerated" flag to "true" in the initArgs
              >parameter for the JSPServlet (see the weblogic.properties file).
              >
              >
              >--
              > Luke Taylor.
              > PGP Key ID: 0x57E9523C
              

  • Java plugin missing in browsers even after installing latest update

    i am unable to download youtube videos online. any browser i use, throw a error message saying Java plugin is not installed. i click on the link and download and install the latest version of Java. I own a iMac 2011 intel and running all updated OS and browsers and plugins.,  still unable to do anything. Any suggestions ??

    Clicktoflash makes getting youtube videos quite easy... & avoids the need for any sites that require java.

Maybe you are looking for