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="*" />

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

  • 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:

  • 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

  • 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.

  • 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.

  • Cannot find '\\file\name'. Verify the path or Internet address is correct. Cannot find any answer any where in this forum.

    I cannot find any answer any where in this forum. PLEASE Help!!!   I'm receiving this error message every I click on the link, this only happen
    on the desktop, but Laptop has no problem to access the file, and everyone else in my group --they don't have issue.
    Run Windows 7 Enterprise SP 1, IE ver 9 and 11
    Thanks in advance.
    Akira

    Hi,
    Could please clarify the steps to reproduce this issue? Did this issue occur when clicking on a link in an email message within Outlook?
    If I didn't misunderstand it, please first try to log into the web mail to check if this issue persists.
    If problem didn't exist in webmail, please try to open your Internet Explorer with no add-on mode to troubleshoot the issue. See:
    http://support.microsoft.com/kb/976915/en-us
    If above didn't fix the issue, please try to reset your Internet Explorer to check the result:
    http://support.microsoft.com/kb/923737/en-us
    Note: Resetting Internet Explorer isn't reversible, and all previous settings are lost after the reset.
    Hope this helps.
    Regards,
    Steve Fan
    TechNet Community Support

  • 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.

  • 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.

  • I have purchased a new iPad2 and I was wondering if there is a way to get iPod content onto this new device. I am having difficulty finding any information on this kind of transfer and I am not sure if it is even possible. Thanks

    I have purchased a new iPad2 and I was wondering if there is a way to get iPod content onto this new device. I am having difficulty finding any information on this kind of transfer and I am not sure if it is even possible. Just not looking forward to loosing my progress in games and information in notes and other apps. Thanks

    Have you been syncing the iPod with iTunes? Then you just connect the iPad and set it up through iTunes and sync any content you want onto it.
    http://support.apple.com/kb/ht1386
    In terms of games/apps. If they are not universal (you will see a + symbol next to them) or made for iPad (you would see an HD in the name, usually) then they won't look good on an iPad as those apps will open in a iPod sized window, giving you the option to enlarge.

  • Cannot find service {0}. Parameter name: SQLWriter SQL Express 2008 R2 SP2

    Hi, installing SQL Express 2008 R2 SP2 onto Windows Server 2012 R2.   I had previously removed SQL Express 2012 due to failed install due to incompatibility with our SAN.   (I had uninstalled it via Programs & Features,
    and also by following Shanky's tips. http://social.technet.microsoft.com/wiki/contents/articles/24364.sql-server-troubleshooting-could-not-find-database-engine-startup-handle-error-during-installation.aspx).
    This is what's in Detail log: 
    014-10-07 13:12:00 Slp: Parameter 5 : SqlEngineConfigAction_install_confignonrc
    2014-10-07 13:12:00 Slp: Parameter 6 : 0x50806C41
    014-10-07 13:12:01 Slp: Sco: Attempting to write hklm registry key SOFTWARE\Microsoft\Microsoft SQL Server to file C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20141007_122920\Registry_SOFTWARE_Microsoft_Microsoft SQL Server.reg_
    2014-10-07 13:12:01 Slp: Sco: Attempting to write hklm registry key SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall to file C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20141007_122920\Registry_SOFTWARE_Microsoft_Windows_CurrentVersion_Uninstall.reg_
    2014-10-07 13:12:01 Slp: Sco: Attempting to write hklm registry key SOFTWARE\Microsoft\MSSQLServer to file C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20141007_122920\Registry_SOFTWARE_Microsoft_MSSQLServer.reg_
    2014-10-07 13:12:01 Slp: Sco: Attempting to write hklm registry key SOFTWARE\Wow6432Node\Microsoft\Microsoft SQL Server to file C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20141007_122920\Registry_SOFTWARE_Wow6432Node_Microsoft_Microsoft SQL
    Server.reg_
    2014-10-07 13:12:01 Slp: Sco: Attempting to write hklm registry key SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall to file C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20141007_122920\Registry_SOFTWARE_Wow6432Node_Microsoft_Windows_CurrentVersion_Uninstall.reg_
    2014-10-07 13:12:01 Slp: Sco: Attempting to write hklm registry key SOFTWARE\Wow6432Node\Microsoft\MSSQLServer to file C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20141007_122920\Registry_SOFTWARE_Wow6432Node_Microsoft_MSSQLServer.reg_
    2014-10-07 13:12:02 Slp: Cannot find service {0}.
    The SqlEngineConfigAction_install_confignonrc part is what is in the background before the
    Cannot find service {0}. Parameter name: SQLWriter pops up.
    And in Event Viewer:
    Log Name:      Application
    Source:        Microsoft-Windows-RestartManager
    Date:          10/7/2014 1:11:48 PM
    Event ID:      10010
    Task Category: None
    Level:         Warning
    Keywords:     
    User:          SYSTEM
    Computer:     
    Description:
    Application 'C:\31f53f2e988a36f2c31e\x64\setup100.exe' (pid 688) cannot be restarted - Application SID does not match Conductor SID..
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Microsoft-Windows-RestartManager" Guid="{0888E5EF-9B98-4695-979D-E92CE4247224}" />
        <EventID>10010</EventID>
        <Version>0</Version>
        <Level>3</Level>
        <Task>0</Task>
        <Opcode>0</Opcode>
        <Keywords>0x8000000000000000</Keywords>
        <TimeCreated SystemTime="2014-10-07T20:11:48.532980400Z" />
        <EventRecordID>4538</EventRecordID>
        <Correlation />
        <Execution ProcessID="732" ThreadID="2548" />
        <Channel>Application</Channel>
        <Computer></Computer>
        <Security UserID="S-1-5-18" />
      </System>
      <UserData>
        <RmUnsupportedRestartEvent xmlns="http://www.microsoft.com/2005/08/Windows/Reliability/RestartManager/">
          <RmSessionId>0</RmSessionId>
          <Pid>688</Pid>
          <FullPath>C:\31f53f2e988a36f2c31e\x64\setup100.exe</FullPath>
          <DisplayName>Managed SQL Server Installer</DisplayName>
          <AppVersion>0</AppVersion>
          <AppType>5</AppType>
          <TSSessionId>2</TSSessionId>
          <Status>67108865</Status>
          <Reason>1</Reason>
        </RmUnsupportedRestartEvent>
      </UserData>
    </Event>
    Found one article saying you can get this if previous version not fully removed, and to do a repair of the previous version, but as I said I uninstalled it and followed all steps for cleanup, so nothing to repair. 

    Here is the ERRORLOG file from C:\Program Files\Microsoft SQL Server\MSSQL10_50.MSSQLSERVER\MSSQL\Log.  At the bottom I am seeing the error you said before was a SAN issue.  I had hoped that issue was only with
    SQL 2012, but it appears it is even with 2008?
    If that is still the issue, I'm trying to understand if by the articles, if the SAN conflict is an OS issue or an SQL issue?   In other words, is it because the OS is Server 2012?   Or would this still occur if I install SQL
    2008 on Server 2008 R2?    I don't know that they will be willing to upgrade the SAN, and I don't really want to fool with a .VHD (virtual disk) as a workaround speaks of.
    If you're asking if I did this from your article:  select startup account for Database Engine services as NT Authority\SYSTEM 
    , I don't recall what I did this last time.  I was doing that the last few days, but I think I didn't switch it to that once, just to see if I would have success.  I don't know if that was this last time or not when I switched it. 
    Is there anywhere I can check that after the fact?
    014-10-08 12:53:09.84 Server      Microsoft SQL Server 2008 R2 (SP2) - 10.50.4000.0 (X64)
     Jun 28 2012 08:36:30
     Copyright (c) Microsoft Corporation
     Express Edition (64-bit) on Windows NT 6.2 <X64> (Build 9200: )
    2014-10-08 12:53:09.84 Server      (c) Microsoft Corporation.
    2014-10-08 12:53:09.84 Server      All rights reserved.
    2014-10-08 12:53:09.84 Server      Server process ID is 2640.
    2014-10-08 12:53:09.84 Server      System Manufacturer: 'IBM', System Model: 'IBM System x -[7870AC1]-'.
    2014-10-08 12:53:09.84 Server      Authentication mode is WINDOWS-ONLY.
    2014-10-08 12:53:09.84 Server      Logging SQL Server messages in file 'c:\Program Files\Microsoft SQL Server\MSSQL10_50.MSSQLSERVER\MSSQL\Log\ERRORLOG'.
    2014-10-08 12:53:09.84 Server      This instance of SQL Server last reported using a process ID of 2848 at 10/8/2014 10:56:44 AM (local) 10/8/2014 5:56:44 PM (UTC). This is an informational message only; no user action is required.
    2014-10-08 12:53:09.84 Server      Registry startup parameters:
      -d c:\Program Files\Microsoft SQL Server\MSSQL10_50.MSSQLSERVER\MSSQL\DATA\master.mdf
      -e c:\Program Files\Microsoft SQL Server\MSSQL10_50.MSSQLSERVER\MSSQL\Log\ERRORLOG
      -l c:\Program Files\Microsoft SQL Server\MSSQL10_50.MSSQLSERVER\MSSQL\DATA\mastlog.ldf
    2014-10-08 12:53:09.84 Server      Command Line Startup Parameters:
      -m SqlSetup
      -f
      -Q
      -q SQL_Latin1_General_CP1_CI_AS
      -T 4022
      -T 4010
      -T 3659
      -T 3610
      -T 902
      -d c:\Program Files\Microsoft SQL Server\MSSQL10_50.MSSQLSERVER\MSSQL\Template Data\master.mdf
      -l c:\Program Files\Microsoft SQL Server\MSSQL10_50.MSSQLSERVER\MSSQL\Template Data\mastlog.ldf
    2014-10-08 12:53:09.86 Server      Warning: The server instance was started using minimal configuration startup option (-f). Starting an instance of SQL Server with minimal configuration places the server in single-user mode automatically. 
    After the server has been started with minimal configuration, you should change the appropriate server option value or values, stop, and then restart the server.
    2014-10-08 12:53:09.86 Server      SQL Server is starting at normal priority base (=7). This is an informational message only. No user action is required.
    2014-10-08 12:53:09.86 Server      Detected 16 CPUs. This is an informational message; no user action is required.
    2014-10-08 12:53:10.00 Server      Perfmon counters for resource governor pools and groups failed to initialize and are disabled.
    2014-10-08 12:53:10.01 Server      Using dynamic lock allocation.  Initial allocation of 2500 Lock blocks and 5000 Lock Owner blocks per node.  This is an informational message only.  No user action is required.
    2014-10-08 12:53:10.01 Server      Lock partitioning is enabled.  This is an informational message only. No user action is required.
    2014-10-08 12:53:10.03 Server      Node configuration: node 0: CPU mask: 0x00000000000000ff:0 Active CPU mask: 0x00000000000000ff:0. This message provides a description of the NUMA configuration for this computer. This is an informational
    message only. No user action is required.
    2014-10-08 12:53:10.05 Server      Support for distributed transactions was not enabled for this instance of the Database Engine because it was started using the minimal configuration option. This is an informational message only. No
    user action is required.
    2014-10-08 12:53:10.06 spid7s      Warning ******************
    2014-10-08 12:53:10.06 spid7s      SQL Server started in single-user mode. This an informational message only. No user action is required.
    2014-10-08 12:53:10.06 spid7s      Starting up database 'master'.
    2014-10-08 12:53:10.08 spid7s      Error: 5178, Severity: 16, State: 1.
    2014-10-08 12:53:10.08 spid7s      Cannot use file 'c:\Program Files\Microsoft SQL Server\MSSQL10_50.MSSQLSERVER\MSSQL\Template Data\master.mdf' because it was originally formatted with sector size 4096 and is now on a volume with sector
    size 2097152. Move the file to a volume with a sector size that is the same as or smaller than the original sector size.
    2014-10-08 12:53:10.09 spid7s      Error: 5178, Severity: 16, State: 1.
    2014-10-08 12:53:10.09 spid7s      Cannot use file 'c:\Program Files\Microsoft SQL Server\MSSQL10_50.MSSQLSERVER\MSSQL\Template Data\master.mdf' because it was originally formatted with sector size 4096 and is now on a volume with sector
    size 2097152. Move the file to a volume with a sector size that is the same as or smaller than the original sector size.
    2014-10-08 12:53:10.09 spid7s      Error: 5178, Severity: 16, State: 1.
    2014-10-08 12:53:10.09 spid7s      Cannot use file 'c:\Program Files\Microsoft SQL Server\MSSQL10_50.MSSQLSERVER\MSSQL\Template Data\mastlog.ldf' because it was originally formatted with sector size 4096 and is now on a volume with
    sector size 2097152. Move the file to a volume with a sector size that is the same as or smaller than the original sector size.
    2014-10-08 12:53:10.09 spid7s      Error: 5178, Severity: 16, State: 1.
    2014-10-08 12:53:10.09 spid7s      Cannot use file 'c:\Program Files\Microsoft SQL Server\MSSQL10_50.MSSQLSERVER\MSSQL\Template Data\mastlog.ldf' because it was originally formatted with sector size 4096 and is now on a volume with
    sector size 2097152. Move the file to a volume with a sector size that is the same as or smaller than the original sector size.

  • 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

Maybe you are looking for

  • Creating new tracks when recording in Cycle (loop) mode

    I'm having an issue when recording in cycle mode.. I'm able to record (in seperate tracks) in cycle mode. however I can only play the first take (first track) I recorded, however all the subsequent tracks that were recorded do not play. Even when I t

  • How can i share tones between different iPhones on the same account

    I have two iPhones registered on the same iTunes account - one for work and one personal. I have bought a couple of ringtones through iTunes but find that I cannot see them in the iTunes library so cannot load a ringtone from one of my iPhones to the

  • Install developer suite 10g on windows 7

    hi to all, I would like to install developer suite 10g on my notebook windows7 32-bit. It 's possible? thanks Silvia

  • Want to real time copy database

    hello i use oracle 10g release 2 with windows server 2003 standart edition(who don't work with cluster) i a beginner with oracle and i want just know if i can do a real time hot copy of database to another database(other pc) without use oracle cluste

  • Email Client Super Issues

    I need to get some help on a problem. I was in the process of moving a Groupwise account from one PO to another. The move looked like it went supre smooth...too smooth. When the user opened their email, all email was gone. Folder structure is all sti