IN need of great rescue---Newbie

{color:#0000ff}I work for a campus and I am having a hard time specially with JES proxy {color}
{color:#0000ff}
I do have the following difficulties.{color}
{color:#0000ff}*1st,* i get the forbidden message when i try to connect to sites with https://* through my proxy{color}
{color:#0000ff}*2nd*, How can i clear the cache sections for the proxy as it is filling my disk space {color}
{color:#0000ff}
i want to sweep all things out and start afresh...or is that possible at all?{color}
{color:#0000ff}*3rd,* we are having a big problem with antivirus solutions ...the scenario is that we have more than a thousand LAN connected PCs and only a 132 clients licensed symantec antivirus running from a windows 2003 server and pushed to all them...and for all other PCs what we used to do was use the kaspersky ...and all of a sudden the serial is now in a blacklist...which left us with no virus protection and NOW we are trying to use the AVG 8 free edition till we try to convince the management to buy the symantec or any other corporate edition of antivirus ...SO we would like to know if we can use the AVG update files cached on the proxy and keep them or actually see them if they are being cached...{color}
{color:#0000ff}*4th,* i know i know my Qs may be funny ...but i am so newbie..NEWBIE...and last thing i want to ask is what materials do you recommend me to master the JES web proxy server...{color}
{color:#0000ff}
all procedural guidances and solutions are welcome!{color}
{color:#0000ff}
thanks all in advance...{color}

The problem might be due to some other servlet JAR which is already loaded and using a different version of servlet specifications. Check your Classpath for other JARs present.
$Carol

Similar Messages

  • I need to change rescue email???

    I need to change rescue email ?

    Hi David Sukho,
    Welcome to the Support Communities!
    The article below explains how to change your rescue email address and/or reset your Apple ID security questions.
    You can attempt to answer your security questions in order to change your rescue email.
    If you are unable to remember the answers to your security questions and the rescue email address has changed -- contact Apple ID Security for asissistance.
    Rescue email address and how to reset Apple ID security questions
    http://support.apple.com/kb/HT5312
    Apple ID: Contacting Apple for help with Apple ID account security
    http://support.apple.com/kb/HT5699
    Happy New Year!
    - Judy

  • Hello I am a newbie to lightroom and a photographer in need of a rescue.  The isssue is this I backup my lightroom catalogs with a Seagate Back-up Plus ext/hd

    The Seagate has all the backup catalogs stored and still lightroom cannot display them and consider them as "missing".  How can these photos which lightroom has stored the date/time, size of file, and type(such as dng) be located so they can then be viewed?  Thanks!

    Photos are considered missing in Lightroom if they (or the folders that contain them) have been moved, renamed or deleted outside of Lightroom. (Hint: don't do that!)
    Here are instructions on how to fix the problem: Adobe Lightroom - Find moved or missing files and folders

  • In need of great help

    Hi all,
    I know that you get this a lot, but I really need help on
    this one. here it goes..
    Please someone tell me how to display a recordset field on a
    texbox dynamically when a list/menu onchange event is activated.
    I have created a list box and its being populated dynamically
    from a MSAccess database. What I want to do is to display a data on
    a texbox when I select a record from the listbox.
    For example:
    I have a database(dbEmployee) having one table (tblEmp) with
    two fields:
    1)Emp ID
    2)EmpName
    The "EmpID" field is populated on the listbox on my ASP page.
    Now all I need to know is how to display the "EmpName" field on the
    textbox, and that the data that will be displayed on the textbox is
    within the recordset of the data that I selected from the listbox.
    A lot is tellin me that I should use javascript, and they are
    showing me a tons of codes. You know that being a newbie on ASP
    coding is really hard for me to read all those codes. I hope that
    you understand what I'm trying to ask. I will be surely grateful
    for any help on this. Thank you very much.

    In your case, it might be very simple. You say the empID is
    in the list
    box, so I assume the EmpID is the value of the option and the
    employee name
    is the text of the option. In that case, you'd add this to
    your list box's
    opening <select> tag:
    onChange =
    "document.form1.yourTextField.value=this.options[this.selectedIndex].text"
    "deej77" <[email protected]> wrote in
    message
    news:e4bspq$j3f$[email protected]..
    > thanks lionstone! but if you could send me ASP samples
    that i could study
    > or
    > tutorials site that have lessons that are exactly the
    same with what i'm
    > asking, that would be great. I searched the net and
    found a lot of
    > tutorials,
    > but all of it doesn't come close to what i'm looking.
    Please please.
    > thanks
    > again and have a great day.
    >

  • Need help for a newbie problem

    I am VERY new to all this Java programming but have really started to enjoy it.
    I have two problems with my program that I can not find answers to.
    1. I am looking to find out why my code will not select the right answers when I select the first choice in the array. The answer that is delivered turns out to be the 3rd selection. The second and third selection work great, but the first selection always turns out with the thrid answer.
    2. I know I need to do better error checking on the user input. At this point I am only checking for correct integer input, but I dont know how to fix or avoid the error for when the user would mistakedly enter letters instead of numbers.
    Any hints?
    Code to follow... I hope...
    No gui allowed for this program.
    First time posting so I hope this works and I do it the right way...
    import java.text.DecimalFormat;      //To round to 2 decimal places for payment format.
    import java.io.*;                          //Allows User to input.
    public class Wk5JimP
         //classes for keyboard inputs from user
         public static InputStreamReader reader = new InputStreamReader (System.in);
         public static BufferedReader keyboard = new BufferedReader (reader);
         //main
         public static void main (String[] args) throws IOException
              //Variables
              DecimalFormat decimal = new DecimalFormat("#,##0.00");     //Makes the decimal format for the output
              int appAmount = 200000;                                             //approved loan amount
              short rPay = 0;                                                       //repayment option
              int ps;                                                                 //payment schedule switching variable.
              //Year array and variables
              int yTerm[] = {30, 15, 7,};                                        //Term of the loan in years array
              short rOller2 = 0;                                                  //looping variable for rolling the years
              short rOller3 = 0;                                                  //looping variable for rolling the years
              //Month array and variables
              int mTerm[] = {360, 180, 84,};                                   //Term of the loan in months array
              short rOller = 0;                                                  //looping variable for rolling the months
              short rOller1 = 0;                                                  //looping variable for rolling the months
              //Interest rate array and variables
              double iRate[] = {5.75, 5.50, 5.35,};                              //interest rate array
              int liRate = 0;                                                       //looping variable for interest rate
              int liRate1 = 0;                                                  //looping variable for interest rate
              // Payment array and variables
              double mPayment[] = {
                   ((appAmount*(iRate[0]/12/100))/(1-1/Math.pow((1+iRate[0]/12/100), mTerm[0]))),
                   ((appAmount*(iRate[1]/12/100))/(1-1/Math.pow((1+iRate[1]/12/100), mTerm[1]))),
                   ((appAmount*(iRate[2]/12/100))/(1-1/Math.pow((1+iRate[2]/12/100), mTerm[2])))
                                       };                                             //monthly payment array
              int lPay = 0;                                                       //looping variable for payment incrementation
              int lPay1 = 0;                                                       //looping variable for payment incrementation
              //Dollar amounts into decimal format of two places
              String fappAmount = decimal.format(appAmount);
              //Output to screen for header information
              System.out.println();
              System.out.println("Congratulations!");
              System.out.println("You are approved for a $" + fappAmount + " loan");
              System.out.println("The three repayment options are listed below.\n");
              System.out.println("-------------------------------------------------------------------------");
              System.out.println(" Repayment\t Loan\t\t   Term\t\t  Interest\t  Monthly");
              System.out.println("  Option\tAmount\t       Years   Months\t  Rate \t          Payment");
              System.out.println("-------------------------------------------------------------------------");
              //Begin repayment option loop for calculation
              while (rOller != 3)
                        // if else loop to second and third repayment options
                      if (rOller1 <= 2)
                           // for statement loops last repayment option
                           for (rPay = 1; rPay <=3; rPay++)
                                    {mPayment[lPay] = mPayment[lPay1++];
                                     yTerm[rOller2] = yTerm[rOller3++];
                                     mTerm[rOller] = mTerm[rOller1++];
                                     iRate[liRate] = iRate[liRate1++];
                                //Output to screen for numerical repayment option info
                              System.out.println("    " + rPay + "\t    $" + fappAmount + "\t\t " + yTerm[rOller2] + "\t" + mTerm[rOller] + "\t    " + decimal.format(iRate[liRate]) + "% \t$" + decimal.format(mPayment[lPay])+ "\n\n");
                        else
                             //begin payment option selection
                             System.out.println();
                             System.out.println("Which one of the payment schedules would you like to see?\n");
                             System.out.println("Please enter 1 or 2 or 3 to see the payment schedule\nor enter any other number to exit.");
                             ps = Integer.parseInt(keyboard.readLine());
                                  switch (ps)
                                            case 1:
                                                 System.out.println("\nOption #1\n");
                                                 paysched(yTerm[0], appAmount, iRate[0], mPayment[0]);
                                                 break;
                                            case 2:
                                                 System.out.println("\nOption #2\n\n");
                                                 paysched(yTerm[1], appAmount, iRate[1], mPayment[1]);
                                                 break;
                                            case 3:
                                                 System.out.println("\nOption #3\n\n");
                                                 paysched(yTerm[2], appAmount, iRate[2], mPayment[2]);
                                                 break;
                                            default:
                                                 System.out.println("Thank you!\n\n");
                                                 System.exit(0);
                                      }//end switch
                   }//end while
              }//end main
                             //payment schedule method
                             public static void paysched(int yTerm, int appAmount, double iRate, double mPayment) throws IOException
                             //Declare variables for looped calculations
                             DecimalFormat decimal = new DecimalFormat("#,##0.00");     //Makes the decimal format for the output
                             double balance = appAmount;
                             double monIRate = iRate / 12;
                             double iPay = 0;
                             double pPay = 0;
                             short pNum = 1;
                             short year = 1;
                             //Header Output to screen for payment schedule
                             System.out.println("-------------------------------------------------------------------------");
                             System.out.println("   Payment \t   Principle\tInterest\tTotal \t\tBalance");
                             System.out.println(" Year  Month\t   Payment\tPayment \tPayment \tRemaining");
                             System.out.println("-------------------------------------------------------------------------");
                             //Loop for shceduled payment calculation for all but the final year
                             do
                                       //Apply the payment
                                       iPay = balance * (monIRate /100);
                                       pPay = mPayment - iPay;
                                       balance = balance - pPay;
                                       //Output to screen for payment information
                                       System.out.println("   " +year+ " \t " +pNum+ " \t  $" +(decimal.format(pPay))+ "\t$" +(decimal.format(iPay))+ "\t      $" +(decimal.format(mPayment))+ "\t     $" +(decimal.format(balance)));
                                       pNum++;
                                       if (pNum % 13 == 0)
                                            System.out.println("Press enter to see the next year payments.");
                                            System.in.read();
                                            System.in.read();
                                            year++;
                                            pNum = 1;
                                            //Output to screen for payment schedule
                                            System.out.println("-------------------------------------------------------------------------");
                                            System.out.println("   Payment \t   Principle\tInterest\tTotal \t\tBalance");
                                            System.out.println(" Year  Month\t   Payment\tPayment \tPayment \tRemaining");
                                            System.out.println("-------------------------------------------------------------------------");
                                            } //end if
                                    } //end do
                             while(year < yTerm);
                             //Final Year calculations
                             do
                                       //Apply the payment
                                       iPay = balance * (monIRate /100);
                                       pPay = mPayment - iPay;
                                       balance = balance - pPay;
                                       //Output to screen for payment information
                                       System.out.println("   " +year+ " \t " +pNum+ " \t  $" +(decimal.format(pPay))+ "\t$" +(decimal.format(iPay))+ "\t      $" +(decimal.format(mPayment))+ "\t     $" +(decimal.format(balance)));
                                       pNum++;
                                       if (pNum % 13 == 0)
                                            System.out.println("Please press enter to select and view another payment schedule.");
                                            System.in.read();
                                            System.in.read();
                                            year++;
                                            } //end if
                                  }//end do
                             while(year < (yTerm+1));
                        }//end class
    }//end classThis is my first post so please be gentle...
    Thanks for any help!

    When you choose Java to solve the problems, you need to adapt to the power/strategies/methodology that java offers you, and thats the way for solving problems in Java.
    Why would you put the entire implementation for calculation inside main method? You could break down the program into smaller methods which could do the calculation bit and then call them in main method.
    Anyways the reason that it is calculating for term of 7 years is that
                           // for statement loops last repayment option
                           for (rPay = 1; rPay <=3; rPay++)
                                    {mPayment[lPay] = mPayment[lPay1++];
                                     yTerm[rOller2] = yTerm[rOller3++];You are changing the value of the array yTerm[ ]. Hence once the control is out of the for loop the value of y[0]=7,y[1]=7 and y[2]=7.
    Solution 1: mark yTerm as final.
    Solution 2: set yTerm[0], yTerm[1] back as 30,15 after the for loop.
                      if (rOller1 <= 2)
                           // for statement loops last repayment option
                           for (rPay = 1; rPay <=3; rPay++)
                                    {mPayment[lPay] = mPayment[lPay1++];
                                     yTerm[rOller2] = yTerm[rOller3++];
                                     mTerm[rOller] = mTerm[rOller1++];
                                     iRate[liRate] = iRate[liRate1++];
                                //Output to screen for numerical repayment option info
                              System.out.println("    " + rPay + "\t    $" + fappAmount + "\t\t " + yTerm[rOller2] + "\t" + mTerm[rOller] + "\t    " + decimal.format(iRate[liRate]) + "% \t$" + decimal.format(mPayment[lPay])+ "\n\n");
                           yTerm [0]=30;
                           yTerm [1]=15;
                              }Futher the issue is with monthly calculation of pay back amount in switch - case statement.
    As you have not provided what the problem is and what is the criteria for calculation of monthly interest or reducing the amount etc. Its not possible (at least for me) to tell you why it would run to negative. Mathematically that is the only thing possible,
    Step 1: make those changes in your code. Make changes required to claculate the balance.
    Step 2: Execute the new code and
    Step 3: Gimme the dukes.
    Cheers
    $

  • Need help for a newbie!!!

    Hi,
    I have set up a website on a new Redhat7.3 box with Apache2.0 and integrated Tomcat4.0 to handle the servlets used in the site. Yesterday I finished installing Oracle 9i Enterprise edition on the machine (I need a simple single table database that I will be able to access through the servlets). I am a bit overwhelmed by all the info out there that I really don't know where to start, so my questions are:
    1: "What do I do to make the database?"
    2: "How do I access the database, should I use the Thin or the OCI driver?"
    3: "Are there any examples around to do the above?"
    In general I mainly need to know where to go from here and if there may be any resources around to help a newbie like myself.
    Thanks again,
    Rick.

    Hi,
    I have set up a website on a new Redhat7.3 box with Apache2.0 and integrated Tomcat4.0 to handle the servlets used in the site. Yesterday I finished installing Oracle 9i Enterprise edition on the machine (I need a simple single table database that I will be able to access through the servlets). I am a bit overwhelmed by all the info out there that I really don't know where to start, so my questions are:
    1: "What do I do to make the database?"
    2: "How do I access the database, should I use the Thin or the OCI driver?"
    3: "Are there any examples around to do the above?"
    In general I mainly need to know where to go from here and if there may be any resources around to help a newbie like myself.
    Thanks again,
    Rick.

  • Need Help Installing Rescue and Recovery 4.3 Windows 7

    Hi there,
    So I'm having a strange issue installing Rescue and Recovery 4.3 on my TP T61.  I keep getting an error message stating: "It is required to install the Microsoft Visual C++ 2005 Redistributable (x64) Service Pack 1 before you install the Rescue and Recovery program."
    I have already installed C++ SP1.  I've also tried installing/uninstalling it as well.  Still no luck!
    Here is a link to the installer:
    http://www-307.ibm.com/pc/support/site.wss/document.do?sitestyle=lenovo&lndocid=MIGR-73612
    And here is a link to the C++ SP1 file:
    http://www.microsoft.com/downloads/details.aspx?FamilyID=200b2fd9-ae1a-4a14-984d-389c36f85647&displa...
    Any Ideas?
    Thanks,
    Peednus
    T61
    T7100 @ 1.8 GHz Duo
    2GB RAM
    Windows 7 Home Premium (x64) (Clean Install)
    T420s, i5-2520M @2.5, nVidia 4200m, 8GB DDR3, OCZ Vertex 3 Max IOPS 240GB SSD, Hitachi 320GB @7200rpm ulrabay, 8Pro x64
    T61, Centrino Duo @1.8, GM965, 4GB PC2-5300 DDR2 @667MHz, OCZ Agility 120GB SSD, 7Pro x64

    Hi peednus,
    The C++ 2005 SP1 installer you are trying to use is for x86 (32 bit).  The error message you quote says it needs the x64 (64 bit) version.  Try
    Microsoft Visual C++ 2005 SP1 Redistributable Package (x64)
    If you're really running a 64 bit Windows install, that should/might get you going.
    Z.
    The large print: please read the Community Participation Rules before posting. Include as much information as possible: model, machine type, operating system, and a descriptive subject line. Do not include personal information: serial number, telephone number, email address, etc.  The fine print: I do not work for, nor do I speak for Lenovo. Unsolicited private messages will be ignored. ... GeezBlog
    English Community   Deutsche Community   Comunidad en Español   Русскоязычное Сообщество

  • Need a great mac compatible DVD-BluRay burner

    I have a late 2011 iMac, 32 GB memory, with a LaCie 4tb external thunderbolt hd.  I burned finished DVD's on the mac's 'super drive' or whatever it's called, but I can only burn regular DVD's that won't hold more than 45 minutes or so of any quality, plus the peeps said some wouldn't play on their t.v..  I need to purchase a DVD (bluRay also would be great) burner that can burn layers or large files with high quality and dependability.  Also, I purchased a quikie el cheapo DVD creator for menu's because I don't need the complications right now of big programs, but am wondering if it really matters what authoring/burning program you use (please say no).  It would seem that if I export my files in the proper format for DVD or BlueRay, the quality should transfer?  (Shouldn't the NTSC,H.S64, AAC 48kHz do for DVD, or H.264 Blue-ray 1080i 29.97 format options as supplied in PP work?)  Learning, ever learning.
    Thanks much in advance.

    nadinefromwa wrote:
    I have mixed HD (Panasonic P2 cards) and SD media in my sequences, so I need to stay with MPEG-2 until I get to the point of all HD content then.
    If you are mixing HD and SD footage it is best to stay in an SD sequence (unless you absolutely must go HD for some reason) and author a regular DVD. If you up-scale SD content to HD you will loose quality.
    nadinefromwa wrote:
    I, for some reason, thought the faster the burn the better the quality but not so.  I will stay slow.  And the bitrate has always been a mystery to me.  It seems like if I leave everything at the default in PP and Encore, I'll be okay.
    The burn speed itself has nothing to do with the video quality of the final DVD. Lower burn speed simply means that will avoid write errors during the burn process. The video quality is determined by your encoder settings; The bitrate in general should not exceed 7.5 mb/s and you should use a constant bitrate for content under 60 min and variable bitrate for longer videos. Adobe Media Encoder certainly has more settings but I'm not that familiar with this particular piece of software.
    nadinefromwa wrote:
    One question - I found I could bring in my mxf files and size them to fit the frame in premier pro with the SD footage. Do you think that would create an issue for the final product?  (Although I didn't do that on the previous DVD's that didn't work)  I haven't attempted a burn yet from this mixed bag.
    You would be better off asking Adobe-specific questions either in the Adobe forums or maybe over on the COW. I personally have very little experience with either Encore or Premiere Pro.
    As is the case with most authoring software Encore will create DVD Images that can be played on your machine prior to burning. That means you can do tests to try out your workflows and settings without having to physically burn a DVD.
    http://helpx.adobe.com/encore/using/building-finished-project.html
    nadinefromwa wrote:
    Also then, it sounds like I shouldn't need to worry about the new burner until I reach the point of wanting to burn bluray?  The iMac super drive should be fine for the regular DVD's for now?
    Absolutely. Blu-ray is for HD and DVD is for SD.

  • In need of greater clarity on RAM and 64 Bit versus 32 Bit Apps...

    i have 13 GB of RAM in my MacPro, and i am running Leopard. i noted, however, that Adobe Photoshop only appears to recognize 3072 mb of RAM (3 Gb) as it is still a 32 bit program. 32 bit programs can still only recognize a max of 3 Gb of memory.
    i read somewhere that while Photoshop does not recognize all the RAM, that performance is increased even so, if you have more than 3 Gb of RAM; which would make sense as you can allocate that much to Photoshop and still have left over RAM for your system and other apps.
    When i noticed that Photoshop did not recognize all my RAM i was extremely disheartened. After all, i did splurge quite a bit on the RAM in hopes of dramatically increasing performance in Photoshop.
    But, as i think about it more, while Photoshop can only see 3 Gb of RAM, having 13 GB means that i can run more RAM intensive programs and each program will have enough RAM available. But i wonder what that means in terms of keeping up with the processors?
    i have been in the habit of closing most programs when working in a RAM intensive program such as Photoshop to improve performance. But, i am thinking that i no longer have to really worry about this?
    i would appreciate a discussion of this to add some clarity to the 32 bit/64 bit issue and RAM allocation on the MacPro.

    Hello Gene.
    My understanding is quite the same, 32bit programs theoricaly can't allocate more than 4G of RAM, maybe the 3G that you are talking about are anoter level of limitation, or caused by some allocations mechanisms beyond my knowledge.
    When using your computer, take a look at Activity Monitor, and see how much RAM is free. As long as you have enough RAM, there is no need to close applications, since the memory manager will not start swapping on disk. Well, that said, I think it may improbe performance to close application to avoid memory fragmentation, but the impact is not the same.
    And you're right, it is useless to have that much RAM for a single processus, but since Mac OS X has a pretty good multitasking, you can run lot of processes, each one allowed to use 4G of RAM, so that you keep performances even with lots of big applications launched.
    Now, be patient, and wait for a full 64bit version of Photoshop to really enjoy your RAM
    P.S. Maybe some plugins can detach new processes and get their own allocation space for some heavy filter operation ? If someone know, please clarify, that would be interesting.

  • Am in need of a sample (Newbie question)

    I am very new to PL/Sql. I'm want to create a procedure that does the following (I need a sample or pointers to what to read):
    I need a procedure that has cursor1 that searches for a list of invoices (createdDate > sysdate-3)
    For each of these records i need a new cursor2 that will search for a new set of invoices that have the same invoice date as the returned invoice in the first cursor.
    Depending on some criterias in the records in cursor2 I want the procedure to return a list of invoices from both cursor1 and cursor2.
    To make this more clear, a sample output would be:
    InvoiceNum 18, InvoiceDate 2007/01/02 (from cursor1)
    Invoices with same date:
    InvoiceNum 3 (from cursor2)
    InvoiceNum 7 (from cursor2)
    InvoiceNum 19, InvoiceDate 2007/01/08 (from cursor1)
    Invoices with same date:
    InvoiceNum 8 (from cursor2)
    InvoiceNum 17 (from cursor2)
    InvoiceNum 18 (from cursor2)
    How do I make a procedure that returns two "tables"?
    Thanks,
    Botzy

    My scenario is this:
    We sometimes have the problem that an invoice is registered twice - let's say like this:
    InvoiceNum        Amount           Date        Vendor
    355             15.155,00      01/01/05    SomeVendor
    R355            15.165,00      02/01/05    SameVendorNow the invoice 355 was paid yesterday, but today we got a reminder (and interests). With my Procedure I want to catch that newly created invoice, and prevent that it gets paid aswell. And the procedure should check every invoice that was registered today and look for simular invoices throughout the AP system.
    If doublets exist, then I want to printout both the invoice today and the invoice that looks like it...
    Do you have a suggestion how I should do this with one query (I think it's kinda complex)? The criteria for returning an invoice in the second query would be:
    1: Does the vendor have simular name in both invoices?
    2: Is the amount of the invoice the same? (plus/minus 5%)
    3: Does the new invoice number look like the old one?

  • In need of desparate help (newbie)

    so my plan is simple. from the execute query i bring back multiple resultsets, which i then populate into a vector. then this vector must be redirected to a JSP to iterate through a loop and display the results.
    here is my following code:
    test.java
    Vector vRecords = new Vector();
    while(rs.next()){
    temp.setMarkerId(rs.getInt("markId"));
    temp.setFirstName(rs.getString("markFName"));
    temp.setLastName(rs.getString("markLName"));
    temp.setAddress(rs.getString("streetAddress"));
    temp.setCity(rs.getString("city"));
    temp.setProvince(rs.getString("province"));
    vRecords.add(temp);
    request.setAttribute("markerList",vRecords);
    //response.sendRedirect("../results.html");
    RequestDispatcher disp = request.getRequestDispatcher("../../results.jsp");
    disp.forward( request, response );
    dbConnection.close();This is my error message:
    Mar 13, 2005 11:12:48 PM
    org.apache.catalina.loader.WebappClassLoader validateJarFile
    INFO: validateJarFile(C:\jakarta-tomcat-5.5.8\webapps\ROOT\WEB-INF\lib\servlet.jar) - jar not loaded. See Servlet Spec 2.3, section 9.7.2. Offending class: javax/servlet/Servlet.class
    java.lang.NullPointerException
    please and thanks. i am in need of desparate help.
    johnny.

    The problem might be due to some other servlet JAR which is already loaded and using a different version of servlet specifications. Check your Classpath for other JARs present.
    $Carol

  • Need help in jsp-newbie

    ei, i'm learning about jsp's... i'm reading this book and trying all this examples given in the book.
    my problem is where am i suppose to put all the jsp's and beans?
    this is where i put all my programs as stated in the book... webapps/ROOT/web-inf/classes/calculators/
    i've made this folder calculator as what is instructed in the book... and i've put the class file and jsp of the Triangle program i've made.
    and in the web browser... i type this url... http://localhost:8080/Triangle.jsp but it generates http 404.
    what add-ins should i put in the web.xml? please tell me all i need to do.
    thanks so much

    i just want to clarify this one... so my program
    triangle.jsp shouldn't be placed in the classes
    directory?The classes should go into that folder, not the JSP.
    where should i put it? the directory i've put it is
    in webapps/ROOT/web-inf/classes/calculator.
    my question is this... should i put it here
    webapps/ROOT?Yes.
    the calculator is actually a package... so in my
    triangle bean i specified there package calculators.There is a difference in calculator and calculators. Make sure that you are using the correct package name.

  • Case statements without the need for Greater than less than

    i have a problem where i have 6 different priorities. from high to low:
    A-A
    A-B
    A-C
    B-A
    B-B
    B-C
    One field on the database (default) holds the default priorities. this value in this example is (A-B)
    the problem is determinig wether the (actual) value, in this example (A-C) is an "UPGRADE" or a "DOWNGRADE" from the default.
    the actual value may change, the default value never changes, so i need to determine if the actual value has increased in priority or decreased in priority?
    i cant use the > or < functions obviously, what i have come up with so far is:
    (case when actual = 'A-A' AND ((select default from table x) IN ( 'A-B','A-C','B-A','B-B','B-C','C-A','C-B','C-C')
    when actual = 'A-B' AND ((select default from table x) IN('A-C''A-C','B-A','B-B','B-C','C-A','C-B','C-C') THEN 'UPGRADE' ELSE 'DOWNGRADE' END)
    is this the best way to do a query like this ????

    try adding control to form to let them select [ <, <=, >,>=] via a drop down and enter a value, then pass these items to a function that returns a sql select...
    Report Region source would be function returning sql select..
    Thank you,
    Tony Miller
    Webster, TX

  • I need a great reminder/to-do list type of app (possibly for free)

    Can anyone recommend one?
    I would like to have an alarm or pop-up feature
    Thank you!

    Thats what is great with iPhone OS's....they include awesome apps right out of the box.
    Calendar is awesome like he said--pop-up reminders, etc.
    Also Notes app...its like a Pad, always in your pocket.--You can cross off items like you would on a notepad

  • Need Help In Query - Newbie

    Please help, I need a query that will display the records with the latest date inserted for every person. For example (this table has no unique fields).
    EMP_NAME TIMESTAMP
    USER1 08/29/2006 07:01:00
    USER2 08/29/2006 07:03:00
    USER1 08/29/2006 07:04:00
    USER3 08/29/2006 07:08:00
    USER2 08/29/2006 07:11:00
    USER1 08/29/2006 07:16:00
    USER1 08/29/2006 07:20:00
    USER3 08/29/2006 07:21:00
    USER3 08/29/2006 07:41:00
    I need a query that will display the latest entry for each user. Thank you very much.

    Hi,
    This should work fine:
    select max(time_stamp),
    emp_name
    from YOUR_TABLE_NAME_HERE
    group by emp_name;
    Regards
    Mike

Maybe you are looking for