Cannot find any information on property  in a bean of type mypackage??

Hi
I got an error org.apache.jasper.JasperException: Cannot find any information on property in a bean of type mypackage. I tried to find the solution and found that I need to use the naming convention so I fixed it. But I still got that error. Please help me.
Here's my Jsp file.
<%@ taglib prefix="fm" uri="/WEB-INF/matcher.tld"%>
<%@page contentType="text/html" pageEncoding="UTF-8"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<jsp:useBean id="obj" scope="session" class="com.webIndex.match.Matcher"/>
<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
        <link href="wixIndex.css" rel="stylesheet" type="text/css">
        <title>Web Index</title>
    </head>
     <body>
          <%@ include file="header.html" %>
             <jsp:setProperty name="obj" property="*" /> 
         <h4>WIX files for your search
              "<jsp:getProperty name="obj" property="keyword"/>"
         </h4>     
         <h4>  and  
              "<jsp:getProperty name="obj" property="kwinfo"/>":
         </h4>     
         <br>
          ${fm:Matcher(obj, obj.keyword, obj.kwinfo)}
     </body>
</html>And here's my first java program.
public class Matcher {
     public static String match(FindMatch object,
            String keyword, String kwinfo) {
        return object.exact_match(keyword, kwinfo);
         //return keyword;
}And here's my second Java program.
public class FindMatch {
     private String keyword;
     private String kwinfo;
     static String refile;
     public FindMatch() {
        keyword = "";
        kwinfo = "";
     public String getKeyword() {
        return keyword;
     public void setKeyword(String keyword) {
        this.keyword = keyword;
     public String getKwinfo(){
          return kwinfo;
     public void setKwinfo(String kwinfo){
          this.kwinfo = kwinfo;
    public String exact_match(String keyword, String kwinfo)  {
    //     do something here
     return refile.toString();
  }And here's my tld:
<?xml version="1.0" encoding="UTF-8" ?>
<taglib xmlns="http://java.sun.com/xml/ns/j2ee"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee web-jsptaglibrary_2_0.xsd"
    version="2.0">
    <tlib-version>1.0</tlib-version>
    <short-name>fm</short-name>
    <uri>http://com.webIndex.match.Matcher.tld</uri>
    <function>
        <name>Matcher</name>
        <function-class>
            com.webIndex.match.Matcher
        </function-class>
        <function-signature>
            java.lang.String match(
                com.webIndex.match.FindMatch,
                java.lang.String, java.lang.String)
        </function-signature>
    </function>
</taglib>Thanks!!

Ok, I 've changed the name of useBean id to 'matcher' and replace every 'obj' with 'matcher'
But I still got the error.
And so when I tried to do what you said. I got this error.
org.apache.jasper.JasperException: An exception occurred processing JSP page /search_result.jsp at line 27
24:           
25:           <jsp:setProperty name="matcher" property="*" />
26:
27:           <h4>WIX files for your search ${matcher.keyword}</h4>
28:           <h4>and ${matcher.kwinfo}</h4>
And actually, my exact_match is not just like that. But I thought that the problem is not concerned with my problem and it's just concerned with jsp, so i skipped it. Here's the actual progam., i mean exact_match() and I skipped other parts coz it said that my post exceeds maximum allowed words.
package com.webIndex.match;
public class FindMatch {
     private String keyword;
     private String kwinfo;
     static String refile;
     public FindMatch() {
     public String getKeyword() {
        return keyword;
     public void setKeyword(String keyword) {
        this.keyword = keyword;
     public String getKwinfo(){
          return kwinfo;
     public void setKwinfo(String kwinfo){
          this.kwinfo = kwinfo;
       public String exact_match(String keyword, String kwinfo)  {
    //     String loctest="";
     //     loctest = getClass().getResourceAsStream("/resources/wixIndex.xml").toString();
         String fname ="";
         String allentries="";
         keyword = upperCase(keyword);                
              try{
                   //String location = directory.getCanonicalPath();
                   //File indexfile = new File(xmlLocation + "wixIndex.xml");
                   //ServletContext application = getServletConfig().getServletContext();
                   //InputStream indexfile = getClass().getResourceAsStream("/resources/wixIndex.xml");
                   //InputStream namefile = getClass().getResourceAsStream("/resources/indexList.xml");
                   File indexfile = new File ("D:\\Documents and Settings\\May\\workspace\\WixFinder\\WebContent\\WEB-INF\\classes\\resources\\wixIndex.xml");
                  File namefile = new File ("D:\\Documents and Settings\\May\\workspace\\WixFinder\\WebContent\\WEB-INF\\classes\\resources\\indexList.xml");
                      DocumentBuilderFactory domFactory = DocumentBuilderFactory.newInstance();
                   domFactory.setNamespaceAware(true);
                   DocumentBuilder builder = domFactory.newDocumentBuilder();
                   Document doc = builder.parse(indexfile);
                   XPathFactory factory = XPathFactory.newInstance();
                   XPath xpath = factory.newXPath();
                   XPathExpression expr = xpath.compile("//entry//index[keyword='"+keyword+"']" +
                             "//file[not(preceding::file[parent::index[keyword='"+keyword+"']] = .)]");
                   xpath.compile("//file//entry[page='"+input+"']" +
                        "//color[not(preceding::color[parent::entry[page='"+input+"']] = .)]");
                   Object result = expr.evaluate(doc, XPathConstants.NODESET);
                   NodeList nodes = (NodeList) result;
                   refile="";
                   //InputStream namefile = getClass().getResourceAsStream("/resources/indexList.xml");
                   for (int i = 0; i < nodes.getLength(); i++) {
                        fname = nodes.item(i).getTextContent();
                        doc = builder.parse(namefile);
                        expr = xpath.compile("//wixfile//index[file='"+fname+"']//name//text()");
                        result = expr.evaluate(doc, XPathConstants.NODESET);
                        NodeList nodefile = (NodeList)result;                  
                        //showing the file name <desc - name> tag
                        for (int j=0; j< nodefile.getLength(); j++){
                             refile = refile + "<br>" ;
                             refile = refile + nodefile.item(j).getTextContent();
                        //call method to show link
                        String linktodoc = showLink(fname, keyword);
                        //String prvalue = getPageRank(linktodoc);
                        //int rankvalue = Integer.parseInt(prvalue);
                        //PageRankService pgrank = new PageRankService();
                        //int rankvalue = pgrank.getPR(linktodoc);
                        if (rankvalue != -1){
                             refile = refile + "<br>" + "<a href='" + linktodoc + "'>" + linktodoc + "</a>" +
                                  "<br>[Pagerank -" + rankvalue + "]";
                        else{
                             refile = refile + "<br>" + "<a href='" + linktodoc + "'>" + linktodoc + "</a>" +
                             "<br>[Pagerank -" + prvalue + "]";
                        //refile = refile + "<br>" + "<a href='" + linktodoc + "'>" + linktodoc + "</a>";
                        refile = refile + "<br>" + linktodoc;
                        allentries = showentries(fname);
                        refile = refile  +  "Some other keywords from same wix file:" + "<br>" + allentries;
                        //refile = refile + "<input type='"submit"' value='"BOOKMARK!!"' class='"button"'/>"
                        String attach = "<table>" + "<tr bgcolor='#FFCCFF'>" + "<td>" +
                             "<a STYLE='" + "text-decoration:none'" +
                                  "href='" + "attach.jsp" + "'>" +
                             "<strong>" + "Attach This" + "</strong>" + "</a>" +
                             "</td>" + "</tr>" + "</table>";
                        refile = refile + "<br>" + attach;
              }catch(Exception e){return e.toString();}
         if (refile != ""){
              refile = refile.substring(4, refile.length());
             return refile.toString();
         else
              return "<h4>No such exact match!</h4>";
}And actually, my program totally worked fines when I pass only 'keyword' and the error occurs after I add 'kwinfo' to it.
Thanks.

Similar Messages

  • : Cannot find any information on property 'Product' in a bean of type '

    /********jsp file ********/
    <%@ page language="java" import="taxrate.*" %>
    <HTML>
    <BODY>
    <jsp:useBean id="TaxRate" scope="application" class="taxrate.TaxRate" />
    before modify
    <br>
    product :<jsp:getProperty name="TaxRate" property="Product"/>
    �@ <br>
    rate :<jsp:getProperty name="TaxRate" property="Rate" />
    <jsp:setProperty name="TaxRate" property="Product" value="Hello" />
    <jsp:setProperty name="TaxRate" property="Rate" value="2.9" />
    after modify�F
    <br>
    product : <jsp:getProperty name="TaxRate" property="Product" />
    �@ <br>
    rate : <jsp:getProperty name="TaxRate" property="Rate" />
    </BODY></HTML>="TaxRate" property="Rate" />
    </BODY></HTML>
    /*******bean file********/
    package taxrate;
    import java.sql.*;
    public class TaxRate{
    String Product;
    double Rate;
    public TaxRate(){
    this.Product = "A001";
    this.Rate = 5;}
    public void setProduct (String ProductName)
    {this.Product = ProductName;}
    public String getProduct(){return(this.Product);}
    public void setRate (double rateValue)
    this.Rate = rateValue;
    public double getRate()
    return (this.Rate);
    /******the error is********/
    Error: 500
    Location: /client/taxrate.jsp
    Internal Servlet Error:
    org.apache.jasper.JasperException: Cannot find any information on property 'Product' in a bean of type 'com.nokianeu.client.TaxRate'
         at org.apache.jasper.runtime.JspRuntimeLibrary.getReadMethod(JspRuntimeLibrary.java:619)
         at org.apache.jasper.compiler.GetPropertyGenerator.generate(GetPropertyGenerator.java:101)
         at org.apache.jasper.compiler.JspParseEventListener$GeneratorWrapper.generate(JspParseEventListener.java:730)
         at org.apache.jasper.compiler.JspParseEventListener.generateAll(JspParseEventListener.java:200)
         at org.apache.jasper.compiler.JspParseEventListener.endPageProcessing(JspParseEventListener.java:169)
         at org.apache.jasper.compiler.Compiler.compile(Compiler.java:183)
         at org.apache.jasper.runtime.JspServlet.loadJSP(JspServlet.java:413)
         at org.apache.jasper.runtime.JspServlet$JspServletWrapper.loadIfNecessary(JspServlet.java:149)
         at org.apache.jasper.runtime.JspServlet$JspServletWrapper.service(JspServlet.java:161)
         at org.apache.jasper.runtime.JspServlet.serviceJspFile(JspServlet.java:261)
         at org.apache.jasper.runtime.JspServlet.service(JspServlet.java:369)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at org.apache.tomcat.core.ServletWrapper.handleRequest(ServletWrapper.java:503)
         at org.apache.tomcat.core.ContextManager.service(ContextManager.java:559)
         at org.apache.tomcat.service.http.HttpConnectionHandler.processConnection(HttpConnectionHandler.java:160)
         at org.apache.tomcat.service.TcpConnectionThread.run(SimpleTcpEndpoint.java:338)
         at java.lang.Thread.run(Unknown Source)
    /******* use tomcat 3.11**********/
    please give me the right answer
    thank you!

    Hi xzwsun.
    Where did you put your class taxrate.TaxRate ?
    In which folder? is it in \WEB-INF\classes ?
    so that you have \WEB-INF\classes\taxrate\TaxRate.class
    --Paul.                                                                                                                                                                                                                                                                                                                                               

  • Cannot find any information on property 'isbn' in a bean of type '

    hi all,
    i am doing my course work and i have been stuck with this error for the past 2 days. wonering if anyone can help?
    i have use this in my jsp page.
    <jsp:useBean id="validateBean"
    scope="request"
    class="edu.rmit.isys2049.validation.BookValidationBean" />
    <jsp:setProperty name="validateBean" property="publisherId" />
    <jsp:setProperty name="validateBean" property="isbn" />
    <jsp:setProperty name="validateBean" property="title" />
    <jsp:setProperty name="validateBean" property="author" />
    under the BookValidateBean.java i had define the setter and getter for isbn
    public void setISBN(String isbn)
    this.isbn = isbn;
    public String getISBN() {
    return isbn;
    but still i got this error, where have i went wrong??
    error message
    Message: Cannot find any information on property 'isbn' in a bean of type '

    Cannot find any information on property 'firstname' in a bean of type
    since in the bean i use
    private String firstname
    and
    getFirstname
    setFirstname
    also i am using eclipse
    still i get this error
    can u suggest somthing
    basically i want firstname back to same textbox if the page is reload by some means.
    waiting for ur reply

  • Cannot find any information on property 'Name' in a bean of type 'UserBean'

    Hello,
    I was trying to solve this problem myself but never got through, its really routine. So please can you see this error message, html file, jsp file and say if there are mistakes or if I need to add something else somewhere?
    Error
    org.apache.jasper.JasperException: Cannot find any information on property 'Name' in a bean of type 'UserBean'
    HTML
    <html>
    <head>
    <title>jsp test</title>
    </head>
    <body bgcolor ="white">
    <form action ="course.jsp" method ="post">
    <table>
    <tr><td>userName:</td>
    <td><input type="text"      name ="Name">
    </td>
    </tr>
    <tr>
    <td>userID:</td>
    <td><input type ="text" name ="ID"></td>
    </tr>
    <tr>
    <td>userAddress</td>
    <td><textarea name ="Description"></textarea></td>
    </tr>
    <tr>
    <td><input type ="submit" name ="submit"></td>
    </table>
    </form>
    </body>
    </html>
    JSP
    <%@ page language="java" contentType="text/html" %>
    <html>
    <body bgcolor="white">
    <jsp:useBean id="courseBean" class="UserBean">
    <jsp:setProperty name="courseBean" property="*" />
    </jsp:useBean>
    The following was done:
    <jsp:getProperty name="courseBean" property="Name" />
    <jsp:getProperty name="courseBean" property="ID" />
    <jsp:getProperty name="courseBean" property="Description" />
    </body>
    </html>
    JAVABEAN:
    public class UserBean implements Serializable{
    private String Name;
    private String ID;
    private String Description;
    public UserBean(){
    public void setName(String Name){
    this.Name=Name;
    public String getName(){
    return ID;
    public void seID(int userID){
    this.ID=ID;
    public int getUserID(){
    return ID;
    public void setDescription(String Description){
    this.Description=Description;
    public String getDescription(){
    return Description;
    Thank you in advance
    Ajlear

    Use a lower case initial on a bean property name.
    Instead of:
    <jsp:getProperty name="courseBean" property="Name" />try:
    <jsp:getProperty name="courseBean" property="name" />The same will apply to other properties. Also, make sure you use the lower case initial on form field names. e.g. <input type="text" name ="name"> for use in <jsp:setProperty name="courseBean" property="*" />

  • Cannot find any information on property

    I'm running tomcat 4.1. I have created one simple bean. When I tried to run a JSP page containing getProperty JSP tag, I got this message:
    Cannot find any information on property 'Message' in a bean of type 'SimpleBean'. What could have gone wrong?

    hi,
    In your bean you must have setMessage method. set must be lower case "set" and Message must begin with an upper case "M".
    In your setProperty (or getProperty) tag you have <jsp:setProperty name="beanName" property="message" value="someValue" />. Here "message" MUST begin with a lower case "m" .
    Please post the code you are using.That would enable us to figure out the problem exactly
    -Amol

  • ERROR: Cannot find any information on property 'quantity' in a bean of type

    hi guys,
    i am new Jsp now working with JBeans. guys i gone crazy with the error.... plz help me
    here is my source code : FruitOrder.html
    <html>
    <body>
    <h1> Fruit Order Form </h1>
    Fruit : Mango<br>
    Color : Orange<br>
    Price Per Pound:   $5.95 <br>
    <form action="confirm.jsp" method="post">
    Number of pounds: <input type="text" name="QTY"><br>
                      <input type="submit" name="QTY">
    </form>
    </body>
    </html>---------------------------------------------------------------------------------------------------------------
    here i got the error
    <jsp:useBean id="orderedFruit" class="Fruit" />
    <jsp:setProperty name="orderedFruit" property="fruitName" value="Mango" />
    <jsp:setProperty name="orderedFruit" property="color" value="Orange" />
    <jsp:setProperty name="orderedFruit" property="price" value="5.95" />
    <jsp:setProperty name="orderedFruit" property="quantity" param="QTY" />
    <html>
    <body>
    <h1> Your Fruit order</h1>
    <br><br>
    Fruit: <jsp:getProperty name="orderedFruit" property="fruitName" /><br>
    Color: <jsp:getProperty name="orderedFruit" property="color" /><br>
    price: <jsp:getProperty name="orderedFruit" property="price" /><br>
    Quantity: <jsp:getProperty name="orderedFruit" property="quantity" />
    <p>
    </p>
    <a href="FruitOrder.html"> Return to order form to adjust quantity </a>
    </body>
    </html>--------------------------------------------------------------------
    here is the bean code : Fruit
    public class Fruit
      private String fruitName;
      private int quantity;
      private String color;
      private boolean isCitrus;
      private float price;
      public String getFruitName()
        return this.fruitName;
      public void setFruitName( String name)
       this.fruitName=name;
      public int getQuantityInPounds()
        return this.quantity;
      public void setQuantityInPounds(int quantity)
         this.quantity=quantity;
      public String getColor()
        return this.color;
      public void setColor(String color)
       this.color=color;
      public float getPrice()
       return this.price;
      public void setPrice(float price)
       this.price=price;
      public boolean isCitrus()
       return this.isCitrus;
      public void setCitrus(boolean isCitrus)
       this.isCitrus=isCitrus;
    }thxs

    BalusC wrote:
    "quantity" != "quantityInPounds".
    Besides, to prevent new problems in the future, you should use packages.org.apache.jasper.JasperException: Unable to compile class for JSP:
    An error occurred at line: 1 in the jsp file: /confirm.jsp
    Fruit cannot be resolved to a type
    1: <jsp:useBean id="orderedFruit" class="Fruit" />
    2: <jsp:setProperty name="orderedFruit" property="fruitName" value="Mango" />
    3: <jsp:setProperty name="orderedFruit" property="color" value="Orange" />
    4: <jsp:setProperty name="orderedFruit" property="price" value="5.95" />
    An error occurred at line: 1 in the jsp file: /confirm.jsp
    Fruit cannot be resolved to a type
    1: <jsp:useBean id="orderedFruit" class="Fruit" />
    2: <jsp:setProperty name="orderedFruit" property="fruitName" value="Mango" />
    3: <jsp:setProperty name="orderedFruit" property="color" value="Orange" />
    4: <jsp:setProperty name="orderedFruit" property="price" value="5.95" />
    An error occurred at line: 1 in the jsp file: /confirm.jsp
    Fruit cannot be resolved to a type
    1: <jsp:useBean id="orderedFruit" class="Fruit" />
    2: <jsp:setProperty name="orderedFruit" property="fruitName" value="Mango" />
    3: <jsp:setProperty name="orderedFruit" property="color" value="Orange" />
    4: <jsp:setProperty name="orderedFruit" property="price" value="5.95" />
    An error occurred at line: 12 in the jsp file: /confirm.jsp
    Fruit cannot be resolved to a type
    9: <h1> Your Fruit order</h1>
    10: <br><br>
    11:
    12: Fruit: <jsp:getProperty name="orderedFruit" property="fruitName" /><br>
    13: Color: <jsp:getProperty name="orderedFruit" property="color" /><br>
    14: price: <jsp:getProperty name="orderedFruit" property="price" /><br>
    15: Quantity: <jsp:getProperty name="orderedFruit" property="quantity" />
    An error occurred at line: 13 in the jsp file: /confirm.jsp
    Fruit cannot be resolved to a type
    10: <br><br>
    11:
    12: Fruit: <jsp:getProperty name="orderedFruit" property="fruitName" /><br>
    13: Color: <jsp:getProperty name="orderedFruit" property="color" /><br>
    14: price: <jsp:getProperty name="orderedFruit" property="price" /><br>
    15: Quantity: <jsp:getProperty name="orderedFruit" property="quantity" />
    16:
    An error occurred at line: 14 in the jsp file: /confirm.jsp
    Fruit cannot be resolved to a type
    11:
    12: Fruit: <jsp:getProperty name="orderedFruit" property="fruitName" /><br>
    13: Color: <jsp:getProperty name="orderedFruit" property="color" /><br>
    14: price: <jsp:getProperty name="orderedFruit" property="price" /><br>
    15: Quantity: <jsp:getProperty name="orderedFruit" property="quantity" />
    16:
    17: <p>
    An error occurred at line: 15 in the jsp file: /confirm.jsp
    Fruit cannot be resolved to a type
    12: Fruit: <jsp:getProperty name="orderedFruit" property="fruitName" /><br>
    13: Color: <jsp:getProperty name="orderedFruit" property="color" /><br>
    14: price: <jsp:getProperty name="orderedFruit" property="price" /><br>
    15: Quantity: <jsp:getProperty name="orderedFruit" property="quantity" />
    16:
    17: <p>
    18:

  • Do I need the "Wildcard in House" in the Settings, General, Profile. This says that it is expiring and cannot find any information about this from Apple or Verizon.

    Do I need the "Wildcard in House" in the Settings, General, Profile?
    This says that it is expiring and cannot find any information about this from Apple or Verizon.

    Apple haven't yet signed agreements with yell.com and similar local information services here in the UK or in europe. The rumor is that in the UK and others, will get it sometime towards the beginning of the year.

  • Cannot find any information on this Sun Server I just got

    Hi, Just got this Sun Server and I cant find in the Sun knowledgebase or support section.
    The box is approx 50cm x 50 cm and 6cm high.
    On the back it has 2 Network ports, Lom Serial A & B ports and a pci card with 4 Lan ports.
    Font face plate states Webshield eppliance.
    Label on back states: Compliance model number: FJ1A and Part Number 263-0819-01.
    I have tried hookin up to the serial port with a RJ45 to db9 cable but nothing happens. Perhaps I have the wrong terminal settings entered.
    Maybe this unit is known by another name. I would really like to find all the relevant user guides and how-to documents though.
    Any help appreciated.
    Henyak

    A brief Google search suggests that Network Associates may have acquired a bunch of systems and remanufactured and re-labelled them as their own product. That means it no longer would be a Sun system, but is a Network Associates' product.
    If indeed it is a 1U formfactor as you described, then the closest comparable Sun system might be the Netra T1 105 (360MHz or possibly 440MHz cpu).
    Go to Docs.Sun.Com and get the T1 105's documentation and see if you can make it work.
    I hope you didn't pay very much - in fact almost nothing.
    It's old and slow.
    Solaris 8 would be about the newest OS that wouldn't burden it with overhead.

  • Hello! I have one iTunes library on my iPod and one iTunes library on my computer. When I connect my iPod touch to my PC, however, I cannot find any files in my iPod except for pictures. How can I find the music files so I can add them to my iTunes?

    Hello! I have one iTunes library on my iPod and one iTunes library on my computer. When I connect my iPod touch to my PC, however, I cannot find any files in my iPod except for pictures. How can I find the music files so I can add them to my iTunes?

    You can't do that.
    And before you decide to store any music that you own on a computer at work, talk to your IT department. Many organizations do not permit it for legal reasons. Standard policies are that anything stored on company owned computers is the property of the company. It could not be legally stored on their machines unless you transfer the licenses and all copies, physical and digital, to the company, meaning you no longer own the music. If they were to be audited and could not prove that they own the music, they would be subject to copyright violation penalties. Just use your iPod when you're at the office if you want to listen to music.

  • How can I query all the members of a group using querbuilder?  I cannot find any related properties

    How can I query all the members of a group using querbuilder?  I cannot find any related properties describing members under /home/groups/s/sample_group in jcr repository.

    Hi,
    FieldPoint Explorer is no longer used to configure FieldPoint systems. However, I do not think that the configuring your system in FieldPoint Explorer is causing the error.
    FieldPoint systems are now setup in Measurement and Automation Explorer (MAX).  Information on setting up FieldPoint systems in MAX can be found in the MAX help under: Installed Products>> FieldPoint. Also, I recommend upgrading to the latest FieldPoint driver and version of MAX.  The FieldPoint VI's will be slightly different when you upgrade, so there is a good chance that this will eliminate the error.
    Regards,
    Hal L.

  • Cannot find any template in premiere nor encore etc (CS6)

    Hello,
    cannot find any template in premiere nor encore etc (CS6), I had them with cs5.5 can someone help me in trying to isntall those?
    Thanks
    Regards
    Felice

    See if the information at the following link helps solve the problem:
    http://helpx.adobe.com/x-productkb/multi/library-functional-content-missing.html

  • My Mac is showing that I am out of disk space.  It says I have 175 MB of videos.  I cannot find any videos in Itunes, Imovie or IPicture.  What gives?

    My Mac is showing that I am out of disk space.  It says I have 175 MB of videos.  I cannot find any videos in Itunes, Imovie or IPicture.  What gives?

    For information about the Other category in the Storage display, see this support article. If the Storage display seems to be inaccurate, try rebuilding the Spotlight index.
    Empty the Trash if you haven't already done so. If you use iPhoto, empty its internal Trash first:
    iPhoto ▹ Empty Trash
    Do the same in other applications, such as Aperture, that have an internal Trash feature. Then restart the computer. That will temporarily free up some space.
    According to Apple documentation, you need at least 9 GB of available space on the startup volume (as shown in the Finder Info window) for normal operation. You also need enough space left over to allow for growth of the data. There is little or no performance advantage to having more available space than the minimum Apple recommends. Available storage space that you'll never use is wasted space.
    When Time Machine backs up a portable Mac, some of the free space will be used to make local snapshots, which are backup copies of recently deleted files. The space occupied by local snapshots is reported as available by the Finder, and should be considered as such. In the Storage display of System Information, local snapshots are shown as  Backups. The snapshots are automatically deleted when they expire or when free space falls below a certain level. You ordinarily don't need to, and should not, delete local snapshots yourself. If you followed bad advice to disable local snapshots by running a shell command, you may have ended up with a lot of data in the Other category. Ask for instructions in that case.
    See this support article for some simple ways to free up storage space.
    You can more effectively use a tool such as OmniDiskSweeper (ODS) or GrandPerspective (GP) to explore the volume and find out what's taking up the space. You can also delete files with it, but don't do that unless you're sure that you know what you're deleting and that all data is safely backed up. That means you have multiple backups, not just one. Note that ODS only works with OS X 10.8 or later. If you're running an older OS version, use GP.
    Deleting files inside an iPhoto or Aperture library will corrupt the library. Any changes to a photo library must be made from within the application that created it. The same goes for Mail files.
    Proceed further only if the problem isn't solved by the above steps.
    ODS or GP can't see the whole filesystem when you run it just by double-clicking; it only sees files that you have permission to read. To see everything, you have to run it as root.
    Back up all data now.
    If you have more than one user account, make sure you're logged in as an administrator. The administrator account is the one that was created automatically when you first set up the computer.
    Install the app you downloaded in the Applications folder as usual. Quit it if it's running.
    Triple-click anywhere in the corresponding line of text below on this page to select it, then copy the selected text to the Clipboard by pressing the key combination command-C:
    sudo /Applications/OmniDiskSweeper.app/Contents/MacOS/OmniDiskSweeper
    sudo /Applications/GrandPerspective.app/Contents/MacOS/GrandPerspective
    Launch the built-in Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Paste into the Terminal window by pressing command-V. You'll be prompted for your login password, which won't be displayed when you type it. You may get a one-time warning to be careful. If you see a message that your username "is not in the sudoers file," then you're not logged in as an administrator.
    The application window will open, eventually showing all files in all folders, sorted by size. It may take a few minutes for the app to finish scanning.
    I don't recommend that you make a habit of doing this. Don't delete anything as root. If something needs to be deleted, make sure you know what it is and how it got there, and then delete it by other, safer, means. When in doubt, leave it alone or ask for guidance.
    When you're done with the app, quit it and also quit Terminal.

  • "Cannot find any provider supporting RSA/ECB/PKCS1Padding" in jdk5

    i use SSLSocket, HttpsURLConnection in program , run well in jdk1.4 but
    get wrong in jdk1.5.0_06, saying "Cannot find any provider supporting RSA/ECB/PKCS1Padding".
    i also try to use the "Unlimited Strength Jurisdiction Policy Files 5.0", but still not work.
    anyone knows why?
    thanks.

    I need more info to tell you exactly. But here are some thngs that might not be working.
    1st let me say I am assuming you are trying RSA encryption?
    1) You have an external JCE provider which provides RSA support installed on your machine using the security properties file. An applet would use a different properties file if you are using either RAW applet or the plugin. You need to add the provider explictly. Aka Security.addProvider(new org.cryptix.jce.Criptix());
    2) The external provider's jar file is not being downloaded with your applet code. Note that the Sun Java plugin does not use the same jre/lib/ext directory as does the JDK.
    3) Some sort of security violation in the SecurityManager of the applet engine if you are not using the Sun Java Plugin.
    Those are just guesses. but it might help if you were to inform us as to what RSA function youa re trying to do. AKA Signature or Cipher.
    Signatures would be a bit more complicated as at least JDK 141 and above have the SunRsaSigner built in. Again if you are using RAW applets (netscape/IE engine) then that would be the problem. (aka no provider installed).

  • X300: bluetooth blue on taskbar but cannot find any device (stack error)

    Hello, most likely after installing SP3 or the latest Access connections file, 7xcx23ww.exe, I am unable to connect to any bluetooth device. 
    the latest Bluetooth with Enhanced data rate software for xp 5.5.0.6400 has been applied, as well as Microsoft Bluetooth Support file for Bluetooth with Enhanced Data Rate for Windows XP, ver 2.0 .
    Is there something i am missing here?  The task bar shows the Bluetooth icon in blue, but it cannot find any local bluetooth device. 
    Clifford

    Apple claims the iphone supports bluetooth tethering for the hotspot, did I recieve some incorrect information?  Also the hotspot is less than ideal.  It rarely appears on my 2011 macbook or my wife's iphone.  Any help with this stuff other than Apple is behind the 8 ball

  • I need to change the credit card and credit card holder of our monthly plans.. but i cannot find any billing button. could you kindly advise?

    dear all
    i need to change the credit card and credit card holder of our monthly plans.. but i cannot find any billing button.
    neither can i find any support by adobe regarding invoicing issues.
    could any of you help me?
    thanks,
    inga

    Change of Credit Card information for creative cloud membership
    1) Login to creative.adobe.com.
    2) Click on the manage my subscription.
    3) Edit my billing information
    For Invoice
    1) Login to adobe.com
    2) go to my orders and select the order number and print the invoice from there

Maybe you are looking for

  • Hp Photosmart 6520 printer assistant error

    I have the Photosmart 6520 printer setup on the ip address and running windows 8.1 When I run the printer assistant for scanning on the Windows side everything works fine BUT when I do to the desktop option and then try and run the scanning option (u

  • Can I leave an iPhone 5c on charge all night?

    Hi, I have recently purchased an iPhone 5C and just have a few questions. Does the phone have to be powered on for the alarm to go off? If so, can I leave the phone on charge all night so my alarm will go off in the morning without causing any harm t

  • Using one copy of Aperture on two computers or more

    I have a registered copy of Aperture 1.5.6 and have downloaded the trial version of Aperture 2. I'm thinking of getting a MacBool Pro. My question: Will I be able to use my 1.5.6 disc on the MacBook Pro or will the disc only work on one computer. If

  • Help in PLD

    Dear Experts, Good Day. In Sales Analysis report -> Items tab -> Secondary selection -> customer field select one BP -> Okay In the Sales Analysis by Item (Annual) Report is good. But  I need PLD for that report. In that, I was tried to add the feild

  • The semaphore timeout period has expired

                       Ok seriously what the heck does this mean? Its been happening within this last week! I am using Secure CRT...connectivity is fine between me and router no drops in pings for over 30 mintues.