Exporting a PDF to an webserver via URL

Hello all together,
I already tried a few forums but I couldn't find anything that would help me.
So: I created a form with Acrobat Pro. After this I inserted a button to send this form to a PHP-script. Now I have to questions:
1. Which key is needed to read the file out of the http-header? I think it should have been sent with the POST-method. Is this right (but with print_r($_POST); I get printed an empty array)?
2. The button to send the form isn't working in Adobe Reader on iPhone (iOS 7). I can see the button but I can't click it. Ist this a bug or is this just not supported?
Many thanks in advance for your help!
Best regards,
Stefan
PS: I'd like to get this file automatically saved on my webspace. How could I handle this? I tried move_uploaded_file() but I can't realise this without the key...

Ah, ok. Get it. Now I finished writing the script. If someone would like to use it, here it is (shortened):
<?php
$filename = 'FILENAME.pdf';
$content = $HTTP_RAW_POST_DATA;
if (!$handle = fopen($filename, "w+"))
   print "Kann die Datei $filename nicht öffnen";
   exit;
// Schreibe $content in die geöffnete Datei.
if (!fwrite($handle, $content))
  print "Kann in die Datei $filename nicht schreiben";
  exit;
          $from = "FILENAME.pdf";
          $to = "NEW_DIR/NEW_FILE.pdf";
  rename($from, $to);
  fclose($handle);
?>
Thank you George for your quick help!

Similar Messages

  • Format changing when IDCS3 file exported to PDF

    I am using Acrobat 8 version 8.1.2, and InDesign version 5.0.2.
    I am noticing a very specific problem when exporting some files to PDF from InDesign.
    We often have a format where we have a numbered list of right-aligned number, followed by some text, a leader line, and then another number at the end of the line. This is set up with a left indent and a first line left indent (rather than using the numbered list options, we are required to do it this way where I work), and then the necessary tabs later in the lines.
    I am finding since we switched to IDCS3, that when I export to PDF, lines containing this format change in the PDF. The text that appears after the number in the front of the line is pushed over on top of the leader line, leaving a huge white space. On rarer occasions, it will move things in lines that have no indents, but contain tabs that aren't being used.
    I have been able to get the files to export correctly by removing the left indent and first-line left indent and using tabs instead (or by removing unused tabs). But we have hundreds of files set up in this manner so going in and changing how they are all set up is problematic to say the least. Many of these are also multi-line and not using the indents means we have to manually tab lines over.
    Is this a known issue? Does anyone know why this might happen and how I can prevent it?
    I tried posting in the Acrobat forums and it was suggested since it's an export issue that I might get more help from the InDesign folks.

    Given that the file is being exported to PDF and not going via a driver route, there really is no reason why changing the default printer should make a difference whatsoever in this particular case. Changing default drivers in Microsoft Office applications, yes, but for this situation, no. And since Acrobat doesn't change formatting, the issue sounds like some problem associated with InDesign. Please report this problem directly to Adobe Tech Support and be prepared to send them sample files. Thanks!
    - Dov

  • I am having issues with my web module on Lightroom 4 (Mac OS 10.9.5). "an unknown error occurred" while trying to upload to my FTP (no changes in my FTP). Bandaid fix was to export to local folder and upload via Filezilla. However, now that is no longer w

    I am having issues with my web module on Lightroom 4 (Mac OS 10.9.5). "an unknown error occurred" while trying to upload to my FTP (no changes in my FTP). Bandaid fix was to export to local folder and upload via Filezilla. However, now that is no longer working and although upload completes, the URL takes you to a "Forbidden - do not have permission to read this file" page. Lightroom is changing the permissions of each file to 000 instead of 644 for index files and 755 for all others. How can I change the permissions settings in Lightroom?

    I am having issues with my web module on Lightroom 4 (Mac OS 10.9.5). "an unknown error occurred" while trying to upload to my FTP (no changes in my FTP). Bandaid fix was to export to local folder and upload via Filezilla. However, now that is no longer working and although upload completes, the URL takes you to a "Forbidden - do not have permission to read this file" page. Lightroom is changing the permissions of each file to 000 instead of 644 for index files and 755 for all others. How can I change the permissions settings in Lightroom?

  • 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

  • Run XML Publisher Report  via URL (like Oracle Reports)

    Hi All,
    Is it possible to run xml-publisher report via URL?
    In Oracle Reports works this fine:
    http://test:7777/reports/rwservlet?server=test_bihome1&report=test1.rdf&userid=test/testv@db&desformat=pdf&destype=cache
    We need this for public reports without user login.
    Thanks
    Thomas

    Thomas,
    I was waiting to get home before Tim replied... He got the better of me this time :-)
    You say you want to let your users run reports using XMLP just by clicking on an URL same way you do with reports and without having to login. If I got the question right and assuming that:
    1.Your company is not overly concerned on who runs what reports
    2.Who sees what data
    3.Your XMLP installation is on your intranet and firewalled from the outside
    What you can do is:
    On the main page of your XMLP Enterprise installation you should see a folder called "Guest". Any report you create under this folder is run as user "guest" which means you don't have to authenticate yourself as you would normally do.
    I have tested this on my home server and this is what I've done:
    1.Logged in as admin or any other user you've created with admin privileges created a report under the "Guest" folder.
    2.Copied the URL, on my server it is "http://samba.private.net:15101/xmlpserver/Guest/People/People.xdo"
    4.Logged off as admin and pasted the URL to a new browser window
    5.Hit return and Voila, my report runs without the need to login to XMLP.
    Hope this helps. Let us know how you got on.
    Cheers,
    Joao
    PS: If you want to see the report for yourself here's the URL from the outside: http://medeiros.homelinux.net:15101/xmlpserver/Guest/People/People.xdo
    I'll keep the link alive for a couple of days.

  • How can I auto export a PDF File using the "Smallest File Size" preset and set the Exported File Name based on information from an Imported PDF?

    Greetings all,
    I am trying to create a script to automate a PDF export process for my company for inDesign. I’m fairly new to inDesign itself and have no previous experience with javascript, although I did take C++ in high school and have found it helpful in putting this code together.
    We have an inDesign template file and then use the Multi-page PDF importer script to import PDF files. We then have to export two version of each file that we import, then delete the imported file and all of the pages to reset the template. This has to be done for nearly 1000 pdf files each month and is quite tedious. I’m working on automating the process as much as possible. I’ve managed to piece together code that will cleanup the file much quicker and am now trying to automate the PDF exports themselves.
    The files are sent to us as “TRUGLY#####_Client” and need to be exported as “POP#####_Client_Date-Range_North/South.pdf”
    For example, TRUGLY12345_Client needs to be exported as POP12345_Client_Mar01-Mar31_North and POP12345_Client_Mar01-Mar31_South.
    There are two templates built into the template file for the north and south file that are toggled easily via layer visibility switches. I need to get a code that can ideally read the #s from the imported Trugly file as well as the Client and input those into variables to use when exporting. The date range is found in the same place in the top right of each pdf file. I am not sure if this can be read somehow or if it will have to be input manually. I can put North or South into the file name based on which template layer is visible.
    I am not sure how to go about doing this. I did find the following code for exporting to PDF with preset but it requires me to select a preset and then type the full file name. How can I set it to automatically use the “Smallest File Size” preset without prompting me to choose and then automatically input some or preferably all of the file name automatically? (If the entire filename is possible then I don’t even want a prompt to appear so it will be fully automated!)
    PDF Export Code (Originally from here: Simple PDF Export with Preset selection | IndiSnip [InDesign® Snippets]):
    var myPresets = app.pdfExportPresets.everyItem().name;
    myPresets.unshift("- Select Preset -");
    var myWin = new Window('dialog', 'PDF Export Presets');
    myWin.orientation = 'row';
    with(myWin){
        myWin.sText = add('statictext', undefined, 'Select PDF Export preset:');
        myWin.myPDFExport = add('dropdownlist',undefined,undefined,{items:myPresets});
        myWin.myPDFExport.selection = 0;
        myWin.btnOK = add('button', undefined, 'OK');
    myWin.center();
    var myWindow = myWin.show();
    if(myWindow == true && myWin.myPDFExport.selection.index != 0){
        var myPreset = app.pdfExportPresets.item(String(myWin.myPDFExport.selection));
        myFile = File(File.saveDialog("Save file with preset: " + myPreset.name,"PDF files: *.pdf"));
        if(myFile != null){
            app.activeDocument.exportFile(ExportFormat.PDF_TYPE, myFile, false, myPreset);
        }else{
            alert("No File selected");
    }else{
        alert("No PDF Preset selected");
    So far my code does the following:
    1) Runs the Multi-Page PDF Import Script
    2) Runs PDF Export Script Above
    3) Toggles the Template
    4) Runs #2 Again
    5) Deletes the imported PDF and all pages and toggles template again.
    It’s close and much better than the original process which was almost 100% manual but I’d like to remove the Preset prompt from the PDF script and have it automatically select the “Smallest File Size” preset. and then if there’s a way to have it auto-fill in the file name so no user input is required at all other than selecting each file to import. (If there’s a way to setup a batch action for the multi-import script that would be even better!)
    Thanks in advance and if there’s anything else I can provide that would help please let me know! Even a nudge in the right direction will be a big help!

    If you hold down the option key, it will typically show the location. Or you can often hit option-return on the file and it will reveal the file in the Finder, instead of opening it.
    Final option is to open it, and just option-click the filename in the toolbar of Preview and it should show you the location.
    It's probably an attachment to an email you've received. If you have Mail set to cache emails and their attachments it'll be stashed in a subdirectory of ~/Library/Mail. Which is fine.

  • Error while attaching PDF to FI doc via SAP services

    Hi,
    I am calling SCMS_DOC_CREATE_FILES funtion module to attach PDF to FI doc via SAP services and SAP internally calling standard function 'HTTP_POST_FILESu2019 with RFC_DESTINATION u2018SAPHTTPAu2019 and returned error due to connection fail.
    RFC DESTINATION SAPHTTPA checked and   its working fine.
    call function 'HTTP_POST_FILES' destination rfc_destination
        EXPORTING
          uri                   = absolute_uri
          path                  = component_path
          proxy                 = proxy
          trace                 = http_trace
          prefix                = component_prefix
          user                  = user
          pwd                   = password
        IMPORTING
          status                = status_code
          stext                 = stext
          error                 = cerror
          etext                 = comp_err
        TABLES
          resp                  = response_entity_body
          resphead             = response_headers
          reqhead               = request_headers
          comp                  = components
          compx_255             = componentsx
        EXCEPTIONS
          system_failure        = 1  message msg
          communication_failure = 2  message msg.
         output:   Sy-subrc is 0 and status_code is '403'
    response_entity_body internal table return the below error information:-
    -     HTTP/1.1 403 Forbidden
    -     Server: Apache-Coyote/1.1
    -     X-ErrorDescription: Genuine channels operation exception: Can not connect to the remote host "gtcp://127.0.0.1:49008". System error message: No connection could be made because the target machine actively refused it 127.0.0.1:49008.
    -     Content-Type: text/html;charset=utf-8                           Date: Tue, 08 Nov 2011 21:36:02 GMT
    -     Connection: close
    Please help i am not to able find the reason why i am getting status_code is '403' and RFC failed.
    Thanks
    Sireesha
    Edited by: Sireesha_SAP on Nov 10, 2011 8:53 PM
    Edited by: Sireesha_SAP on Nov 10, 2011 10:16 PM

    Hi,
    I would like to know what font type, you are using in the forms.
    Ideally it should be HELVETICA .
    If you are using any other font in your style/form,try changing it to HELVETICA & Test.
    Also Check the OTF data at the call of gen. FM,before converting it to PDF.
    Regds,
    AS
    Edited by: abheesawant on Oct 12, 2011 7:48 AM

  • Problem using image via URL

    Hi everybody
    I have a problem with loading images via URL into my PDFs.
    I am using LCD ES2 Version 9.0.1....
    I want to create a PDF which loads images from the internet but it does not work.
    So far I have tried to add an image or image field to my PDF in the LCD and populate that image using the Object-->Field-->URL: palett. I put the URL in there like this http://www.adobe.com/imageshome/pdfgift_home.gif , tick the "embed image Data" checkbox (also tried with without that just to be sure) and save as Dynamic PDF (I also tried static) but when I open the PDF in adobe reader 9 or 10 or acrobat  9 there is no image showing. I also put the image in a subform and made that subform flowed, as well as the page itself and made the binding global.
    I have the form properties - default set to "Acrobat and Adobe Reader version 9.0 or higher", Default Language to JavaScript, PDF Render format to Dynamic PDF.
    I also tried using JavaScript events like "form:ready ImageField2.value.#image.href = "http://www.adobe.com/imageshome/pdfgift_home.gif" as discribed here http://partners.adobe.com/public/developer/en/tips/lc_dynamic_images.pdf but that also does not work.
    What am I missing?
    Any help would be great and greatly appreciated!!!
    Thanks and best regards
    Norbert

    As far as I can tell, this use case is not allowed because of cross site references related security concerns. The form can refer to the images stored on the same server from where the PDF is served, but the images cannot come from external servers.

  • Export to .pdf fails.

    Tar 6388351.992
    Customer is on DBI 7.0.1 and XML Publisher 5.0.0
    DBI uses XML publisher to export to .pdf.
    When trying to export reports to PDF, the customer gets an
    "Exception in Process Method Of FOProcessor "error message.
    This does not occur when exporting to Excel.
    After setting up a trace we got the error message:
    [070507_112246550][][ERROR] Failed to load the image:
    http://nadine1.orange.cm:8000/237/OA_MEDIA/bisorcls.gif
    The problem is this URL
    http://nadine1.orange.cm:8000/237/OA_MEDIA/bisorcls.gif
    It should be
    http://nadine1.orange.cm:8000/OA_MEDIA/bisorcls.gif
    The customer has checked and this one without /237 in it works.
    The customer's <db_servername> .XML file and <appl_top>/admin/adovars.env
    both show the correct setting for OA_MEDIA and he has run autoconfig again.
    Does anyone know where this misconfiguration could be
    coming from.

    Hi
    Please use the internal mailing list for XMLP questions the forums are meant for customers not support or development.
    That said, as I remember the integration, XMLP just generates the ouput. the DBI module is in charge of where its put and how its accessed. Id suggest asking the DBI dev team for some help.
    Regards, Tim

  • Export to PDF/Excel

    Hi All,
    We are in NW2004s SP13. I have created a new modal and edited the tool bar to add the Export to PDF button. After reviewing the document Export Data From Visual composer I put the PDF formula but am getting the following error. Since our VC sits in the same server as Enterprise Portal we have created a Remote URL iview for the Web analyzer and used that PCD location in the formula, but still gives the same error.
    Could anyone please shed any thoughts on the same. I am enclosing the error message that we are getting and the formula that we are using.
    Formula: "pcd!3aportal_content!2edu.mayo.Y_MAYO!2edu.mayo.Y_iViews!2RDV!2BID_BEXWEB?QUERY=" & STORE@REPTNAME &"&BI_COMMAND_1-
    BI_COMMAND_TYPE=EXPORT&BI_COMMAND_1-EXPORT_FORMAT=PDF&BI_COMMAND_1-
    SHOW_EXPORT_DIALOG=X&BI_COMMAND_1-
    null="
    Error in compiling Flex application: Error 1002: String literal was not properly terminated
          (/usr/sap/EPD/JC07/j2ee/cluster/server0/GUIMachine_Business_Packages/ZRDVENROLLCNT_21038/FLEX_COMPILATION_FOLEDR/AAD1JO.mxml:388)
    Error 1033: ';' expected
          (/usr/sap/EPD/JC07/j2ee/cluster/server0/GUIMachine_Business_Packages/ZRDVENROLLCNT_21038/FLEX_COMPILATION_FOLEDR/AAD1JO.mxml:389)
    Error 1025: Left side of assignment operator must be variable or property.
          (/usr/sap/EPD/JC07/j2ee/cluster/server0/GUIMachine_Business_Packages/ZRDVENROLLCNT_21038/FLEX_COMPILATION_FOLEDR/AAD1JO.mxml:390)
    Error 1025: Left side of assignment operator must be variable or property.
          (/usr/sap/EPD/JC07/j2ee/cluster/server0/GUIMachine_Business_Packages/ZRDVENROLLCNT_21038/FLEX_COMPILATION_FOLEDR/AAD1JO.mxml:391)
    Error 1025: Left side of assignment operator must be variable or property.
          (/usr/sap/EPD/JC07/j2ee/cluster/server0/GUIMachine_Business_Packages/ZRDVENROLLCNT_21038/FLEX_COMPILATION_FOLEDR/AAD1JO.mxml:392)
    Error 1033: ';' expected
          (/usr/sap/EPD/JC07/j2ee/cluster/server0/GUIMachine_Business_Packages/ZRDVENROLLCNT_21038/FLEX_COMPILATION_FOLEDR/AAD1JO.mxml:393)
    Error 1205: The statement '' is incomplete.
          (/usr/sap/EPD/JC07/j2ee/cluster/server0/GUIMachine_Business_Packages/ZRDVENROLLCNT_21038/FLEX_COMPILATION_FOLEDR/AAD1JO.mxml:390)
    Error 1128: Attribute used outside class.
          (/usr/sap/EPD/JC07/j2ee/cluster/server0/GUIMachine_Business_Packages/ZRDVENROLLCNT_21038/FLEX_COMPILATION_FOLEDR/AAD1JO.mxml:393)
    Error 1128: Attribute used outside class.
          (/usr/sap/EPD/JC07/j2ee/cluster/server0/GUIMachine_Business_Packages/ZRDVENROLLCNT_21038/FLEX_COMPILATION_FOLEDR/AAD1JO.mxml:394)
    Thanks,
    Krishna

    Krishna,
    hv you ensured that ADS has been installed and configured? Am not very familiar with config of ADS, but check out note 944221 to troubleshoot this
    Also, navigate to Sdn>Wiki>VC>Modeling>Export Data
    you'll find more info regd pre-req for exporting to ADS and config dtls
    prachi

  • Export to PDF in landscape orientation

    Some of our discoverer reports have too many row headings so when exporting to PDF the user gets an error message basically saying that at least one data column must be printable on a page.
    We have turned on the Printable Page link and if the user sets orientation to Landscape there, the export works fine (for that session).
    Is there any URL parameter, config file edit, .uix file hack or other we can use to set the PDF orientation to landscape from start (every time)?
    Kind regards
    Tomas Albinsson
    Stockholm, Sweden

    I would look in the documentation under Viewer / Plus for changes that can be made to the configuration files on the server to see if this can be done.
    Admittedly, it doesn't sound like rocket science and I would have thought there'd be a section in one of the server config files to set 'landscape' as default.
    It may even be a setting in a config file on the server where the actual text has to be written in (ie: not already there with a setting of 0 or something), so unless someone knows the answer right away, I'd check the docs on config files.
    Russ

  • Pages 09 Are enterable forms possible? So that I can export to PDF and others can fill in that form and return to me?

    I want to create a membership form (PDF format) and put it on my website for potential members to download. Ideally they can enter their details in the PDF and return it to me via e-mail. How would I do this please?

    No, this capability does not exist in Pages.
    LibreOffice has a forms designer so that you can create in-line, fillable forms. You can then one-button export to PDF. The LibreOffice Writer Guide has an entire chapter assigned to Forms.

  • Export to PDF problems

    Much of our workflow (Prepress) involves taking in client files, laying them up in InDesign (either for sizing, position, or to build versions), and then submitting that file to our RIP.
    Exporting to PDF is quick, allows for the preservation of transparency, allows you to bypass InDesign's faulty color management UI, and can be batched via plug-ins like Batch Output. But, InDesign can cause a number of issues with the resulting PDFs. CS4 seems to be particularly bad in handling subset fonts. It will create documents that appear in Acrobat 8 to have the "undefined character", but look perfectly fine in Acrobat 9 (ID CS4 is the culprit here - it doesn't happen in CS3).
    I've had elements drop-out, transparencies disappear, and previews corrupted. Is there an export method that is stable and reliable? Or do we have to take a step backward to using the Print command and then Distilling?

    What is to be done to ensure that PDFs from ID CS4 output correctly from a commercial printer?
    We have recently had a costly problem with two PDF ads (producer: Acrobat Distiller 8.1.0 Win) that I placed in a ID CS4 layout (Mac) and then exported to a new PDF 1.3 (producer: PDF library 9).
    Note: I have used the same ads before with InDesign CS3/Acrobat 8 workflow and they previewed and printed w/o problems!
    The new exported PDF from InDesign CS4 looked correct in Acrobat 9, but this time a few random characters from subset fonts (Swiss and Zurich) were missing in the printed ads. This was one costly mistake!
    After checking up the scarce information on this problem on the internet I opened the problematic InDesign CS4 PDF layout in Acrobat Reader 8 and the characters in the ads that previewed correctly in Acrobat 9, but were missing in print, were missing here as well!
    Then I tried to print the ID CS4 PDF layout from both Acrobat 8 and 9 to a HP PostSript2 laser printer and got missing characters from Acrobat 8 but all correct characters from Acrobat 9.
    This is a really disturbing problem since we have little control over how PDF ads that we get are produced as well as over the offset printing (RIP) workflow.
    In a nutshell, PDF production process that once worked in CS3 does not work reliably any more in CS4 and the only variable changed is the CS3 to CS4 upgrade on our side.
    Please help!

  • Export to PDF errors in CS5 ME version

    Dear All,
    Our agency has upgraded all our machines to CS5 ME version.
    We are facing a major problem when exporting to PDF from InDesign CS5 - ME
    Its a random problem but basically we have a standard footer set up on the master page and then have applied our design,
    In InDesign it all looks fine and is correct...we even can print from InDesign and everything is fine.....however when we export to PDF as spreads or single pages elements of the master page do not reproduce on all pages of the PDF document or if the do they move..
    The problem seems to be random as we have used the same master document to paginate many sections of the document and on some sections its ok and other not...
    The document has to go to print in 2 days via PDF to printer so can do with some help on this.
    Many thanks
    Richard

    Hi,
    Thanks for this we have had jumping and we have also had disappearing
    altogether...and its not limited to just the logo now on the odd occasion,
    the other symbols N , O , S , A at the bottom of the page disappear
    also...bloody frustrating...strangely it always seems to be on a right hand
    page...which leads me to think its something to do with the Middle East
    version only....are you working on the ME version?
    The only way we can get around this is to take off master page and then
    paste in place on every single page...kind of makes the whole concept of
    master pages redundant...
    Richard

  • Export to pdf for thai characters get blank result.

    Dear expert,
    I have a problem, when export Sales Order that contain thai characters to PDF in SAP B1 2007A SP01 PL08, the page converted to pdf successfully for english characters, but not for Thai character. Thai characters did not display anything, just blank.
    I did refer to note 339832 , and i guess this note is for R3 system, and I think for B1 also should use the same method when export to pdf.
    So, anyone have any idea to enable Thai characters to export to pdf in SAP Business One?
    Thanks in advance for any help.
    Reagrds
    Mat

    Dear Carin,
    Actually the purpose I want to export to pdf is because to attach wiith email that send direct from SAP.
    My scenario here is:
    - Open one Sales Order
    - then click on Email icon to send email with attachment (I want to attach the SO). But, when I check the pdf before send the SO as attachment, i find out that the Thai characters missing/blank (as JimM said it is limitation in SAP for pdf function currently).
    - the email sent successfully, but only the SO attachment is not correct because of Thai characters missing.
    As per your suggestion, yes I can print as pdf first, then manually attach to email, but this involve too many manual steps just to send one SO via email.
    Any way, thanks to all of you for reply.
    JimM, thanks for the info and I will try to proceed to SAP development team for future use.
    Regards
    Mat

Maybe you are looking for

  • Excise Invoice Problem

    Hi All,          I have posted the Excise Invoice. 1. but in item level GR reference Tab is missing. 2. Qty Tab - (Relevent to Part 2) Qty is coming both credit availed & Credit available.but it should come only credit availed. 3.Duty value Tab - Exc

  • ICal / iPhone sync problems - events don't appear in iCal

    I have MobileMe set up on both my MacBook and iPhone. All iCal-created events now appear on my iPhone (although only those after 9th May 2008; none before), but if I create an event on my iPhone then it doesn't show up on iCal. If I check MobileMe on

  • WebDynpro Methods help for objects in ABAP editor

    Hi, is there a possibility to see the methods that can be used by an specific object? For example which methods I can use with the object wd_this. Thank You!

  • Service Tax and Sales Tax-India

    In SAP how we can enter both Service Tax and Sales tax in single invoice. Is there is any option to enter both tax code in a single invoice?

  • Algorithms that  jvm follow

    Hi , Can anyone tell me the basic alogorithms that jvm follow and where can i get the information about this Thanks in Advance