Need some Jar help

Hi all -
For the project I'm working on now, I need the apache HSSF POI for some excel file work. My project compiles fine, then I attempt to jar it and run the jar off a remote server. Once it gets to my FileHandling class, it throws an exception and gives me:
Exception in thread "main" java.lang.NoClassDefFoundError: org/apache/poi/hssf/usermodel/HSSFWorkbook
        at com.esposito.afcfilehandling.AFCFileOutput.<init>(AFCFileOutput.java:21)
        at com.esposito.afcmainmethod.AFC.main(AFC.java:42)Note - this builds and runs fine in the IDE (eclipse)
Can anyone please help?

Your classpath is setup correctly inside of your IDE. However, your distribution apparently has a bad classpath or a missing jar.

Similar Messages

  • Need some quick help - fairly urgent!

    I've just taken over a new job and have been the task of finishing the new brochure for Christmas, there's not a lot to do but a lot of the measurements need changing
    This is the layout I'm dealing with..
    All the boxes have been made in Illustrator
    The text has been done in In'Design and it seems every piece of text is it's own box if that makes sense
    My question is, if I select the whole specification box - copy, paste it into Adobe Illustrator and change the text there, then paste the edited box back into In-Design, will I lose quality when it gets printed?
    I'm worried if I do it this way it may come out blurred? Or am I just worrying about nothing?

    I couldn't find an Illy file in the end and have ended up creating tables in ID to replicate what was already there!
    Didn't take very long and I guess if I didn't do it now, I'd come across the same situation next time!
    Date: Wed, 30 Nov 2011 08:48:07 -0700
    From: [email protected]
    To: [email protected]
    Subject: Need some quick help - fairly urgent!
        Re: Need some quick help - fairly urgent!
        created by Peter Spier in InDesign - View the full discussion
    There certainly are viable "quick fix" solutions proposed here, and if the dealine is looming and this file never needs to be touched again I might be tempted, but they are only postponing the pain for a file that needs periodic updates, and I wouldn't waste effort on them, myself, when that time can be put toward a proper rebuild now if that's the ultimate goal.
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4054725#4054725
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4054725#4054725. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in InDesign by email or at Adobe Forums
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • I need some help adding music to my slideshow in iPhoto.  When I open iTunes as the source, it says it needs to be open to populate, which it is.  I have no knowledge of computers...like, at all....so I need some (simple) help?  If possible?  Thanks.

    When I open iTunes as the source, it says it needs to be open to populate, which it is.  I have no knowledge of computers...like, at all....so I need some (simple) help?  If possible?  Thanks.

    When I open iTunes as the source, it says it needs to be open to populate, which it is.  I have no knowledge of computers...like, at all....so I need some (simple) help?  If possible?  Thanks.

  • Replaced zd8000 motherboard and need some troubleshooting help please............

    Hello All,
     I just replaced the motherboard on our HP zd8000 (pentium 4, 3.0ghz, 2gb ram, Win XP) with a used but tested good MB and need some help with the following.
    1) I now cannot play DVD movies as the error no "dvd decoder" present which was not an issue before?  Where can I go to get a free decoder that will work, as Windows only shows paid versions?  We have the dvd burner/reader with lightscribe. SOLVED! CNET HAD DECODER.
    2) The internal temperature, according to SpeedFan, is running around 140 degrees with just some Internet browsing.  Is that a normal temperature because I only have one of three fans running on the laptop?  Is there anyway of making all three fans run to be sure there are no issues?  I am positive I hooked up everything but again only one fan seems to be running?
    3) I discovered some of the pins were damaged in the card reader.  I may get the Seller to give me a discount, no intention of tearing it apart simply for that, but is there any concern of short or otherwise?
    4) Our battery stopped charging years ago, these were notorious for such, but I purchased a new one last year and hoped the replacement MB would allow charging again.  No such luck though.  Is there anything I can do, BIOS update etc, to make the battery charge?
    5) Anything you folks can think of for me to test to insure the new motherboard is working properly?
    Thanks, Ralph 
    P.S. This was a correct replacement board according to MB serial numbers.  Everything else seems to be functioning properly other than mentioned.  Our graphics went out on the original MB.
    This question was solved.
    View Solution.

    Some of the wires had pushed out of the harness that connected the other two fans.  I double checked and re-attached those so now the laptop is running quite a bit cooler.
    EVERYTHING IS GOOD TO GO!

  • Remember me.....well i need some real help now....:)

    Hello guys,i hope that u remember me...if not i hope that u ll help me anyway....
    well,i had an assignment for my university...i posted it and u told to start reading several books and try to write some code....
    i came up with the following code:
    import java.util.Random;
    import java.util.*;
    import java.text.DateFormat;
    class Account {
         double initbal;
         double deposit;
         double withdraw;
    //Account constructor
    Account() {
         initbal=0;
         deposit=0;
         withdraw=0;
    //method for calculating the balance
    double balance() {
         return (initbal+deposit)-withdraw;
    class BankAccount {     
         double initbal;
         private double deposit;
         private double withdraw;
         public static void main(String args[]) {
         Account Dimitris=new Account();               //call the constructor
         CurrentAccount Over=new CurrentAccount();
    try {     //exception added for fault parameters
         Dimitris.initbal=Double.parseDouble(args[0]);     //string parsing into a double
         Dimitris.deposit=Double.parseDouble(args[1]);     //string parsing into a double
         Dimitris.withdraw=Double.parseDouble(args[2]);     //string parsing into a double
         } catch (ArrayIndexOutOfBoundsException e) {
              System.out.println("You must enter three values!!");
         } catch (NumberFormatException e) {
              System.out.println("Only numbers are allowed!!");
         double AvlOvr;
         double bal;
         bal=Dimitris.balance();          //method called
         System.out.println("Initial balance is: "+Dimitris.initbal);
         System.out.println("Deposit Amount is: "+Dimitris.deposit);
         System.out.println("Withdraw amount is: "+Dimitris.withdraw);
         System.out.println("Overdraft limit is: "+Over.AvlOvr);
    if (withdraw>(initbal+deposit)) {
         System.out.println("Insufficient Funds");
    else
         System.out.println("Balance is: "+bal);
         System.out.println("Available Funds is: "+(bal+Over.AvlOvr));
         //display the date and time for the current locale     
         Date date=new Date();
         DateFormat dateFormatter=DateFormat.getDateTimeInstance(DateFormat.SHORT,DateFormat.SHORT);
         System.out.println(dateFormatter.format(date));
    class CurrentAccount extends BankAccount {
    private float accId;
    double AvlOvr;
    CurrentAccount() {
    double ovdr;
    ovdr=100;
    AvlOvr=ovdr;
    interface Personal {
    void Deposit ();
    void Withdraw ();
    the thing is that i need some help cause i cant find some sollutions....
    i d like to give to the user a random id....
    then at the CurrentAccount subclass i d like to add a Username to the user.Then Level 2 worries me as well.....I ll post u my assignment so u can have a look....If u could help me with Level 2 sollution and the thing that i told u before i d be grateful.......
    by the way..i hope that u all guys have nice holidays!!!
    Here is the assignment:
    JAVA LAB ASSIGNMENT � B241
    Bank Account
    Level 1
    Create a bank account that reads in the following information about a single customer
    account:
    Initial balance
    Deposit amount
    Withdraw amount
    Current Date
    Give the account holder a random account id number.
    Display error messages if the number of parameters is incorrect or negative parameters are
    entered.
    Verify that the amount being withdrawn is available (i.e. make sure that the initial balance +
    deposit amount is greater than or equal to the amount being withdrawn).
    Calculate the balance amount in the account after the transaction has been completed.
    Tasks:
    - Create a BankAccount class, which defines a bank account
    - Use command line arguments to read in the account information
    - The customer account values are private and accessible only through the
    BankAccount class
    - Use the file, InsufficientFundsException.java given to you (Location:
    /global_ro/rekha/B241/assignment) to create an Exception class called
    InsufficientFundsException.class that throws an exception if an
    InsufficientFundsException occurs in your BankAccount class. Make the necessary
    changes to the file if you feel the need to do so.
    - Print out the following information:
    2
    account holder�s id
    balance amount
    amount being withdrawn
    the current date and time
    (Hint: this will occur when the amount withdrawn is more than the total amount in the
    account. Your withdraw method throws the InsufficientFundsException exception which
    should be caught in your main program from where you are calling the withdraw method).
    Subclass the BankAccount class for the specifics of a CurrentAccount class that adds an
    additional field to the already existing information:
    User name
    The account balance and account id values should still be private and now accessible only
    through the CurrentAccount subclass.
    Allow the CurrentAccount class to provide overdraft protection of up to �100.
    Task:
    - Incorporate the additional functionalities into your initial program and print out the
    values as before.
    ********************************END OF LEVEL 1 **************************
    Level 2
    Add the following functionalities to your Level 1 program.
    Define an interface named Personal, consisting of two methods:
    Deposit
    Withdraw
    Read in the account information specified in Level 1 for more than one user through the
    command line parameters and display appropriate error messages as before.
    Calculate the balance amount in each account after the transaction has been completed.
    Tasks:
    - Increment the account id each time a customer is added (For instance, if the first
    customer id is 100, the next id should be 101 and so on).
    - Implement the Personal interface in the BankAccount class.
    - Print out the customer information for all customers as you did in Level 1.
    *****************************END OF LEVEL 2*****************************
    Level 3
    Extend the above features to add some more personal information about the customer such
    as:
    a. Name: surname first name
    b. Date of birth: day/month/year
    c. Address: street
    Town
    Postcode
    d. Phone: home number work number
    e. E-mail: e-mail address
    Customer�s data is stored in a file. It is retrieved from the file when the bank is opened and
    stored in a memory buffer. The memory buffer is updated after every transaction. The
    contents of the memory buffer are written into the file when the bank is closed.
    Design a data management structure of the bank with several customers. The bank performs
    �deposit� and �withdraw� transactions by using Java I/O streams.
    Use the SimpleClient.java and SimpleServer.java files (Location:
    /global_ro/rekha/B241/assignment) as a base for creating your own Client and Server
    windows. Make the necessary changes to the files for them to work within your programs.
    Tasks:
    - Create a non-graphical user interface to be able to
    o enter customer�s data
    o display customer�s personal and account data after every transaction
    - Write a JAVA program to read and write customers data from/to a file.
    - Create a client � server networking environment using Java�s networking capabilities
    such that data is entered through the server window and displayed by the client in the
    client window.

    Ela re si k eimaste k sinonomatoi...anyway...could you pleaze help me with my assignment...my other problem is that i've writen some more code for the 3rd part where it says add some more fields for the customers.I save them in a file and i restore them but i dont know how can i call them when the bank is opened....here's the rest of the code....
    import java.io.*;
    public class UserInfo {
    public static void main(String[] args)
    throws IOException {
         String k,l,m,n,o,p,q,r;
    BufferedReader stdin = new BufferedReader(
    new InputStreamReader(System.in));
    System.out.print("First name:");
         k=stdin.readLine();
         System.out.print("Last name:");
         l=stdin.readLine();
         System.out.print("D.O.B:");
         m=stdin.readLine();
         System.out.print("Address:");
         n=stdin.readLine();
         System.out.print("Town:");
         o=stdin.readLine();
         System.out.print("Postcode:");
         p=stdin.readLine();
         System.out.print("Phone:");
         q=stdin.readLine();
         System.out.print("E-Mail:");
         r=stdin.readLine();
         try {
    DataOutputStream out = new DataOutputStream(
    new BufferedOutputStream(
    new FileOutputStream("Data.txt")));
         out.writeUTF(k);
         out.writeUTF(l);
         out.writeUTF(m);
         out.writeUTF(n);
         out.writeUTF(o);
         out.writeUTF(p);
         out.writeUTF(q);
         out.writeUTF(r);
         out.close();
         DataInputStream in = new DataInputStream(
    new BufferedInputStream(
    new FileInputStream("Data.txt")));
         System.out.println(in.readUTF());
    System.out.println(in.readUTF());
         System.out.println(in.readUTF());
         System.out.println(in.readUTF());
         System.out.println(in.readUTF());
         System.out.println(in.readUTF());
         System.out.println(in.readUTF());
         System.out.println(in.readUTF());
         } catch (NumberFormatException e) {
         System.out.println(e);
    }

  • Newbee in j2me needs some starter help

    Hi,
    I am a newbee in j2me and need a starter help.
    My aim is work on mobile applications/services and for that what stuff I need. I have already downloaded wireless kit. Does I require some additions softwares and what?
    Can I find tutorials and starter help and from where?
    Thanks in anticipation.
    Regards,
    Navin.

    You can refer to article 'Think small with J2ME at' -
    http://www-106.ibm.com/developerworks/wireless/library/wi-j2me/
    It shows by example deployment of a sample application using wireless toolkit.
    Manish.

  • Knowlwdgemanagement Java development . I need some jar files related to KM

    Hi Gurus,
    I try to develop KnowledgeManagement application in NWDS. So, i need to install some jar files . How can i install jar files in to my application and were can i findout those JA?R files.
    Points will be revert back.
    Thanks,
    Sumanth

    Hi Sumanth,
    you will find the require jar files on your portal server's file system. They are somewhere under:
    \usr\sap\<J2E>\<JC01>\j2ee\cluster\server0\apps\sap.com
    Best way to find the required jar files is to use a tool like JarFinder, ClassLocator, WinRar, etc.
    In NWDS menu choose => Project => Properties => Java Build Path => Libraries. There you can add the required jar files to your project's build path.
    Best regards,
    MArtin

  • GT70 680m/8970m troubleshooting - need some experienced help!

    Hi!
    Looping for some serious help...
    After some erratic behavior my i7 3rd gen GT70 just stopped working with MSI 680m 4GB. The card shows on occasions in manager, but both - discrete and HD4000 have no installed drivers and wont work unless 680 is plugged out (then intel kicks in without prob). That happened after some automatic driver updates and possibly BIOS update. Tried a ton of these and Bioses, rather randomly, trying to solve the disappearance of my 680m from control panel, but non of them worked. To make the things worse, I've messed with EC firmware editions trying the "beta" t25,21,16,17 - one of them bricked the lappi for good... Had MSI re-flash the bios (couldn't do the blind flash myself) but they say they can't help me with 680 since it is from GT60 originally and it's not supported by GT70 (I switched it from 675 to 680 in the other MSI laptop some 8 months ago - both worked without a problem until the issue). Don't have access to check my 680m in another MSI to check if it's working and is no hardware failure, but have access to 8970m from CLEVO for some decent bucks - was wondering which bios should I install to run it in my GT70 or which bios/EC firmware to flash so my old 680 start working again... This or that... Any idea? Guys? Svet? Sure will make the donation if needed of course!
    J

    Quote from: pjaca on 12-April-15, 13:56:25
    Checked that out. What I need is some info which BIOS to use in GT70 0ND for 680m or 8970m, particularly. My 680m stopped working after the bios/ec firmware update, still shows in manager but tries to the same resources as integrated Intel HD resulting in both not working. Is there a bios that allows for permanently switching off optimus and integrated gpu? Or the bios that will accept radeon 8970m (that works perfectly in 2nd gen MSI gt780 by the way...). Any ideas?
    No special BIOS is required to support 680M. Just use the latest BIOS release for model GT70 0NE by MSI, it should be working on the machine as long as there is no other strange issue, like a malfunction VGA card/Mobo....

  • My ipod is majorly screwed up and i need some serious help

    k well lets see
    error states 'can't mount ipod'
    so i tried checking all the wires, restoring the ipod (which didnt work because it couldnt find it) and i scanned all my files for viruses.
    my ipod also makes funny clicking noises when i dont even touch it...
    im just a kid guys.. i need some serious ipod whizz to help me out.. im desperate! ive tried everything

    Hi,
    Firstly please try to deal with "can't mount iPod" issue
    http://docs.info.apple.com/article.html?artnum=93499

  • I need some serious help with Oracle Database....PLEASE!!

    I am using Microsoft Virtual PC 2007 that has Oracle Database 10g and Wondows XP installed on it.
    Database instance is DOWN but that is not the problem
    Listener is UP
    Agent Connection to Instance is DOWN, and I cannot get this running!
    How can I fix this problem? I am not an expert, but I have been trying for a long time to fix this issue, but I can't. It just came to the point that I want to grab my pc and throw it across the room.
    Error message: ORA-12505: TNS:listener does not currently know of SID given in connect descriptor (DBD ERROR: OCIServerAttach)
    Here is my LISTENER.ORA file:
    # listener.ora Network Configuration File: C:\oracle\product\10.2.0\db_1\network\admin\listener.ora
    # Generated by Oracle configuration tools.
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = PLSExtProc)
    (ORACLE_HOME = C:\oracle\product\10.2.0\db_1)
    (PROGRAM = extproc)
    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1))
    (ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.1.109)(PORT = 1521))
    Here is my TSNNAME.ORA file:
    # tnsnames.ora Network Configuration File: C:\oracle\product\10.2.0\db_1\network\admin\tnsnames.ora
    # Generated by Oracle configuration tools.
    ORCL =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.1.109)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = orcl)
    EXTPROC_CONNECTION_DATA =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1))
    (CONNECT_DATA =
    (SID = PLSExtProc)
    (PRESENTATION = RO)
    Once again, I am not an expert, so please try to explain it as simple as possible...I know, I am an idiot when it comes to networking issues.
    if you guys need some more information, just let me know!
    Thank you!

    What I mean is that I can get the Instance UP with no problem, but the Connection with the Instance is the problem.
    C:\Documents and Settings\Paolo\Desktop\courselabs\labs>lsnrctl service
    LSNRCTL for 32-bit Windows: Version 10.2.0.1.0 - Production on 25-NOV-2009 21:38
    :06
    Copyright (c) 1991, 2005, Oracle. All rights reserved.
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1)))
    Services Summary...
    Service "PLSExtProc" has 1 instance(s).
    Instance "PLSExtProc", status UNKNOWN, has 1 handler(s) for this service...
    Handler(s):
    "DEDICATED" established:0 refused:0
    LOCAL SERVER
    Service "orcl" has 1 instance(s).
    Instance "orcl", status READY, has 1 handler(s) for this service...
    Handler(s):
    "DEDICATED" established:144 refused:0 state:ready
    LOCAL SERVER
    Service "orclXDB" has 1 instance(s).
    Instance "orcl", status READY, has 1 handler(s) for this service...
    Handler(s):
    "D000" established:0 refused:0 current:0 max:1002 state:ready
    DISPATCHER <machine: PAOLOSCAMARDELL, pid: 2576>
    (ADDRESS=(PROTOCOL=tcp)(HOST=paoloscamardell)(PORT=2307))
    Service "orcl_XPT" has 1 instance(s).
    Instance "orcl", status READY, has 1 handler(s) for this service...
    Handler(s):
    "DEDICATED" established:144 refused:0 state:ready
    LOCAL SERVER
    The command completed successfully
    C:\Documents and Settings\Paolo\Desktop\courselabs\labs>lsnrctl status
    LSNRCTL for 32-bit Windows: Version 10.2.0.1.0 - Production on 25-NOV-2009 21:52
    :03
    Copyright (c) 1991, 2005, Oracle. All rights reserved.
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1)))
    STATUS of the LISTENER
    Alias LISTENER
    Version TNSLSNR for 32-bit Windows: Version 10.2.0.1.0 - Produ
    ction
    Start Date 25-NOV-2009 11:50:27
    Uptime 0 days 10 hr. 1 min. 39 sec
    Trace Level off
    Security ON: Local OS Authentication
    SNMP OFF
    Listener Parameter File C:\oracle\product\10.2.0\db_1\network\admin\listener.o
    ra
    Listener Log File C:\oracle\product\10.2.0\db_1\network\log\listener.log
    Listening Endpoints Summary...
    (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIPENAME=\\.\pipe\EXTPROC1ipc)))
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=192.168.1.109)(PORT=1521)))
    Services Summary...
    Service "PLSExtProc" has 1 instance(s).
    Instance "PLSExtProc", status UNKNOWN, has 1 handler(s) for this service...
    Service "orcl" has 1 instance(s).
    Instance "orcl", status READY, has 1 handler(s) for this service...
    Service "orclXDB" has 1 instance(s).
    Instance "orcl", status READY, has 1 handler(s) for this service...
    Service "orcl_XPT" has 1 instance(s).
    Instance "orcl", status READY, has 1 handler(s) for this service...
    The command completed successfully
    C:\Documents and Settings\Paolo\Desktop\courselabs\labs>

  • Getting Started with Podcasting - need some direction/help

    hi,
    I need some information on how to get started Podcasting. Any good online resources, software, etc.
    I have looked at garageband3 on my iMac and it seems to be quite good, but what else is out there and does anyone have any tips or suggestions on getting started?
    Thanks in advance!!
    BCA

    I still have GB 2 so I don't know about GB's podcasting abilities (though some of the questions I see here suggest it's not all that wonderful).
    I use, and would recommend, Podcast Maker:
    http://www.potionfactory.com/podcastmaker/
    which is $29.95 and is available on a 30 day free trial.
    You make your podcast using GB or whatever program you want, and save it as an MP3 file. You then open it in Podcast Maker and add the summary and description fields, and if you want it to be an enhanced podcast you add chapters and the artwork. It will then upload it to your iDisk or the server of your choice, create the XML file, and ping the Apple Store if required. All this is seamless and easy to use.

  • New College MBP - Need Some Windows Help

    Hope this is the right forum (?)!
    For those of you who run Windows on your Macs ...
    My son starts college next year - he's been on a Mac since age 3 (go figure).(We have 5 at home and 5 at work).
    I'm getting him a MBP 17" but he'll need Windows (which I can operate smoothly but thank God know nothing about when it comes to installation and what's on the OS).
    He'll be using OS X for most of his stuff, but some classes apparently require Windows.
    So - BootCamp - that much I can figure out. It's what I need to buy to get Windows installed which has me in a quandary (the MS site is horrible). Does Vista come with Word and Excel and PowerPoint installed, or do I need to buy that separately (along with the Mac version which I have for his OS side of the computer)?
    I'd like to get him set up so he can get used to that strange operating system over the summer, so if any of you parents/pros have any suggestions on what to buy from MS, and how to best get it set up,I'd sure appreciate your input. On that score - antivirus for Windows? What's suggested?
    Thanks (from a confused dad who bought his 1st Mac in 1984, and never looked back - or elsewhere!).
    Message was edited by: pcbjr

    HI,
    Son goes to school but you have homework to do
    BootCamp - Run Windows on your Mac I gave you this link just in case. Might need it in the future.
    To my knowledge Word/Excel and PowerPoint software does not come pre-installed on Windows Vista. http://answers.yahoo.com/question/index?qid=20080629231850AAv0bby
    *"On that score - antivirus for Windows? What's suggested?"* Anti-virus software is definitely a must when running Windows on a Mac. (Avoid Norton). Try here. http://www.mcafee.com/us/
    Here's a link to the BootCamp forums to post for help and suggestions. http://discussions.apple.com/category.jspa?categoryID=237
    Apple Store for Education
    Carolyn

  • ADF Exception--Need some urgent help

    Hi Guys,
    I am a new biee in ADF and am trying to override an apply button on a JSPX page. I have created a Custom Bean, which popultes a drop down list and now now i want to select one item from drop down and when i click the apply button, the selected item from drop down needs to be saved in DB.
    Below is the code that i have written, however when i am trying to execute it i am getting exceptions. Please Help
    Caused By: javax.faces.FacesException: javax.el.PropertyNotFoundException: Missing Resource in EL implementation: ???propertyNotReadable???
    at com.sun.faces.application.ApplicationImpl.createComponent(ApplicationImpl.java:261)
    at javax.faces.webapp.UIComponentELTag.createComponent(UIComponentELTag.java:222)
    at javax.faces.webapp.UIComponentClassicTagBase.createChild(UIComponentClassicTagBase.java:513)
    at javax.faces.webapp.UIComponentClassicTagBase.findComponent(UIComponentClassicTagBase.java:782)
    at javax.faces.webapp.UIComponentClassicTagBase.doStartTag(UIComponentClassicTagBase.java:1354)
    at org.apache.myfaces.trinidad.webapp.UIXComponentELTag.doStartTag(UIXComponentELTag.java:71)
    at oracle.adfinternal.view.faces.unified.taglib.input.UnifiedSelectOneChoiceTag.doStartTag(UnifiedSelectOneChoiceTag.java:51)
    at oracle.jsp.runtime.tree.OracleJspBodyTagNode.executeHandler(OracleJspBodyTagNode.java:50)
    at oracle.jsp.runtime.tree.OracleJspCustomTagNode.execute(OracleJspCustomTagNode.java:262)
    at oracle.jsp.runtime.tree.OracleJspClassicTagNode.evalBody(OracleJspClassicTagNode.java:87)
    at oracle.jsp.runtime.tree.OracleJspBodyTagNode.executeHandler(OracleJspBodyTagNode.java:58)
    at oracle.jsp.runtime.tree.OracleJspCustomTagNode.execute(OracleJspCustomTagNode.java:262)
    at oracle.jsp.runtime.tree.OracleJspClassicTagNode.evalBody(OracleJspClassicTagNode.java:87)
    at oracle.jsp.runtime.tree.OracleJspBodyTagNode.executeHandler(OracleJspBodyTagNode.java:58)
    at oracle.jsp.runtime.tree.OracleJspCustomTagNode.execute(OracleJspCustomTagNode.java:262)
    at oracle.jsp.runtime.tree.OracleJspClassicTagNode.evalBody(OracleJspClassicTagNode.java:87)
    at oracle.jsp.runtime.tree.OracleJspBodyTagNode.executeHandler(OracleJspBodyTagNode.java:58)
    at oracle.jsp.runtime.tree.OracleJspCustomTagNode.execute(OracleJspCustomTagNode.java:262)
    at oracle.jsp.runtime.tree.OracleJspClassicTagNode.evalBody(OracleJspClassicTagNode.java:87)
    at oracle.jsp.runtime.tree.OracleJspBodyTagNode.executeHandler(OracleJspBodyTagNode.java:58)
    at oracle.jsp.runtime.tree.OracleJspCustomTagNode.execute(OracleJspCustomTagNode.java:262)
    at oracle.jsp.runtime.tree.OracleJspClassicTagNode.evalBody(OracleJspClassicTagNode.java:87)
    at oracle.jsp.runtime.tree.OracleJspBodyTagNode.executeHandler(OracleJspBodyTagNode.java:58)
    at oracle.jsp.runtime.tree.OracleJspCustomTagNode.execute(OracleJspCustomTagNode.java:262)
    at oracle.jsp.runtime.tree.OracleJspClassicTagNode.evalBody(OracleJspClassicTagNode.java:87)
    at oracle.jsp.runtime.tree.OracleJspIterationTagNode.executeHandler(OracleJspIterationTagNode.java:45)
    at oracle.jsp.runtime.tree.OracleJspCustomTagNode.execute(OracleJspCustomTagNode.java:262)
    at oracle.jsp.runtime.tree.OracleJspClassicTagNode.evalBody(OracleJspClassicTagNode.java:87)
    at oracle.jsp.runtime.tree.OracleJspBodyTagNode.executeHandler(OracleJspBodyTagNode.java:58)
    at oracle.jsp.runtime.tree.OracleJspCustomTagNode.execute(OracleJspCustomTagNode.java:262)
    at oracle.jsp.runtime.tree.OracleJspNode.execute(OracleJspNode.java:89)
    at oracle.jsp.runtimev2.ShortCutServlet._jspService(ShortCutServlet.java:89)
    at oracle.jsp.runtime.OracleJspBase.service(OracleJspBase.java:29)
    Below is the extract from the jsff.xml
    <mds:insert parent="pfl1" position="first">
    <af:selectOneChoice xmlns:af="http://xmlns.oracle.com/adf/faces/rich" id="e4680291729" label="Custom Dropdown"
    valueChangeListener="#{backingBeanScope.userformbean.submitActionValidator}" binding="#{backingBeanScope.userformbean.emailSelected}">
                   <f:selectItems xmlns:f="http://java.sun.com/jsf/core" value="#{backingBeanScope.userformbean.emaillistdropdown}" id="emlis12" />
              </af:selectOneChoice>
    </mds:insert>
    package oracle.iam.ui.sample.userform.view;
    import java.util.ArrayList;
    import java.util.HashSet;
    import java.util.List;
    import java.util.Set;
    import javax.faces.component.UIComponent;
    import java.util.StringTokenizer;
    import javax.el.MethodExpression;
    import javax.faces.context.FacesContext;
    import javax.faces.event.ActionEvent;
    import javax.faces.model.SelectItem;
    import oracle.adf.model.BindingContext;
    import oracle.adf.view.rich.component.rich.input.RichSelectItem;
    import oracle.adf.view.rich.component.rich.input.RichSelectOneChoice;
    import oracle.binding.BindingContainer;
    import oracle.iam.identity.exception.NoSuchUserException;
    import oracle.iam.identity.exception.UserSearchException;
    import oracle.iam.identity.usermgmt.api.UserManager;
    import oracle.iam.identity.usermgmt.api.UserManagerConstants;
    import oracle.iam.identity.usermgmt.vo.User;
    import oracle.iam.platform.Platform;
    import oracle.iam.platform.entitymgr.vo.SearchCriteria;
    import oracle.iam.selfservice.exception.UserLookupException;
    import oracle.jbo.uicli.binding.JUCtrlListBinding;
    import org.apache.tools.ant.taskdefs.Get;
    //import oracle.iam.ui.sample.common.model.OIMClientFactory;
    public class UserFormRequestBean {
    private static final String USER_LOGIN_ATTRIBUTE = "usr_login__c";
    private static final String EMAIL_ATTRIBUTE = "usr_email__c";
    private static final String EMAIL_LIST_ATTRIBUTE = "EMAIL_LIST__c";
    private static final String LAST_NAME_ATTRIBUTE = "usr_last_name__c";
    private static List<SelectItem> emaillistdropdown;
    private static RichSelectOneChoice emailSelected;
    private String preffemail;
    private static String filterboxvalue;
    private List<User> userlist;
    private static final String USR_LOGIN="oimcontext.currentUser.usr_key";
    private UIComponent emaillist;
    public UserFormRequestBean() {
    setFilterboxvalue("test custom bean");
    setEmaillistdropdown(getEmailList());
    public static List getEmailList() {
    // String userlastname =
    // FacesUtils.getAttributeBindingValue(LAST_NAME_ATTRIBUTE, String.class);
    emaillistdropdown = new ArrayList<SelectItem>();
    try {
    UserManager usrService = OIMClientFactory.getUserManager();
    Set retAttrs = new HashSet();
    String emailAttribute=null;
    SearchCriteria criteria = new SearchCriteria(UserManagerConstants.AttributeName.USER_LOGIN.getId(),"XELSYSADM", SearchCriteria.Operator.EQUAL);
    // SearchCriteria(UserManagerConstants.AttributeName.USER_LOGIN.getId(),userlogin, SearchCriteria.Operator.EQUAL);
    retAttrs.add("EMAIL_LIST");
    List<User> users = usrService.search(criteria, retAttrs, null);
    for (int i = 0; i < users.size(); i++) {
    emailAttribute =(String)users.get(i).getAttribute("EMAIL_LIST");
    System.out.println("Value for email :: " + emailAttribute);
    StringTokenizer st = new StringTokenizer(emailAttribute, ",");
    while (st.hasMoreElements()) {
    SelectItem emaItem = new SelectItem();
    String token = st.nextToken();
    emaItem.setLabel(token);
    emaItem.setValue(token);
    emaillistdropdown.add(emaItem);
    } catch (UserSearchException e) {
    e.printStackTrace();
    return emaillistdropdown;
    * Generic value change listener. Handles value change events of all customized components.
    * Source component is identified by component reference.
    public void submitActionValidator(ActionEvent actionEvent) {
    BindingContainer bindings = BindingContext.getCurrent().getCurrentBindingsEntry();
    // Get the sepecific list binding
    JUCtrlListBinding listBinding = (JUCtrlListBinding)bindings.get("Custom Dropdown");
    // Get the value which is currently selected
    Object emailSelected = listBinding.getSelectedValue();
    System.out.println("Inside SubmitAction Avlidator***********************************");
    // emailSelected =
    // (RichSelectOneChoice)actionEvent.getSource();
    System.out.println("emailSelected***********************************:"+emailSelected);
    if (emailSelected != null) {
    preffemail = emailSelected.toString();
    System.out.println("preffemail***********************************"+preffemail);
    FacesContext facesContext = FacesContext.getCurrentInstance();
    FacesUtils.setAttributeBindingValue(EMAIL_ATTRIBUTE,
    preffemail);
    // execute original submit button action listener
    MethodExpression originalActionListener =
    FacesUtils.getMethodExpressionFromEL("#{backingBeanScope.MyInformationUIBean.applyButton}",
    null,
    new Class[] { ActionEvent.class });
    originalActionListener.invoke(FacesUtils.getELContext(),new Object[] {actionEvent});
    public void setemaillist(UIComponent emaillist) {
    this.emaillist = emaillist;
    public UIComponent getemaillist() {
    return emaillist;
    public static void setFilterboxvalue(String filterboxvalue) {
    filterboxvalue = filterboxvalue;
    public String getFilterboxvalue() {
    return filterboxvalue;
    public void setEmaillistdropdown(List<SelectItem> emaillistdropdown) {
    this.emaillistdropdown = emaillistdropdown;
    public List<SelectItem> getEmaillistdropdown() {
    return emaillistdropdown;
    public void setEmailSelected(RichSelectOneChoice emailSelected) {
    this.emailSelected = emailSelected;
    public static RichSelectOneChoice getEmailSelected() {
    return emailSelected;
    public void setPreffemail(String preffemail) {
    this.preffemail = preffemail;
    public String getPreffemail() {
    return preffemail;
    }

    There isn't sufficient detail in your post. To confirm,
    1) Are you customizing an out-of-the-box WebCenter taskflow?
    2) How are you deploying the new managed bean class? Is it deployed as an ADF Library jar within a shared library?
    3) If ADF Library JAR, do you have the managed bean defined in the config files (adfc-config or faces-config) within the ADF Library JAR

  • Need some URGENT help with 3 DVD mastering issues PLEASE! :

    Hi there,
    Firstly, I am running DVD SP 3.0.2 on Mac OS 10.4.7 on a G5 Dual 2 GHz 3Gb Ram plenty of HD space...
    I am creating a DVD with: An intro sequence, a main menu, 4 sub menus, and 4 sections with around 12 chapters each.
    I am having some big problems, and a pretty stuck. I will lest them separately below, numbered. If you are able to help, please refer clearly to which number you are helping with. Any help is MUCH appreciated! Many thanks!!
    1. Each of the 5 menus (1 main, 4 sub) have a background video, and a separate audio track. I added the background videos by simply dragging them to the assests panel, then from there onto the menu editor window. They are created in FCP and are properly encoded. However, when I click the motion button, or use the simulator, the videos do not show up. The music plays, but all i see is plain black.
    What is going on?!?!?!
    2. I am really struggling with rollover buttons. I have custom created buttons, and I wand them to have a soft red glow around them when hovered over. HOW ON EARTH DO I ACTUALLY DO THIS??
    The buttons are in photoshop so can be exported with/without background/glow in any format.
    3. Is it possible, once I have got the above rollover working, to have an image to the right hand side of my buttons which changes with the the button rollover. i.e. hover over button 1, see image 1. hover over button 2, image changes to image 2.
    PLEASE PLEASE give any help you can, I have a deadline coming up and am quite stumped. Thanks again!!

    I am still having problems regarding issue Number 1. PLEASE ANYONE HELP?!
    Sorry, I'm not sure about the motion menus. I avoid those whenever possible. But you might click on the menu in the storyline tab (whatever it's called -- the hierarchical view with the disc, tracks, slideshows, etc.) and look at the properties and see if there's anything you have to enable specifically for motion. And be sure the motion button is on on the main display/preview area, but it sounds like you already know how that works.
    For your information, here is a screen grab of the menu I am trying to create:
    http://www.redhavoc.co.uk/stuff/menu.jpg
    I think it is obvious that when a button is hovered over, I want it to glow red, and the image to the right will change to match the respective button.
    IS THIS GOING TO BE POSSIBLE????
    Yes.
    First, your menus have to be layered menus. Unfortunately, there's no way to convert non-layered menus to layered menus, so if you already have non-layered, you'll have to just delete them and create new layered menus. The button (and menu item) to create a layered menu should be right by the normal new-menu item.
    Next, the graphical work is all in Photoshop.
    Side tip: You may already know this, but I found it's best to use 640x480 for the Photoshop document. When I do text and leave it as a text object in the Photoshop file, it resizes poorly in DVDSP. So this ends up being another 720x480 vs. 640x480 square/rectangular pixel conversion thing. DVDSP plays in the 640x480 world, at least as far as the designer can see. So I keep my images at 640x480, and it doesn't have to resize, and everything looks right.
    Moving on... Set up your basic background, the part that won't change (or will have other things covering it, like for your square image).
    Then put in all the buttons and images you'll be using, each part in a separate layer. This could have fifteen buttons (you have five buttons, and there can be three versions for each -- inactive, selected, and activated versions) and five or six square images (you said one for each button, and you might want a blank default if, say, you want to add a "back" button on the menu and want some blank or default image for the square when they're on the "back" button).
    Sometimes people don't bother with a separate "active" button state, but you usually want some visual feedback that they clicked the button. Also, I usually just build the default (unselected) button into the background; that's less hassle later on, and it will just draw the selected or activated buttons over that when the user is on that button.
    Line up all your buttons and images. All the square images lined up perfectly on top of each other, all the buttons in the right places (so you'll have three buttons stacked on top of each other in each spot). Give each layer a short but quickly recognizable name, and line them up in a consistent order. (button1-default, button1-selected, button1-active, button1-squarepicture, then button2-default, ... etc.) Photoshop and DVDSP don't care, but it makes it easier for you later.
    Note that earlier versions of DVDSP won't show Photoshop layer effects. (They handle layers, just not the effects, like inner glow, outer bezel, etc.) I don't remember when they changed this, but I think it was version 4.something. So if you're using that method to make your buttons glow, you may have to flatten each selected or active button layer, and you may even need to create a dummy blank layer underneath it first to give it something to flatten onto.
    Save the file as a standard Photoshop file (.psd). Drag the file onto your DVDSP layered menu and set it as the background.
    Now, in DVDSP, create all your buttons. Just drag boxes over/around the button pictures you have. Feel free to make them extra-big; users won't see the actual area you've selected, and bigger areas makes it easier for people to hit them if they're using a mouse on a computer to watch the DVD. You can point the buttons to their targets now if you want, and set the end jumps on the tracks if you want. (I tend to set the end jumps on the tracks so they automatically select the button for the next track.)
    Now's the fun part, since it will actually hook everything up and should be easy if your naming layer order were consistent. Click on the layered menu (in that hierarchical view) and look at the properties window. (Sorry I can't remember the technical names for all these windows; I'm doing this all from memory. So feel free to ask more questions if you can't find what I'm talking about.) One of the properties tabs should have a grid of checkboxes with a list of your layers. Make sure the background is checked for all of the states. Then check the layers you want to show for each button state, as well as the corresponding square image to show for each.
    Again, I'm doing this from memory, and I can't remember exactly how things are listed in that grid. But I remember it keeps your layers in the same order you put them in the Photoshop file and shows you those names, so it should make it easy to go down the list and check the right boxes.
    And another side tip: You can update the Photoshop file, but once you've put it in DVDSP, if you change the layer order, it will screw up the check boxes you checked. It always shows you the layer names correctly, but it keeps the checkboxes in DVDSP simply assigned to the layer number, so the fifth layer will keep the same checkboxes even if you juggle them so some other layer is now the fifth layer. So if you do juggle the layers in Photoshop, go back and fix the checkbox list in DVDSP.
    I put a sample Photoshop file based on yours in
    http://dan.black.org/layered-menu-sample.psd
    It's quick and dirty, but shows the layer layout, and you should be able to drop it on DVDSP to play with. (I also won't leave it there forever, maybe a few weeks, so anybody reading this in a month or more probably will get a 404 for that url.)
    Again, doing this from memory, so feel free to ask if anything doesn't work or doesn't make sense.
    G4/dual867   Mac OS X (10.4.5)   2GB/0.8TB

  • Newbie needs some simple help on triggers

    Hi there. I need to create a trigger and am very new to this language and would love some help.
    I have tables STUDENT, BOOKS, BORROWING.
    When a student borrows a book, a composite entry is created in the BORROWING table. In the Books table, their is an attribute 'Borrowed' with a Y or N.
    When a new record with the same Title as a book is created in borrowing, the value of 'borrowed' needs to be set to Y. So far I have the following, but forgot that I need to insert a WHERE clause so that it doesnt update every book, but only the book that causes the trigger.
    I am having trouble with this- how would i go about doing this? Any help appreacited...
    CREATE OR REPLACE TRIGGER book_returned_trigger
    AFTER DELETE ON borrowing
    FOR EACH ROW
    BEGIN
    UPDATE books
    SET
    borrowed= 'N';
    END;

    Hi guys. Am really having some trouble now. Funny thing is I had it working!
    I have the following tables:
    >
    CREATE TABLE STUDENT
         studentID VARCHAR2(8) NOT NULL,
         firstname VARCHAR2(20) NOT NULL,
         lastname VARCHAR2(20) NOT NULL,
         gender VARCHAR2(10),
         dob DATE,
         address VARCHAR2(20),
         suburb VARCHAR2(20),
         phone VARCHAR2(8),
         PRIMARY KEY(studentID)
    CREATE TABLE BOOKS
         title VARCHAR2(20) NOT NULL,
         publisher VARCHAR2(20),
         year DATE,
         borrowed CHAR(1) CHECK (borrowed IN ('Y','N')),
         PRIMARY KEY(title)
    CREATE TABLE BORROWING
         studentID VARCHAR2(8) NOT NULL,
         title VARCHAR2(20) NOT NULL,
         PRIMARY KEY(studentID,title),
         FOREIGN KEY(studentID) REFERENCES student(studentID),
         FOREIGN KEY(title) REFERENCES books(title)
    >
    My Triggers look like this:
    >
    CREATE OR REPLACE TRIGGER book_borrowed_trigger
    AFTER INSERT ON borrowing
    FOR EACH ROW
    BEGIN
    UPDATE books
    SET
    borrowed= 'Y' WHERE title = :OLD.title;
    END;
    CREATE OR REPLACE TRIGGER book_returned_trigger
    AFTER DELETE ON borrowing
    FOR EACH ROW
    BEGIN
    UPDATE books
    SET
    borrowed= 'N' WHERE title = :OLD.title;
    END;
    >
    and some sample date:
    >
    INSERT INTO student (studentID, firstname,
    lastname, gender, dob, address, suburb, phone)
    VALUES ('34025492','Sally','Field','Female',
    '26/FEB/1970','123 Latrobe Pde','Dromana','59812553');
    INSERT INTO student (studentID, firstname,
    lastname, gender, dob, address, suburb, phone)
    VALUES ('98503345','Ray','Blackburn','Female',
    '9/NOV/1954','52 Murawa Dve','Sorrento','59812433');
    INSERT INTO books (title, publisher, year, borrowed)
    VALUES ('Harry Potter','Roundhouse','1998','N');
    INSERT INTO books (title, publisher, year, borrowed)
    VALUES ('Twilight','Jones Books','2000','N');
    INSERT INTO borrowing (studentID, title)
    VALUES ('20737785','Harry Potter');
    >
    Now I cant get this trigger to change the value of the 'borrowed' column in 'BOOKS' to Y when I create a new record in the BORROWING table that references one of the Books.
    Any idea why? I cant see why! Thanks for the help so far guys
    Edited by: lockmac on Apr 1, 2009 12:40 AM

Maybe you are looking for

  • How to Go to Desktop from Front Row at Once

    In Front Row, I should click Esc several times to go to Desktop. It's sort of annoying. Is there one-click way to go to Desktop while watching DVDs in Front Row?

  • Sun ONE Application Server Assembly Tool

    I have downloded and installed the above assembly tool. This tool looks like the J2EE RI assembly tool, but it does not behave in the same way. I have encountered 3 issues so far, that I need to get solve, if I want to continue. 1. In the RI tool, yo

  • Strange formating in narrow columns

    Each year I send out a newsletter in AW 10.4.6, formatted to look somewhat like a newspaper front page. This involves some more or less narrow columns. Of course this makes left-and-right justification a bit difficult. So on really ugly (space-filled

  • What's required to upgrade from 1.4.0 to 1.4.2?

    I've got four Xserve RAIDs in a single Xsan, with two MDCs (both PowerPC Xserves running OS X Server 10.4.11). They were running Xsan 1.4.0, which meant a lot of our Leopard clients were reporting incorrect sizes for files -- like, video files that w

  • PLD: Row count

    hi all, How we ca  calculate the no. of rows present in the sales order document. for e.g we have sales order  of 2 items A and B. then 2 rows are present in SalesOrder-Row detail. How we can calculate the no.of rows in sales order using PLD. Thanks,