Why is exporting to PDF not working?

Why is exporting to PDF not working?

Dear Claudio,
I know it wasn't much to go on but I got your attention!
I work for a charity and use a program called "Donor Perfect".
It has a feature that when you generate a report it gives you the option to export to MSWord, Excel, and PDF.
Below is the step by step description of what happens.
 After log on ......
     1. Click on Reports
     2. Listings
     3. Report Category(any)
     4. Select Record type(any)
     5. Select report options (any selection filter that fits or Build a filter) and sort order(any)
     6. Enter title (accordingly)
     7. Click on Preview
     8. When next screen opens with report visible - in "Report Print preview" line above report choose PDF icon
     9. Export to PDF window opens
     10. click on Page range-ALL
     11. What to print-All pages in Range
     12. Save as C:\DPW32\dpsumm.pdf
     13. collate
     14. number of copies(1)
     15. Click on "Screen" 
     16. Click on "Display Conversion Status"
     17. Then "OK"
     18. After conversion status reaches "100%" nothing happens -screen does not change!
Then I minimize DP screen and I go to Start menu 
     1. Click on Start
     2. Then "My Computer"
     3. Local Disk "C"
     4. Dpw32
     5. Look for "dpsumm" file with today's date
     6. Size of file says 0 KB and that's it!!!!
In previous versions of DP (8 and 9)
the PDF would open on the screen as soon as the Step 18 was finished, then I could save it with an identifying name to a different folder and use it as an attachment that a Donor could receive by e-mail.
I hope I can get back to that because now I have to convert to "Word" (Which takes a long time)then from that I have to create PDF from Acrobat. too many steps ..... if I have 20-30 reports it's too cumbersome.
Waiting for your suggestions,

Similar Messages

  • Why does my interactiv PDF not work?

    I have made an interactive Indesign. Buttons going back to TOC and in TOC buttons that direct til the respective pages. Buttons that goes to next and previors page.
    Now in the interactive PDF only e few of the next page are working and non of the rest? WHY?
    I have made the directions and the buttons and in a former PDF from the same Indesign file it all worked perfectly.
    In the topp of the PDF el new green line is now showing up. Is that the one who make the damage or am I getting paranoid? :-)

    Try exporting the Indesign document to IDML, open IDML back into Indesign, then export to PDF. Exporting to IDML can clean up minor corruption including links that have become broken.
    The green line you see in Acrobat is the fillable form panel. Acrobat/Reader can inadvertently detect many interactive links as form fields and display this panel. There are a few ways to prevent the form field panel from appearing. The method I use is enable security/permissions, which can be turned on during export of PDF.

  • Export to PDF not working

    Presses "Export to PDF" Submit Button (custom button) and pdf comes up (Grey) and throws error message
    Adobe reader cannot open RequisiitonDetails.pdf because it is either not a supported file type or the file has been damaged.....
    My Code:
    OAApplicationModule am = pageContext.getApplicationModule(webBean);
    // Get the HttpServletResponse object from the PageContext. The report output is written to HttpServletResponse.
    DataObject sessionDictionary = (DataObject)pageContext.getNamedDataObject("_SessionParameters");
    HttpServletResponse response = (HttpServletResponse)sessionDictionary.selectValue(null,"HttpServletResponse");
    try {         
    // Get the Data XML File as the XMLNode
    Serializable[] methodparam = {voname};
    //XMLNode xmlnode = (XMLNode)am.invokeMethod("getDataXML",methodparam);
    ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
    OAViewObject vo = (OAViewObject)am.findViewObject(voname);
    XMLNode xmlnode;
    if (vo.isPreparedForExecution())
    xmlnode = (XMLNode)vo.writeXML(4, XMLInterface.XML_OPT_ALL_ROWS);
    xmlnode.print(outputStream);
    System.out.println(outputStream.toString());
    else
    xmlnode = null;
    if (null != xmlnode){
    ServletOutputStream os = response.getOutputStream();
    // Set the Output Report File Name and Content Type
    String contentDisposition = "attachment;filename=RequisitionDetails.pdf";
    response.setHeader("Content-Disposition",contentDisposition);
    response.setContentType("application/pdf");
    xmlnode.print(outputStream);
    ByteArrayInputStream inputStream = new ByteArrayInputStream(outputStream.toByteArray());
    ByteArrayOutputStream pdfFile = new ByteArrayOutputStream();
    //Generate the Excel Report
    TemplateHelper.processTemplate(
    ((OADBTransactionImpl)pageContext.getApplicationModule(webBean).getOADBTransaction()).getAppsContext(),
    "XXX",
    "XXXX_ICX_REQ_SRCH_XTRACT",/*template_code,*/
    ((OADBTransactionImpl)pageContext.getApplicationModule(webBean).getOADBTransaction()).getUserLocale().getLanguage(),
    ((OADBTransactionImpl)pageContext.getApplicationModule(webBean).getOADBTransaction()).getUserLocale().getCountry(),
    inputStream,
    TemplateHelper.OUTPUT_TYPE_PDF,
    null,
    pdfFile);
    // Write the Excel Report to the HttpServletResponse object and flush.
    byte[] b = pdfFile.toByteArray();
    response.setContentLength(b.length);
    os.write(b, 0, b.length);
    os.flush();
    os.close();
    //xlsFile.flush();
    //xlsFile.close();
    else {
    OAException extractErrMsg = new OAException("There is no data to export.",OAException.ERROR);
    pageContext.putDialogMessage(extractErrMsg);
    catch(Exception e) {
    response.setContentType("text/html");
    System.out.println("Error Export Data in pdf");
    throw new OAException(e.getMessage(), OAException.ERROR);
    Error Message
    [050712_052819574][][EXCEPTION] [DEBUG] ------- Preferences defined PreferenceStore -------
    [050712_052819574][][EXCEPTION] [DEBUG] ------- Environment variables stored in EnvironmentStore -------
    [050712_052819574][][EXCEPTION] [DEBUG] [ICX_COOKIE_NAME]:[PCHEBSO1]
    [050712_052819574][][EXCEPTION] [DEBUG] [JDBC:processEscapes]:[true]
    [050712_052819574][][EXCEPTION] [DEBUG] [FND_JDBC_IDLE_THRESHOLD.LOW]:[-1]
    [050712_052819574][][EXCEPTION] [DEBUG] [APPL_SERVER_ID]:[BDF99B587C72A876E040980A985601FB23644546563679454296293043166890]
    [050712_052819574][][EXCEPTION] [DEBUG] [FND_JDBC_STMT_CACHE_SIZE]:[100]
    [050712_052819574][][EXCEPTION] [DEBUG] [NLS_DATE_LANGUAGE]:[AMERICAN]
    [050712_052819574][][EXCEPTION] [DEBUG] [ICX_SESSION_COOKIE_VALUE]:[LxKyqB6fKisXd4VSGypzth6X6c]
    [050712_052819574][][EXCEPTION] [DEBUG] [EMPLOYEE_ID]:[197133]
    [050712_052819574][][EXCEPTION] [DEBUG] [ICX_TRANSACTION_ID]:[-1]
    [050712_052819574][][EXCEPTION] [DEBUG] [NLS_DATE_FORMAT]:[DD-MON-RRRR]
    [050712_052819574][][EXCEPTION] [DEBUG] [RESP_APPL_ID]:[178]
    [050712_052819574][][EXCEPTION] [DEBUG] [LOGIN_ID]:[18817150]
    [050712_052819574][][EXCEPTION] [DEBUG] [DB_PORT]:[5025]
    [050712_052819574][][EXCEPTION] [DEBUG] [USER_ID]:[99136]
    [050712_052819574][][EXCEPTION] [DEBUG] [DISPLAY_LANGUAGE]:[US]
    [050712_052819574][][EXCEPTION] [DEBUG] [APPLICATION_ID]:[xxetfc.oracle.apps.icx.por.reqmgmt.server.ReqMgmtAMEx]
    [050712_052819574][][EXCEPTION] [DEBUG] [NLS_NUMERIC_CHARACTERS]:[.,]
    [050712_052819574][][EXCEPTION] [DEBUG] [NLS_LANGUAGE]:[AMERICAN]
    [050712_052819574][][EXCEPTION] [DEBUG] [FND_JDBC_BUFFER_MIN]:[1]
    [050712_052819574][][EXCEPTION] [DEBUG] [GUEST_USER_PWD]:[GUEST/ORACLE]
    [050712_052819574][][EXCEPTION] [DEBUG] [RESP_ID]:[53865]
    [050712_052819574][][EXCEPTION] [DEBUG] [NLS_SORT]:[BINARY]
    [050712_052819574][][EXCEPTION] [DEBUG] [FND_JDBC_PLSQL_RESET]:[false]
    [050712_052819574][][EXCEPTION] [DEBUG] [FND_PROFILE_VALIDATION_ENABLED]:[null]
    [050712_052819574][][EXCEPTION] [DEBUG] [FUNCTION_ID]:[-1]
    [050712_052819574][][EXCEPTION] [DEBUG] [FND_JDBC_BUFFER_DECAY_SIZE]:[5]
    [050712_052819574][][EXCEPTION] [DEBUG] [ICX_PV_SESSION_MODE]:[115P]
    [050712_052819574][][EXCEPTION] [DEBUG] [FND_JDBC_CONTEXT_CHECK]:[true]
    [050712_052819574][][EXCEPTION] [DEBUG] [FND_JDBC_USABLE_CHECK]:[false]
    [050712_052819574][][EXCEPTION] [DEBUG] [NLS_LANG]:[null]
    [050712_052819574][][EXCEPTION] [DEBUG] [APPS_JDBC_URL]:[jdbc:oracle:thin:@(DESCRIPTION=(ADDRESS_LIST=(LOAD_BALANCE=YES)(FAILOVER=YES)(ADDRESS=(PROTOCOL=tcp)(HOST=sitmisdb1w86m7.etrade.com)(PORT=5025)))(CONNECT_DATA=(SERVICE_NAME=PCHEBSO1)))]
    [050712_052819574][][EXCEPTION] [DEBUG] [MODULE_NAME_TAG]:[icx.por.reqmgmt.server.ReqMgmtAMEx]
    [050712_052819574][][EXCEPTION] [DEBUG] [FNDNAM]:[APPS]
    [050712_052819574][][EXCEPTION] [DEBUG] [FND_PROXY_USER]:[null]
    [050712_052819574][][EXCEPTION] [DEBUG] [TWO_TASK]:[PCHEBSO1]
    [050712_052819574][][EXCEPTION] [DEBUG] [APPS_JDBC_DRIVER_TYPE]:[THIN]
    [050712_052819574][][EXCEPTION] [DEBUG] [MODULE_TYPE_TAG]:[fwk]
    [050712_052819574][][EXCEPTION] [DEBUG] [DB_HOST]:[sitmisdb1w86m7.etrade.com]
    [050712_052819574][][EXCEPTION] [DEBUG] [DBC_FILE_PATH]:[C:\jdeveloper\jdevhome\jdev\dbc_files\secure\PCHEBSO1.dbc]
    [050712_052819574][][EXCEPTION] [DEBUG] [APPLICATION_NAME]:[Oracle iProcurement]
    [050712_052819574][][EXCEPTION] [DEBUG] [FND_JDBC_IDLE_THRESHOLD.HIGH]:[-1]
    [050712_052819574][][EXCEPTION] [DEBUG] [SECURITY_GROUP_ID]:[0]
    [050712_052819574][][EXCEPTION] [DEBUG] [LANG_CODE]:[US]
    [050712_052819574][][EXCEPTION] [DEBUG] [FND_MAX_JDBC_CONNECTIONS]:[500]
    [050712_052819574][][EXCEPTION] [DEBUG] [FND_JDBC_BUFFER_DECAY_INTERVAL]:[300]
    [050712_052819574][][EXCEPTION] [DEBUG] [USER_NAME]:[ASHARMA2]
    [050712_052819574][][EXCEPTION] [DEBUG] [FND_JDBC_BUFFER_MAX]:[5]
    [050712_052819574][][EXCEPTION] [DEBUG] [DB_NAME]:[null]
    [050712_052819574][][EXCEPTION] [DEBUG] [NLS_CHARACTERSET]:[UTF8]
    [050712_052819574][][EXCEPTION] [DEBUG] [ORG_ID]:[240]
    [050712_052819574][][EXCEPTION] [DEBUG] [DB_ID]:[PCHEBSO1]
    [050712_052819574][][EXCEPTION] [DEBUG] [GWYUID]:[APPLSYSPUB/PUB]
    [050712_052819574][][EXCEPTION] [DEBUG] [NLS_TERRITORY]:[AMERICA]
    [050712_052819574][][EXCEPTION] [DEBUG] [ICX_SESSION_ID]:[213276334]
    [050712_052819574][][EXCEPTION] [DEBUG] [JDBC:oracle.jdbc.maxCachedBufferSize]:[358400]
    [050712_052819574][][EXCEPTION] [DEBUG] ------- Properties stored in Java System Properties -------
    [050712_052819574][][EXCEPTION] [DEBUG] [java.vendor]:[Sun Microsystems Inc.]
    [050712_052819574][][EXCEPTION] [DEBUG] [ajp.connection.listener.state]:[down]
    [050712_052819574][][EXCEPTION] [DEBUG] [sun.management.compiler]:[HotSpot Client Compiler]
    [050712_052819574][][EXCEPTION] [DEBUG] [oracle.j2ee.container.version]:[10.1.3.3.0]
    [050712_052819574][][EXCEPTION] [DEBUG] [os.name]:[Windows XP]
    [050712_052819574][][EXCEPTION] [DEBUG] [sun.boot.class.path]:[C:\jdev12_1_3\jdevbin\jdk\jre\lib\rt.jar;C:\jdev12_1_3\jdevbin\jdk\jre\lib\i18n.jar;C:\jdev12_1_3\jdevbin\jdk\jre\lib\sunrsasign.jar;C:\jdev12_1_3\jdevbin\jdk\jre\lib\jsse.jar;C:\jdev12_1_3\jdevbin\jdk\jre\lib\jce.jar;C:\jdev12_1_3\jdevbin\jdk\jre\lib\charsets.jar;C:\jdev12_1_3\jdevbin\jdk\jre\classes]
    [050712_052819574][][EXCEPTION] [DEBUG] [sun.desktop]:[windows]
    [050712_052819574][][EXCEPTION] [DEBUG] [java.vm.specification.vendor]:[Sun Microsystems Inc.]
    [050712_052819574][][EXCEPTION] [DEBUG] [java.runtime.version]:[1.5.0_05-b05]
    [050712_052819574][][EXCEPTION] [DEBUG] [com.oracle.corba.ee.security.trusted.clients]:[*]
    [050712_052819574][][EXCEPTION] [DEBUG] [oracle.security.jazn.config]:[C:\jdeveloper\jdevhome\jdev\system\oracle.j2ee.10.1.3.41.57\embedded-oc4j\config\jazn.xml]
    [050712_052819574][][EXCEPTION] [DEBUG] [user.name]:[asharma2]
    [050712_052819574][][EXCEPTION] [DEBUG] [user.language]:[en]
    [050712_052819574][][EXCEPTION] [DEBUG] [java.naming.factory.initial]:[com.evermind.server.ApplicationInitialContextFactory]
    [050712_052819574][][EXCEPTION] [DEBUG] [sun.boot.library.path]:[C:\jdev12_1_3\jdevbin\jdk\jre\bin]
    [050712_052819574][][EXCEPTION] [DEBUG] [oc4j.jms.usePersistenceLockFiles]:[false]
    [050712_052819574][][EXCEPTION] [DEBUG] [java.version]:[1.5.0_05]
    [050712_052819574][][EXCEPTION] [DEBUG] [java.util.logging.manager]:[oracle.classloader.util.ApplicationLogManager]
    [050712_052819574][][EXCEPTION] [DEBUG] [user.timezone]:[America/New_York]
    [050712_052819574][][EXCEPTION] [DEBUG] [java.net.preferIPv4Stack]:[true]
    [050712_052819574][][EXCEPTION] [DEBUG] [sun.arch.data.model]:[32]
    [050712_052819574][][EXCEPTION] [DEBUG] [javax.rmi.CORBA.UtilClass]:[com.sun.corba.ee.impl.javax.rmi.CORBA.Util]
    [050712_052819574][][EXCEPTION] [DEBUG] [java.endorsed.dirs]:[C:\jdev12_1_3\jdevbin\jdk\jre\lib\endorsed]
    [050712_052819574][][EXCEPTION] [DEBUG] [sun.cpu.isalist]:[]
    [050712_052819574][][EXCEPTION] [DEBUG] [sun.jnu.encoding]:[Cp1252]
    [050712_052819574][][EXCEPTION] [DEBUG] [file.encoding.pkg]:[sun.io]
    [050712_052819574][][EXCEPTION] [DEBUG] [DBCFILE]:[C:\jdeveloper\jdevhome\jdev\dbc_files\secure\PCHEBSO1.dbc]
    [050712_052819574][][EXCEPTION] [DEBUG] [file.separator]:[\]
    [050712_052819574][][EXCEPTION] [DEBUG] [java.specification.name]:[Java Platform API Specification]
    [050712_052819574][][EXCEPTION] [DEBUG] [java.class.version]:[49.0]
    [050712_052819574][][EXCEPTION] [DEBUG] [user.country]:[US]
    [050712_052819574][][EXCEPTION] [DEBUG] [java.home]:[C:\jdev12_1_3\jdevbin\jdk\jre]
    [050712_052819574][][EXCEPTION] [DEBUG] [java.vm.info]:[mixed mode]
    [050712_052819574][][EXCEPTION] [DEBUG] [os.version]:[5.1]
    [050712_052819574][][EXCEPTION] [DEBUG] [org.omg.CORBA.ORBSingletonClass]:[com.sun.corba.ee.impl.orb.ORBImpl]
    [050712_052819574][][EXCEPTION] [DEBUG] [path.separator]:[;]
    [050712_052819574][][EXCEPTION] [DEBUG] [java.vm.version]:[1.5.0_05-b05]
    [050712_052819574][][EXCEPTION] [DEBUG] [user.variant]:[]
    [050712_052819574][][EXCEPTION] [DEBUG] [java.protocol.handler.pkgs]:[oracle.apps.xdo.common.net.protocol|com.evermind.protocol]
    [050712_052819574][][EXCEPTION] [DEBUG] [checkForUpdates]:[adminClientOnly]
    [050712_052819574][][EXCEPTION] [DEBUG] [java.awt.printerjob]:[sun.awt.windows.WPrinterJob]
    [050712_052819574][][EXCEPTION] [DEBUG] [RUN_FROM_JDEV]:[true]
    [050712_052819574][][EXCEPTION] [DEBUG] [sun.io.unicode.encoding]:[UnicodeLittle]
    [050712_052819574][][EXCEPTION] [DEBUG] [com.sun.jts.pi.INTEROP_MODE]:[false]
    [050712_052819574][][EXCEPTION] [DEBUG] [awt.toolkit]:[sun.awt.windows.WToolkit]
    [050712_052819574][][EXCEPTION] [DEBUG] [MetaObjectContext]:[oracle.adf.mds.jbo.JBODefManager]
    [050712_052819574][][EXCEPTION] [DEBUG] [FND_TOP]:[C:\jdeveloper\jdevhome\jdev\dbc_files\]
    [050712_052819574][][EXCEPTION] [DEBUG] [oracle.j2ee.http.socket.timeout]:[500]
    [050712_052819574][][EXCEPTION] [DEBUG] [com.oracle.corba.ee.security.ssl.port]:[5656]
    [050712_052819574][][EXCEPTION] [DEBUG] [JRAD_ELEMENT_LIST_PATH]:[C:\jdeveloper\jdevhome\jdev\myhtml\OA_HTML\jrad\]
    [050712_052819574][][EXCEPTION] [DEBUG] [JTFDBCFILE]:[C:\jdeveloper\jdevhome\jdev\dbc_files\secure\PCHEBSO1.dbc]
    [050712_052819574][][EXCEPTION] [DEBUG] [com.sun.CORBA.POA.ORBServerId]:[1000000]
    [050712_052819574][][EXCEPTION] [DEBUG] [java.naming.factory.url.pkgs]:[oracle.oc4j.naming.url]
    [050712_052819574][][EXCEPTION] [DEBUG] [user.home]:[C:\Documents and Settings\asharma2]
    [050712_052819574][][EXCEPTION] [DEBUG] [java.specification.vendor]:[Sun Microsystems Inc.]
    [050712_052819574][][EXCEPTION] [DEBUG] [oracle.home]:[C:\jdev12_1_3\jdevbin]
    [050712_052819574][][EXCEPTION] [DEBUG] [oracle.dms.sensors]:[5]
    [050712_052819574][][EXCEPTION] [DEBUG] [java.library.path]:[C:\jdev12_1_3\jdevbin\jdk\bin;.;C:\WINNT\system32;C:\WINNT;C:\DevSuiteHome_10g\jdk\jre\bin\classic;C:\DevSuiteHome_10g\jdk\jre\bin;C:\DevSuiteHome_10g\jdk\jre\bin\client;C:\DevSuiteHome_10g\jlib;C:\DevSuiteHome_10g\bin;C:\DevSuiteHome_10g\jre\1.4.2\bin\client;C:\DevSuiteHome_10g\jre\1.4.2\bin;C:\oracle\ora92\bin;C:\Program Files\Oracle\jre\1.3.1\bin;C:\Program Files\Oracle\jre\1.1.8\bin;C:\OraHome_1\bin;C:\Program Files\Java\jre1.5.0_15\bin;C:\WINNT\system32;C:\WINNT;C:\WINNT\System32\Wbem;C:\Program Files\Microsoft Application Virtualization Client;C:\Program Files\Microsoft SQL Server\80\Tools\Binn\;C:\Program Files\Microsoft SQL Server\90\Tools\binn\;C:\Program Files\Microsoft SQL Server\90\DTS\Binn\;C:\Program Files\Microsoft SQL Server\90\Tools\Binn\VSShell\Common7\IDE\;C:\Program Files\Microsoft Visual Studio 8\Common7\IDE\PrivateAssemblies\;C:\OraHome_1;C:\Program Files\QuickTime\QTSystem\]
    [050712_052819574][][EXCEPTION] [DEBUG] [java.vendor.url]:[http://java.sun.com/]
    [050712_052819574][][EXCEPTION] [DEBUG] [XDO_TOP]:[etrade/pkgs/linux/intel/oracle/appldev/apps/apps_st/appl/xdo/12.0.0]
    [050712_052819574][][EXCEPTION] [DEBUG] [javax.rmi.CORBA.StubClass]:[com.sun.corba.ee.impl.javax.rmi.CORBA.StubDelegateImpl]
    [050712_052819574][][EXCEPTION] [DEBUG] [oracle.j2ee.dont.use.memory.archive]:[true]
    [050712_052819574][][EXCEPTION] [DEBUG] [java.vm.vendor]:[Sun Microsystems Inc.]
    [050712_052819574][][EXCEPTION] [DEBUG] [java.runtime.name]:[Java(TM) 2 Runtime Environment, Standard Edition]
    [050712_052819574][][EXCEPTION] [DEBUG] [java.class.path]:[C:\jdev12_1_3\jdevbin\jdk\jre\lib\rt.jar;C:\jdev12_1_3\jdevbin\jdk\jre\lib\jsse.jar;C:\jdev12_1_3\jdevbin\jdk\jre\lib\jce.jar;C:\jdev12_1_3\jdevbin\jdk\jre\lib\charsets.jar;C:\jdev12_1_3\jdevbin\jdk\jre\lib\ext\dnsns.jar;C:\jdev12_1_3\jdevbin\jdk\jre\lib\ext\localedata.jar;C:\jdev12_1_3\jdevbin\jdk\jre\lib\ext\sunjce_provider.jar;C:\jdev12_1_3\jdevbin\jdk\jre\lib\ext\sunpkcs11.jar;C:\jdev12_1_3\jdevbin\j2ee\home\oc4j-api.jar;C:\jdev12_1_3\jdevbin\j2ee\home\lib\oc4j-unsupported-api.jar;C:\jdev12_1_3\jdevbin\j2ee\home\lib\activation.jar;C:\jdev12_1_3\jdevbin\j2ee\home\lib\mail.jar;C:\jdev12_1_3\jdevbin\j2ee\home\lib\persistence.jar;C:\jdev12_1_3\jdevbin\j2ee\home\lib\ejb30.jar;C:\jdev12_1_3\jdevbin\j2ee\home\lib\ejb.jar;C:\jdev12_1_3\jdevbin\j2ee\home\lib\javax77.jar;C:\jdev12_1_3\jdevbin\j2ee\home\lib\javax88.jar;C:\jdev12_1_3\jdevbin\j2ee\home\lib\servlet.jar;C:\jdev12_1_3\jdevbin\j2ee\home\lib\jms.jar;C:\jdev12_1_3\jdevbin\j2ee\home\lib\jta.jar;C:\jdev12_1_3\jdevbin\j2ee\home\lib\jacc-api.jar;C:\jdev12_1_3\jdevbin\j2ee\home\lib\connector.jar;C:\jdev12_1_3\jdevbin\j2ee\home\lib\jmx_remote_api.jar;C:\jdev12_1_3\jdevbin\j2ee\home\lib\jax-qname-namespace.jar;C:\jdev12_1_3\jdevbin\webservices\lib\jaxr-api.jar;C:\jdev12_1_3\jdevbin\webservices\lib\jaxrpc-api.jar;C:\jdev12_1_3\jdevbin\webservices\lib\saaj-api.jar;C:\jdev12_1_3\jdevbin\webservices\lib\jws-api.jar;C:\jdev12_1_3\jdevbin\j2ee\home\lib\oc4j-internal.jar;C:\jdev12_1_3\jdevbin\j2ee\home\lib\oems-jms-oc4j.jar;C:\jdev12_1_3\jdevbin\j2ee\home\lib\oems-jms-client.jar;C:\jdev12_1_3\jdevbin\j2ee\home\lib\oems-jms-server.jar;C:\jdev12_1_3\jdevbin\j2ee\home\lib\oc4j-schemas.jar;C:\jdev12_1_3\jdevbin\j2ee\home\lib\ojsp.jar;C:\jdev12_1_3\jdevbin\j2ee\home\lib\oc4j_orb.jar;C:\jdev12_1_3\jdevbin\j2ee\home\lib\iiop_support.jar;C:\jdev12_1_3\jdevbin\j2ee\home\lib\orbbase.jar;C:\jdev12_1_3\jdevbin\j2ee\home\iiop_gen_bin.jar;C:\jdev12_1_3\jdevbin\j2ee\home\lib\jmxcluster.jar;C:\jdev12_1_3\jdevbin\j2ee\home\jaccprovider.jar;C:\jdev12_1_3\jdevbin\javavm\lib\jasper.zip;C:\jdev12_1_3\jdevbin\j2ee\home\lib\adminclient.jar;C:\jdev12_1_3\jdevbin\opmn\lib\optic.jar;C:\jdev12_1_3\jdevbin\j2ee\home\jacc-spi.jar;C:\jdev12_1_3\jdevbin\j2ee\home\jazncore.jar;C:\jdev12_1_3\jdevbin\j2ee\home\jazn.jar;C:\jdev12_1_3\jdevbin\jlib\ospnego.jar;C:\jdev12_1_3\jdevbin\jlib\ldapjclnt10.jar;C:\jdev12_1_3\jdevbin\webservices\lib\wsserver.jar;C:\jdev12_1_3\jdevbin\webservices\lib\wsif.jar;C:\jdev12_1_3\jdevbin\webservices\lib\orawsmetadata.jar;C:\jdev12_1_3\jdevbin\webservices\lib\orajaxr.jar;C:\jdev12_1_3\jdevbin\jlib\jssl-1_1.jar;C:\jdev12_1_3\jdevbin\jlib\ojmisc.jar;C:\jdev12_1_3\jdevbin\toplink\jlib\toplink-oc4j.jar;C:\jdev12_1_3\jdevbin\diagnostics\lib\ojdl2.jar;C:\jdev12_1_3\jdevbin\xqs\lib\xqs-api.jar;C:\jdev12_1_3\jdevbin\xqs\lib\xds.jar;C:\jdev12_1_3\jdevbin\jdev\lib\jdev-oc4j-embedded.jar;C:\jdev12_1_3\jdevbin\j2ee\home\lib\pcl.jar;C:\jdev12_1_3\jdevbin\j2ee\home\lib\ext;C:\jdev12_1_3\jdevbin\lib\dmsapp.jar;C:\jdeveloper\jdevhome\jdev\system\oracle.j2ee.10.1.3.41.57\embedded-oc4j\applications\admin_ejb.jar;C:\jdev12_1_3\jdevbin\BC4J\lib\bc4jdomorcl.jar;C:\jdev12_1_3\jdevbin\jlib\jsp-el-api.jar;C:\jdev12_1_3\jdevbin\jlib\commons-el.jar;C:\jdev12_1_3\jdevbin\jlib\oracle-el.jar;C:\jdev12_1_3\jdevbin\jlib\jewt4.jar;C:\jdev12_1_3\jdevbin\jdev\appslibrt\regexp.jar;C:\jdev12_1_3\jdevbin\jdev\appslibrt\share.jar;C:\jdev12_1_3\jdevbin\jdev\appslibrt\uix2.jar;C:\jdev12_1_3\jdevbin\oaext\mds\lib\mdsrt.jar;C:\jdev12_1_3\jdevbin\oaext\lib\mdsdt.jar;C:\jdev12_1_3\jdevbin\oaext\lib\oamdsdt.jar;C:\jdev12_1_3\jdevbin\javacache\lib\cache.jar;C:\jdev12_1_3\jdevbin\lib\xschema.jar;C:\jdev12_1_3\jdevbin\BC4J\lib;C:\jdev12_1_3\jdevbin\BC4J\lib\adfbinding.jar;C:\jdev12_1_3\jdevbin\BC4J\lib\adfcm.jar;C:\jdev12_1_3\jdevbin\BC4J\lib\adfm.jar;C:\jdev12_1_3\jdevbin\BC4J\lib\adfmweb.jar;C:\jdev12_1_3\jdevbin\BC4J\lib\adfs-jazn.jar;C:\jdev12_1_3\jdevbin\BC4J\lib\adfs.jar;C:\jdev12_1_3\jdevbin\BC4J\lib\adfshare.jar;C:\jdev12_1_3\jdevbin\BC4J\lib\bc4jct.jar;C:\jdev12_1_3\jdevbin\BC4J\lib\bc4jctejb.jar;C:\jdev12_1_3\jdevbin\BC4J\lib\bc4jimdomains.jar;C:\jdev12_1_3\jdevbin\BC4J\lib\bc4jmt.jar;C:\jdev12_1_3\jdevbin\BC4J\lib\bc4jmtejb.jar;C:\jdev12_1_3\jdevbin\BC4J\lib\bc4jsyscat.jar;C:\jdev12_1_3\jdevbin\BC4J\lib\collections.jar;C:\jdev12_1_3\jdevbin\jdev\appslibrt\fwkjbo.zip;C:\jdev12_1_3\jdevbin\jdev\appslibrt\fwk.zip;C:\jdev12_1_3\jdevbin\jdev\appslibrt\atg.zip;C:\jdev12_1_3\jdevbin\jdev\appslibrt\collections.zip;C:\jdev12_1_3\jdevbin\jdev\appslibrt\iasjoc.zip;C:\jdev12_1_3\jdevbin\jdev\appslibrt\rosettaRt.zip;C:\jdev12_1_3\jdevbin\jdev\appslibrt\portalFlexComps.jar;C:\jdev12_1_3\jdevbin\jdev\appslibrt\svc.zip;C:\jdev12_1_3\jdevbin\jdev\appslibrt\pat.zip;C:\jdev12_1_3\jdevbin\jdev\appslibrt\concurrent.zip;C:\jdev12_1_3\jdevbin\jdev\appslibrt\oamMaintMode.zip;C:\jdev12_1_3\jdevbin\jdev\appslibrt\fwkCabo.zip;C:\jdev12_1_3\jdevbin\jdev\appslibrt\wsrp-container.jar;C:\jdev12_1_3\jdevbin\jdev\appslibrt\pdkjava.jar;C:\jdev12_1_3\jdevbin\jdev\appslibrt\ptlshare.jar;C:\jdev12_1_3\jdevbin\jdev\appslibrt\xml.jar;C:\jdev12_1_3\jdevbin\jdev\appslibrt\wsrp-container-types.jar;C:\jdev12_1_3\jdevbin\jdev\appslibrt\jaxb-impl.jar;C:\jdev12_1_3\jdevbin\jdev\appslibrt\jaxb-libs.jar;C:\jdev12_1_3\jdevbin\jdev\appslibrt\jazn.jar;C:\jdev12_1_3\jdevbin\jdev\appslibrt\jazncore.jar;C:\jdev12_1_3\jdevbin\bibeans\lib\biamlocal.jar;C:\jdev12_1_3\jdevbin\bibeans\lib\bipres.jar;C:\jdev12_1_3\jdevbin\bibeans\lib\bicmn.jar;C:\jdev12_1_3\jdevbin\bibeans\lib\bidatasvr.jar;C:\jdev12_1_3\jdevbin\bibeans\lib\bidataclt.jar;C:\jdev12_1_3\jdevbin\bibeans\lib\bidatacmn.jar;C:\jdev12_1_3\jdevbin\bibeans\lib\biext.jar;C:\jdev12_1_3\jdevbin\bibeans\lib\bicmn-nls.zip;C:\jdev12_1_3\jdevbin\bibeans\lib\bipres-nls.zip;C:\jdev12_1_3\jdevbin\bibeans\lib\bidata-nls.zip;C:\jdev12_1_3\jdevbin\oaext\config\oac\oacfilter.jar;C:\jdev12_1_3\jdevbin\j2ee\home\lib\scheduler.jar;C:\jdev12_1_3\jdevbin\jdev\lib\jdev-rt.jar;C:\jdev12_1_3\jdevbin\jdev\lib\ojc.jar;C:\jdeveloper\jdevhome\jdev\system\oracle.j2ee.10.1.3.41.57\embedded-oc4j\connectors\datasources\datasources\datasources.jar;C:\jdev12_1_3\jdevbin\diagnostics\lib\ojdl.jar;C:\jdev12_1_3\jdevbin\lib\dms.jar;C:\jdev12_1_3\jdevbin\jdbc\lib\ojdbc14dms.jar;C:\jdev12_1_3\jdevbin\opmn\lib\ons.jar;C:\jdev12_1_3\jdevbin\jdbc\lib\ocrs12.jar;C:\jdev12_1_3\jdevbin\rdbms\jlib\aqapi.jar;C:\jdev12_1_3\jdevbin\j2ee\home\lib\ojms-provider.jar;C:\jdev12_1_3\jdevbin\jdbc\lib\orai18n.jar;C:\jdev12_1_3\jdevbin\lib\xmlparserv2.jar;C:\jdev12_1_3\jdevbin\lib\xml.jar;C:\jdev12_1_3\jdevbin\lib\xmlmesg.jar;C:\jdev12_1_3\jdevbin\lib\xsu12.jar;C:\jdev12_1_3\jdevbin\lib\xquery.jar;C:\jdev12_1_3\jdevbin\jlib\osdt_core.jar;C:\jdev12_1_3\jdevbin\jlib\osdt_cert.jar;C:\jdev12_1_3\jdevbin\jlib\osdt_xmlsec.jar;C:\jdev12_1_3\jdevbin\jlib\osdt_wss.jar;C:\jdev12_1_3\jdevbin\jlib\osdt_saml.jar;C:\jdev12_1_3\jdevbin\jlib\ojpse.jar;C:\jdev12_1_3\jdevbin\jlib\oraclepki.jar;C:\jdev12_1_3\jdevbin\toplink\jlib\toplink.jar;C:\jdev12_1_3\jdevbin\toplink\jlib\antlr.jar;C:\jdev12_1_3\jdevbin\toplink\jlib\toplink-essentials.jar;C:\jdev12_1_3\jdevbin\webservices\lib\wsclient.jar;C:\jdev12_1_3\jdevbin\webservices\lib\orasaaj.jar;C:\jdev12_1_3\jdevbin\webservices\lib\xsdlib.jar;C:\jdev12_1_3\jdevbin\webservices\lib\mdds.jar;C:\jdev12_1_3\jdevbin\webservices\lib\relaxngDatatype.jar;C:\jdev12_1_3\jdevbin\webservices\lib\soap.jar;C:\jdev12_1_3\jdevbin\sqlj\lib\runtime12.jar;C:\jdev12_1_3\jdevbin\sqlj\lib\translator.jar;C:\jdev12_1_3\jdevbin\webservices\lib\orawsdl.jar;C:\jdev12_1_3\jdevbin\j2ee\home\applib;C:\jdev12_1_3\jdevbin\j2ee\home\jsp\lib\taglib;C:\jdev12_1_3\jdevbin\j2ee\home\jsp\lib\taglib\ojsputil.jar;C:\jdev12_1_3\jdevbin\lib\dsv2.jar;C:\jdev12_1_3\jdevbin\j2ee\home\lib\http_client.jar;C:\jdev12_1_3\jdevbin\j2ee\home\lib\jgroups-core.jar;C:\jdeveloper\jdevhome\jdev\myhtml\OA_HTML;C:\jdeveloper\jdevhome\jdev\myclasses;C:\jdev12_1_3\jdevbin\jlib\jdev-cm.jar;C:\jdev12_1_3\jdevbin\BC4J\jlib\bc4jhtml.jar;C:\jdev12_1_3\jdevbin\BC4J\jlib\datatags.jar;C:\jdev12_1_3\jdevbin\BC4J\jlib\bc4juixtags.jar;C:\jdev12_1_3\jdevbin\BC4J\jlib\graphtags.jar;C:\jdev12_1_3\jdevbin\jdev\appslibrt\wsp.zip;C:\jdev12_1_3\jdevbin\jdev\appslibrt\diagnostics.jar;C:\jdev12_1_3\jdevbin\jdev\appslibrt\svctester.jar]
    [050712_052819574][][EXCEPTION] [DEBUG] [oracle.j2ee.home]:[C:\jdeveloper\jdevhome\jdev\system\oracle.j2ee.10.1.3.41.57\embedded-oc4j]
    [050712_052819574][][EXCEPTION] [DEBUG] [oracle.application.environment]:[development]
    [050712_052819574][][EXCEPTION] [DEBUG] [java.vm.specification.name]:[Java Virtual Machine Specification]
    [050712_052819574][][EXCEPTION] [DEBUG] [JRAD_XML_PATH]:[C:\jdeveloper\jdevhome\jdev\myclasses\JRADXML;C:\jdeveloper\jdevhome\jdev\myprojects;C:\jdev12_1_3\jdevbin\jdev\oamdsxml\fwk]
    [050712_052819574][][EXCEPTION] [DEBUG] [javax.rmi.CORBA.PortableRemoteObjectClass]:[com.sun.corba.ee.impl.javax.rmi.PortableRemoteObject]
    [050712_052819574][][EXCEPTION] [DEBUG] [org.omg.PortableInterceptor.ORBInitializerClass.oracle.oc4j.corba.iiop.server.IIOPInitializer]:[NO_VALUE]
    [050712_052819574][][EXCEPTION] [DEBUG] [java.vm.specification.version]:[1.0]
    [050712_052819574][][EXCEPTION] [DEBUG] [sun.cpu.endian]:[little]
    [050712_052819574][][EXCEPTION] [DEBUG] [oracle.j2ee.container.name]:[Oracle Containers for J2EE 10g (10.1.3.3.0) ]
    [050712_052819574][][EXCEPTION] [DEBUG] [sun.os.patch.level]:[Service Pack 3]
    [050712_052819574][][EXCEPTION] [DEBUG] [java.io.tmpdir]:[C:\DOCUME~1\asharma2\LOCALS~1\Temp\]
    [050712_052819574][][EXCEPTION] [DEBUG] [com.sun.jts.pi.CLIENT_POLICY_CHECKING]:[false]
    [050712_052819574][][EXCEPTION] [DEBUG] [java.vendor.url.bug]:[http://java.sun.com/cgi-bin/bugreport.cgi]
    [050712_052819574][][EXCEPTION] [DEBUG] [com.oracle.corba.ee.security.ssl.mutual.auth.port]:[5657]
    [050712_052819574][][EXCEPTION] [DEBUG] [FND_JDBC_STMT_CACHE_SIZE]:[200]
    [050712_052819574][][EXCEPTION] [DEBUG] [os.arch]:[x86]
    [050712_052819574][][EXCEPTION] [DEBUG] [java.awt.graphicsenv]:[sun.awt.Win32GraphicsEnvironment]
    [050712_052819574][][EXCEPTION] [DEBUG] [java.ext.dirs]:[C:\jdev12_1_3\jdevbin\jdk\jre\lib\ext]
    [050712_052819574][][EXCEPTION] [DEBUG] [user.dir]:[C:\jdeveloper\jdevhome\jdev\system\oracle.j2ee.10.1.3.41.57\embedded-oc4j\config]
    [050712_052819574][][EXCEPTION] [DEBUG] [CACHENODBINIT]:[true]
    [050712_052819574][][EXCEPTION] [DEBUG] [line.separator]:[
    [050712_052819574][][EXCEPTION] [DEBUG] [java.vm.name]:[Java HotSpot(TM) Client VM]
    [050712_052819574][][EXCEPTION] [DEBUG] [com.sun.CORBA.connection.ORBSocketFactoryClass]:[oracle.oc4j.corba.iiop.IIOPSSLSocketFactory]
    [050712_052819574][][EXCEPTION] [DEBUG] [javax.management.builder.initial]:[oracle.oc4j.admin.jmx.server.Oc4jMBeanServerBuilder]
    [050712_052819574][][EXCEPTION] [DEBUG] [com.oracle.corba.ee.security.use.ssl]:[false]
    [050712_052819574][][EXCEPTION] [DEBUG] [org.omg.CORBA.ORBClass]:[com.sun.corba.ee.impl.orb.ORBImpl]
    [050712_052819574][][EXCEPTION] [DEBUG] [file.encoding]:[Cp1252]
    [050712_052819574][][EXCEPTION] [DEBUG] [java.specification.version]:[1.5]
    12/05/07 17:28:20 Error Export Data in pdf

    - RTF Processor Engine PROBLEM IN CREATE XSL FILE
    answered

  • Export to Pdf Not Working - Blank Pages [Solved]

    Peace all!
    I've been having this problem about some time now. Any export to pdf produces a pdf with the correct number of pages but they are all blank! Tried fiddling with the options to no avail. Also tried setting the options to use openoffice dialogs.
    In an attempt to try to find some log of errors, I started writer from the console with soffice -writer and used the export pdf function but no errors are spitted out. I'm stumped...
    Version 3.0.1
    Thanks in advance!l
    Last edited by onguarde (2009-05-11 14:14:38)

    http://www.oooforum.org/forum/viewtopic.phtml?t=83464
    Ok, I managed to solve this by deleting the old .openoffice config folder and starting afresh. Not sure what's messed up though but the folder has been used since OO version 2.

  • Export as PDF not working.

    I can't get a Review Document to "Export as PDF".  When I click on the Export button, the dialog box pops up.  I choose "All" and pick "My Computer" for the Destination. I click on the Export button and choose my Desktop for the download.  It says that it's "Generating PDF" but that's all it does.  I can't Export as PDF, the person reviewing the document can't Export as PDF.  I have tried both Safari and FireFox and my client is using Internet Explorer.  I have also tried logging in under another account and I get the same results.  Last week this was working fine.
    Any Ideas?
    Thanks

    This bug was introduced when a new build was deployed on October 27. The bug has been fixed and the fix will be deployed soon. In the meantime a workaround is to Export PDF to Your Workspace. You can then download the PDF from the Workspace.
    Ken Rice
    Quality Engineer
    CS Review - Adobe Systems

  • Pages export to .pdf not working -- missing images.

    When I export my finished Pages doc to .pdf, it didn't export all the images. Out of 10 images, only two exported. Pages then replaced the other images with those two. Why is this happening and how can I fix it?
    This has happened before. In this case, all the images were pulled from iPhoto on the iMac. In other cases, the images were pulled from a server shared by multiple users.

    Either some of them have the same name or they are to big in Mb for your Pages to convert. It doesn't matter where they come from, they are all in the saved document. Downsize them before you add them to the Pages document.

  • Some PDFs not working in Preview. Mac created PDFS work but windows created PDFS dont

    Some PDFs not working in Preview. I installed adobe reader and then deleted it because the software was aweful and PDFs have been haveing issues ever since. I can open up PDFs created on my Mac in preview just fine...
    But when I try and open a PDF created on a windows computer it says:
    "Please wait...
    If this message is not eventually replaced by the proper contents of the document, your PDF viewer may not be able to display this type of document.
    You can upgrade to the latest version of Adobe Reader for Windows®, Mac, or Linux® by visiting http://www.adobe.com/products/acrobat/readstep2.html.
    For more assistance with Adobe Reader visit http://www.adobe.com/support/products/ acrreader.html.
    Windows is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries. Mac is a trademark of Apple Inc., registered in the United States and other countries. Linux is the registered trademark of Linus Torvalds in the U.S. and other countries. "
    I am not sure why where the PDF was created would make a difference but couldnt help but notice that was the difference between the PDF files that work and the ones that give that message. I can view the PDFs on a windows computer just fine and never had issues untill adobe, it seems to have messed up PDFs on my Mac and I am so frustrated with them. I have searched my computer for any remaining adobe files, deleted them and restarted my computer but I am still getting this message.

    Uninstall Adobe Reader's plug-in.
    Remove the following two files from  /Library/Internet Plug-Ins/:
    AdobePDFViewer.plugin
    AdobePDFViewerNPAPI.plugin
    Open Safari Preferences > Extensions. Do you see AdobePDFViewer? If yes. disable.
    Log out/in and test.
    Another option is to download and install this plugin. Schubert|it PDF Browser Plugin . PDF Browser Plugin 2 is free for not-for-profit activities if used at home or at educational institutions.
    http://www.schubert-it.com/pluginpdf/

  • Has anyone been able to contact Adobe to learn why their Flash Player does not work on Mac OS 10.6.8, no matter how many updates you install?  This seems like a big error by Adobe.

    I have thee Mac computers with Mac OS 10.6.8, one of which is a Mac Pro.  No matter how many updates I install from Adobe, their Flash Player does not work on any of these 3 computers.  I don't know how to contact Adobe Systems about this problem, but I think it is their responsibility to make sure that their so-called "universal" software works proplerly on a relatively recent operating system like OS 10.6.8 that is still in widespread use.  When you install the updates, nothing happens -- not even an error message.  What is the point of a universal player that is not universal?  It works fine on my MacBook Pro with OS 9 Mavericks, but it does not work at all -- indeed, has never worked -- on my 3 Macs with OS 10.6.8.  Has anyone contacted Adobe Systems to find out why the Flash Player does not work with OS 10.6.8 and what they plan to do about it?

    Where are you getting Flash from?
    Get the appropriate dmg installer here and then run it.
    http://www.adobe.com/products/flashplayer/distribution3.html
    If it still won't install, do these two things: First uninstall any Flash by going into the second level Hard Drive Library>Internet Plug-ins, and trash the Flash Player.plugin and flashplayer.xpt. Then boot into Safe Boot, Shift at the startup chime (give it much longer than a usual boot) and run the installer while booted in Safe Boot.

  • My IPad cannot download live Tv from skygo. I have no problem with my lap top so I assume the broad band is okay. Can anybody suggest why the live streaming will not work on my iPad one.

    My IPad cannot download live Tv from skygo. I have no problem with my lap top so I assume the broad band is okay. Can anybody suggest why the live streaming will not work on my iPad .

    Are you using the Sky Go app to try and watch it ? If so are you logged in with your Sky account ?
    If you are using the app then you could try closing the app completely and see if it works when you re-open it : from the home screen (i.e. not with Sky Go 'open' on-screen) double-click the home button to bring up the taskbar, then press and hold any of the apps on the taskbar for a couple of seconds or so until they start shaking, then press the '-' in the top left of the Sky Go app to close it, and touch any part of the screen above the taskbar so as to stop the shaking and close the taskbar.
    If that doesn't work then you could try a reset : press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.

  • Why does my card reader not work on my iPad since upgrade?

    I use my iPad mini to download photos from my camera when I'm on the road. In the summer I bought the "3 in 1 Card Reader Adapter Cable Camera Connection Kit, 3 Port Card Reader for iPad 4 and iPad Mini by Eurekka" and it worked wonderfully. I was able to download photos (jpg and RAW) directly to the iPad and off the camera, and once home it was a flawless upload to my iMac.
    However, once I upgraded to iOS 7 last week I get a message saying the device is not supported. What gives? Will this be fixed or will Apple products only accept Apple accessories from now on?

    No but I was just trying to find a way in to your help desk. I didn't find 
    your web page very helpful in this regard.
    Douglas Whiteley
    In a message dated 10/05/2012 20:43:50 GMT Daylight Time, [email protected] 
    writes:
    Re:  why does my adobe reader not work
    created by Claudio  González
    (http://forums.adobe.com/people/Claudio+González)  in Adobe Reader - View the full  discussion
    (http://forums.adobe.com/message/4395059#4395059)

  • Why is my apple id not working

    I wonder why my apple id is not working please help me out FAST or ASAP

    How about some more information. Any error messages? What happens when you try to make a purchase or download an app?

  • Why magic jack apps is not working on my iphone 5?

    why magic jack apps is not working on my iphone 5?

    I have the same problem.  I contacted magic jack, and after more than an hour of waiting, here is the final part of our discussion, before I had to leave to go to work:
    Me:  the magic jack app has worked fine for months unregistered. Never had a problem before. I must go to work now. I will leave the chat box open. if you could, send me a list of possible fixes and I will try to apply them when I get back. Please write in detail. Is there a way that I can get in touch and get a senior rep on right away to handle my problem when I get back, or do I hae to wait again when I call next time?
    Kara: I am one of the senior rep here and in fact one of the supervisors . Here is what you are going to do:
    Kara: Once you register the magicjack app into your Iphone, we can refresh your account connections here manually however if you dont register it, no options in our end to work for your connections since the MJ app is not used to be registered. No worries, we can remove your account if you dont want the service anymore for free.
    +++++++++++++++++
    So, it would seem that either there is a problem that they don't know about, or else magic jack is trying to force everyone to not choose option 3 on the opening screen, the one which allows you to continue to make a call without registering.
    Has anyone received a solution to this problem from magic jack support?

  • Why is my Apple ID not working in iTunes and App Store on my iPhone? Nothing happens if I click buy for apps or music. If I then go to settings/iTunes App Store my Apple ID is not there. If I then enter ID and password it does not save or link to account?

    Why is my Apple ID not working in iTunes or App Store on my iPhone? When I try to buy apps or music it asks for Apple ID so I enter my info and nothing happens. When I go to settings/iTunes App Store my Apple ID is not there. When I enter my ID and password it does not save or link to account. I do not have this problem with iPad ID is stored and can be used in App Store and iTunes. I have just upgraded to 5c and it's still a problem.

    LeesaHeeley wrote:
    When I go to settings/iTunes App Store my Apple ID is not there. When I enter my ID and password it does not save or link to account.
    When fist setting up your new iphone you will be asked to log in with an apple id and password. If this did not happen you can then do as you suggested going to settings to itunes and app store and add your apple id login. This apple id login must have already been created for the iphone to accept it. If this apple id is already created but is not being accepted by your iphone you then should shut down your iphone and restart the device.
    Good luck.

  • Why does drag and drop not work?

    Why does drag and drop not work?

    Do you mean that when you move files on the Desktop, they don't stay where you put them ?.
    If so - use Finder - View menu - Show View options & choose 'Arrange by' : none
    If not - please describe exactly what the problem is.

  • Why does my free trial not work?

    Why does my free trial not work?  This is intentially misleading.

    You need to provide a better description of what isn't working, system info and all that. This could be all sorts of technical issues or your trial could simply have bombed itself. In the latter case there is nothing you can do:
    Adobe trial software expired early
    Anything else like iunstall issues can in most cases be sorted out...
    Mylenium

Maybe you are looking for