Package servlet does not exist -- HELP!

I am trying to compile some servlet code but cannot get the compiler to see servlet.jar. I am running jakarta-tomcat-4.1.12, j2sdk1.4.0, and j2sdkee1.3.1 on WIN 2k. I have copied servlet.jar to the j2sdk1.4.0\jre\lib\ext directory and added j2sdk1.4.0\jre\lib\ext\servlet.jar to the CLASSPATH environment variable. I have read the other messages pertaing to this subject in this Forum, and this seems to work, but I still get the same errors. What else do I need to do? What am I missing?
Thanks in Advance,
Ken

I've tried it with and without the servlet.jar file on the CLASSPATH with no success. I am going to post my relevant environment variables. Maybe another pair of eyes can detect a mistake that I am missing. Thanks.
CLASSPATH .;F:\JAVA\Catalina\jakarta-tomcat-4.1.12\common\lib;F:\JAVA\j2sdk1.4.0\jre\lib\ext\servlet.jar
J2EE_HOME F\JAVA\j2sdkee1.3.1
JAVA_HOME F:\JAVA\j2sdk1.4.0
PATH %SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem;F:\JAVA\j2sdk1.4.0\bin;F:\JAVA\j2sdkee1.3.1\bin;F:\JAVA\Catalina\jakarta-tomcat-4.1.12\common\lib;F:\JAVA\Catalina\jakarta-ant-1.3\bin

Similar Messages

  • ATMTag.java:5: package javax.servlet does not exist

    My j2ee jdk1.4.2 is not supporting javx package.
    i already set all pathh and class path.
    anybody can help me.
    details are given below ::
    C:\AVA\J2EE Programs\JSP\JSPCustomTag>javac ATMTag.java
    ATMTag.java:5: package javax.servlet does not exist
    import javax.servlet.*;
    ^<br>
    ATMTag.java:6: package javax.servlet.http does not exist
    <br>
    import javax.servlet.http.*;
    <br>
    ATMTag.java:18: cannot resolve symbol
    symbol : class TagSupport
    location: class ATMTag
    public class ATMTag extends TagSupport{
    <br> ^
    ATMTag.java:29: cannot resolve symbol
    symbol : class JspTagException
    location: class ATMTag
    public int doStartTag() throws JspTagException{
    <br> ^
    ATMTag.java:31: cannot resolve symbol
    symbol : class JspWriter
    location: class ATMTag
    <br> JspWriter out =pageContext.getOut();
    ^
    ATMTag.java:31: cannot resolve symbol
    symbol : variable pageContext
    location: class ATMTag
    <br> JspWriter out =pageContext.getOut();
    ^
    ATMTag.java:56: cannot resolve symbol
    symbol : variable pageContext
    location: class ATMTag
    pageContext.getOut().write(str);
    <br> ^
    ATMTag.java:60: cannot resolve symbol
    symbol : variable EVAL_PAGE
    location: class ATMTag
    return EVAL_PAGE;
    ^
    8 errors

    When compiling servlets etc, you need to include in your classpath a jar file with all the javax.* classes defined in it.
    For Tomcat this is called servlet.jar and is in (I think) [TOMCAT_HOME]/shared/lib or /common/lib
    For J2EE 1.4 Server, the jar is [J2EE_HOME]/lib/j2ee.jar
    Where the _HOME directory is the directory where you installed J2EE.
    Include this jar file in your classpath when compiling.
    Good luck,
    evnafets

  • Package javax.servlet does not exist, package javax.servlet.http does not

    Dear All,
    I am a newbie to JAVA.
    I installed JDK1.6.0_04, then NetBeans IDE 6.0
    I tried compiling an example servlet, but got this error message:
    package javax.servlet does not exist, package javax.servlet.http does not exist
    I tried locating these packages, but in vain. I also tried setting the CLASSPATH to many values, still it did not work.
    Can anyone, please, help me with this.
    Should I be able to see/locate these packages, do I have to download them?
    Thank you very much.

    davidgoodman wrote:
    Dear All,
    I am a newbie to JAVA.
    I installed JDK1.6.0_04, then NetBeans IDE 6.0
    I tried compiling an example servlet, but got this error message:
    package javax.servlet does not exist, package javax.servlet.http does not exist
    What servlet/JSP engine do you plan to deploy to? Tomcat, perhaps?I think it's Tomcat (C:\Program Files\Apache Software Foundation\Apache Tomcat 6.0.14). Are there other engines that come with NetBeans IDE 6.0 (when I downloaded NetBeans, I chose ALL)
    >
    If so, you'll need to put the servlet JAR in your CLASSPATH. (servlet-api.jar for Tomcat 5.5 and earlier, servlet.jar for 6.0 >and later.)
    I tried locating these packages, but in vain.
    You won't find them until you realize that you have to deploy that servlet someplace.How to deploy?
    I also tried setting the CLASSPATH to many values, still it did not work.
    See above. What were you planning to set CLASSPATH to?First I set to:
    C:\Program Files\Apache Software Foundation\Apache Tomcat 6.0.14\lib (because I found jar named servlet-api.jar in this folder)
    Later I added this:
    C:\Program Files\Java\jdk1.6.0_04\lib (out of trial-and-fail)
    Finally I added some paths that lead to a library such as
    C:\Program Files\glassfish-v2\lib
    C:\Program Files\glassfish-v2\lib\ant\lib
    Can anyone, please, help me with this.
    Should I be able to see/locate these packages, do I have to download them?
    You have to get a servlet/JSP engine. Step 1.Thank you for your help

  • Package java.servlet does not exists

    I am getting this error:
    c:Program Files\Java\jdk1.6.0_10\bin>javac -Xlint HelloServlet.java
    HelloServlet.java:2:package java.servlet does not exists
    import java.servlet.;
    ^
    HelloServlet.java:4; cannot find symbol
    symbol: class GenericServlet
    public class HelloServlet extends GenericServlet
    ^
    5 errors
    i am using jdk1.6.0_10. i tried to locate the servlet.jar file in the \lib directory, but the jar file was not there. how can i download one and include it in \lib?
    import java.io.*;
    import java.servlet.*;
    public class HelloServlet extends GenericServlet {
    public void service(ServletRequest request, ServletResponse response) throws ServletException, IOException {
    response.setContentType("text/html");
    PrintWriter pw=response.getWriter();
    pw.println("<B>Hello!");
    pw.close();
    }

    jatilau wrote:
    forgive my ignorance.That's ok, we're all here to learn; but while (most) people on the forums are smart, they're (unfortunately) not all-knowing. They can't possibly know something about you or your environment unless you tell them.
    it is because i have no one to look up at for help with java, except for the book (The Complete Reference, Java 2, 3rd Edition, Naughton & Schildt) and, of course, some times this forum.There's the whole Internet available to you. Remember, Google is your friend.
    please, will anyone tell me how to find out what server type and version does JDK 1.6.0_10 provide? It doesn't. Java comes in three 'editions':
    Micro (JME, earlier J2ME which is meant for mobiles and other similar platforms)
    Standard (JSE, earlier J2SE which is what you're using, it's meant for core Java applications, like the sort you might use on your desktop.)
    Enterprise (JEE, earlier J2EE which is for server side code. This includes JSPs, Servlets, EJBs etc)
    i did not find any information about this in the book.Probably because it's a Java 'Standard' Edition (JSE or J2SE) book
    What you need, to learn about servlets, is a JEE book. I'd suggest Head First Servlets and JSP from O'Reilly. Otherwise, follow the link I gave earlier to find tutorials.
    To get started, you'll need a JDK, which you say you already have and a server. I'd suggest you get Tomcat. You will also find the servlet-api.jar after you setup Tomcat. This is an implementation of the JEE specification for servlets. This contains the javax.servlet.* packages you'll need to compile. Beyond this, the scope of what servlets are and how to deploy etc is rather large and best left to one of the afore-mentioned tutorials.

  • Javax.servlet does not exist  (please help)

    i was going to try my first example nad follwing head first
    package com.myweb.trying;
    import  javax.servlet.*;
    import  javax.servlet.http.*;
    import  java.io.*;
    public class Serv1 extends HttpServlet {
         public void doPost(HttpServletRequest request,HttpServletResponse response)throws IOException,ServletException{
              response.setContentType("text/html");
              PrintWriter out = response.getWriter();
              out.println("Shutup and see this");
              String c = request.getParameter("color");
              out.println("<be>the color selected is"+ c);
    }on giving the command
    C:\project1\app1>javac -classpath c:\Tomcat6\lib\servlet-api.jar:classes:. -d classes src\com\myweb\trying\Serv1.java
    this is what i got
    src\com\myweb\trying\Serv1.java:3: package javax.servlet does not exist
    import  javax.servlet.*;
    ^
    src\com\myweb\trying\Serv1.java:4: package javax.servlet.http does not exist
    import  javax.servlet.http.*;
    ^
    src\com\myweb\trying\Serv1.java:7: cannot find symbol
    symbol: class HttpServlet
    public class Serv1 extends HttpServlet {
                              ^
    src\com\myweb\trying\Serv1.java:8: cannot find symbol
    symbol  : class HttpServletRequest
    location: class com.myweb.trying.Serv1
           public void doPost(HttpServletRequest request,HttpServletResponse respon
    se)throws IOException,ServletException{
                              ^
    src\com\myweb\trying\Serv1.java:8: cannot find symbol
    symbol  : class HttpServletResponse
    location: class com.myweb.trying.Serv1
           public void doPost(HttpServletRequest request,HttpServletResponse respon
    se)throws IOException,ServletException{
                                                         ^
    src\com\myweb\trying\Serv1.java:8: cannot find symbol
    symbol  : class ServletException
    location: class com.myweb.trying.Serv1
           public void doPost(HttpServletRequest request,HttpServletResponse respon
    se)throws IOException,ServletException{
                         ^
    6 errors please help what im doing wrong
    i have latest ver.6 of tomcat installed

    exchange the : in your classpath with a ;
    windows, in its infinite wisdom, uses a semi-colon as the path separator. the colon is what you would use if you were on unix, macosx, or linux.
    == eldrich

  • Package javax.servlet does not exist - settings appear to be correct

    laugh as I write this post...it's hardly a "new topic."...but everything seems set just as it should be...
    Okay...I'm a seasoned programmer in every language but JAVA. Here's the issue...every time I try to use the Core Servlets book/website by Marty Hall and Larry Brown I get hung up on the packages. This time, I downloaded and followed step by step what the website said to do...it was even preconfigured for me! Alas...I am getting the following compliation errors on a "simple packagless" program with NetBeans:
    Compiling 1 source file to C:\Servlets+JSP\HelloServlet\build\classes
    C:\Servlets+JSP\HelloServlet\src\helloservlet\HelloServlet.java:2: package javax.servlet does not exist
    import javax.servlet.*;
    C:\Servlets+JSP\HelloServlet\src\helloservlet\HelloServlet.java:3: package javax.servlet.http does not exist
    import javax.servlet.http.*;
    C:\Servlets+JSP\HelloServlet\src\helloservlet\HelloServlet.java:13: cannot find symbol
    symbol: class HttpServlet
    public class HelloServlet extends HttpServlet {
    C:\Servlets+JSP\HelloServlet\src\helloservlet\HelloServlet.java:14: cannot find symbol
    symbol : class HttpServletRequest
    location: class HelloServlet
    public void doGet(HttpServletRequest request,
    C:\Servlets+JSP\HelloServlet\src\helloservlet\HelloServlet.java:15: cannot find symbol
    symbol : class HttpServletResponse
    location: class HelloServlet
    HttpServletResponse response)
    C:\Servlets+JSP\HelloServlet\src\helloservlet\HelloServlet.java:16: cannot find symbol
    symbol : class ServletException
    location: class HelloServlet
    throws ServletException, IOException {
    6 errors
    BUILD FAILED (total time: 0 seconds)
    These are my environment settings (note that the JAVAX package is located under the src folder in Java)
    Catalina Home:
    C:\apache-tomcat-6.0.10
    CLASSPATH:
    C:\apache-tomcat-6.0.10\lib\servlet-api.jar;
    C:\apache-tomcat-6.0.10\lib\jsp-api.jar;
    C:\apache-tomcat-6.0.10\lib\el-api.jar;
    C:\Servlets+JSP;..;..\..;
    C:\Program Files\Java\jdk1.6.0_03\src
    JAVA_HOME
    C:\Program Files\Java\jdk1.6.0_03
    Path:
    C:\Program Files\Java\jdk1.6.0_03\bin;%PATH%
    Any ideas (excluding the one that maybe I should let my hair grow out, put on some tackey shorts and sandles and start palying an instrument in the streets of Austin for living?)

    cabkats wrote:
    You are then suggesting that I make the corrections directly to the files in apache using notepad instead of using the envir. variables?No I am not suggesting that. I am suggesting that you need to read the documentation about the product(s) and set them up the way they require, rather than blindly think that the CLASSPATH environment variable is some magical entity.
    I will try this, but I was hoping that since my IDE auto configured (with exception to java_home) that I would not have to do this. I wil give it try....thanks for the suggestion.See, you're using an IDE. Like I mentioned, IDEs do not use the CLASSPATH environment variable. You need to set up your project in your IDE in such a way that it knows what the dependent jars are. I'm sure there's a way to add jars to your project's dependencies.

  • ANT script genrated error: package javax.servlet does not exist

    Hi there,
    I am running ANT and confronted this message:
        [javac] Compiling 1 source file to C:\eclipseProjects\tomcat_test
        [javac] C:\eclipseProjects\tomcat_test\WEB-INF\src\WebTest.java:4: package javax.servlet does not exist
        [javac] import javax.servlet.ServletException;
        [javac] ^I googled around and found this solution:
    servlet-api.jar is the jarfile that contains javax.servlet.ServletException and javax.servlet.http.* which are imported by WebTest.java and must therefore be found in the classpath. If javac doesn't find this jar (or the javax.servlet packages), it will say (or shout, depending on my and javac's mood): [the error message]
    well...I set in the classpath the location of the servlet-api.jar
    (found at: C:\Tomcat\common\lib)
    I set it with the environment variable (windows xp)
    Just as it's shown here: http://www.cs.usask.ca/~wew036/latex/env-env.jpg
    NOTHING :-(
    could anyone assist, thanks

    Hi..seems u r new to J2ee.. dont worry its a very small problem:
    Here is the solution.. yes u have to edit the environment variables:..
    I am using J2EE sdk 1.4 and running on xp
    This is the classpath setting:
    C:\Sun\AppServer\lib\j2ee.jar;
    This is the PATH setting
    C:\Sun\AppServer\bin;
    Good Luck :)

  • Package javax.servlet does not exists - Cannot resolve symbol

    Hello,
    I am using JDK 1.3.1.06 version. I wanted to compile a simple servlet using this. But I am getting plenty of errors for all javax package. Why it is not able to find javax package classes?
    The following is the program I have tried to compile.
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.io.*;
    public class TestServlet extends HttpServlet
    public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
    process(request, response);
    public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
    process(request, response);
    private void process(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
    PrintWriter out = response.getWriter();
    out.println("Hello World !");
    I am getting errors like this :
    Package javax.servlet does not exists.
    cannot resolve symbol
    symbol : class HttpServlet
    Please advice me some solutions fast.
    Thanking you,
    ForumAns.

    javax.servlet doesn't come with the standard jdk. It's part of J2EE.
    If you have tomcat, you can use the server.jar that comes with tomcat.
    Or you can just download J2EE sdk instead.
    I am getting errors like this :
    Package javax.servlet does not exists.
    cannot resolve symbol
    symbol : class HttpServlet

  • Package javax.servlet does not exists ?

    Hello,
    I am using JDK 1.3.1.06 and trying to compile a simple Servlet. But getting errors as javax package classes does not exits and cannot resolve symobol.
    The following is the program I am trying to compile:
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.io.*;
    public class TestServlet extends HttpServlet
         public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
              process(request, response);
         public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
              process(request, response);
         private void process(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
              PrintWriter out = response.getWriter();
              out.println("Hello World !");
    I am getting errors such as :
    Package javax.servlet does not exists.
    cannot resolve symbol
    symbol : class HttpServlet
    Please advice me of any solution asap. Deep trouble.
    Thanking you,
    Forumans.

    Just a guess...
    JDK 1.3.1.06 This represents the Java language in the form of a JVM and the Java API (like java.lang.String.)
    ServletThis is in J2EE, which if you look above was not mentioned.
    If you look in the java docs for the JDK you will also find that javax.servlet does not exist.
    I would guess however that you could start here - http://java.sun.com/j2ee/
    However, keep in mind that your servlet still needs to run in something, so you better make sure that you are compiling against the correct J2EE server for what you are doing.

  • HELP! Boot up Error.. %IOSXEBOOT-4-ABORT: (rp/0): Package provisioning file {/tmp/packages.conf} does not exist.

    Hi Cisco Support Community,
    I have a problem with my Cisco 3850, it does not load completely
    Does any one encountered these error? please do help
    Here is the logs:
    Booting...Initializing and Testing RAM ++++@@@@####...################################++@@++@@++@@++@@++@@++@@++@@++@@++@@++@@++@@++@@++@@++@@++@@++@@done.
    Memory Test Pass!
    Base ethernet MAC Address: 7c:95:f3:64:26:00
    Interface GE 0 link down***ERROR: PHY link is down
    Initializing Flash...
    flashfs[7]: 0 files, 1 directories
    flashfs[7]: 0 orphaned files, 0 orphaned directories
    flashfs[7]: Total bytes: 6784000
    flashfs[7]: Bytes used: 1024
    flashfs[7]: Bytes available: 6782976
    flashfs[7]: flashfs fsck took 1 seconds....done Initializing Flash.
    Getting rest of image
    Reading full image into memory....done
    Reading full base package into memory...: done = 79121160
    Nova Bundle Image
    Kernel Address    : 0x6042d350
    Kernel Size       : 0x402ecf/4206287
    Initramfs Address : 0x60830220
    Initramfs Size    : 0xdb98e6/14391526
    Compression Format: .mzip
    Bootable image at @ ram:0x6042d350
    Bootable image segment 0 address range [0x81100000, 0x82110000] is in range [0x80180000, 0x90000000].
    @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@boot_system: 380
    Loading Linux kernel with entry point 0x81653a10 ...
    Bootloader: Done loading app on core_mask: 0xf
    ### Launching Linux Kernel (flags = 0x5)
    ata1.00: failed to set xfermode (err_mask=0x100)
    ata1.00: failed to set xfermode (err_mask=0x100)
    ata1.00: failed to set xfermode (err_mask=0x100)
    %IOSXEBOOT-4-ABORT: (rp/0): Package provisioning file {/tmp/packages.conf} does not exist.
    %IOSXEBOOT-4-ABORT: (rp/0): Package provisioning file {/tmp/packages.conf} does not exist.

    Download the ver you want to use onto a flash drive, then use it to load the ios, after it loads you can copy the ios to flash.
    http://www.cisco.com/c/en/us/products/collateral/switches/catalyst-3850-series-switches/deployment_guide_c07-727067.html

  • Import, package util does not exist

    Hi all,
    I installed Tomcat 5.0 for Java WSDP and after Java Web Services Developer Pack 2.0. Hence I created a directory "SAMLTestTool" into the folder
    "tomcat50-jwsdp/webapps/ROOT/"
    and I put inside some JSP files and some other directory (WEB-INF, META-INF...).
    In some jsp file there is this line:
    <%@page import="util.RequestUtil"%>and in the subdirectory "SAMLTestTool/WEB-INF/classes/util" there is the file "RequestUtil.class".
    But when I try to open these file through the browser (for example "http://localhost:8080/SAMLTestTool/service_provider.jsp"), this is the error:
    org.apache.jasper.JasperException: Unable to compile class for JSP
    An error occurred at line: 59 in the jsp file: /SAMLTestTool/service_provider.jsp
    Generated servlet error:
        [javac] Compiling 1 source file
    tomcat50-jwsdp/work/Catalina/localhost/_/org/apache/jsp/SAMLTestTool/service_005fprovider_jsp.java:6: package util does not exist
    import util.RequestUtil;What does it mean? Where should I put the folder "util" in a such way that this package will be found?

    ROOT is a special folder configured to pertain to an empty context root.
    If you put a folder there it is simply a folder but you are trying to use it as a context root.
    So either keep what you have and put your util folder in:
    tomcat50-jwsdp/webapps/ROOT/WEB-INF/classes
    or
    Move your SAMLTestTool to:
    tomcat50-jwsdp/webapps/
    Hope that helps.

  • Compilation error : package "coins" does not exist

    Hi
    I am new to Jva, though not new to programming.
    I want to run a program I downloaded from internet But I cant since I got the following error
    SimpleMain.java20 package coins does not exist.
    import coins.HirRoot;
                  ^(it points class HirRoot)
    My GUESS is that I have to tell the compiler that I have my HirRoot class file somewhere. But I don't know how.
    This is what I did:
    I am at directory:
    downloads/COINS/coinsBKP/examples/ And I want to compile SimpleMain.java inside of it
    I have my classes (.class files) at directory:
    downloads/COINS/coinsBKP/classes/coins/and Its source files (.java files) at directory:
    donwloald/COINS/coinsBKP/src/coins/I input :
    javac -d ../classes/coins/ SimpleMain.javaAnd I got many many errors.
    What can I do?
    btw I have tried also
    javac -d ../classes/ SimpleMain.java
    javac -d ./classes/ SimpleMain.javaand didn't work
    Please help me, Any help will be greatly appreciated.

    Thanks for your answer.
    But I still could not compile it ...
    I did this...enriquez-guillermos-macbook:examples nacho$ javac -Xlint:unchecked -d ../classes/ -cp ../classes/ SimpleMain.java
    SimpleMain.java:188: cannot find symbol
    symbol  : method setOptionalParam()
    location: interface coins.sym.Subp
          lPrintf.setOptionalParam();
                 ^
    SimpleMain.java:911: warning: [unchecked] unchecked call to add(E) as a member of the raw type java.util.List
          lList.add(hir.intConstNode(0));
                   ^
    SimpleMain.java:914: warning: [unchecked] unchecked call to add(E) as a member of the raw type java.util.List
          lList.add(lExpRepeat);
                   ^
    1 error
    2 warnings
    enriquez-guillermos-macbook:examples nacho$ As you suggested, I checked setOptionalParam() method. and it wasn't in Subp.java but it was found it in SubpImpl,java.
    So How can I do this?
    In C something like this might solutionate this problem...
    #import "SubpImpl.java" but in java?
    Also, I've noticed that SubpImpl is a Subclass of Subp so, importing or including a subclass "header" in the mother class file does not make sense Does it?
    Is this a program problem or is the way I am compiling it?

  • Error: Package StockTablePanel does not exist

    I am running j2sdk1.4.0 on RedHat Linux 7.1. I think I set everything up correctly. Compiling simple packages with no custom packages imported works and runs. But when I have a custom package imported like
    import MyTable.*;
    an error ... Package MyTable does not exist occurs.
    The file MyTable.java compiled into several class files. The import package name matches the class definition in the MyTable.java file. The class files are in the current working directory which should be picked up by default, but since this did not work, I did try -classpath . with no success.
    The funny thing is that -verbose indicates that these packages are found and loaded, but this darn error keeps a class file from being created.
    Please, can someone shed some light on my problem. I am tired of surfing the web for an answer?
    Thank You,

    Thankyou for your help. I think that I overly simplied my problem, because the use of -d did not seem to do the job. This is exactly what I have.
    Directory: ~/JTraining/Ch7/StockTableTabPanel
    Files: 1. PortfolioTotalsPanel.java
    2. StockTablePanel.java
    3. StockTableTabPanel.java
    File 1 generates when compiled (javac -d classes <file1>)
    classes/PortfolioTotalsPanel$1.class
    classes/PortfolioTotalsPanel.class
    File 2 generates when compiled (javac -d classes <file2>)
    classes/StockTablePanel$1.class
    classes/StockTablePanel.class
    classes/StockTablePanel$StockTableModel.class
    File 3 when compiled returns errors (javac -d classes -classpath classes <file3>)
    StockTableTabPanel.java:14 package StockTablePanel does not exist
    import StockTablePanel.*;
    ^
    StockTableTabPanel.java:15 package PortfolioTotalsPanel does not exist
    import PortfolioTotalsPanel.*;
    ^
    2 errors
    I tried absolute and relative pathnames with -d and -classpath. After the above errors while using the -verbose option, the [loading <jar and class> messages indicated that all the generated files of file1 and file2 except the two $1 files were loaded. So this error appears to indicated that two anonymous inner classes (created by event handle code) are the classes which cannot be found. But then again I might be way off and this is not the problem at all.
    Thank you for any help that could be provided,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Error message: package Jfxcore does not exist

    I have a file "Jfxcore.jar" in C:\Project. I added C:\Project\Jfxcore.jar to the classpath ( in xp control panel).
    My app, test1, has the line: import Jfxcore.*;
    It is also located in C:\Project
    when I compile from the commad line with : javac test1.java or javac -cp . test1.java i get the error: package Jfxcore does not exist.
    importing any of the stuff that comes with java works fine. It only fails when I try to import my own jar or class files.
    I think I must have missed a step somewhere. Can anyone see what I am doing wrong? Thanks for the help.

    Inside the jar file it has about 20 classes but they are named with
    "fxcore.classname" instead of Jfxcore.classname
    I did not write the jar file and thought if the file name is Jfxcore.jar then that is what I should import.
    when I use import fxcore.* it works.
    I knew I was doing something stupid. Thanks for the help, you pointed me in the right direction.

  • SNOTE 203963 - open prog J_6GPU01 - error PACKAGE J6G0 does not exist

    Hi,
    my basis consultant has informed me that he has applied SAP NOTE 203963 to over come an issue we are having in Slovakia. Howvever when I try and modify the program J_6GPU01 I get the following error message
    Package J6G0 does not exist
    Further analysis shows this to be a TR414 error.
    Has anyone seen this issue before or know why the package might not have been created. I have searched for other notes and even this forum for help but J6G0 doesn't seem to exist anywhere.
    This note was applied using the instructions attached to the note. However my basis consultant informed me this was an old way of applying notes.
    Any help would be appreciated.
    Regards, Paul

    Trips:
    - Take a look if this note is valid for your system.
    - Take a look if this note is valid for your support package.
    - Take a look in pre-requisits in this note.

Maybe you are looking for

  • Combining multiple photos into a panorama

    am i able to fuse multiple photos into a single panorama with iphoto? and if not is there a program for mac that will let me do this?

  • Export Data

    Hi, While saving the Billing document of Export order i am getting error "Export data missing" because of this accounting documents are not generating I want to know that what export data we need to maintain? Regards, Rahul

  • User exit for data source 0HR_LSO_1

    Hi , I have to write the enhancement ABAP code for data source 0HR_LSO_1 which is related to module " training and event management "(also known as LMS or LSO) in ECC 6.0 . So how can I find out appropriate user exit for the same .I have to concentra

  • Post Upgrade to R2: Task Sequence Fails with 0x80070057

    one SCCM 2012 server for a while now (June/July of 2013) and have had no issues with OSD's and software deployments.  Today I decided to upgrade to R2 from CU3 and I thought the upgrade process went really well.  But after the upgrade I attempted to

  • Mapping issue on Copy head to line

    In the TBIT41  05_Example.pdf in the second example--"Copy Head to line" i tried it in that way, but it didn't work. the example is like this(the following linked image) http://picasaweb.google.com/rensheng33/XI02/photo#4992312551117357074 and what i