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

Similar Messages

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

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

  • I have purchased Priemier Elements 12 for Windows and Mac. I need to download Pre 12 for my new Window 8. I cannot find any Adobe products I have purchased in my account. Please help, I don't have a backup CD.

    I have purchased Premiere Element 12 for Windows and mac. I cannot find any Adobe products I purchased so I can download Pre 12 to my new Windows computer.

    Hi,
    Please use this link for downloading premiere elements 12 on windows.
    http://www.adobe.com/cfusion/tdrc/index.cfm?product=premiere_elements&loc=us
    Thank You
    Arjun

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

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

  • I have not been able to find any information re: the Flashback virus and Apple remedies on the Apple website.  Am I missing something?

    I have not been able to find any information re: the Flashback virus on the Apple website.  Has Apple put out anything on this?

    The ‘Flashback Trojan’:
    A version of an existing Trojan Horse posing as a legitimate Flash Player installer (named “Flashback.A” by a security firm) is designed to disable updates to the default Mac OS X anti-malware protection system, potentially leaving the system open to the manual installation of other malware without any system warnings. The most recent versions bypass any user action and automatically installs itself after an affected website is visited.
    http://www.appleinsider.com/articles/11/10/19/fake_adobe_flash_malware_seeks_to_ disable_mac_os_x_anti_malware_protection.html
    (Adobe is aware of malware posing as its Flash Player and warns users to ignore any updates that didn't originate on its own servers. "Do not download Flash Player from a site other than adobe.com," said David Lenoe, Adobe's product security program manager, in an entry on Adobe Product Security Incident Response Team's PSIRT blog. "This goes for any piece of software (Reader, Windows Media Player, QuickTime, etc). If you get a notice to update, it's not a bad idea to go directly to the site of the software vendor and download the update directly from the source. If the download is from an unfamiliar URL or an IP address, you should be suspicious.")
    Flashback Trojan - Prevention of infection:
    In order to prevent a potential infection with “Flashback” Trojans, Mac users should always obtain their copy of Adobe Flash Player directly from Adobe’s official website and to disable the "Open 'safe' files after downloading" option in Safari Preferences/General to avoid automatically running files downloaded from the Internet. Also, do not turn on Java in Safari Preferences/Security. Few websites use Java. Javascript is something entirely different and should be left active.
    The Flashback Trojan does not affect PPC (non-Intel) Macs, nor has it been noted to affect users running Tiger OS 10.4.11 or Leopard OS 10.5.8.
    Last, but by no means least, using Open DNS is the simplest way of preventing infection in the first place. Open DNS also protects against phishing attacks, re-directs, speeds up your internet connection, and works for all users of OS X from Tiger upwards:
    http://blog.opendns.com/2012/04/09/worried-about-mac-malware-just-set-up-opendns /
    How to get it:
    https://store.opendns.com/get/home-free
    Flashback Trojan - Detection and Removal
    Users with Intel Macs running Snow Leopard OS 10.6 or Lion OS 10.7 should ensure that they have downloaded all the recent Java updates from Apple, which are designed to prevent infection and also remove any infection already present.
    New Macs running Lion do not have either Flash Player nor Java installed. If you running Lion and have not already downloaded and installed Java, you should download the ‘Flashback malware removal tool’ from Apple:  http://support.apple.com/kb/HT5246  (356KB) which includes the same code as the Java update that plugged a security hole which allowed the malware to automatically install itself without admin authorization.
    You can also use this to check whether you have been infected (for Intel Macs only) and remove it if required:
    http://www.macupdate.com/app/mac/42571/anti-flashback-trojan
    Flashback Trojan - Detection, and how to remove (with caution) if you are running other browsers than Safari:
    http://www.f-secure.com/v-descs/trojan-downloader_osx_flashback_i.shtml

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

  • I keep getting this message when I launch PP "Premiere Pro cannot find any capable video play modules"

    I keep getting this message when I launch PP "Premiere Pro cannot find any capable video play modules". I've read through a few threads and made the recommended changes but still no luck, it crashes everytime. I have a Mac Pro 2010 with a Nivdia Quadro FX 4800.

    Hello and thanks for the response. Yes, I've read that post and many others, I still get the same message when trying to open. I've realized there's no way to get tech support for any of the products I'm using. Is there another place hat can help me with this problem? I really wanted to try PP but looks like I won't be able to.
    Thanks

Maybe you are looking for