Error about custom taglib

i want to have a test and write some simple code to test.
          i add the class beneath the meta-inf/classes.
          when i check the weblogic5.1 doc,i find a strange sentence:"If you are
          deploying your JSP pages using the standard weblogic.properties file (in the
          default servlet context),
          create a directory called WEB-INF under the documentRoot, and place the TLD
          file under the WEB-INF directory.
          All content beneath the WEB-INF directory is non-public and will not be
          server over HTTP by the WebLogic Server. "
          the first sentence before the comma and the second looks contrary,can any
          guru clear my confusion?
          my jsp code is:
          <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
          <HTML>
          <HEAD>
          <TITLE>SeleceTag test</TITLE>
          <LINK REL=STYLESHEET
          HREF="JSP-Styles.css"
          TYPE="text/css">
          </HEAD>
          <BODY>
          <H1>SeleceTag test</H1>
          <%@ taglib uri="JHJ-taglib.tld" prefix="JHJ" %>
          <JHJ:test/>
          </BODY>
          </HTML>
          when compile it,it report:/SelectTag.jsp(14): Could not parse deployment
          descriptor: org.xml.sax.SAXParseException: Could not parse taglib, starting
          at line 5
          

The second 2 errors were solved by copying the ExpenditureTypeNoAwardLovVORowImpl.class to my myclasses directory under oracle/apps/icx/lov/server and then recompiling.
I'm still not sure why an empty .java file was added to my project causing the first error. I was doing this extension on a machine with Windows 2000 and I had created a new workspace (other than toolbox.jws) when I got this error. When I did the same extension on a machine with Windows XP and in the toolbax.jws workspace, the empty .java file didn't get added to my project and I didn't get the first compile error. Not sure if one of these variables was the cause.

Similar Messages

  • JSP custom taglib

    Hi, I've a big problem:
    I tried to realize my first custom taglib for converting a .jasper file (a precompilated formatted meta-document) into a PDF file but I poorly failed... :(
    Unfortunatly, although the code run correctly into a main class into a stand alone sample application, the same code (opportunely adapted) doesen't work correctly if used by a JSP with its relative custom tag library.
    The error message is:
    javax.servlet.ServletException: Error loading expression class : report_semplice
         org.apache.jasper.runtime.PageContextImpl.doHandlePageException(PageContextImpl.java:872)
         org.apache.jasper.runtime.PageContextImpl.access$1100(PageContextImpl.java:114)
         org.apache.jasper.runtime.PageContextImpl$12.run(PageContextImpl.java:792)
         java.security.AccessController.doPrivileged(Native Method)
         org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:790)
         org.apache.jsp.reportPDF_jsp._jspService(reportPDF_jsp.java:82)
         org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:141)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:861)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:325)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:306)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:253)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:861)
         sun.reflect.GeneratedMethodAccessor178.invoke(Unknown Source)
         sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         java.lang.reflect.Method.invoke(Method.java:324)
         org.apache.catalina.security.SecurityUtil$1.run(SecurityUtil.java:289)
         java.security.AccessController.doPrivileged(Native Method)
         javax.security.auth.Subject.doAsPrivileged(Subject.java:500)
         org.apache.catalina.security.SecurityUtil.execute(SecurityUtil.java:311)
         org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:205)
    root cause
    javax.servlet.jsp.JspTagException: Error loading expression class : report_semplice
         com.tag.GeneratePDF.doEndTag(GeneratePDF.java:72)
         org.apache.jsp.reportPDF_jsp._jspx_meth_JR_GeneratePDF_0(reportPDF_jsp.java:99)
         org.apache.jsp.reportPDF_jsp._jspService(reportPDF_jsp.java:71)
         org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:141)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:861)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:325)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:306)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:253)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:861)
         sun.reflect.GeneratedMethodAccessor178.invoke(Unknown Source)
         sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         java.lang.reflect.Method.invoke(Method.java:324)
         org.apache.catalina.security.SecurityUtil$1.run(SecurityUtil.java:289)
         java.security.AccessController.doPrivileged(Native Method)
         javax.security.auth.Subject.doAsPrivileged(Subject.java:500)
         org.apache.catalina.security.SecurityUtil.execute(SecurityUtil.java:311)
         org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:205)
    The code of the taglib class is:
    package com.tag;
    import javax.servlet.jsp.*;
    import javax.servlet.jsp.tagext.*;
    import net.sf.jasperreports.engine.*;
    import net.sf.jasperreports.engine.export.*;
    import net.sf.jasperreports.engine.util.*;
    import net.sf.jasperreports.view.*;
    import java.sql.*;
    import org.apache.commons.logging.*;
    import java.io.*;
    import java.util.*;
    public class GeneratePDF extends TagSupport
      private String sourceFileName = "C:\\default.jasper";
      private String destinationFileName = "C:\\default.pdf";
      public void setSourceFileName(String sourceFileName)
        this.sourceFileName = sourceFileName;
      public void setDestinationFileName(String destinationFileName)
        this.destinationFileName = destinationFileName;
      public int doStartTag()
          return SKIP_BODY;
      public int doEndTag() throws JspTagException
        try
            //Passaggio parametri da passare al jasper.
            Map parameters = new HashMap();
            parameters.put("param1", new Integer(1));
            //Preparazione del file da stampare (in questa fase si esegue la query e si inseriscono
            //i valori estratti dalla query)
            JasperPrint jasperPrint=JasperFillManager.fillReport(sourceFileName, parameters, getConnection());
            // a schermo
            // JasperViewer.viewReport(jasperPrint);
           // test
           //pageContext.getOut().println("Destination File:" + destinationFileName);       
        //Creazione del PDF
            JasperExportManager.exportReportToPdfFile(jasperPrint, destinationFileName);
        //    System.exit(0);
           catch(Exception e)
                { throw new JspTagException(e.getMessage());
        return EVAL_PAGE;
    /**Metodo per creare la connessione al DB*/
    private static Connection getConnection() throws ClassNotFoundException, SQLException {
    //Change these settings according to your local configuration
    String driver = "sun.jdbc.odbc.JdbcOdbcDriver";
    String connectString = "jdbc:odbc:gecoware";
    String user = "admin";
    String password = "password";
    Class.forName(driver);
    Connection conn = DriverManager.getConnection(connectString, user, password);
    return conn;
    The .TLD file is:
    <?xml version="1.0" encoding="ISO-8859-1" ?>
    <!DOCTYPE taglib PUBLIC "-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.1//EN" "http://java.sun.com/j2ee/dtds/web-jsptaglibrary_1_1.dtd">
    <taglib>
        <tlibversion>1.0</tlibversion>
        <jspversion>1.1</jspversion>
        <shortname>JR</shortname>
        <uri>ReportTags</uri>
        <info>Tag library per la generazione di report a partire da files .jasper</info>
        <tag>
            <name>GeneratePDF</name>
            <tagclass>com.tag.GeneratePDF</tagclass>
            <bodycontent>empty</bodycontent>
            <info>Tag per la generazione di PDF</info>
            <attribute>
              <name>sourceFileName</name>
            </attribute>
            <attribute>
              <name>destinationFileName</name>
            </attribute>
        </tag>
    </taglib>
    And the JSP code is:
    <%@ page contentType="text/html; charset=iso-8859-1" language="java" import="java.sql.*" errorPage="" %>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <%@ taglib uri="ReportTags" prefix="JR" %>
    <html>
    <head>
    <title>GeneratePDF</title>
    </head>
    <body>
    <JR:GeneratePDF sourceFileName="c:\\report_semplice.jasper" destinationFileName="c:\\report1.pdf"/>
    </body>
    </html>
    I hope that someone could help me...
    Thank you,
    AleX

    Hi,
              I think that the container can not identify the tag's ,what you are trying to use.
              As per the j2ee specification , we need to follow the procedure to use the taglib as given below
              Procedure for using a Tag Lib :
              â€¢ Copy tag lib jar files under WEB-INF/lib ( if tag handler supplied as classes without package a jar file then we need to copy the classes under WEB_INF/classes.
              â€¢ Copy the tld files files under WEB-INF or create a directory under WEB-INF and copy tld files under this directory.
              â€¢ We need to give the information about the tag libraries in web.xml by adding the following lines to it as,
              <taglib>
              <taglib-uri>http://www.inet.com/taglibs/bodytags</taglib-uri>
              <taglib-location>/WEB-INF/tlib/tlib1.tld </taglib-location>
              </taglib>
              To use tags in jsp file we need to add taglib directive as ,
              <%@ taglib uri="http://www.inet.com/taglibs/samptags" prefix=“abc"%>
              Every tag can support zero or more number of attributes and a tag may or may not support body content.
              weblogic server try to parse the .tld file whenever the tags are encountered in jsp files.
              As per the .tld file the container identify the attributes of the tags which were defined in .tld file.
              ------ Anilkumar kari

  • Runtime exceptions in custom taglib

    I am getting errors of the type:
              javax.servlet.ServletException: runtime failure in custom tag
              The problem is the error is happening in a taglib, but Weblogic is hiding the
              original stack trace, and substituting it's own, which is useless in this case. Is
              there any way to get the original stack trace?
              -Jeff
              

    With custom tags, each interface method needs to be entirely in a try..catch
              to support debugging. WL hides the exact exception information. For
              example:
              public int doEndTag() throws JspException
              try
              catch (Throwable e)
              throw e instanceof JspException ? (JspException) e : new
              JspTagException(e.getMessage());
              Cameron Purdy
              [email protected]
              http://www.tangosol.com
              WebLogic Consulting Available
              "Brian Homrich" <[email protected]> wrote in message
              news:[email protected]...
              > I'm getting the same type of error in the situation where an error has
              occured
              > in a page, my client uses "Back" on the browser, then tries another page
              > (which uses a custom taglib).
              >
              > If I stop, then restart WL, all is ok. The page where the runtime
              failure
              > occured is ok now.
              >
              > Have you made any progress getting a stack trace, and have you found
              anything
              > interesting?
              >
              > Does anyone know why a failure on one page would cause the custom tags
              > on another to fail like this? (Both pages use the same tag, but aren't
              calls
              > to a tag done independently?)
              >
              > Brian
              >
              > Jeff Nowakowski wrote:
              >
              > > I am getting errors of the type:
              > >
              > > javax.servlet.ServletException: runtime failure in custom tag
              > >
              > > The problem is the error is happening in a taglib, but Weblogic is
              hiding the
              > > original stack trace, and substituting it's own, which is useless in
              this case. Is
              > > there any way to get the original stack trace?
              > >
              > > -Jeff
              >
              

  • Monitor stopped due to setup error or custom action

    Hi folks,
    i have installed the sun cluster and created a resource group for my oracle database. I have created resourece's for database server and or listener.
    My question is when I am issuing the scstat command on my oracle server resource i get the following mesg.
    "Monitor stopped due to setup error or custom action"
    What does it means, does anybody give me some hint about it.
    - Resource Groups and Resources --
    Group Name Resources
    Resources: aaa-rg DB1-aaa-rs aaa-lh-rs aaa-srv-rs aaa-lsnr-rs
    -- Resource Groups --
    Group Name Node Name State
    Group: aaa-rg medsrv5 Online
    Group: aaa-rg medsrv6 Offline
    -- Resources --
    Resource Name Node Name State Status Message
    Resource: DB1-aaa-rs medsrv5 Online Online
    Resource: DB1-aaa-rs medsrv6 Offline Offline
    Resource: aaa-lh-rs medsrv5 Online Online - LogicalHostname online.
    Resource: aaa-lh-rs medsrv6 Offline Offline - LogicalHostname offline.
    Resource: aaa-srv-rs medsrv5 Online Unknown - Monitor stopped due to setup error or custom action.
    Resource: aaa-srv-rs medsrv6 Offline Offline
    Resource: aaa-lsnr-rs medsrv5 Online Online
    Resource: aaa-lsnr-rs medsrv6 Offline Offline

    i check the /var/adm/message log and find out fallowing message
    Jun 19 14:07:27 medsrv5 Cluster.RGM.rgmd: [ID 784560 daemon.notice] resource sas-srv-rs status on node medsrv5 change to R_FM_UNKNOWN
    Jun 19 14:07:27 medsrv5 SC[SUNWscor.oracle_server.monitor]:sas-rg:sas-srv-rs: [ID 564643 local7.error] Fault monitor detected error DBMS_ERROR: 1017 DEFAULT Action=STOP : Please correct login information in HA-DBMS Oracle database configuration
    Jun 19 14:07:27 medsrv5 SC[SUNWscor.oracle_server.monitor]:sas-rg:sas-srv-rs: [ID 780539 local7.error] Stopping fault monitor: DBMS_ERROR:1017:Please correct login information in HA-DBMS Oracle database configuration
    Jun 19 14:07:27 medsrv5 Cluster.RGM.rgmd: [ID 922363 daemon.notice] resource sas-srv-rs status msg on node medsrv5 change to <Monitor stopped due to setup error or custom action.>
    Jun 19 14:07:27 medsrv5 SC[SUNWscor.oracle_server.monitor]:sas-rg:sas-srv-rs: [ID 796592 local7.error] Monitor stopped due to setup error or custom action.
    and then i notice that i am using "sqlplus '/ as sysdba'" as Connect_strings, that is why i can start/stop the database but not able to monitor the database, for that i need to create an oracle account as it mentioned in "sun cluster data service for HA-Oracle" like
    # sqlplus �/as sysdba�
    grant connect, resource to user identified by passwd;
    alter user user default tablespace system quota 1m on
    system;
    grant select on v_$sysstat to user;
    grant create session to user;
    grant create table to user;
    exit;
    i would appriciate your update if i m doing some thing wrong here
    thanks

  • Error generating custom progress

    Hi!
    When I run an application JavaFx in Firefox or IntenetExplorer displays the following message:
    Error generating custom progress : java.lang.SecurityException: attempted to open sandboxed jar http://dl.javafx.com/1.3/progressbar__V1.3.1_b101.jar as a Trusted-Library
    java.lang.SecurityException: attempted to open sandboxed jar http://dl.javafx.com/1.3/javafx-rt-windows-i586__V1.3.1_b101.jar as a Trusted-Library
         at com.sun.deploy.security.CPCallbackHandler$ParentElement.checkResource(Unknown Source)
         at com.sun.deploy.security.DeployURLClassPath$JarLoader.checkResource(Unknown Source)
         at com.sun.deploy.security.DeployURLClassPath$JarLoader.getResource(Unknown Source)
         at com.sun.deploy.security.DeployURLClassPath.getResource(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader$2.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.plugin2.applet.Plugin2ClassLoader.findClassHelper(Unknown Source)
         at sun.plugin2.applet.JNLP2ClassLoader.findClass(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadClass0(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadClass(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadClass0(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadClass(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadCode(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager.createApplet(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Excepción: java.lang.SecurityException: attempted to open sandboxed jar http://dl.javafx.com/1.3/javafx-rt-windows-i586__V1.3.1_b101.jar as a Trusted-Library
    The version of Java is 1.6.0_21
    Thanks for the help!

    Many of problems i've expienced with deployment where about jar signature and cache. Is that problem appear only with your APP, is it signed, there were many bug related issues with JDK u18 to 20.

  • Custom taglib problem

    Hi I wrote some custom taglibs, but I get the
    following error:
    org.apache.jasper.JasperException: File "/dodo" not
    found
    I have the following configuration in my web.xml
    <taglib>
    <taglib-uri>/dodo</taglib-uri>
    <taglib-location>/WEB-INF/jsp/csajsp.tld</taglib-location>
    </taglib>
    and I call it in my jsp file in the following way:
    <%@ taglib uri="/dodo" prefix="c" %>
    And still doesn't work
    I'm using jdk 1.4.2 and tomcat 4.1.24.
    Any clues, thanks.

    That is right. The thing is that the custom tag example from tomcat works, and mine doesn't. Someone told me that it could be a jdk 1.4.2 issue, but thanks anyway.

  • Extending functionality from existing custom taglib

    Hi!
    I'm trying to extend the functionality of an already existing custom taglib. To test this possibility I�ve so far created a small taglib containing two tags. QbeTag.java and QbeSumTag.java.
    The QbeTag class handles a database connection and constructs a table showing the result of a query passed in as an attribute in the tag. (The database contains a �dummy table� holding information about persons.)
    Now let�s pretend that I don�t have the source code for the QbeTag but need to/ want to extend its functionality. For instance:
    In the QbeSumTag I want to summarize all the persons ages and present it in a new text field somewhere else on the page.
    To do this I probably need to access the QbeTag class from the QbeSumTag class, or is there any other way to achieve this wanted functionality?
    Up to this point:
    What I�ve tried is to implement the QbeSumTag so that It extends the QbeTag class. This means that I now can access the doStartTag, doEndTag, and so on methods from the QbeSumTag by typing super.doStartTag().
    The problem with this approach is that this way only gives me the possibility to run the methods not altering the process it self and I can�t alter the out stream. A syntax like:
    public int doStartTag() throws JspException
    return super.doStartTag();
    Will only result in a call for the QbeTag�s doStartTag() method to run and do it�s stuff.
    Is there any way I can solve this or am I stuck? Maybe one approach would be to nest the QbeSumTag with the QbeTag wich would mean that there will be a dependency between the tow tags.
    I believe that this question is quite difficult to answer but it could be the starting point for an interesting discussion. Hasn�t anyone tried to extend the functionality of the Jakarta taglib, say the DB tags or Mail tag.
    All thoughts and replies will great fully received.
    /Daniel

    Well, the answer to this is the same as the answer to extending any third party classes... it depends on how the original class was created.
    If the original class was designed with extension in mind, then (hopefully) its realy functionality will be isolated to a series of protected methods (that you would have access to) and private methods (you would not have access to).
    You would use the public and protected methods to retrieve the data you need to do your work, or override those ones whose work you want to replace (for instance, if it has a protected displayOutput(Map dataMap) method, you are in luck!).
    If everything is done giving you know access to the pieces, then you may be stuck providing a tag that has the original tag nested inside it. Buffer the output from the original tag and parse it, retrieving the info you need, then output your own stuff...

  • Help request about customizing readings estimation

    Hello,
    I'm a new user of this forum and I wolud to ask you some information about customizing of readings estimation.
    In particular I would:
    - bypass standard SAP logics to estimate readings to use custom technique
    - create custom reading type instead standard '03' value
    I read previous topics in this forum and I have seen that a possible user-exit to link the new estimation logics could be EDMLELHR. Using SAP I have seen also EDMLELHA user-exit.
    I think the second user-exit is better for my case because I want to create reading orders separately respect to estimation process. In fact I have had problems with EDMLELHA user-exit because after having created the reading order (EL01 transaction), in the installation I have seen in the Reading Results sheet an estimated reading. I didn't want an estimated reading, but only the reading order.
    Are there way to not activate automatic estimation during EL01? Or are there other user-exit similar to EDMLELHA without this inconvenience?
    Finally, how can I do to create a custom reading type after estimation?
    I hope I made myself clear
    Thanks a lot

    HiASADUZZAMAN
    You cannot use the request. It has a wrong type
    Is above error a warning or error?
    Double click on above information when you are getting you may get more inputs to analyze.
    Thanks & Regards,
    Nagendra.

  • Import custom taglib??/

    I'm a newbee with UIX, sorry if this question seems stupid. How do you go about importing a custom taglib into UIX application?
    Thanks!

    Hi,
    You cannot use jsp tags inside a uix page.
    However, you can import the content of another JSP from within a UIX file.
    see:
    http://otn.oracle.com/jdeveloper/help/topic?inOHW=true&linkHelp=false&file=jar%3Afile%3A/u01/app/oracle/product/IAS904/j2ee/OC4J_ohw/applications/jdeveloper/jdeveloper/helpsets/jdeveloper/uixref.jar!/ui/servletInclude.html

  • Custom Taglibs

    Hi all
    Can any one tell me y Custom Taglibs came innto field what use to be there before and how they are used. what are the advantages and disadvantages of Custom Taglibs
    And also about struts tags
    Thanx in
    advance

    Tag libs keep scriptlets out of JSPs.
    http://java.sun.com/j2ee/tutorial/1_3-fcs/doc/JSPTags.html

  • Customize no longer works for me in FF 29. It just brings up "about:customizing" in the URL box

    I like the new interface in FF29, but my back and forward arrows no longer show in the toolbar. No problem, I thought. I'll just correct the lost customization. But when I choose customize, I don't get the usual customize menu. "about:customizing" is simply inserted in the URL box.

    Have you tried it in "Safe Mode" - F10 > Help > Restart with addons disabled?
    When I enter "about:customizing" it takes me to the same customising view as does using right-mouseclick on a non-active part of the main toolbar.
    Another gotcha might be that at the bottom-left there is a drop down list where menus can have their visibility set. It's possible for some buttons to be hidden because these menus are set "off". Just for when you do find your customise page ...

  • Consistently getting an error in custom reports "an error occurred" is the only msg displayed...my c

    Consistently getting an error in custom reports "an error occurred" is the only msg displayed...my clients are screaming...what is the problem?

    Hi,
    Please log a ticket with BC support for this issue. Please provide the exact steps, preferably a video. You can log the ticket from your admin panel > help & support.
    Kind Regards,
    Aish

  • Download Error - Contact customer support. Indesign wont load application have gone from the control panel. CS photoshop loads and wants a serial number - and my serial number dosent work?

    Download Error - Contact customer support. Indesign wont load application have gone from the control panel. CS photoshop loads and wants a serial number - and my serial number dosent work?

    Hello Bradley,
    sometimes the "opm.db file" is the culprit. In this case you should delete it.
    But as much as I regret it and as strange as it may seem I fear it's a challenge for Adobe's Creative Cloud Cleaner Tool.
    Sometimes - for whatever reasons - CC doesn't "want" to work. In this case you should CC completely delete and reinstall by help of Adobe Creative Cloud Cleaner Tool. (A try to uninstall by own resources is not enough!)
    I quote: ... helps resolve installation problems for Adobe Creative Cloud and Adobe Creative Suite (CS3-CS6) applications. The tool removes installation records for prerelease installations of Creative Cloud or Creative Suite applications. It does not affect existing installations of previous versions of Creative Cloud or Creative Suite applications.
    Please use: http://helpx.adobe.com/creative-suite/kb/cs5-cleaner-tool-installation-problems.html   and follow the prescribed sequence of operations
    If necessary and for further questions click through http://helpx.adobe.com/contact.html or http://helpx.adobe.com/de/contact.html and if "open" please use chat, I had the best experiences.
    Good luck!
    Hans-Günter

  • How do you know if trust certificate error about imap.aol server is the result of an imposter or the "real" aol imap server?

    I keep receiving a trust certificate error about imap.aol server. Says it may be the result of an imposter or the "real" aol imap server?  How do you determine if the trust certificate is for an imposter?

    Please post a direct link to the page you're having trouble with.

  • When I click on Apps in the Creative Cloud panel is days Download Error contact customer support

    When I click on Apps in the Creative Cloud panel is days Download Error contact customer support
    OS X 10.9.4
    3.4 GHz Intel Core i7
    16GB RAM 1333 MHz DDR3
    237" iMac

    I wish. Just this ambiguous msg.
    I've gone round and round their online support. Seems like it's all for specific apps. Can't find anything for the CC window itself.  Screen capture attached.
    Many thanks for your time!

Maybe you are looking for

  • Attempting to import many CDs - getting "disk is full" error msg!!

    I am SO frustrated with not being able to add to my library from my CDs, since iTunes can't convert the WMA library I had nearly 3,500 songs in!! I have deleted much of the stuff in my Windows Media library to open up room on my hard disk, but this d

  • Folio Builder plug in crashed

    Hi, First of all, sorry for my non-fluent technical english. I have a big problem : I started to work on DPS last week. registered as a free user and sent and downloaded my first publication .zip. So far so good ! But after that, i wasn't able to sta

  • Focusrite/GBand 'Recording Level' problem.

    I recently bought a Focusrite iTrack Solo interface (using with a MacBook Pro) and having downloaded the latest versions of OSX (10.8.5.) and GBand '11, Version 6.0.5 (428.5), still find that I can't record to GBand. GBand recognises the iTrack in bo

  • Data Warehouse - Synchronization Performance view not available/working

    Hi! How can I populate this view. I have no Performance counters to choose from. see attached picture. Come to think of it, I have a lot of empty views and reports - why is that? Best regards Rune Haugen

  • Japanese Keyboard

    I am learning Japanese and have activated the Japanese support in International. I have a 17" PowerBook and my parents are in Japan and bought me a Bluetooth Japanese Apple keyboard. I don't have it here yet but how would I set up the computer to use