This is a stumper of a problem

This is quite a specialised problem and i hope someone can help me
I am writing a jsp web page to display information from a ldap directory. It works fine except i need to specify where the program is to search the ldap tree. When i specify no location i.e. "" the program works perfectly but when i specify a location such as i.e. "cn=Radiation,cn=Documentation" tomcat returns an error that doesnt exactly explain whats happening the main error line reads
org.apache.jasper.JasperException: ld.Connection.getDocument(Ljava/lang/String;)Ljava/util/ArrayList;The must stumping part of this problem is that the program runs in jbuilder when i specify a location but not on tomcat, i find this strange as jbuilder runs it in tomcat to run it!!!
The code for the jsp page is this
<?xml version="1.0" encoding="utf-8"?>
<?xml-stylesheet type="text/xsl" *******"?>
<%@ page contentType="application/xml" %>
<%@ page import="java.util.*" %>
<%@ page import="javax.naming.*" %>
<%@ page import="ld.*" %>
<%@ page import="biz.osoft.escies.*" %>
<%
long start = System.currentTimeMillis();
%>
<html xml:lang="en">
<head>
  <title>Escies Conference Documents</title>
  <identifier>*****</identifier>
  <date><%=new java.sql.Date(System.currentTimeMillis())%></date>
  <contributor>webmaster</contributor>
  <subject>Titles and description of Documents</subject>
  <description>Titles and description of Documents</description>
  <script type="text/javascript">
        function PrintAuthor(anAuthor)
            alert (anAuthor);
     function PrintDescription(aDescription)
            alert (aDescription)
     function PrintKeywords(aKeyword)
            alert (aKeyword)
  </script>
<style type="text/css" >
div.scroll {height: 3ex; overflow: auto;}
</style>
</head>
<body>
  <h1>Documents</h1>
  <br clear="all" />
  <index>
<%
Connection ldap = new Connection();
String DocumentLocation = new String("cn=Irradiation,cn=Radiation,cn=Documentation");
ArrayList doc = ldap.getDocument(DocumentLocation);
String ldapLocation = new String();
String ldapLoc= new String();
String nextLdapLocation = new String();
String ldapPosition = new String();
%>
<%/*StringTokenizer st = new StringTokenizer(ldapPosition,",");
ArrayList a = new ArrayList();
while (st.hasMoreTokens())a.add(st.nextToken());
Object [] backwards = a.toArray();
int l = backwards.length;
String forwards = "";
for (int j = l-1; j>=0; j--){
     backwards [j] = ((String) backwards [j]).substring(3);
     forwards += backwards[j];
     if (j>0){forwards += " ";}
     }*/%>
<%
for (int n=0; n <  doc.size(); n++){
     LDAPDocument identifier = (LDAPDocument)doc.get(n);
        ldapLoc=identifier.getCnString();
        ldapLoc=ldapLoc.substring((ldapLoc.indexOf(",")+1));
     if(doc.size()-1>=(n+1)){
     LDAPDocument nextIdentifier = (LDAPDocument)doc.get(n+1);
        nextLdapLocation=nextIdentifier.getCnString();
        nextLdapLocation=nextLdapLocation.substring((nextLdapLocation.indexOf(",")+1));
     }else{nextLdapLocation="";}
     //ldapGroup=identifier.getCnString();
     //ldapGroup=ldapGroup.substring((ldapGroup.indexOf(",")+1),ldapGroup.indexOf(ldapPosition)-1);
     ldapPosition=ldapLoc;
     StringTokenizer st = new StringTokenizer(ldapPosition,",");
     ArrayList a = new ArrayList();
     while (st.hasMoreTokens())a.add(st.nextToken());
     Object [] backwards = a.toArray();
     int l = backwards.length;
     String forwards = "";
     for (int j = l-1; j>=0; j--){
          backwards [j] = ((String) backwards [j]).substring(3);
          forwards += backwards[j];
          if (j>0){
               forwards += " ";
%>
<%if (ldapLoc.matches(ldapLocation)!=true){%>
<group heading ="<%=forwards%>">
<item>
  <table>
<col width = "55%" />
<col width = "10%" />
<col width = "15%" />
<col width = "15%" />
<col width = "5%" />
    <tr>
      <th>Document Title</th>
      <th>Document Author</th>
      <th>Document Description</th>
      <th>Document Keywords</th>
      <th>Document Location</th>
    </tr>
<%}%>
<%ldapLocation=ldapLoc;%>
     <tr><div class="scroll">
         <td valign="top">
          <%=ldap.convertToXML(identifier.getIdentifier())%>
         </td>
         <td valign="top">
          <a href="javascript:PrintAuthor('<%=ldap.convertToXML(identifier.getAuthor())%>')">Author</a>
         </td>
         <td valign ="top">
          <a href="javascript:PrintDescription('<%=ldap.convertToXML(identifier.getDescription())%>')">Description</a>
         </td>
         <td valign ="top">
          <a href="javascript:PrintKeywords('<%=ldap.convertToXML(identifier.getKeywords())%>')">KeyWords</a>
         </td>
         <td valign = "top">
          <a href="<%=ldap.convertToXML(identifier.getLocation())%>">GO</a>
         </td>
     </div>
     </tr>
<%if (ldapLoc.matches(nextLdapLocation)!=true){%>
</table>
</item>
</group>
<%}%>
<%//ldapLocation=ldapLoc;%>
<%
%>
  </index>
<%
ldap.close();
%>
</body>
</html>and the class that the jsp page is using is this
package ld;
import java.util.*;
import java.util.ArrayList;
import java.io.*;
import javax.naming.*;
import javax.naming.directory.*;
import javax.naming.NamingException;
public class Connection{
   public DirContext ctx = null;
   public Connection() throws javax.naming.NamingException{
   Hashtable env = new Hashtable();
   env.put(Context.INITIAL_CONTEXT_FACTORY,"com.sun.jndi.ldap.LdapCtxFactory");
   env.put(Context.PROVIDER_URL, "*********");
   env.put(Context.SECURITY_AUTHENTICATION,"simple");
   env.put(Context.SECURITY_PRINCIPAL,"*****"); // specify the username
   env.put(Context.SECURITY_CREDENTIALS,"*****");           // specify the password
   try{
     ctx = new InitialDirContext(env);
   }catch(Exception a){System.out.println(a);}
   public ArrayList getDocument() throws NamingException{
     int n=0;
     ArrayList document = new ArrayList();
     String[] attrIDs = {"cn"};
     SearchControls ctls = new SearchControls();
     ctls.setReturningAttributes(attrIDs);
     ctls.setReturningObjFlag(true);
     ctls.setSearchScope(SearchControls.SUBTREE_SCOPE);
     String filter = "(documentIdentifier=*)";
     try{
       NamingEnumeration e = ctx.search("", filter, ctls);
       System.out.println("Search performed");
       document = formatResults(e);
       System.out.println("finished formatresults method");
       Collections.sort(document, new DocumentComparator());
       System.out.println("finished sorting alphabethically");
     }catch(Exception f){System.out.println("exception caught "+f);}
     for (n=0;n<document.size();n++){
        System.out.println(document.get(n));
     System.out.println("closing context");
     ctx.close();
   return document;
   public ArrayList getDocument(String argument) throws NamingException{
        int n=0;
        ArrayList document = new ArrayList();
        String[] attrIDs = {"cn"};
        SearchControls ctls = new SearchControls();
        ctls.setReturningAttributes(attrIDs);
        ctls.setReturningObjFlag(true);
        ctls.setSearchScope(SearchControls.SUBTREE_SCOPE);
        String filter = "(documentIdentifier=*)";
        try{
          NamingEnumeration e = ctx.search(argument, filter, ctls);
          System.out.println("Search performed");
          document = formatResults(e ,argument);
          System.out.println("finished formatresults method");
          //Collections.sort(document, new DocumentComparator());
        }catch(Exception f){System.out.println("fault line 68 : "+f);}
        //for (n=0;n<document.size();n++){
        //   System.out.println(document.get(n));
       System.out.println("closing context");
        ctx.close();
      return document;
   public ArrayList formatResults (NamingEnumeration eneration, String argument) throws Exception{
     ArrayList document = new ArrayList();
     int n=0;
     System.out.println("Starting while loop line 81");
     try{
     while (eneration.hasMore()){
     System.out.println("line 87");
      String aVal = eneration.nextElement().toString();
      System.out.println("line 89");
      aVal = aVal.substring(0,aVal.indexOf(":"));
      System.out.println(aVal);
      aVal +=",";
      aVal +=argument;
      System.out.println(aVal);
      System.out.println("line 91");
      document.add(getIdentifier(aVal));
      System.out.println("line 93");
      System.out.println(document.size());
      for (n=0; n<document.size(); n++){
         System.out.println(document.get(n));
      }catch (NamingException e){
      e.printStackTrace();
      }System.out.println("ending while loop line 101");
      System.out.println("number of locations in document - : "+document.size());
      return document;
   public ArrayList formatResults (NamingEnumeration eneration) throws Exception{
     ArrayList document = new ArrayList();
     int n=0;
     System.out.println("Starting while loop line 81");
     try{
     while (eneration.hasMore()){
     System.out.println("line 87");
      String aVal = eneration.nextElement().toString();
      System.out.println("line 89");
      aVal = aVal.substring(0,aVal.indexOf(":"));
      System.out.println(aVal);
      System.out.println("line 91");
      document.add(getIdentifier(aVal));
      System.out.println("line 93");
      System.out.println(document.size());
      for (n=0; n<document.size(); n++){
         System.out.println(document.get(n));
      }catch (NamingException e){
      e.printStackTrace();
      }System.out.println("ending while loop line 101");
      System.out.println("number of locations in document - : "+document.size());
      return document;
   public void close() throws NamingException{
     if(ctx != null)ctx.close();
   public LDAPDocument getIdentifier(String baseDN) throws NamingException{
      String TEST = new String();
      int test = 0;
      String ldapLoc = new String();
      LDAPDocument doc = new LDAPDocument();
      System.out.println(baseDN);
      Attributes attrs = ctx.getAttributes(baseDN);
      NamingEnumeration e = attrs.getIDs();
      System.out.println("while loop starting line 125");
      while (e.hasMore()){
         try{
            String id = e.nextElement().toString();
            doc.setCnString(baseDN);
            if (id.equals("cn"))
               doc.setName(attrs.get(id).get().toString());
            if (id.equals("documentIdentifier"))
               doc.setIdentifier(attrs.get(id).get().toString());
            if (id.equals("description"))
               doc.setDescription(attrs.get(id).get().toString());
            if (id.equals("documentAuthor"))
               doc.setAuthor(attrs.get(id).get().toString());
            if (id.equals("keyWords"))
               doc.setKeywords(attrs.get(id).get().toString());
            if (id.equals("documentLocation")) {
               doc.setLocation(attrs.get(id).get().toString());
         }catch(Exception b){System.out.println("exception is : "+b);}
         System.out.println("while loop finished line 144");
     }return doc;
   public static String convertToXML(String s) {
    return convertToXML(s, false);
  public static String convertToXML(String s, boolean replaceLineEndings) {
    if (s != null) {
      s = s.replaceAll("&", "&");
      s = s.replaceAll("<", "<");
      s = s.replaceAll(">", ">");
      s = s.replaceAll("�", "�");
      s = s.replaceAll("�", "�");
      s = s.replaceAll("�", "�");
      s = s.replaceAll("�", "�");
      s = s.replaceAll("�", "�");
      s = s.replaceAll("�", "�");
      s = s.replaceAll("�", "�");
      s = s.replaceAll("�", "�");
      s = s.replaceAll("�", "�");
      s = s.replaceAll("�", "�");
      s = s.replaceAll("�", "�");
      s = s.replaceAll("�", "�");
      s = s.replaceAll("�", "�");
      s = s.replaceAll("�", "�");
      s = s.replaceAll("�", "�");
      s = s.replaceAll("�", "�");
      s = s.replaceAll("�", "�");
      s = s.replaceAll("�", "�");
      s = s.replaceAll("�", "�");
      s = s.replaceAll("�", "�");
      s = s.replaceAll("�", "�");
      s = s.replaceAll("�", "�");
      if (replaceLineEndings)
        s = s.replaceAll("\n", "<br />");
    return s;
class DocumentComparator implements Comparator {
     java.text.Collator collator = java.text.Collator.getInstance();
     public int compare (Object d1, Object d2){
        return collator.compare(((LDAPDocument) d1).getLdapLocation(),((LDAPDocument) d2).getLdapLocation());
}I know this is a tough problem but even if i get a post saying that someone cant see anything wrong it would help

oh and this is the full error list given by tomcat
type Exception report
message
description The server encountered an internal error () that prevented it from fulfilling this request.
exception
org.apache.jasper.JasperException: ld.Connection.getDocument(Ljava/lang/String;)Ljava/util/ArrayList;
     at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:248)
     at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:295)
     at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:241)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
     at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247)
     at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
     at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:260)
     at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
     at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
     at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
     at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
     at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
     at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
     at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
     at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2415)
     at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180)
     at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
     at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:170)
     at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
     at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:172)
     at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
     at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
     at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
     at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:174)
     at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
     at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
     at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
     at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:223)
     at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:432)
     at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:386)
     at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:534)
     at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:530)
     at java.lang.Thread.run(Thread.java:536)
root cause
javax.servlet.ServletException: ld.Connection.getDocument(Ljava/lang/String;)Ljava/util/ArrayList;
     at org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:533)
     at org.apache.jsp._136_jsp._jspService(_136_jsp.java:214)
     at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:137)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
     at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:204)
     at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:295)
     at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:241)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
     at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247)
     at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
     at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:260)
     at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
     at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
     at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
     at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
     at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
     at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
     at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
     at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2415)
     at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180)
     at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
     at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:170)
     at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
     at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:172)
     at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
     at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
     at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
     at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:174)
     at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
     at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
     at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
     at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:223)
     at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:432)
     at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:386)
     at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:534)
     at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:530)
     at java.lang.Thread.run(Thread.java:536)
Apache Tomcat/4.1.18does this mean anything to anyone cos it means nothing to me
cheers

Similar Messages

  • Error while opening pdf in reader in windows 8:Can't open this file. There's a problem with file format

    I have a problem with a pdf file which does not open with reader in windows 8 but it opens properly with adobe pdf reader. All other pdf can be opened in reader.But when i open a pdf(see this link for pdf for which i got error http://incometaxsoft.com/temp/Form.pdf)
    it gives error as "Can't open this file. There's a problem with file format".
    The same file opens properly in adobe pdf reader.You can check the pdf file which i have mentioned in the link above.But the reader which comes with windows 8 can open some other pdf in the same PC.What may be the error causing this??

    This has turned out to be an enormous issue for me as I sell PDF files as ebooks. I have done a fair amount of investigating this for my system.
    My files have to be compatible not just across readers but across operating systems.
    To date, I have over 200 PDFs that have functioned flawlessly across Mac, PC (Windows 7 and below), Android, iPhone/iPad, Linux.
    I personally test my PDFs using a variety of readers and PDF editors including
    PDF XChange (my favorite)
    Foxit (runner up for me and I recommend for most people)
    Adobe (the bloated monster)
    Nitro 9 (great for moving graphical elements around)
    ABBYY
    And the Nuance PDF Create toolsets
    Those are off the top of my head. There are a bunch on Android that I test with too.
    I am running the Windows 10 Pro Tech Preview and I have this same problem so I know it isn't fixed yet in any kind of pre-release way (-sigh-)
    Here is what I've learned for my situation
    The PDFs I created using NUANCE'S PDF CREATE PROFESSIONAL VERSION 8
    all fail using the built-in Windows 8/10 PDF reader.
    When I look at the PDF properties for these Nuance created files, the underlying engine used to write them is called "ImageToPDF". Using ABBYY it indicates their own engine as does everyone else that I've tried. It is easy for you to check to see
    what created your PDF by doing a "Control D" (look at the document properties). Perhaps there's a common engine causing issues.
    If I use the exact same source files to create a PDF using any of my other tools I have no issues. I checked the PDF versions made by the tools and they are all set to 1.5.
    A customer mentioned being able to convert them in a way they worked by saving them without having to do any kind of extraction, but I have not been able to duplicate that. Perhaps he did a "print" which seems like it could work.
    In summary, the workaround everyone is talking about, using an alternate reader, of course works. But not everyone wants to change.
     The culprit I have found is my Nuance PDF Creation tools that are using the ImageToPDF engine.
    I hope it gets FIXED as I really don't want to have to regenerate all of my PDF files.

  • Itunes asking me my billing verification again and again on the same computer. I don't know why it behave like this. Anyone can solve my problem?

    Itunes asking me my billing verification again and again on the same computer. I don't know why it behave like this. Anyone can solve my problem?
    I already provided my 3 digit CVV number but Itunes again need to confirm the code whereas on my Office Computer I am purchasing Apps on Itunes without verifying my billing information again and again except once at the time of creation of account.
    Please help me as I am charging by my Credit Card bank by US$ 1 each time when I give verification code.
    Thanks
    Talat Khatri

    Try the following steps,
    Sign into your computer and removal of credit card information. Here are the steps:
    1) Open iTunes and sign in to the iTunes Store.
    2) Select "View My Account" from the Store menu.
    3) Enter your password and click the View Account button.
    4) Click the Edit Payment Information button.
    5) Select "None" as the payment type.
    6) Click the Done button at the bottom of the page.
    Reset your account password from the following link:
    http://iforgot.apple.com
    Phase 3:
    Download a free content on to get recognized in iTunes.
    To ensure your account is functioning, try downloading a free item from the iTunes Store. To do this, navigate to the iTunes Store main page by clicking the Home icon near the upper-left corner of the window. Scroll down and click the "FREE ON iTunes" link near the bottom of the main page, then select an item to download.
    After you are able to download the free App try updating the billing information as usual.

  • When I start the program I instantly see this message:  "Adobe Bridge encountered a problem and is unable to read the cache, please try purging the central cache in cache preferences to correct the situation".  I have tried this and it only results in a s

    When I start the program I instantly see this message:  "Adobe Bridge encountered a problem and is unable to read the cache, please try purging the central cache in cache preferences to correct the situation".  I have tried this and it only results in a stalled/locked program.  I have tried restarting my machine multiple times and tried reconfiguring how the cache is managed.  Do you have anyone who could walk me through each step to correct this problem which just started two days ago.  I have owned this program for at least a year now...

    BOILERPLATE TEXT:
    Note that this is boilerplate text.
    If you give complete and detailed information about your setup and the issue at hand,
    such as your platform (Mac or Win),
    exact versions of your OS, of Photoshop (not just "CS6", but something like CS6v.13.0.6) and of Bridge,
    your settings in Photoshop > Preference > Performance
    the type of file you were working on,
    machine specs, such as total installed RAM, scratch file HDs, total available HD space, video card specs, including total VRAM installed,
    what troubleshooting steps you have taken so far,
    what error message(s) you receive,
    if having issues opening raw files also the exact camera make and model that generated them,
    if you're having printing issues, indicate the exact make and model of your printer, paper size, image dimensions in pixels (so many pixels wide by so many pixels high). if going through a RIP, specify that too.
    etc.,
    someone may be able to help you (not necessarily this poster, who is not a Windows user).
    a screen shot of your settings or of the image could be very helpful too.
    Please read this FAQ for advice on how to ask your questions correctly for quicker and better answers:
    http://forums.adobe.com/thread/419981?tstart=0
    Thanks!

  • There was an error opening this document. There was a problem reading this document (14). need help

    i can open other files on adobe except one, and this is the message i get. "There was an error opening this document. There was a problem reading this document (14)." how can i fix this?

    What is the version of your Adobe Reader?  It sounds like you are using the desktop version of Adobe Reader.

  • I am trying to update my iPhone software but to do so I needed to update iTunes.  When I try to do that, I keep getting this error message" "There is a problem with this Windows Installer Package. A program required for this install to complete could not

    I am trying to update my iPhone software but to do so I needed to update iTunes.  When I try to do that, I keep getting this error message" "There is a problem with this Windows Installer Package. A program required for this install to complete could not....

    Try the following user tip:
    "There is a problem with this Windows Installer package ..." error messages when installing iTunes for Windows

  • HT1339 ipod not recognized by my computer, it says "Windows has stopped this device because it has reported problems. (Code 43)" please help

    please help...
    my computer is not recognizing my ipod classic gen 5. it shows the sad face then i did the basic troubleshooting until logo comes out...
    still my computer is not recognizing my ipod.. it still says "Windows has stopped this device because it has reported problems. (Code 43)"

    See here: iPod displays a sad iPod icon
    Note that it's often a good sign of a hardware issue with the iPod's hard drive meaning the iPod will need to be serviced or replaced.
    B-rock

  • Im trying to download itunes 10.5 but keep getting error message that says: There is a problem with this Windows Installer package. A problem run as part of the setup did not finish as expected. Contact your support personnel or package vendor.

    im trying to download itunes 10.5 but keep getting error message that says: There is a problem with this Windows Installer package. A problem run as part of the setup did not finish as expected. Contact your support personnel or package vendor. I am using windows XP 32 bit, all the other computers in my house downloaded just fine, no problems, however this is the computer my iphone is set up to, ive tried doing a virus scan, windows update, downloading other things, updating everything possible, everything works fine, its just itunes that wont download, anyone have any other ideas?

    Yes, I had found a similar solution also.  I'm running XP Pro, SP3.  I went Control Panels/ Add-Remove programmes/apple software update/ change/ repair.  Then run the 10.5 exe.
    While the programme updated from version 8 of iTunes, my new iTunes is now a mess.  Not all of my music was in the same folder previously but it all showed up on iTunes.  Now many albums have been left out, some have only a few tracks and some have two copies of some tracks as well as having other tracks missing.  I haven't begun to work on that.

  • Hello I am in Afghanistan i searched that in realtek but that told me you coulde not use this sit   I writ again my problem    i installed win 7 32 bit in my mac pro 13-inch, Late 2011  Processor  2.4 GHz Intel Core i5

    On Thu, Jun 14, 2012 at 12:54 PM, mahdi ehsani <[email protected]> wrote:
    On Sun, Jun 10, 2012 at 7:29 PM, Apple Support Communities Updates <[email protected]> wrote:
    Apple Support Communities
    Re: after install windows 7 32 bit there is no sound my mac is os x 10.7.2
    created by The hatter in Boot Camp - View the full discussion
    This solved my question 
    This helped me
    you have RealTek on your workstation and just download the current driver which is easy to findwww.realtek.com
    This solved my question 
    This helped me
    Did this help? Go to the message, sign in, and reply or mark the response as correct or helpful
    Start a new discussion in the same community/choose-container!input.jspa?contentType=1&containerType=14&container=2143&ac_ci d=op123456
    You are receiving this email from Apple Support Communities. You can change your email preferences in your Apple Support Communities Profile.
    © 2012 Apple Inc. 1 Infinite Loop, MS 303-3DM, Cupertino, CA 95014.
    All Rights Reserved | Privacy Policy | Apple Support Communities Terms of Use | Apple Support
    hello I am in Afghanistan i searched that in realtek but that told me you coulde not use this sit 
    I writ again my problem  
    i installed win 7 32 bit in my mac pro 13-inch, Late 2011  Processor  2.4 GHz Intel Core i5   Software  Mac OS X Lion 10.7.2 (11C74) 
    but there is no sound in windows 7  please send me a address sit for downoad driver that i can use in Afghanistan 
    believe it is confus me and other friend that bought 5 mac's that are the same and i serched a lot of site without result
    please help us by address site please please .....
    <Edited by Host>

    hello I am in Afghanistan i searched that in realtek but that told me you coulde not use this sit
    I writ again my problem 
    i installed win 7 32 bit in my mac pro 13-inch, Late 2011  Processor  2.4 GHz Intel Core i5   Software  Mac OS X Lion 10.7.2 (11C74)
    but there is no sound in windows 7  please send me a address sit for downoad driver that i can use in Afghanistan
    believe it is confus me and other friend that bought 5 mac's that are the same and i serched a lot of site without result

  • My phone has been losing calls and according to the apple store i need to reset it due to a software fault - i have done this and still have the same problems. how do i reset the phone without reinstalling the soft ware fault by way of icloud backup

    my phone has been losing calls and according to the apple store i need to reset it due to a software fault - i have done this and still have the same problems. how do i reset the phone without reinstalling the soft ware fault by way of icloud backup

    Well, it appears that your backup is corrupt, thus causing your issue. So, you'll have to restore as a new device, & not from backup. Follow this by syncing your content back to your phone:
    http://support.apple.com/kb/ht1414
    Do not restore from backup.

  • TS3899 I have upgrade my to iOS7 and my company recently upgrade to Exchange 2010. My emails are not synching to my inbox. I can see all of my sent items. I have already deleted the account 3 times but this did not fix the inbox problem.

    I have upgrade my phone to iOS7 and my company recently upgraded to Exchange 2010. My emails are not synching to my inbox. I can only see my Sent items. I have already deleted the account 3 times but this did not fix the inbox problem.

    You need to have a different Apple ID for each of the other devices.

  • HI, i'm having this error message [There was a problem downloading the software for the iphone "banster's iphone". An unknown error occurred (-23)] when im doing the upgrading to IOS 5. anybody know how to slove it? Thanks

    HI, i'm having this error message [There was a problem downloading the software for the iphone "banster's iphone". An unknown error occurred (-23)] when im doing the upgrading to IOS 5. anybody know how to slove it? Thanks

    Yep, me to exactly the same problem,  the error message keeps telling me to check my internet connection  or try later.  Nothing wrong with my internet connection.  Is it an apple server problem?

  • I can not do the update , what should I do to fix this error ? "There was a problem with downloading the file . For tips on troubleshooting , please go to Customer Support . ( Error code : 204 ) ." thanks

    I can not do the update , what should I do to fix this error ?
    "There was a problem with downloading the file . For tips on troubleshooting , please go to Customer Support . ( Error code : 204 ) ." thanks

    Hi,
    Please refer to the help document below:
    Error downloading, installing, or updating Creative Cloud applications
    Regards,
    Sheena

  • Ibooks author is continuously deleting pages from my book until i'm left with nothing, does anyone know why this is or have the same problem?

    ibooks author is continuously deleting pages from my book until i'm left with nothing, does anyone know why this is or have the same problem?

    What are you doing BEFORE the pages start deleting?

  • In the middle of the installation processing, this has appeared: "There is a problem with the windows installer package. A program is required for this install to complete could not be run." my question is, what is that specific program?

    in the middle of the installation processing, this has appeared: "There is a problem with the windows installer package. A program is required for this install to complete could not be run." my question is, what is that specific program?

    Let's try the following user tip with that one:
    "There is a problem with this Windows Installer package ..." error messages when installing iTunes for Windows

Maybe you are looking for