Get a log4j error.

I've installed axis and now every time I compile I
get a log4j error.
C:\Program Files\Java\jdk1.5.0\bin\javac Continental.java
error: error reading c:\axis\lib\log4j.properties; java.util.ZipException: error in opening zip file
1 errorWhy does javac try and read anything from axis? Why is it concerned
with log4j?
I am using Java 1.5.0
The classpath is
.;C:\Program Files\Java\jdk1.6.0\bin;C:\jakarta-tomcat-5.0.25\common\lib\servlet-api.jar;c:\jakarta-tomcat-5.0.25\common\lib\jsp-api.jar;c:\jakarta-tomcat-5.0.25\common\lib\commons-el.jar;C:\Program Files\Jade\lib\http.jar;C:\Program Files\Jade\lib\iiop.jar;C:\Program Files\Jade\lib\jade.jar;C:\Program Files\Jade\lib\jadeTools.jar;C:\Program Files\Jade\lib\Base64.jar;C:\axis\samples\userguide\example1\TestClient.java;%AXISCLASSPATH%The axisclasspath is
%AXIS_LIB%\axis.jar;%AXIS_LIB%\commons-discovery-0.2.jar;%AXIS_LIB%\commons-logging-1.0.4.jar;%AXIS_LIB%\jaxrpc.jar;%AXIS_LIB%\saaj.jar;%AXIS_LIB%\log4j-1.2.8.jar;%AXIS_LIB%\wsdl4j-1.5.1.jar;%AXIS_LIB%\log4j.properties;%AXIS_LIB%\xml-apis.jar;%AXIS_LIB%\xercesImpl.jarThanks

I've installed axis and now every time I compile I
get a log4j error.
C:\Program Files\Java\jdk1.5.0\bin\javac Continental.java
error: error reading c:\axis\lib\log4j.properties; java.util.ZipException: error in opening zip file
1 errorWhy does javac try and read anything from axis? Why is it concerned
with log4j?
I am using Java 1.5.0
The classpath is
.;C:\Program Files\Java\jdk1.6.0\bin;C:\jakarta-tomcat-5.0.25\common\lib\servlet-api.jar;c:\jakarta-tomcat-5.0.25\common\lib\jsp-api.jar;c:\jakarta-tomcat-5.0.25\common\lib\commons-el.jar;C:\Program Files\Jade\lib\http.jar;C:\Program Files\Jade\lib\iiop.jar;C:\Program Files\Jade\lib\jade.jar;C:\Program Files\Jade\lib\jadeTools.jar;C:\Program Files\Jade\lib\Base64.jar;C:\axis\samples\userguide\example1\TestClient.java;%AXISCLASSPATH%The axisclasspath is
%AXIS_LIB%\axis.jar;%AXIS_LIB%\commons-discovery-0.2.jar;%AXIS_LIB%\commons-logging-1.0.4.jar;%AXIS_LIB%\jaxrpc.jar;%AXIS_LIB%\saaj.jar;%AXIS_LIB%\log4j-1.2.8.jar;%AXIS_LIB%\wsdl4j-1.5.1.jar;%AXIS_LIB%\log4j.properties;%AXIS_LIB%\xml-apis.jar;%AXIS_LIB%\xercesImpl.jarThanks

Similar Messages

  • Log4J-Error + Unexpected Database-Connector-Error

    Hello!
    I am trying to integrate a Report into an existing Java Eclipse-Project usind Crystal Reports for Eclipse.
    To do this I am modifying the example program which comes together with the installation. I am trying to pass the data to the report directly via a POJO using the call
    CRJavaHelper.passPOJO(...)
    Now, when I try to open the report I get the following error:
    log4j:WARN No appenders could be found for logger (com.businessobjects.reports.sdk.JRCCommunicationAdapter).
    log4j:WARN Please initialize the log4j system properly.
    Unerwarteter Datenbank-Connector-Fehler
    (The last line would be "Unexpected Database-Connector-Error" in english.)
    What am I doing wrong? I included log4j.jar into the build path of the project.
    Thanx for your help!
    UPDATE: Most errors are sitting 50cm in front of the screen. Dumb error on my side. Fixed it and it's working.
    Edited by: QSOTech on May 18, 2009 1:33 PM

    Error is fixed.
    I created the report in Eclipse and used a Plain Old Java Object (POJO) as datasource. No other Database.
    The problem was that the Object wasn't instanciated properly.

  • Log4j error on exceution

    Hi,
    I have an application that uses log4j for logging purpose. I designed this is Windows using eclipse. So, what happened was I placed the "log4j.properties" file in the <package name>/bin/ folder and the program could read the log4j.properties file. With this I was able to successfully run the application on Windows.
    Now I need to run this application on a Unix machine, and I have packaged my application as a jar. Also I have included the log4j.jar file in the proper folders and have made sure that my application is able to access this jar when i try to run.
    I am using a common class by the name "LogCreation" that contains the PropertyConfigurator part. So, this is the class that I use across all my Java files to generate log. The code in that file is as below:
    package ftpScheduler;
    * Class to create the Logger and initialize the Properties file
    * @author user_name
    import org.apache.log4j.Logger;
    import org.apache.log4j.PropertyConfigurator;
    public class LogCreation {
          * Constructor for LogCreation class to assign the properties file
         public LogCreation(){
              PropertyConfigurator.configure("/home/uchebolu/FTPSchedulerApp/log4j.properties");
         static Logger cmnLogger = Logger.getLogger(LogCreation.class.getName());
    }So, now I am getting the following error:
    log4j:WARN No appenders could be found for logger (ftpScheduler.LogCreation).
    log4j:WARN Please initialize the log4j system properly.
    My log4j.properties file is as follows:
    #The root logger is assigned priority level DEBUG and an appender
    # named myAppender.
    log4j.rootLogger=INFO, logAppender
    # log4j.additivity.rootLogger=false
    # The appender's type specified as FileAppender, i.e. log output
    # written to a file.
    # The appender is assigned a layout SimpleLayout.
    # SimpleLayout will include only priority level of the log
    # statement and the log statement itself in log output.
    log4j.appender.logAppender=org.apache.log4j.DailyRollingFileAppender
    log4j.appender.logAppender.File=${user.home}/logs/FTPSChedulerLog/logfile.log
    log4j.appender.logAppender.datePattern='.'yyyy-MM-dd
    log4j.appender.logAppender.append=true
    log4j.appender.logAppender.ImmediateFlush=true
    log4j.appender.logAppender.Threshold=ERROR
    log4j.appender.logAppender.layout=org.apache.log4j.PatternLayout
    log4j.appender.logAppender.layout.ConversionPattern=%-5p %d{ISO8601} [%t] - %m%nInspite of mentioning the Appender I seem to getting an error. Can anyone Please help me out. Thanks in advance!!

    static Logger cmnLogger =Logger.getLogger(LogCreation.class.getName());
    You retrieve the logger before your Constructor iscalled thus Log4J is not >initialized.
    andi
    Hi Andi,
    I am sorry but I could not understand this. BecauseI need to make a call to getLogger, >which will will
    in turn call the consructor. There is no other way I
    could do it..:-(. I dont think >there is any other
    way out other than making a call using getLogger.
    I don't see the point where your Constructor is
    called.
    Because I need to make a call to getLogger, whichwill will in turn call the consructor.
    Why should this happen ? This would only be true if
    your LogCreation class were a LogFactory andyou have configured Log4J to use your LogFactory
    instead of the default LogFactory.
    one possibility would be
    public class LogCreation {
    static Logger cmnLogger;
         static {
    PropertyConfigurator.configure(
    "/home/uchebolu/FTPSchedulerApp/log4j.properties");
    cmnLogger =
    ger = Logger.getLogger(LogCreation.class);
    // or
    static {
    System.getProperties().put("log4j.configuration",
    "/home/uchebolu/FTPSchedulerApp/log4j.properties"
    ies" ) ;
    cmnLogger =
    gger = Logger.getLogger(LogCreation.class);
    }or set the Systemproperty
    "-Dlog4j.configuration=/home/uchebolu/FTPSchedulerApp
    /log4j.properties" at the commandline.
    andi
    Hi Andi,
    Thanks a lot, for that explanation. Now I understand where I went wrong in my understanding.
    So, in my java class, though I had given the entire path for the log4j.properties file, it was not even read. Because I was using the default name log4j.properties, once I placed the file in the CLASSPATH, the JVM started recognizing the file. And the only line of code that was being executed was :
    static Logger cmnLogger = Logger.getLogger(LogCreation.class.getName());So, if I put the PropertyConfigurator.configure() part also in a static block it will get invoked before the cmnLogger object is instantiated.
    Hope this time I got it right!
    Thank you once again Andi.

  • Log4j error when starting Tomcat

    Hi. I've just installed Tomcat on my desktop PC and when I try starting it up (startup.bat), I get the following warning:
    log4j:ERROR No appenders could be found for category (org.apache.struts.util.PropertyMessageResources).
    log4j:ERROR Please initialize the log4j system properly.
    I can still view my STRUTS app, but I'm curious to know why this problem is occuring and how it can be fixed.
    Thanks

    Log4j is fail-stop meaning that if the log4j system is not initialized properly, attempts to log will throw up this message initially. There is nothing 'broken' with Tomcat or logging, and no 'error' is occuring other than the fact that some of the code is trying to do logging but the logging has not been initialized properly.
    If you want to eliminate this message, you will need to provide a log4j configuration file. There probably already is one somewhere; it just isn't being read when the system is started.

  • Log4J Error Message

    Hello,
    I have this code:
    public static final String LOGGER_NAME="email_notifier_implementation";
    emailAppender=new SMTPAppender(new TriggeringEventEvaluator()
    public boolean isTriggeringEvent(LoggingEvent loggingEvent)     
    { return true; }
    logger=Logger.getLogger(LOGGER_NAME);
    logger.setLevel(Level.ALL);
    logger.addAppender(emailAppender);
    emailAppender.setSMTPHost(host);
    emailAppender.setFrom(from);
    emailAppender.setSubject(subject);
    emailAppender.setTo(buildEmailRecieversList(to));
    logger.log(Level.ALL,message); //message is an argument to the functionWhen I run it, I get an error:
    log4j:ERROR Message object not configured.
    Can somebody please explain me why this error is happening and how to fix it?
    Thanks.

    Double post
    http://forum.java.sun.com/thread.jspa?threadID=685425&
    tstart=0I am very sorry. When I sent it in the first time, it didn't respond and so I thought the post was not sent and I sent it again.
    Sorry...

  • Log4j:ERROR Could not instantiate configurator

    I use
    -Dlog4j.configuratorClass=mypackage.Log4jConfigurator
    java option in startWeblogic command file
    to read changes in log4j-config.xml.
    After that I have in console.log
    og4j:ERROR A "mypackage.Log4jConfigurator" object is not assignable to a "org.apache.log4j.spi.Configurator" variable.
    log4j:ERROR The class "org.apache.log4j.spi.Configurator" was loaded by
    log4j:ERROR [weblogic.utils.classloaders.GenericClassLoader@544b02 finder: weblogic.utils.classloaders.CodeGenClassFinder@a0e9d7 annotatio
    n: consoleapp@] whereas object of type
    log4j:ERROR "mypackage.Log4jConfigurator" was loaded by [sun.misc.Launcher$AppClassLoader@12498b5].
    log4j:ERROR Could not instantiate configurator [mypackage.Log4jConfigurator].
    Could anybody help?

    Did you get a resolution? I have a similar problem with a different object, org.apache.log4j.spi.TriggeringEventEvaluator, which has been loaded by the Weblogic consoleapp. I am running in a standalone server configuration -- admin and application server are the same. Also, using exploded directories.
    Is there a way to prevent the WebLogic classloader from loading its version from the consoleapp?

  • Log4j:ERROR Could not instantiate class [org.jboss.logging.util.OnlyOnceErr

    Hi,
    when i run my standalone application i am getting following error:
    I am using log4j-1.2.15.jar file.
    log4j:ERROR Could not instantiate class [org.jboss.logging.util.OnlyOnceErrorHandler].
    java.lang.ClassNotFoundException: org.jboss.logging.util.OnlyOnceErrorHandler
         at java.net.URLClassLoader$1.run(URLClassLoader.java:199)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.net.URLClassLoader.findClass(URLClassLoader.java:187)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:289)
         at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:274)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:235)
         at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:302)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Class.java:141)
         at org.apache.log4j.helpers.Loader.loadClass(Loader.java:179)
         at org.apache.log4j.helpers.OptionConverter.instantiateByClassName(OptionConverter.java:320)
         at org.apache.log4j.xml.DOMConfigurator.parseErrorHandler(DOMConfigurator.java:302)
         at org.apache.log4j.xml.DOMConfigurator.parseAppender(DOMConfigurator.java:266)
         at org.apache.log4j.xml.DOMConfigurator.findAppenderByName(DOMConfigurator.java:171)
         at org.apache.log4j.xml.DOMConfigurator.findAppenderByReference(DOMConfigurator.java:184)
         at org.apache.log4j.xml.DOMConfigurator.parseChildrenOfLoggerElement(DOMConfigurator.java:502)
         at org.apache.log4j.xml.DOMConfigurator.parseRoot(DOMConfigurator.java:471)
         at org.apache.log4j.xml.DOMConfigurator.parse(DOMConfigurator.java:921)
         at org.apache.log4j.xml.DOMConfigurator.doConfigure(DOMConfigurator.java:790)
         at org.apache.log4j.xml.DOMConfigurator.doConfigure(DOMConfigurator.java:696)
         at org.apache.log4j.helpers.OptionConverter.selectAndConfigure(OptionConverter.java:471)
         at org.apache.log4j.LogManager.<clinit>(LogManager.java:125)
         at org.apache.log4j.Logger.getLogger(Logger.java:105)
         at com.DSA.common.offline.batchjob.Job.<clinit>(Job.java:37)
    log4j:ERROR Could not create an Appender. Reported error follows.
    java.lang.ClassNotFoundException: org.jboss.logging.appender.DailyRollingFileAppender
         at java.net.URLClassLoader$1.run(URLClassLoader.java:199)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.net.URLClassLoader.findClass(URLClassLoader.java:187)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:289)
         at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:274)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:235)
         at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:302)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Class.java:141)
         at org.apache.log4j.helpers.Loader.loadClass(Loader.java:179)

    solved by adding file
    jboss-common.jar. to the classpath

  • Log4j:ERROR setFile(null,true) call failed.

    Hello
    I have Log4j.properties
    log4j.rootCategory = DEBUG, file ,ImportFileAppender , console
    log4j.appender.stdout.threshold = ERROR
    log4j.appender.stdout = org.apache.log4j.ConsoleAppender
    log4j.appender.stdout.layout = org.apache.log4j.PatternLayout
    log4j.appender.stdout.layout.ConversionPattern = %d{ABSOLUTE} %5p [%t] %c - %m%n
    log4j.appender.file.threshold = DEBUG
    log4j.appender.file.File = ${qtl.log.location}
    log4j.appender.file.MaxFileSize = 10MB
    log4j.appender.file.MaxBackupIndex = 10
    log4j.appender.file = org.apache.log4j.RollingFileAppender
    log4j.appender.file.layout = org.apache.log4j.PatternLayout
    log4j.appender.file.layout.ConversionPattern =%-5p|%-80m|%d%n
    log4j.appender.ImportFileAppender.threshold = DEBUG
    log4j.appender.ImportFileAppender.File = ${qtl.log.import}
    log4j.appender.ImportFileAppender = org.apache.log4j.RollingFileAppender
    log4j.appender.ImportFileAppender.layout = org.apache.log4j.PatternLayout
    log4j.appender.ImportFileAppender.layout.ConversionPattern = %-5p|%-80m|%d%n
    and i am giving ${qtl.log.location} through java file like this
    private static String LOG_4J_PROPERTY_FILE = "/src/com/impact/qtl12/commons/log4j.properties";
    logFileName     = "log-" + new SimpleDateFormat("yyyyMMdd-hhmm").format(new Date()) + ".log";
              logFilePath = dirString + "\\" + logFileName;;
    System.setProperty("qtl.log.location", logFilePath); //replacing ${qtl.log.location} by the logFilePath in log4j.properties String directory = System.getProperty("user.dir");
    PropertyConfigurator.configure(directory + LOG_4J_PROPERTY_FILE);
    when i run my program i get error of this type
    log4j:ERROR setFile(null,true) call failed.
    java.io.FileNotFoundException:
         at java.io.FileOutputStream.openAppend(Native Method)
         at java.io.FileOutputStream.<init>(Unknown Source)
         at java.io.FileOutputStream.<init>(Unknown Source)
         at org.apache.log4j.FileAppender.setFile(FileAppender.java:289)
         at org.apache.log4j.RollingFileAppender.setFile(RollingFileAppender.java:165)
         at org.apache.log4j.FileAppender.activateOptions(FileAppender.java:163)
         at org.apache.log4j.config.PropertySetter.activate(PropertySetter.java:256)
         at org.apache.log4j.config.PropertySetter.setProperties(PropertySetter.java:132)
         at org.apache.log4j.config.PropertySetter.setProperties(PropertySetter.java:96)
         at org.apache.log4j.PropertyConfigurator.parseAppender(PropertyConfigurator.java:654)
         at org.apache.log4j.PropertyConfigurator.parseCategory(PropertyConfigurator.java:612)
         at org.apache.log4j.PropertyConfigurator.configureRootCategory(PropertyConfigurator.java:509)
         at org.apache.log4j.PropertyConfigurator.doConfigure(PropertyConfigurator.java:415)
         at org.apache.log4j.PropertyConfigurator.doConfigure(PropertyConfigurator.java:316)
         at org.apache.log4j.PropertyConfigurator.configure(PropertyConfigurator.java:324)
         at com.impact.qtl12.imports.UI.CSVFile.QTL.main(QTL.java:964)
    log4j:ERROR setFile(null,true) call failed.
    Edited by: Mayur Mitkari on Jan 2, 2013 12:53 AM
    Edited by: Mayur Mitkari on Jan 2, 2013 12:54 AM
    Edited by: Mayur Mitkari on Jan 2, 2013 12:55 AM

    Mayur Mitkari wrote:
    I checked it out the directory existsReally? You have a directory 'src' in the root of your filesystem?
    /src/com/...EDIT: never mind, moving along, I missed a bit of code there... In my own defense, use \ formatting tags to make it slightly more inviting to read it.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Getting Page Load Error while opening a Opportunity in new window

    Hi All,
    outbound SSO is enabled.
    when i try to punch-in to my application from CRM through opportunity web link with Web Link Target as "open in custom tab" its working properly, but when i have Web Link Target as "open in new window" i am getting page load error. previously with out Outbounf SSO it is working properly.
    Do i need enable any settings in CRM
    thanks

    when the web link target is "open in new window" or "open in current window" the request send to third party application from CRM ONDemand is HTTPS request as SSL is not enabled it is giving "page load error"(In the web link we are specifying http only) (User athentication type is "username & password/ SSO")
    Is there any setting in CRM Ondemand to send Http request only instead of HTTPS?

  • Getting a permission error while updating a field.

    hi,
    I want to update a field in OIM and push the same to OID. When i try to update it for like 20 times it woks for 18 times and doesnt work for couple of times. I check the log and i get the below error.....
    *Caused by: javax.ejb.AccessLocalException: [EJB:010160]Security Violation: User: 'xelsysadm' has insufficient permission to a*
    ccess EJB: type=<ejb>, application=Xellerate, module=xlDataObjectBeans.jar, ejb=tcLookupOperations, method=create, methodInte
    rface=LocalHome, signature={}.
    at weblogic.ejb.container.internal.MethodDescriptor.checkMethodPermissionsLocal(MethodDescriptor.java:573)
    at weblogic.ejb.container.internal.StatelessEJBLocalHome.create(StatelessEJBLocalHome.java:60)
    at com.thortech.xl.ejb.beans.tcLookupOperations_u50o5o_LocalHomeImpl.create(tcLookupOperations_u50o5o_LocalHomeImpl.j
    ava:70)
    Kindly help me to fix this.
    Thanks
    thilak

    http://bbs.archlinux.org/viewtopic.php?id=83076

  • WHILE DELETING A SALE ORDER GETTING A RUNTIME ERROR

    hi to all experts,
    whenever i try to delete a particular sale order im getting a runtime error
    stating that
    Short text
        Screen: Illegal message
    What happened?
        The current screen processing action was terminated since a situat
        occurred where the application could not continue.
        This is probably due to an error in the ABAP program or in the cur
        screen.
    Error analysis
        The program attempted to issue a " " message during "Exit Command" processing.
        This is an illegal operation.
        The program was terminated.
        Screen name.............. "SAPMV45A"
        Screen number............ 4001
    Trigger Location of Runtime Error
        Program                                 SAPMV45A
        Include                                 MV45AFZZ
        Row                                     370
        Module type                             (FORM)
        Module Name                             USEREXIT_SAVE_DOCUMENT
    SourceCde
                  message e001(zm) WITH text-335 ltab-kunnr text-334.
                else.
                  if ktab-jkunnr <> ltab-kunnr.
                    ktab-jkunnr = ltab-kunnr.
                    jobsitecode = ltab-kunnr.
                    CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
                    EXPORTING
                      input  = jobsitecode
                      IMPORTING
                      output = jobsitecode.
                    SELECT SINGLE * FROM kna1 WHERE kunnr = jobsitecode.
                    IF sy-subrc = 0.
                      ktab-jname1 = kna1-name1.
                      ktab-jstras = kna1-stras.
                    ENDIF.
                    chg_flg = 'X'.
                  endif.
                endif.
              else.
                message e001(zm) WITH text-336.
    * Validation for relationship between Sold-to Party and Ship-to Party
    *          if ktab-ckunnr+0(4) NE ktab-jkunnr+0(4).
    *            message e001(zm) WITH text-335 ktab-jkunnr text-337 ktab-ckunnr.
    *          endif.
              custcode1 = ktab-ckunnr.
              CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
                EXPORTING
                  input  = custcode1
                IMPORTING
                  output = custcode1.
              jobsitecode1 = ktab-jkunnr.
              CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
                EXPORTING
                  input  = jobsitecode1
                IMPORTING
                  output = jobsitecode1.
              SELECT SINGLE * FROM knvp
              WHERE kunnr = custcode1
                AND vkorg = vbak-vkorg
                AND vtweg = vbak-vtweg
                AND spart = vbak-spart
                AND parvw = 'WE'
    Error analysis
        The program attempted to issue a " " message during "Exit Command"
        This is an illegal operation.
        The program was terminated.
        Screen name.............. "SAPMV45A"
        Screen number............ 4001
    Trigger Location of Runtime Error
        Program                                 SAPMV45A
        Include                                 MV45AFZZ
        Row                                     370
        Module type                             (FORM)
        Module Name                             USEREXIT_SAVE_DOCUMENT

    Hi,
    Seems there is some problem with the user exit USEREXIT_SAVE_DOCUMENT..
    Put a breakpoint and see.
    Regards,
    Nagaraj

  • I just tried to install the 11.4 update (or whichever one is the most recent update as of 1/26/2014) and when it failed i tried to install manually and now whenever i try to use it, i get the following error: the application has failed to start because MS

    i just tried to install the 11.4 update (or whichever one is the most recent update as of 1/26/2014) and when it failed i tried to install manually and now whenever i try to use it, i get the following error: "The application has failed to start because MSVCR80.dll was not found. Re-installing the application may fix this problem." Right after i click ok i then get this error: "Itunes was not installed correctly. Please reinstall Itunes. Error 7 (Windows error 126)." I tried to uninstall Itunes and then reinstall the 11.03 version but that didnt work either. I want to know if i copy all of the music in my itunes folder to an external without consolidating can i still transfer all my itunes music from my current windows xp pc to a brand new one and have my current itunes library in my new pc? Basically i just want to know 3 things: What exactly does consolidating the itunes library do? Can i copy, paste, and transfer my itunes library to an external and from there to a new pc? Will i be able to transfer my itunes library without consolidating the files?

    I have found a temporary solution, allowing the previous version of iTunes (v. 11.1.3 (x64) in my case) to be re-installed.  It will allow you to re-establish use of iTunes until the Apple software engineers fix the most recent disasterous upgrade (v. 11.1.4).  Please see and follow the procedure in the following article:http://smallbusiness.chron.com/reverting-previous-version-itunes-32590.html   The previous version works beautifully.

  • Getting Logon Failed error connecting to SAP R/3 with Crystal

    I have Crystal Reports 2008 and also the SAP Integration Kit installed on my desktop.  I've imported the transports into my DEV and QAS systems and am trying to connect directly to R/3 from Crystal using the SAP Table, Cluster or Function choice.
    I receive the error:
    Logon failed.  Details: You do not have the necessary rights to design reports against the SAP system.  Please check with your system administrator. 
    I'm using a logon that has full rights within SAP.  It recognizes my password because when I try a password that I know is wrong I get a different error message: Logon failed. Detail: Name or password is incorrect.  I receive the same error in PRD even though I have not imported the transports into that client.
    I have Crystal Server but am not trying to use that at the moment.  Just Crystal Reports as a standalone product.  If I've left something out please let me know.
    Thank you,
    Kevin Scheeler

    Hi Kevin,
    take a look at the Installation Guide for the SAP Integration Kit which includes a detailed list of authorizations per use case in the appendix
    the documentation is available on help.sap.com
    Ingo Hilgefort

  • I am getting an activation error when trying to sign in to FAceTime

    I am getting an activation error when trying to sign in to FAceTime

    me too after upgrading into lion..

  • I am getting a U44M1P34 error when updating Photoshop CC (2014) and Bridge CC. All other CC apps update correctly.

    I've uninstalled all my Creative Cloud applications including Creative Cloud itself and still I get the same error. Is there a work around?

    Asybrandy to determine the exact cause of the update failure I would recommend reviewing your installation log files.  You can find details on how to locate and interpret your installation log files at Troubleshoot install issues with log files | CC - http://helpx.adobe.com/creative-cloud/kb/troubleshoot-install-logs-cc.html.  You are welcome to post any specific errors you discover to this discussion.

Maybe you are looking for

  • How do you keep a 23.98 file from switching to 29.97

    I have exported an mpeg-2 file from compressor using the 23.98 setting, and am trying to maintain the 23.98 frame rate in dvd studio pro- when exporting out of compressor as m-peg 2. You are supposed to be able to send it as 23.98 to dvd studio, and

  • Printing ICal to dos in priority or manual order

    Hi, its my first post on these forums and I wonder if anyone can help. I have just started using ical's to do list facility to keep on top of all the outstanding jobs requiring actioon by the department I work in. On screen, I have arranged them into

  • Can't transfer from iPod to iTunes after Hard Disk re-format

    Hi. I have an iPod classic and iTunes. Recently, I had to re-format my hard drive after a system crash. I thought I had my audio files backed up to an external hard drive, but it turns out they didn't copy. So, I'm trying to restore the audio files f

  • URL and Hostname of an entry in SLD do not show FQDN -  ??

    check out the screenshot here: http://img247.imageshack.us/my.php?image=sldos0.jpg All systems in our SLD look like that - they do not show fully qualified domain names for URL and Host.  And I don't mean in the display of the hyperlink only, because

  • Examples of still image manipulation in Motion 2

    I'm trying to find a site or two which would show some of the ways Motion 2 allows you to quickly manipulate and add motion to still images. I've gone through the mac tutotials here at the APPLE site, but I'm not really seeing what I'm looking for. C