JSP and package deployment problem in Tomcat 5

Hi,
I tried very simple exercise that includes JSP and javabean (from package), but I have the following error:
HTTP Status 500 -
type Exception report
message
description The server encountered an internal error ()
that prevented it from fulfilling this request.
exception
org.apache.jasper.JasperException: Unable to compile class for JSP
An error occurred at line: -1 in the jsp file: null
Generated servlet error:
[javac] Compiling 1 source file
[javac] C:\jwsdp\work\Catalina\localhost\exercises\org\apache\jsp\ex01\ex01_jsp.java:10:
package pack01 does not exist
[javac] import pack01.ex01;
[javac] ^
Bellow are all my sources
1. directory structure
========================
C:\jwsdp\webapps\exercises
index.html
C:\jwsdp\webapps\exercises\ex01
build.bat
ex01.jsp
C:\jwsdp\webapps\exercises\ex01\WEB-INF
web.xml
C:\jwsdp\webapps\exercises\ex01\WEB-INF\classes
C:\jwsdp\webapps\exercises\ex01\WEB-INF\classes\pack01
ex01.class
ex01.java
C:\jwsdp\webapps\exercises\ex01\WEB-INF\lib
pack01.jar
2. sources
==========
<< ex01.jsp >>
<HTML> <HEAD> <TITLE>Ex01</TITLE> </HEAD>
<BODY>
<FORM METHOD="GET" ACTION="ex01.jsp">
<%@ page import = "pack01.ex01" %>
<H2>Ex01</H2>
<jsp:useBean id = "x" class = "ex01" scope="application"/>
</FORM>
</BODY> </HTML>
<< ex01.java >>
package pack01;
import java.io.*;
public class ex01 implements Serializable {
private String value;
public ex01() {
value = "EX01";
public void setValue(String s) {
value = s;
public String getValue() {
return value;
<< build.bat >>
cd WEB-INF\classes\
cd
del ex01.jar
javac -deprecation -verbose pack01\ex01.java
jar cvf ..\lib\pack01.jar pack01\ex01.class
<< C:\jwsdp\webapps\exercises.xml >>
<Context className="org.apache.catalina.core.StandardContext"
     cachingAllowed="true"
     charsetMapperClass="org.apache.catalina.util.CharsetMapper"
     configFile="webapps\exercises.xml"
     cookies="true"
     crossContext="false"
     debug="0"
     displayName="Exercises"
     docBase="C:\jwsdp\webapps\exercises"
     domain="Catalina"
     engineName="Catalina"
     j2EEApplication="none"
     j2EEServer="none"
     lazy="true"
     mapperClass="org.apache.catalina.core.StandardContextMapper"
     path="/exercises"
     privileged="false"
     reloadable="true"
     startupTime="30"
     swallowOutput="true"
     useNaming="true"
     wrapperClass="org.apache.catalina.core.StandardWrapper" >
</Context>
What is wrong ?
I have Windows NT and Tomcat 5 (from jwsdp 1.2).
Thank you,
Alex.

I just tried to reproduce the problem with old version of Tomcat (4.0.2) and ... it works. It is definitely specific for Tomcat 5 (or may be one of the late Tomcat 4 as well). There is another related difference:
With Tomcat 4 I could create javabean in class subdirectory (default package) and use
<%@ page import="ex01" %>
Now with Tomcat 5 I have syntax error in this line.
This syntax error disappeared when I moved javabean into package pack01.

Similar Messages

  • Best report to check application and package deployment compliancy?

    I am looking for the best report to check application and package deployment compliancy.
    Preferably targeting a collection.
    tconners

    I'm recommending this one:
    Software Distribution - Application Monitoring folder -
    All application deployments (advanced)
    It allows you to select Collections and applications
    Kent Agerlund | My blogs: blog.coretech.dk/kea and
    SCUG.dk/ | Twitter:
    @Agerlund | Linkedin: Kent Agerlund |
    Mastering ConfigMgr 2012 The Fundamentals

  • Ejb and jsproc deployment problems

    Am trying to deploy the java stored procedure (jsp) example
    (jsproc subdirectory in acmevideo directory) and the enterprise
    java bean (ejb) example (ejb subdirectory in acmevideo
    directory). Both use the business and util subdirectries of
    acmevideo directory. These examples are provided with
    JDeveloper.
    In the case of the jsp example, the files compile fine in
    JDeveloper. The deployment profile file is created okay using
    the Stored Procedure Profile Wizard. But when the jsp is
    attempted to be deployed by right clicking the deployment
    profile file menu in JDeveloper, the following errors appear:
    SQL error during creation of acmevideo/util/DataWrapper
    ORA-00922 - missing or invalid option
    SQL error during creation of acmevideo/business/TitleQueries
    ORA-00922 - missing or invalid option
    Is there a corrective action for these errors? Are the details
    recorded in any log so that these errors can be troubleshooted?
    In the case of the jbe example, the files compile fine in
    JDeveloper. The deployment profile file is created okay using
    the EJB Profile Wizard. But when the jsp is attempted to be
    deployed by right clicking the deployment profile file menu in
    JDeveloper, the following happens:
    The message indicating that the deployment will take a few
    minues continues to show forever. There is no completion,
    and one is forced to cancel the process.
    This happens when using the port settings of 1521, 1526 (Oracle
    listener ports) or 2651 (OAS ORB port). Specifying the service
    or omitting it yeilds the same results.
    Is there a corrective action for this? Are the details recorded
    in any log so that these errors can be troubleshooted?
    For both the situations, is the classpath variable need to set
    outside the JDeveloper environment?
    Also am not able to locate the Oracle 8i CORBA and Enterprise
    Java Beans Developer's Guide and the Oracle 8i Java Stored
    Procedure Developer's Guide referenced in Building Java
    Applications for Oracle 8i anywhere.
    Would appreciate any help in this area.
    null

    : Has anyone been able to deploy an ejb from JDeveloper2 (Beta)?
    We have ;) But I guess that doesn't count... Please have a look
    at the online demo for Enterprise JavaBeans on this technet
    website. You can get there through the JDeveloper Tech Info page.
    Please open a new thread if that doesn't help you.
    Thanks,
    -Roel.
    phil gulesian (guest) wrote:
    : mark tomlinson (guest) wrote:
    : : pretty sure the first one is a bug that is fixed in a later
    : : build of JDeveloper (JSP deployment problem).
    : : As for the EJB deployment problem, here is the way to catch
    : what
    : : is really going on (in the Beta build -- this will be done
    much
    : : better in the production build):
    : : -edit the jdeveloper.ini (in the BIN directory), in the
    : : [environment] section add:
    : : LogConsole=1
    : : -edit the jdeveloper.properties file (in the LIB directory)
    : : change the line :
    : : jdeveloper.logOutput=nul
    : : to
    : : jdeveloper.logOutput=-
    : : Now when you run JDeveloper, you will get an output onsole
    : : window for the JVM running JDeveloper. You will be able to
    see
    : : the deployment messages for the EJB wizard being sent to this
    : : console. This will allow you to troubleshoot what is
    happening.
    : I had the same experience as Bansi (above) when I tried to
    deploy
    : a simple ejb. Following your suggestions about looking in the
    : output console window for the JVM, I observed the message
    : "PropertyEditor for borland.sql.dataset.ProcedureDescriptor
    could
    : not be registered ........" A subsequent search found no
    : ProcedureDescriptor in the borland.sql.dataset package.
    : Has anyone been able to deploy an ejb from JDeveloper2 (Beta)?
    null

  • I want to make a chatroom using jsp, and have some problem, Help!

    I want to build a chatroom using jsp and client using plain html, so i need every client could have a constant connection with the web server and will receive messages realtime. But i got 2 problems.
    First, how can i turn my buffers off so that messages can get to the client the time it is meant to be. I added
    <@page buffer="none">
    but seems that it takes no effect, any tricks here? thx
    Second, I want every user could have a constant conn. with server but i dont want my server to waste resources on those connection that has already been disconnected.so is it possible to stop executing JSP pages once client has diconnected.Since i found that it will throw no exception writing to the client even if the connection is disconnected in JSPs.
    Thanks!!!!!

    By theway, i'm using TOMCat 5.0 as my JSP container.

  • MDM Business Package : Deployment problem with SDM GUI

    Dear Experts,
    I want to deploy the MDM Business Package on to the j2ee engine.However, when i go to the SDM GUI and select the first SDA(com.sap.mdm.tech.mdm4j.sda) file for deployment, it just hangs and nothing happens after that.I feel something is wrong with the SDM GUI.
    Please let me know any possible solutions/alternatives to this problem.
    Thanks,
    Karambir Singh

    Hi Karambir,
    1) Are you trying to deploy the sda from your local machine or from a network drive? If a network drive, try copying it to your local machine and then deploying it.
    2) If the SDM is connecting to a remote application server, it can sometimes take a long time to get a response.
    3) Can you deploy other deployable archives via the SDM, or is only mdm4j.sda causing a problem?
    Walter

  • Jsp and image cache problem

    Hello,
    In a jsp(running on tomcat) I switch two jpg files(1.jpg and 2.jpg) and redirect to the page that displays them.
    The problem is that the files are really changed, but the page which displayed them needs manual refresh to "know" they are inter-changed.
    What I have tried, but no success:
    1) In the page which displayed them, I have tried to setup header:
    response.setHeader("cache-control","no-cache, no-store,must-revalidate, max-age=-1");
    response.setHeader("pragma","no-cache, no-store");
    response.setDateHeader ("expires", -1);no difference, in both IE(6 and 7) and Firefox 2.
    Also no result with html:
    <meta http-equiv="Pragma" content="no-cache">
    <meta http-equiv="Expires" content="-1">2) I have tried to a add a fake param on the images, like
    <a href="1.jpg?<%=(new java.util.Date()).getTime() %">3) I have tried to add also a fake(time) parameter on the jsp which displayes the images, no result
    How can I force the browser to know that I have inter-changed the images?
    Any idea?
    Thank you.</a>

    to traja47 : could you be more specific about that post? Since there are 30,000 plus post about jsp and my sql, thank you very much.
    to jSweep :
    No exceptions.
    just when i ran it, the page is all empty, then I used the VIEW-SOURCE of IE to see the source of the result page, it showed:
    <html>
    <head>
    <title>Accessing data in a database</title>
    </head>
    <body>
    </body>
    </html>
    all the parts related to java are gone. don't know why.

  • Precompile JSP and auto-deploy

    Hi!
    Before deploying our web-application we run it through 'ojscp' to pre-compile the JSP-pages.
    The we use the auto-deploy feature of OC4J.
    Work almost! - except the pre-compiled pasges are not deployed. A directory '_pages' are included in the war-file, but is not copied to the application-deployment directory (./persistence).
    I can copy by hand and the things work.
    It this a bug or have I missed something???
    I am using a stand-alone OC4J 9.0.3 (latest release).
    Kind Regards
    Klaus Gadegaard
    TietoEnator Solutions

    Klaus,
    Yes, we are aware of this issue/problem. We are working to fix this in 9.0.4.
    What you are currently doing as a workaround will work just fine. As an alternative, if you could try to pre-create _pages directory and then deploy.  I am not 100% sure if this alternative will work.. Will test out.. you may also want to try out.
    -Prasad
    Hi!
    Before deploying our web-application we run it through 'ojscp' to pre-compile the JSP-pages.
    The we use the auto-deploy feature of OC4J.
    Work almost! - except the pre-compiled pasges are not deployed. A directory '_pages' are included in the war-file, but is not copied to the application-deployment directory (./persistence).
    I can copy by hand and the things work.
    It this a bug or have I missed something???
    I am using a stand-alone OC4J 9.0.3 (latest release).
    Kind Regards
    Klaus Gadegaard
    TietoEnator Solutions

  • Urgent: Packaging/Deployment Problem!!

    Hi all AppServer Gurus
    Need you advise/auggestion on how should we package our application ear file to be "deployable" to S1App7.
    We have the following java packages
    ...business/ejb -> all ejb classes here
    ...model -> All Java TO classes here
    ...web -> All Java Servlet classes here
    ...util -> All utilities Java Classes here
    The model and util packages is sharable to all ejb and Servlet classes. Our "ideal" application structure (EAR file):
    1. One WAR file
    2. Multiple ejb jar files, each jar file should only consists of bean, home, remote, and two dd files.
    3. common.jar, all java classes in util and model, exception classes, and all ejb bean and home classes
    The above EAR file is not deployable, S1App7 complain it could not locate common claaes to generate stubs/skelaton for our ejbs.
    Eg. ejbA.methodA and ejbB.methodC require UserTO, we need to include UserTO object into both ejbA.jar and ejbB.jar, to make the application deployable. (A nightmare!!)
    The other solutions is to ftp the common.jar to S1App7 classpath, restart server, and then deploy the application (Another nightmare).
    Anyone have better solution?
    Thanks
    James Khoo

    HI Chen,
    I have two solutions, First one is the one I use, Second I am not sure that it will work.
    1.- Put all your EJBs in the same jar, and the model "TO" clases and other classes used by the web side there.
    2.- Use the manifest.mf file to set the class-path of your diferents JAR with your EJBs. The tipical idea is to create a commons.jar with all your model and commons classes and configure de manifest .mf of your jars to put inside theirs class-path this jar. Then, put this commons.jar in the WEB-INF/lib of your jar.
    The AssemblyTool in the download section maybe will help you.
    HTH

  • Newbie - JSP and TAG library problem

    I am trying to execute a JSP program on a server with
    jakarta-tomcat-4.1.29.
    Here is a program:
    <%@ taglib uri="testTagURL" prefix="testTagPrefix" %>
    <testTagPrefix:myFirstTag/>
    in web.xml I have definition:
    <taglib>
    <taglib-uri>testTagURL</taglib-uri>
    <taglib-location>/WEB-INF/tld/testTag.tld</taglib-location>
    </taglib>
    I have testTag.tld file located at: /WEB-INF/tld
    When I execute my program I am getting:
    org.apache.jasper.JasperException: File "/test-jsp/testTagURL" not
    found
    My question: how come my program is looking for "/test-jsp/testTagURL" and
    not for "/WEB-INF/tld/testTag.tld"?
    Thanks,
    Zalek

    means what it says.
    If you look in the file WEB-INF/displaytag.tld you'll see it
    has a definition for a custom tag, I'm guessing it's called column.
    The tld states that this tag has an attribute called "value". ie that
    in a jsp file you would write
       <display:column value="SomeSuperValue" /> However the java class that implements that custom tag
    does not have a setter method for value. ie. the class
    org.displaytag.tags.ColumnTag is missing the method
    public void setValue(String value) { .... }

  • EJB and Dictionary Deployment Problem

    Hi,
    I am new to SAP J2EE engine. I tried deploying a simple EJB application with one entity(CMP) and one stateless session bean but cud not succeed. These were the problems:
    1. When I used SAPDB for CMP, it said the table TMP_EMPLOYEE (which the CMP bean maps to, as per persistet.xml) is not found in the catalog. Then I created a dictionary project with the TMP_EMPLOYEE table defined, but I couldn't deploy the dictionary archive. SDM (from the NWS IDE) says this:
    Result
    => deployment not executed : file:/C:/DOCUME1/i031278/LOCALS1/Temp/temp11240EmployeeDB.sda
    The SDA with development component 'EmployeeDB'/'sap.com'/'localhost'/'2004.11.25.19.41.45' changed its software type from J2EE to JDDSCHEMA. This change is not supported.
    Deployment will be aborted.
    Deployment exception : Got problems during deployment
    2. When I changed the DB provider to MS_SQL_SERVER, which had EMPLOYEEDB/TMP_EMPLOYEE defined, and the SQL server was started, the Table was again not found! (i.e., if I switch off deploy-time table verification, this TableLockingException is thrown. Otherwise ORMappingVerificationException is thrown when the deploy-time verification switch is on).
    I have specified the resource-ref etc properly now. This sample application also has a servlet which tries to access the session bean, which inturn talks to the CMP bean. I'm sure that the JNDI names are properly referred.
    I am using SAP J2EE engine 6.40 with SP9 and IDE is 2.0.9.
    Another thing: I tried to deploy the tutorial 'Car Rental EJB Application' application's dictionary. Even that failed with the same error!
    Please help me with this.
    Thanks a lot!
    Regards,
    Prashanth

    Problem solved in person

  • JavaFx 2.2.0 Native Package deploy problem on Windows

    Hi,
    I'm trying to compile a JavaFX native package on Windows 7 64 bit.
    I've installed:
    JDK 7U6 Beta
    JavaFx sdk 2.2.0 Beta
    Wix toolset 3.5
    Inno Setup 5.5.1
    When I run the tool installers *.exe and *.msi are created and they work as
    installalation procedeure correctly completed.
    The problem is when I run the application as I get a error message window
    with title
    C:\Program Files (x86)\NativePackage\runtime\jre7\bin\server\jvm.dll
    and message
    jvm.dll is not found
    but I looked in C:\Program Files (x86)\NativePackage\runtime\jre7\bin\server and jvm.dll
    exists.
    Any idea?
    Thank you
    Andrea

    Solved,
    running eclipse with a different JRE (C:\Program Files\Java\jdk1.7.0_06\bin\javaw.exe) has solved the problem.
    To do that I simply edited my eclipse.ini and added -vm C:\Program Files\Java\jdk1.7.0_06\bin\javaw.exe, here my
    eclipse.ini:
    -startup
    plugins/org.eclipse.equinox.launcher_1.3.0.v20120522-1813.jar
    --launcher.library
    plugins/org.eclipse.equinox.launcher.win32.win32.x86_64_1.1.200.v20120522-1813
    -product
    org.eclipse.epp.package.java.product
    --launcher.defaultAction
    openFile
    --launcher.XXMaxPermSize
    256M
    -showsplash
    org.eclipse.platform
    --launcher.XXMaxPermSize
    256m
    --launcher.defaultAction
    openFile
    -vm
    C:\Program Files\Java\jdk1.7.0_06\bin\javaw.exe
    -vmargs
    -Dosgi.requiredJavaVersion=1.5
    -Dhelp.lucene.tokenizer=standard
    -Xms40m
    -Xmx384m

  • JSP and Servlet compilation problem

    I am getting strange errors whilst compiling this simple-tag class for JSP. I know I need to install the Java Servlet API.
    I have been to the sun website and downloaded something called:
    JavaTM Technology & Web Services
    Java Web Services Developer Pack Download
    It was an .exe program, it found my installation of j2se (or jdk).
    Is there anything else I need to do? Or have I downloaded the wrong file?
    Here is the class:
    import javax.servlet.jsp.*;
    import javax.servlet.jsp.tagext.*;
    public class SimpleTag extends javac.seervlet.jsp.tagext.TagSupport
    public int doStartTag() throws JspExcption
         try
    pageContext.getOut().print("Welcome to my Web site.");
    catch (Exception e)
    throw new JspTagExcpetion(e.getMessage() );
    return SKIP_BODY;
    Here is the errors:
    public class SimpleTag extends javac.seervlet.jsp.tagext.TagSupport
    ^
    SimpleTag.java:6: cannot resolve symbol
    symbol : class JspExcption
    location: class SimpleTag
    public int doStartTag() throws JspExcption
    ^
    SimpleTag.java:10: cannot resolve symbol
    symbol : variable pageContext
    location: class SimpleTag
    pageContext.getOut().print("Welcome to my Web site.");
    ^
    SimpleTag.java:14: cannot resolve symbol
    symbol : class JspTagExcpetion
    location: class SimpleTag
    throw new JspTagExcpetion(e.getMessage() );
    ^
    SimpleTag.java:16: cannot resolve symbol
    symbol : variable SKIP_BODY
    location: class SimpleTag
    return SKIP_BODY;
    ^
    7 errors

    Okay I have made the changes but still gives me the same error message for servlets.
    import javax.servlet.jsp.*;
    import javax.servlet.jsp.tagext.*;
    public class SimpleTag extends javax.servlet.jsp.tagext.TagSupport
    public int doStartTag() throws JspException
         try
    pageContext.getOut().print("Welcome to my Web site.");
    catch (Exception e)
    throw new JspTagException(e.getMessage() );
    return SKIP_BODY;
    Still get the same errors:
    public class SimpleTag extends javax.servlet.jsp.tagext.TagSupp
    ^
    SimpleTag.java:6: cannot resolve symbol
    symbol : class JspException
    location: class SimpleTag
    public int doStartTag() throws JspException
    ^
    SimpleTag.java:10: cannot resolve symbol
    symbol : variable pageContext
    location: class SimpleTag
    pageContext.getOut().print("Welcome to my Web site."
    ^
    SimpleTag.java:14: cannot resolve symbol
    symbol : class JspTagException
    location: class SimpleTag
    throw new JspTagException(e.getMessage() );
    ^
    SimpleTag.java:16: cannot resolve symbol
    symbol : variable SKIP_BODY
    location: class SimpleTag
    return SKIP_BODY;
    ^
    7 errors

  • WSDL Web Services Client and EAR deploy problem

    Hi!
    I have allready posted this on "Web AS General", with no result.
    So I hope this forum is a better choise.
    Environment:
    SAP EP / SAP NW04 / SPS14
    NW DevStudio
    I just deployed an ear file (first time ...) with SDM.
    The ear file represents an auto generated web services client on basis of a WSDL file.
    (done from web services perspective in NWDS choosing "New Deployable Proxy Project")
    When running a test I get the following error:
    "Could not find portal application Unknown provider of external application: J2EE::sap.com/NWTPINWSClient"
    .. where NWTPINWSClient is the name of the EAR - file
    The test code contains this:
    The portalapp.xml has the following tag:
    <application-config>
    <property name="SharingReference" value="J2EE::sap.com/NWTPINWSClient">
    </property>
    </application-config>
    I'm new to this, so please feel free to consider newbie misstakes.
    BRGRDS
    Peter M

    Can you/anybody post solution. I have the same problem.
    Thanks
    Srinivas

  • Help needed: JSP and portal parameter problem

    When entered following url in the browser, portlet does display parameters name=sandra,age=26 and address=london
    http://portaldev.bank.com/portal/page?_pageid=12,56291&_dad=portal30_dev2&_schema=PORTAL30&name=Sandra&age=26&address=london
    Following jsp is used to display parameters.
    <%@page language="java" import="java.util.*, oracle.portal.provider.v2.render.PortletRenderRequest, oracle.portal.provider.v2.http.HttpCommonConstants"%>
    <HTML>
    <HEAD>
    <TITLE>
    Snoop Page
    </TITLE>
    </HEAD>
    <BODY>
    <B>Snoop Page</B>
    <TABLE border=1>
    <%
         PortletRenderRequest prr = (PortletRenderRequest)request.getAttribute(HttpCommonConstants.PORTLET_RENDER_REQUEST);
         String name=null;
         String value =null;
         for(Enumeration e = prr.getParameterNames(); e.hasMoreElements(); )
         name = (String)e.nextElement();
         value = request.getParameter(name);
         System.out.println("name:--->"+name+" value----->"+value);
         %>
         <TR>     
         <TD><%=name%></TD><TD><%=value%></TD>
         </TR>
         <%
         %>
    </TABLE>
    </BODY>
    </HTML>
    Thanks

    with these unqualified (not prefixed to be specific to this portlet instance) parameter names, you will have to update your provider.xml file to set the <passAllUrlParams> to true.
    There is a little info in this doc http://portalstudio.oracle.com/pls/ops/docs/FOLDER/COMMUNITY/PDK/ARTICLES/PRIMER.PORTLET.PARAMETERS.EVENTS.HTML

  • Tomcat deployment problems

    Hi,
    I have an application developed in JSC2_1 and migrated to VWP/NetBeans which I can run nicely on Sun Java Application Server 9.1. But I am trying to deploy it on tomcat server (5.5.17.,5.5.20) over few weeks. I even assembled tomcat server 6.0.14 and added jstl.jar, jsf-api.jar, jsf-impl.jar and tools.jar (from sun java jdk1.6.0_01) to the common library. Initially I got errors which I rectified. Now if I browse with mozilla firefox I see two panels and images and buttons are not loaded. If I use IE7 I find nothing. Log files do not show any error at all...Can anyone help with these deployment problems with tomcat??
    thanks in advance.
    dr. am mohan rao

    I have deployed my JSC 2.1 app to Tomcat 5.5.17 servers.
    My app is running on XP Pro (development server) and WIndows 2000 Server (deployment).
    I'm using MySQL as the database server.
    Did you export your WAR file as J2EE 1.4?
    Here are some links that might help:
    http://forum.java.sun.com/thread.jspa?threadID=5101183
    http://blogs.sun.com/david/entry/defining_java_studio_creator_2
    http://blogs.sun.com/winston/entry/redploying_to_tomcat

Maybe you are looking for

  • INVOIC02 idoc - incoming invoice: EXIT_SAPLMRMH_015 or EXIT_SAPLMRMH_014

    Hi, I need to use EXIT_SAPLMRMH_015 or EXIT_SAPLMRMH_014 to reset the Posting Date of an incoming invoice. I can see from other threads that this should be possible but I cannot get it to work. Please could someone who has done it let me have some sa

  • How can I chose and manage the addresses from which my emails are sent?

    My ISP lets me have an infinite choice of addresses by putting whatever I like in front of the @ in my email address. I want to use this to create and manage separate accounts for myself, my wife, and two voluntary associations for whom I act as secr

  • Install PS element 11 on Mac

    Hi, have a problem installing Photoshop elements 11 on my mac Download files named:  PhotoshopElements_11_LS15.7z

  • How to import subtitles on 23.98fps video

    Hi, Usually, we do the 3:2 pulldown before encoding and we send a TCBI 29.97fps to the subtitling house so we can be sure that everything is in sync. But I read recently that's not the good workflow to keep the best picture quality. I want to know wh

  • Can't write keywords to photos

    I have both PSE 9 and 10 on my iMac running Mountain Lion.  In both versions, when I try to "Write Keyword Tags  and Properties Info to Photos," I instantly get a message saying, "An error occurred while reading files or writing files to disc.  The d