AcroForm.api throws an error when instantiated in VB6

When I try to create a new instance of AFORMAUTLib.AFormApp in vb 6, the code throws the error "ActiveX component can't create object."  I am using Adobe Acrobat v9.1.  Is there anything I can do to fix this error?

We do not support development around Acrobat 9 with VB6.  In fact, I believe the last version that we supported with VB6 was Acrobat 7.

Similar Messages

  • CF 8 CFPDF "Merged" document throws 131 Error when opened in Acrobat

    We are using CF 8 on Windows Server 2003 platform.
    Any CFPDF "Merged" documents are throwing 131 Errors when opened in Acrobat
    Tried re-saving the documents on local machine and still same problem. Tried opening in multiple versions of Acrobat, same problem.
    Individual documents created are opening without issue. It is Only when these documents are merged that this error occurs.
    We do not experience this behavior in our CF 10 environment.
    We are a Big, Slow moving enterprise here so not much chance of getting our CF 10 environments promoted to meaningful production use soon.
    Found virtually nothing in HelpX and nothing online of any value regarding this issue.
    Has anyone else experienced the issue noted in the title of this discussion?
    Has anyone a work around or solution?

    I am getting the same error even in Acrobat version 8.1.3.
    Additionally, I noticed that if we click on menu ‘Advanced->Sign&Certify->Preview Document’, then we get a notification as “This document is not PDF/SigQ compliant and may display inconsistently”. On clicking  ‘View report’ on that notification, the below dialog pops up. It has errors listed as:-
    Code 4000 : Unrecognized PDF content. The document contains PDF content or custom content not supported by the current version of Acrobat.
    Code 4002: PDF content contains erros.
    However, if we sign the PDF using default adobe signature functionality and reopen that PDF, the error does NOT come and the notification also says ‘This document is PDF/SigQ compliant’.
    Can anybody please suggest what could be missing in the custom sign that we apply? Is it because of any of the missing fonts or any other resources?
    Awaiting reply!
    Regards.

  • Getting Error :Error when instantiating WebService runtime

    Hello All,
                  I am a new to Webservices and writing a test program .I am using the ECC 5.0 .I am calling a Webservice from R/3 .I am  trying to call this webservice  :[http://webservices.daehosting.com/services/isbnservice.wso?WSDL].
    I am getting the following exception
    {<?xml version="1.0" encoding="utf-8" ?>
    - <asx:abap xmlns:asx="http://www.sap.com/abapxml" version="1.0">
    - <asx:values>
      <SYSTEMFAULT href="#o68" />
      </asx:values>
    - <asx:heap xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:abap="http://www.sap.com/abapxml/types/built-in" xmlns:cls="http://www.sap.com/abapxml/classes/global" xmlns:dic="http://www.sap.com/abapxml/types/dictionary">
    - <cls:CX_AI_SYSTEM_FAULT id="o68">
    - <CX_ROOT>
      <TEXTID>F63AFF63DBE4BB4786A7F52CC4167145</TEXTID>
      <PREVIOUS href="#o55" />
      <KERNEL_ERRID />
    - <INTERNAL_SOURCE_POS>
      <PROGID>191</PROGID>
      <CONTID>558</CONTID>
      </INTERNAL_SOURCE_POS>
      </CX_ROOT>
      <CX_STATIC_CHECK />
    - <CX_AI_SYSTEM_FAULT>
      <CODECONTEXT>Local</CODECONTEXT>
      <CODE>ERROR_WEBSERVICE_RUNTIME_INIT</CODE>
      <ERRORTEXT>Error when instantiating WebService runtime (Error when initializing SOAP client application )</ERRORTEXT>
      <LANGUAGE />
      </CX_AI_SYSTEM_FAULT>
      </cls:CX_AI_SYSTEM_FAULT>
    - <cls:CX_XMS_SYSERR_PROXY id="o55">
    - <CX_ROOT>
      <TEXTID>3F829CAF9A45633CE10000000A155117</TEXTID>
      <PREVIOUS />
      <KERNEL_ERRID />
    - <INTERNAL_SOURCE_POS>
      <PROGID>0</PROGID>
      <CONTID>0</CONTID>
      </INTERNAL_SOURCE_POS>
      </CX_ROOT>
      <CX_STATIC_CHECK />
    - <CX_XMS_SYSTEM_ERROR>
      <ID>ERROR_WEBSERVICE_RUNTIME_INIT</ID>
      <P1>Error when initializing SOAP client application</P1>
      <P2 />
      <P3 />
      <P4 />
      <INFO />
      <CATEGORY>XIProxy</CATEGORY>
      <AREA>ABAP</AREA>
      <RETRY>M</RETRY>
      </CX_XMS_SYSTEM_ERROR>
    - <CX_XMS_SYSERR_PROXY>
      <CO_AREA_ABAP>ABAP</CO_AREA_ABAP>
      </CX_XMS_SYSERR_PROXY>
      </cls:CX_XMS_SYSERR_PROXY>
      </asx:heap>
      </asx:abap>}
    This is what i have given in LPCONFIG Tcode
    LPCONFIG->General setting-> Call parameters->
    URL->http://webservices.daehosting.com/services/isbnservice.wso?WSDL
    Please help out what I am missing here
    Thanks
    Krishna

    I had the same error, while implementing a new client webservice.
    The Error ERROR_WEBSERVICE_RUNTIME_INIT was in my case solved by:
    1. regenerating the CL_SOAP_APPLICATION_CLIENT class.
    and
    2. deleting the LPCONFIG setting and creating a new one.
    Edwin.

  • Accordion throwing an error when you click in it

    Hi All,
    I've got an Accordion (code at end of message) that (when you click in it) throws the following error:
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at mx.containers::Accordion/focusInHandler()[E:\dev\4.0.0\frameworks\projects\framework\src\ mx\containers\Accordion.as:1357]
    I looked into it, and here's the code that's throwing the error:
        override protected function focusInHandler(event:FocusEvent):void
            super.focusInHandler(event);
            showFocusIndicator = focusManager.showFocusIndicator;
            // When the accordion has focus, the Focus Manager
            // should not treat the Enter key as a click on
            // the default pushbutton.
            if (event.target == this)
                focusManager.defaultButtonEnabled = false;
    The line that's bombing is "showFocusIndicator = focusManager.showFocusIndicator" -- the problem is that focusManager is null.
    This is how I create and show the component that has the accordion when the user clicks on an "Instructions" button:
         public var instructionsDialog:InstructionsDialog;
         protected function instructionsButton_clickHandler(event:MouseEvent):void
              if(this.instructionsDialog == null)
                   this.instructionsDialog = new InstructionsDialog();
              PopUpManager.addPopUp(this.instructionsDialog,this,true);
              PopUpManager.centerPopUp(this.instructionsDialog);
    And here's the component:
    <?xml version="1.0" encoding="utf-8"?>
    <s:Group xmlns:fx="http://ns.adobe.com/mxml/2009"
               xmlns:s="library://ns.adobe.com/flex/spark"
               xmlns:mx="library://ns.adobe.com/flex/mx" width="400" height="400">
         <fx:Script>
              <![CDATA[
                   import mx.events.CloseEvent;
                   import mx.managers.PopUpManager;
                   protected function mainTitleWindow_closeHandler(event:CloseEvent):void
                        PopUpManager.removePopUp(this);
              ]]>
         </fx:Script>
         <fx:Declarations>
              <!-- Place non-visual elements (e.g., services, value objects) here -->
         </fx:Declarations>
         <s:TitleWindow left="0" top="0" right="0" bottom="0" id='mainTitleWindow'
                           close="mainTitleWindow_closeHandler(event)" title="Instructions">
              <mx:Accordion id="accordion" color="0x323232" width="100%" height="100%">
                   <!-- Define each panel using a VBox container. -->
                   <s:NavigatorContent label="Header 1">
                        <mx:Text width="100%">
                             <mx:text>
                                  Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce a magna non urna ultrices facilisis. Aenean venenatis volutpat enim eget vehicula. Suspendisse eu diam tortor, sed tincidunt augue. Vestibulum interdum sem eget dui suscipit rutrum. In hac habitasse platea dictumst. Fusce ullamcorper ipsum sed elit tempor eget interdum ipsum tempus. Nulla convallis eleifend mattis. Donec nec hendrerit dui. Vivamus nec urna eget lectus gravida porttitor quis ut lacus. Fusce rutrum, justo a vestibulum tempus, eros tellus vestibulum sem, laoreet consequat lectus urna vitae eros. Ut pulvinar porttitor quam, ut scelerisque arcu pharetra vel. Praesent leo felis, eleifend quis tempor vitae, venenatis at erat. Donec nec risus sed enim dapibus pretium quis vitae velit. Nulla pulvinar semper magna non pulvinar. Proin dictum tristique lacus. Morbi eget urna velit. Aliquam massa dui, dapibus pretium interdum sit amet, ultrices sed lorem. Vestibulum et eros a dolor sagittis pretium at ut mauris.
                             </mx:text>
                        </mx:Text>
                   </s:NavigatorContent>
                   <s:NavigatorContent label="Item 2">
                        <mx:Text width="100%">
                             <mx:text>
                                  Sed ultricies elit vel dui aliquam faucibus faucibus lacus ullamcorper. Phasellus odio est, tristique quis lacinia id, accumsan at lacus. Pellentesque consectetur, libero quis dignissim interdum, mi velit semper nunc, nec auctor metus nulla non lorem. Nunc scelerisque eros nec libero elementum pellentesque. Maecenas et dolor libero, non ornare libero. Curabitur ante nunc, eleifend eget imperdiet facilisis, venenatis nec urna. Nullam nulla magna, ultricies at vestibulum non, auctor quis eros. Lorem ipsum dolor sit amet, consectetur adipiscing elit. In nunc nunc, dapibus quis posuere ut, tristique in dui. Curabitur at tincidunt turpis. Cras molestie quam nec lacus viverra fermentum. In bibendum varius augue id feugiat. Quisque id pretium turpis. Cras et velit nisi. Nunc sodales libero ut magna convallis interdum adipiscing magna vehicula. Phasellus elementum turpis vitae ipsum ultrices dictum. Aenean porttitor nibh sit amet est ullamcorper vitae rutrum dolor molestie.
                             </mx:text>
                        </mx:Text>
                   </s:NavigatorContent>
                   <s:NavigatorContent label="Item 3">
                        <mx:Text width="100%">
                             <mx:text>
                                  Quisque cursus posuere porttitor. Mauris eros eros, sagittis et ultricies vitae, scelerisque ac neque. Integer vel diam id nisl lacinia auctor ac quis orci. Quisque consectetur elementum orci. Etiam mollis dui id urna commodo vel porta neque tincidunt. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Curabitur odio urna, tincidunt in volutpat ut, lobortis nec quam. Integer et est at ante pharetra dapibus. Mauris tempus laoreet euismod. Nunc luctus tincidunt augue, quis iaculis mauris scelerisque nec. Nulla laoreet viverra ipsum, vitae gravida arcu pharetra nec. In rutrum ligula ut massa egestas in varius tortor suscipit. Cras posuere nibh ligula.
                             </mx:text>
                        </mx:Text>
                   </s:NavigatorContent>
                   <s:NavigatorContent label="Item 4" >
                        <mx:Text width="100%">
                             <mx:text>
                                  Duis urna libero, suscipit ut laoreet a, consequat sit amet tortor. Vestibulum accumsan purus viverra mauris fermentum elementum. Vivamus quis lacus mi, quis mollis mauris. Praesent interdum ornare nulla eget scelerisque. Etiam et nibh metus. Vivamus ante tellus, gravida accumsan congue vel, commodo vel nibh. Maecenas placerat pellentesque blandit. Nunc nec faucibus quam. Fusce facilisis risus non nisi blandit eget commodo eros vehicula. Proin pharetra, tellus vel ultrices rutrum, metus libero pulvinar felis, non vulputate orci sem vitae dui. Proin sodales, purus vitae aliquam ultrices, elit mi rhoncus tellus, at dictum magna quam non massa. Phasellus tincidunt augue ut urna scelerisque in posuere mi vulputate. Ut porttitor, ipsum non ornare laoreet, augue tortor imperdiet turpis, sit amet blandit arcu turpis eu leo. Vivamus fringilla, nulla quis porta placerat, ante augue pellentesque leo, in mattis felis ante ac dui.
                             </mx:text>
                        </mx:Text>
                   </s:NavigatorContent>
                   <s:NavigatorContent label="Item 5" >
                        <mx:Text width="100%">
                             <mx:text>
                                  Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur eget diam ipsum, nec malesuada elit. Mauris in placerat lectus. Quisque nec nulla elit. Donec ultrices turpis ac magna accumsan commodo. Aliquam blandit libero sed massa pulvinar eu aliquam ante feugiat. Pellentesque odio velit, ullamcorper posuere tristique et, pretium at enim. Curabitur vulputate metus a eros elementum pulvinar. Curabitur augue tellus, dignissim quis sodales ut, gravida in dolor. Suspendisse consectetur, neque eget iaculis feugiat, dui turpis fermentum enim, sit amet mattis leo elit a felis.
                             </mx:text>
                        </mx:Text>
                   </s:NavigatorContent>
                   <s:NavigatorContent label="Questions?" >
                        <mx:Text width='100%' textAlign="left">
                             <mx:htmlText><![CDATA[<div style='text-align: left;'><a href='mailto:[email protected]'>Email <u>[email protected]</u></a></div>]]></mx:htmlText>
                        </mx:Text>
                   </s:NavigatorContent>
              </mx:Accordion>
         </s:TitleWindow>
    </s:Group>

    Flex harUI wrote:
    Popups that need focus should be in a container that implements
    IFocusManagerContainer.
    As I was thinking about it, I figured that must be the solution... but the problem is, I have no idea which container is the right one to use.  I tried SkinnableComponent, but it wouldn't even compile, saying that I couldn't have TitleWindow as a child of SkinnableComponent since TitleWindow didn't implement mx.core.IUIComponent.
    So, I tried SkinnableContainer, and now it seems to be working.  I'm guessing that implements IFocusContainerManager in a satisfactory fashion for the Popup system, then, yes?
    Anyway, hopefully this will be useful to somebody else if they run into this same issue!

  • Error  when instantiating a Com( EXCEL.APPLICATION) object in WINDOWS XP

    Hi,
    I am using coldfusion MX7 and OS is WindowXP. I am using COM
    object with Excel.Application for my program. but it is giving the
    below error. But same program is working in Window Profesional.
    ERROR IS:
    An exception occurred when instantiating a Com object.
    The cause of this exception was that: AutomationException:
    0x80080005 - Server execution failed. Note that Windows 95 does not
    support automatic launch of a server, it must be running already.
    The error occurred in
    C:\CFusionMX7\wwwroot\XXX\report_top20.cfm: line 15
    13 : t1=now();
    14 : path=GetDirectoryFromPath(ExpandPath("*.*"));
    15 : xl=CreateObject("COM", "Excel.Application");
    16 : wbks=xl.workbooks;
    17 : tmp=wbks.open(path & "top20_template.xls");
    Plz help me.
    Reagrds,
    DRA.

    Hi,
    If possible, would you please share your Excel file with us, you can upload it to a file sharing site(Like OneDrive), and then share the link with us. Also please take a look of this article:
    http://support.microsoft.com/kb/178510
    For the warning message, It means that in Excel 2010 and Excel 2007, you can use special effects, such as transparent shadows that are not supported in Excel 97-2003. The special effects will be removed. In the Compatibility Checker, click
    Find to locate the objects that have special effects applied so that you can remove those effects as needed.
    Wind Zhang
    TechNet Community Support

  • Bcp doesnt throw an error when the data length exceeds size of the column

    Hi,
    We are using bcp in SQL 2008 R2 to import the data from flat file. When the data length exceeds the size of the column, it doesn't throw any error instead it has ignored the row.
    Please suggest me how to truncate and load the data into table.
    Thanks,
    Pasha

    Hi Pasha,
    According to your description, you want to import the data from flat file to SQL Server table with truncated data in SQL Server 2008 R2. To achieve your requirement, we can use Import and Export wizard. For more details, please refer to the following steps:
    Launch SSMS by clicking SQL Server Management Studio from the Microsoft SQL Server program group.
    Right click on the destination database in the Object Explorer, select Tasks, then Import Data from the context menu to launch the Import Wizard.
    Choose Flat File Source as Data Source, then browser to the flat file.
    Choose SQL Server Native Client 10.0 as Destination, then select the destination database.
    Click Edit Mappings button to change column size or other properties.
    Finish the processing.
    For the example about how to use Import and Export wizard, please refer to the blog below:
    http://www.mssqltips.com/sqlservertutorial/203/simple-way-to-import-data-into-sql-server/
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Compiling code throws undeclared errors when trying to view form in design mode.

    Let me start this off by admitting that I've committed sacrilege - I edited code inside of a windows forms InitializeComponent() function. I changed this (located in the beginning of the InitializeComponent() function where all UI elements are declared):
    this->image = gcnew OpenTK::GLControl();
    To this:
    OpenTK::Graphics::GraphicsMode^ temp = gcnew OpenTK::Graphics::GraphicsMode(ColorFormat(16, 16, 16, 16), 16, 0, 0, ColorFormat(16, 16, 16, 16), 3 , false);
    this->image = gcnew OpenTK::GLControl(temp)
    The result is that the code still compiles, but it gives the following errors when I try to view the code in design mode:
    The variable 'image' is either undeclared or was never assigned.
    "The variable 'temp' is either undeclared or was never assigned."
    The former can get eliminated by using two constructors, one with no parameters, followed by an immediate override of the image object with my actual constructor. But I can't seem to get rid of the second problem. Declaring the variable temp outside of the
    function didn't help, so I'm not sure if or how I can make this work. Any suggestions on how I can make the design mode parser accept my intrusions? I understand that I've done some evil things to make this happen, but I'd like to keep it more or less like
    this since the result is that I have a vsynced windows form.

    Hi MHoll4,
    It seems that it is not the correct forum for this issue.
    Since this issue is related to the WinForms app, I suggest you post this issue to the WinForm forums here:
    http://social.msdn.microsoft.com/Forums/windows/en-US/home?category=windowsforms
    Best Regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Apache is throwing NLS_LANG error when connecting via HTTPS using a DAD

    Our Apache server is throwing this error
    [Wed May  6 11:53:52 2009] [alert] [client 69.246.251.48] [ecid: 223452213192,1] mod_plsql: Unable to issue alter session : alter session set nls_language= "AMERICAN" ""
    every time we connect to the server using HTTPS (the connection is using DAD -- see below for the DAD configuration).
    If we run the same connection using HTTP it works fine.
    Anyone know why this would happen and how we can correct it?
    DAD configuration:
    <Location /plshes>
    SetHandler pls_handler
    Order allow,deny
    Allow from All
    AllowOverride None
    PlsqlDatabaseUsername hes
    PlsqlDatabasePassword @<password here>=
    PlsqlDatabaseConnectString hpprd NetServiceNameFormat
    PlsqlNLSLanguage AMERICAN_AMERICA_WE8ISO8859P1
    PlsqlAuthenticationMode PerPackageOwa
    PlsqlSessionStateManagement StatelessWithFastResetPackageState
    PlsqlErrorStyle ModPlsqlStyle
    PlsqlAlwaysDescribeProcedure Off
    </Location>

    @AMN -- I'm sort of in your camp in that I don't think I should have to remove that line (which I've not been able to test yet, by the way). It's possible removing the line might bypass the issue since the statement will never get issued in the first place, but I will know there is some sort of issue between HTTP and HTTPS that is throwing this error.
    To answer your questions:
    1. The portal database (IASDB) returns:
    PARAMETER VALUE
    NLS_LANGUAGE AMERICAN
    NLS_TERRITORY AMERICA
    NLS_CHARACTERSET WE8ISO8859P1
    2. What do you mean by "pls/hes"?
    3b. Which type of OAS? Can you clarify this question? OAS 10g (which means IASDB is version 9i). We run Apache using Webcache. This OAS serves up a custom application written largely in Forms and PL/SQL. Hmmm, maybe that's not what you mean by this question , though...
    3a. Explain our SSL configuration -- I'll try. I configfured this 4 to 5 years ago and haven't changed it at all other than to update the Oracle Wallet certificates every year or two. We have a single physical server that hosts our infrsastructure and mid-tier components and nothing more. As mentioned, Apache is our webserver and we run Oracle's Webcache. The twist in our configuration (and probably the source of this issue we are having is somewhere in this twist) is that we use one physical server and one Apache web server to serve up both HTTP and HTTPS using a virtual host within Apache and then we deifned multiple sites and origin servers with several redirects on various ports so we can handle SSL and non-SSL connections depending on whether they come to us externally (inTERnet) or internally (inTRAnet).
    Webcache sites (hes2 is the server name):
    Site Origin Server
    hes2:7778 hes2:7779
    www.OurWebSite.com:80 hes2:8000
    hes2:80 hes2:7779
    sso.OurWebSite.com:80 hes2:7777
    www.OurWebSite.com:443 hes2:4444
    Webcache origin servers:
    hes2:7777 HTTP
    hes2:7779 HTTP
    hes2:8000 HTTP
    www.OurWebSite.com:4444 HTTPS
    Webcache listen ports:
    443 HTTPS -- has Oracle wallet defined for it
    7778 HTTP
    80 HTTP
    Navigating to http://www.OurWebSite.com will redirect to hes2:8000, which is our virtual server (configuration below). Navigating to https://www.OurWebSite.com will redirect to hes2:4444.
    There is probably a little more I need to provide to answer the "SSL configuration" question, but I think that is enough for now as this is already a long response -- my apologies for that.
    Virtual host configuration in httpd.conf:
    <VirtualHost *:8000>
    ServerName www.OurWebsiteName.com
    ServerAdmin [email protected]
    Port 80
    DocumentRoot "/u01/app1/oracle/10gasm/Apache/Apache/htdocs"
    RewriteEngine on
    RewriteOptions inherit
    RewriteCond %{HTTP_HOST}!^www\.OurWebSite\.com [NC]
    RewriteRule ^/(.*) http://www.OurWebSite.com/$1 [L,R]
    OssoIpCheck off
    OssoConfigFile /u01/app1/oracle/10gasm/Apache/Apache/conf/osso/osso-www.conf
    <Location /portal>
    Order Deny,Allow
    Deny from all
    Allow from (list of allowed IP addresses)
    </Location>
    <Location /forms>
    Order Deny,Allow
    Deny from all
    Allow from (list of allowed IP addresses)
    </Location>
    <Location /discoverer>
    Order Deny,Allow
    Deny from all
    Allow from (list of allowed IP addresses)
    </Location>
    <Directory /u01/app1/oracle/10gasm/Apache/Apache/htdocs/docs>
    Order Deny,Allow
    Deny from all
    Allow from (list of allowed IP addresses)
    </Directory>
    <Directory /u01/app1/oracle/10gasm/Apache/Apache/htdocs/images>
    Order Deny,Allow
    Deny from all
    Allow from (list of allowed IP addresses)
    </Directory>
    <Directory /u01/app1/oracle/10gasm/Apache/Apache/htdocs/optiform>
    Order Deny,Allow
    Deny from all
    Allow from (list of allowed IP addresses)
    </Directory>
    LogLevel error
    ErrorLog "|/u01/app1/oracle/10gasm/Apache/Apache/logs/www_error_log 43200"
    </VirtualHost>

  • Bursting Java API throws an error javax.mail.internet.ParseException

    Hi,
    I am using the BurstingProcessorEngine API call send emails to the employees of an organization.
    When i used the bursting file with the paramter of attachments to false, the email goes through. When i change the attachment parameter to yes in the bursting control file then program errors with an exception [oracle.apps.xdo.batch.DeliveryHelper][EXCEPTION] javax.mail.internet.ParseException
    following is how i the bursting control file i have used
    <?xml version="1.0" encoding="UTF-8" ?>
    <xapi:requestset xmlns:xapi="http://xmlns.oracle.com/oxp/xapi/" type="bursting">
    <xapi:request select="/PAYSLIP_REPORT/PAYSLIP">
    <xapi:delivery>
    <xapi:email server="exchange.corp.rghent.com" port="25" from="[email protected]">
    <xapi:message id="EMAIL1" to="${EMAIL}" content-type="text/html" attachment="true" subject="Test Email">
    Hello,
    Oracle Workflow
    </xapi:message>
    </xapi:email>
    </xapi:delivery>
    <xapi:document key="${EMPLOYEE_NUMBER}" output-type="PDF" output="${EMPLOYEE_NUMBER}.pdf" delivery="EMAIL1">
    <xapi:template type="rtf" location="xdo://PAY.XXEPUSDEPADVXML_PDF.en.US/?getSource=true" filter="">
    </xapi:template>
    </xapi:document>
    </xapi:request>
    </xapi:requestset>

    Hi,
    You need to change the output-type to lower case, ie "pdf".
    Regards,
    Rajeev

  • Gracefully throwing a error when the web service is down

    Guys,
    I have web service calls in my application. (through web service data control).
    My Appliacation throws exception when the web service is down. i want to my application to throw some meaningful error on the UI.
    How this can be acheived?

    Hi,
    you can use a custom error handler defined in the DataBindings.cpx file or use a declarative exception handler in ADF Controller
    http://download.oracle.com/docs/cd/E17904_01/web.1111/b31974/web_adv.htm#CIHHBEEJ
    http://download.oracle.com/docs/cd/E17904_01/web.1111/b31974/taskflows_complex.htm#BACJCBIC
    Frank

  • Error when instantiating MimeMessage

    My code reads:
    Properties props = System.getProperties();
    Session session = Session.getDefaultInstance(props);
    try{
    MimeMessage message = new MimeMessage(session, null);
    catch(MessagingException ex){
    ex.printStackTrace();
    It compiles fine, and it used to work until not many days ago. However, I have now reinstalled Windows and installed J2EE 1.4 beta. When running now the application, I get the following error refered to the line in which the MimeMessage is instantiated:
    java.lang.NoClassDefFoundError: com/sun/mail/util/SharedByteArrayInputStream
    Does anyone know what the cause could be?
    Thanks a lot in advance for any help.

    I don't really know how, but I managed to solve it.
    I had just installed J2EE 1.4 beta2. I uninstalled it and went back to J2EE 1.4 beta, and everything works just fine again.
    A J2EE 1.4 beta2 bug...?

  • Mail Throws IMAP Error When Accessing POP Server @ Gmail

    This is my first day with my new iMac and I must say that the most frustrating experience so far has been using Mail v 4.3
    I have several accounts, and never had a problem until now. In the setup, it assumes incorrectly that my Gmail account is IMAP, which is isn't... and never will be considering I don't need that redundant files on a server nonsense for my personal mail.... so after it discovers there is no IMAP connection on my Gmail and it fusses about it, I switch the setting to POP.
    Then when I try to download some e-mails later, it throws the following error: "Mail can't verify the identity of pop.gmail.com" ...because when you check the certificate error, you see it is querying imap.gmail.com instead of pop.gmail.com and hence getting a mismatch on the security certificate.
    So I can't download Gmail emails at all for the moment.
    I took a screen shot of the error message because I don't want some tech dude telling me I am imagining things or set it wrong.
    Other than giving up and agreeing with Mail that I should be using IMAP, I'm stuck.

    Ernie,
    I have already tried this. But I did it now, strictly following your suggestion. Here's what happens:
    After the first screen of account setup, Mail offers for Incoming mail server imap.gmail.com, which I duly change to pop.gmail.com.
    In the next screen I manually add the "@gmail.com" part of the address to the User Name field. Then click 'Create'.
    A looooooong wait later I can click on Create twice again and it's done, supposedly.
    But then, it fails to get anything from Google. The particular account shows up in Mail main window as a spinning gear forever, before giving up with no email downloaded. The account ends up showing in grey in the list of accounts, with the tilde ~ next to it.
    This has happened many times, like I said.
    Really frustrating.

  • Check database integrity throws 665 error when executing check database integrity task in SSMS.

    I have read all other cases that relate to this error and cannot get this to work. Running SQL Server 2012 sp1 on Windows server 2012 R2. Disk space and permissions are fine, but I get the error below when I try and use the check database integrity task
    within my maintenance plan on both system and user databases. I have researched this and fragmentation is not the issue. I'm lost at this point and would appreciate at least some steps to try. databases are not "read only" as I have read this may
    contribute to the problem. All other maintenance tasks run fine.
    Error message from SQL LOG
    Check Database integrity on Local server connection
    Databases: All system databases
    Task start: 2014-01-13T11:00:04.
    Task end: 2014-01-13T11:00:04.
    Failed:(-1073548784) Executing the query "DBCC CHECKDB(N'master', NOINDEX)
    " failed with the following error: "A database snapshot cannot be created because it failed to start.
    A database snapshot cannot be created because it failed to start.
    MODIFY FILE encountered operating system error 665(The requested operation could not be completed due to a file system limitation) while attempting to expand the physical file 'E:\\SQLdata\\MSSQL11.MSSQLSERVER\\MSSQL\\DATA\\master.mdf:MSSQL_DBCC9'.
    The database snapshot for online checks could not be created. Either the reason is given in a previous error or one of the underlying volumes does not support sparse files or alternate streams. Attempting to get exclusive access to run checks offline.
    The database could not be exclusively locked to perform the operation.
    Check statement aborted. The database could not be checked as a database snapshot could not be created and the database or table could not be locked. See Books Online for details of when this behavior is expected and what workarounds exist. Also see previous
    errors for more details.". Possible failure reasons: Problems with the query, "ResultSet" property not set correctly, parameters not set correctly, or connection not established correctly.
    Error Message from Log File Viewer in SSMS:
    Source: Check Database Integrity Task      Executing query "USE [ReportServer]  ".: 50% complete  End Progress  Error: 2014-01-13 11:31:54.92     Code: 0xC002F210    
    Source: Check Database Integrity Task Execute SQL Task     Description: Executing the query "DBCC CHECKDB(N'ReportServer')  WITH NO_INFOMSGS  " failed with the following error: "A database snapshot cannot be created
    because it failed to start.  A database snapshot cannot be created because it failed to start.  MODIFY FILE encountered operating system error 665(The requested operation could not be completed due to a file system limitation) while attempting to
    expand the physical file 'E:\SQLdata\MSSQL11.MSSQLSERVER\MSSQL\DATA\ReportServer.mdf:MSSQL_DBCC9'.  The database snapshot for online checks could not be created. Either the reason is given in a previous error or one of the underlying volumes does not
    support sparse files or alternate streams. Attempting to get exclusive access to run checks offline.  The database could not be exclusively locked to perform the operation.  Check statement aborted. The database could not be checked as a database
    snapshot could not be created and the database or table could not be locked. See Books Online for details of when this behavior is expected and what workarounds exist. Also see previous errors for more details.". Possible failure reasons: Problems with
    the query, "ResultSet" property not set correctly, parameters not set correctly, or connection not established correctly.  End Error  Progress: 2014-01-13 11:31:54.93     Source: Check Database Integrity Task     
    Executing query "USE [ReportServerTempDB]  ".: 50% complete  End Progress  Error: 2014-01-13 11:31:55.02     Code: 0xC002F210     Source: Check Database Integrity Task Execute SQL Task    
    Description: Executing the query "DBCC CHECKDB(N'ReportServerTempDB')  WITH NO_INFOM..." failed with the following error: "A database snapshot cannot be created because it failed to start.  A database snapshot cannot be created because
    it failed to start.  MODIFY FILE encountered operating system error 665(The requested operation could not be completed due to a file system limitation) while attempting to expand the physical file 'E:\SQLdata\MSSQL11.MSSQLSERVER\MSSQL\DATA\ReportServerTempDB.mdf:MSSQL_DBCC9'. 
    The database snapshot for online checks could not be created. Either the reason is given in a previous error or one of the underlying volumes does not support sparse files or alternate streams. Attempting to get exclusive access to run checks offline.".
    Possible failure reasons: Problems with the query, "ResultSet" property not set correctly, parameters not set correctly, or connection not established correctly.  End Error  Progress: 2014-01-13 11:31:55.02     Source:
    Check Database Integrity Task      Executing query "USE [AddressUpload]  ".: 50% complete  End Progress  Error: 2014-01-13 11:31:55.13     Code: 0xC002F210     Source:
    Check Database Integrity Task Execute SQL Task     Description: Executing the query "DBCC CHECKDB(N'AddressUpload')  WITH NO_INFOMSGS  " failed with the following error: "A database snapshot cannot be created because
    it failed to start.  A database snapshot cannot be created because it failed to start.  MODIFY FILE encountered operating system error 665(The requested operation could not be completed due to a file system limitation) while attempting to expand
    the physical file 'E:\SQLData\MSSQL11.MSSQLSERVER\MSSQL\DATA\database1.mdf:MSSQL_DBCC9'.  The database snapshot for online checks could not be created. Either th...  The package execution fa...  The step failed.

    ReFS is NOT supported in use with SQL Server 2012. Once such item, which you've stumbled upon is the fact that alternate streams and sparse files are not implemented in ReFS and thus these issues are caused. You *could* force the checkdb to execute by using
    WITH TABLOCKX but that'll require exclusive access to the database for the duration of the checkdb scan and that's not something I would advise to do.
    Sean Gallardy | Blog |
    Twitter

  • Call to ALDP 3.2 dataservice using  Mediator API throwing validation error

    Hi,
    Call to ALDP 3.2 dataservice using Mediator API with request doc having xsi:type (eg: <ns1:searchBy xsi:type="ns2:ImplXXXIDType">) is throwing validation saying that it is unable to resolve the namespace ns2 .The namespace ns2 is defined at root level. If the namespace ns2 is defined at the element level like this
    <ns1:searchBy xsi:type="ns2:ImplXXXIDType" xmlns:ns2="http://www.xxx.com/xyz/datastructure/1/"> it is working fine. We never had this issue with ALDSP 2.5 Mediator API.
    Any suggestions or help would be most welcome!
    Thanks,
    Gkumar

    Ok. Now you need to put enough information on the case for someone to investigate. Please attach instructions on how to create a data space that will show this problem. Since customer support will not have your database etc. , if you just create an empty ds function in the same ds as the one that has the problem, like so...
    function dummyFunction() as element(....)* {
    and then replace the () with the output from the Test View so it looks like...
    function dummyFunction() as element(....)* {
    <myElement ....>
    <otherElement ...>
    </myElement>
    Once you have a dummy function like that which demonstrates the problem, export your dataspace and attach it to the case.
    If you anticipate some of the questions that customer support is going ot ask you (including providing a reproducer), you will save yourself many days (or weeks) of time.

  • Throwing an error when a DFF is NULL

    The requirement is that if the user does not select a value for a displayed DFF in an OAF page an error is displayed i.e. the field is required. As the item type is flex it does not have a required property therefore i was looking to do this in JDeveloper. We can't make the DFF required via system administrator as the form should not have the field as required.
    Which file should i add a method to in order to enable this.
    Would it be a good idea to extend the VO and add the method to the row impl java file?
    We have upgraded to R12.1.3 and in the past extending the VO, adding a method to the row impl java has worked. But only when the user clicks the next button first time is the error message displayed. if the user clicks the next button again without making any changes to the OAF page it allows the user to proceed. i.e. The method is only invoked once and not each time the user clicks the next button.
    Any advice on the correct approach is appreciated.

    yes we want to make the dff segment mandatory in oaf.
    We don't want it mandatory on the form however and therefore need to do it via oaf
    Thanks.

Maybe you are looking for

  • Security Question Regarding Application Synchronization

    In the case of a user with one iTunes account being used on multiple iOS devices by multiple members of that users family, is there a way to specify one app on one device that should not replicate to other devices as it's business use and not for the

  • Year-old 4S freezes up--what to do?

    My year-old iPhone 4S had given me no trouble until three weeks ago, when it suddenly froze in the Charlotte, NC airport. Didn't respond to screen touch, nor to the Home or top power button. Just as I was about to look for a safety pin or toothpick t

  • Change fields in avl

    Hey, I'm trying to create a simple alv list but i'm not able to change anything.  I'm surfing already a whole day on this site and still didn't find the awnser.  So, what do i want to do.  I have a database-table created.  With another program i fill

  • Double Invoice Check - Against the Delivery Note/ Bill #

    Dear All, I have a requirement here, Bit different from the Regular Double Invoice Check, I will receive the Material A, 10 different times, will do the GR 10 times & enter the Bill # & Challan # during GR. While posting the Invoice i want the system

  • Can SQL Developer connect to ANY third party database

    As of my investigations, SQL Developer can currently connect only to Oracle, MSSQL, MySQL and Access. What about connecting to any database using JDBC? Is this possible / planned? I'm currently interested in PostgreSQL. Thanks, Viliam