"Please ensure that Classpath is set properly" then run adclonectx.pl

Hello,
I am working on cloning Oracle Home. When running clone context to create context file on the target system:
[oracle@cvlx10 bin]$ perl adclonectx.pl contextfile=/v01/vdev/11.1.0/vdev/appsutil/VPRD3_cvlx30.xml template=/v01/vdev/11.1.0/vdev/appsutil/template/adxdbctx.tmp pairsfile=/v01/vdev/11.1.0/vdev/appsutil/clone/pairsfile.txt
and received this message
Please ensure that Classpath is set properly
I am new to cloning, can anyone give me some idea where to check this? Thanks a lot.

Please post the details of the application release, database version and OS.
I am working on cloning Oracle Home. When running clone context to create context file on the target system:
[oracle@cvlx10 bin]$ perl adclonectx.pl contextfile=/v01/vdev/11.1.0/vdev/appsutil/VPRD3_cvlx30.xml template=/v01/vdev/11.1.0/vdev/appsutil/template/adxdbctx.tmp pairsfile=/v01/vdev/11.1.0/vdev/appsutil/clone/pairsfile.txt
and received this message
Please ensure that Classpath is set properlyWhat does "echo $CLASSPATH" return?
I am new to cloning, can anyone give me some idea where to check this? Thanks a lot.Please make sure you follow all the steps in Rapid Clone doc -- Rapid Clone Documentation Resources For Release 11i and 12 [ID 799735.1]
Thanks,
Hussein

Similar Messages

  • Changing Applications hostname: Please ensure that Classpath is set properl

    Hi,
    I am trying to change the applications hostname on R12.
    I am following the note "How to change the hostname of an Applications Tier using AutoConfig [ID 341322.1].
    I have already did the step 1: Deregister the current Applications server using adgentns.pl
    But, when I try to execute step 2: Update the Autoconfig Context file using adclonectx.pl, I am getting the following error:
    Copyright (c) 2002 Oracle Corporation
    Redwood Shores, California, USA
    Oracle Applications Rapid Clone
    Version 12.0.0
    adclonectx Version 120.23.12010000.1
    *Please ensure that Classpath is set properly*
    The value of CLASSPATH is the following:
    $ echo $CLASSPATH
    /ebs12/apps/tech_st/10.1.3/appsutil/jdk/lib/dt.jar:
    /ebs12/apps/tech_st/10.1.3/appsutil/jdk/lib/tools.jar:
    /ebs12/apps/tech_st/10.1.3/appsutil/jdk/jre/lib/rt.jar:
    /ebs12/apps/apps_st/comn/java/lib/appsborg.zip:
    /ebs12/apps/tech_st/10.1.2/forms/java:
    /ebs12/apps/tech_st/10.1.2/forms/java/frmall.jar:
    /ebs12/apps/tech_st/10.1.2/jlib/ewt3.jar:
    /ebs12/apps/tech_st/10.1.2/j2ee/OC4J_BI_Forms/applications/formsapp/formsweb/WEB-INF/lib/frmsrv.jar:
    /ebs12/apps/apps_st/comn/java/classes
    I opened the file adclonectx.pl and i can see that the message *Please ensure that Classpath is set properly* is displayed from only one place:
    sub setJlibPath {
    setADJavaPath();
    setJDBCPath();
    setXMLParserPath();
    $CLASSPATH = $JDBCCLASSES . $cpDel . $XMLPARSERV2 . $cpDel . $ADCONFIG;
    # print "\nCLASSPATH = $CLASSPATH\n";
    if ( $ADCONFIG eq "" or $XMLPARSERV2 eq ""
    or $JDBCCLASSES eq "") {
    print "Please ensure that Classpath is set properly\n";
    die "\n";
    The error message displayed is related to the well formed variable classpath mentioned in the above procedure.
    It is formed by the concatenated values of variables JDBCCLASSES, XMLPARSERV2 and ADCONFIG. Those variables are set in the following piece of code:
    # setADJavaPath
    sub setADJavaPath {
    #try to get adconfig under stage area
    if ($ADCONFIG eq "") {
    $ADCONFIG = (-e "$CMDDIR/../jlib/java") ? "$CMDDIR/../jlib/java" : "";
    #try to get adconfig under JAVA_TOP if it is set
    if ($ADCONFIG eq "") {
    $ADCONFIG = (-e "$ENV{JAVA_TOP}/oracle/apps/ad") ? "$ENV{JAVA_TOP}" : "";
    if ($ADCONFIG eq "") {
    # This could be a case of platform migration where we dont have the classes anywhere except in $AD_TOP/java/jar/adxlib.jar
    $ADCONFIG =
    (-e "$CMDDIR/../java/jar/adxlib.jar")
    ? "$CMDDIR/../java/jar/adxlib.jar"
    # setJDBCPath
    sub setJDBCPath {
    #try to get ojdbc14.jar under stage area
    #Bugfix 6773412
    #for 11g database ojdbc5.jar should be considered
    if ($JDBCCLASSES eq "") {
    $JDBCCLASSES =
    (-e "$CMDDIR/../jlib/ojdbc5.jar")
    ? "$CMDDIR/../jlib/ojdbc5.jar" : "";
    if ($JDBCCLASSES eq "") {
    $JDBCCLASSES =
    (-e "$CMDDIR/../jlib/ojdbc14.jar")
    ? "$CMDDIR/../jlib/ojdbc14.jar" : "";
    if ($JDBCCLASSES eq "") {
    $JDBCCLASSES =
    (-e "$CMDDIR/../jlib/jdbc14.jar")
    ? "$CMDDIR/../jlib/jdbc14.jar" : "";
    if ($JDBCCLASSES eq "") {
    $JDBCCLASSES =
    (-e "$CMDDIR/../jlib/jdbc14.zip")
    ? "$CMDDIR/../jlib/jdbc14.zip" : "";
    #try to get jdbc under JAVA_TOP if it is set
    if ($JDBCCLASSES eq "") {
    $JDBCCLASSES =
    (-e "$ENV{s_af_jlib}/jdbc14.zip")
    ? "$ENV{s_af_jlib}/jdbc14.zip"
    # setXMLParserPath
    sub setXMLParserPath {
    #try to get xmlparserv2 under stage area
    if ($XMLPARSERV2 eq "") {
    $XMLPARSERV2 =
    (-e "$CMDDIR/../jlib/xmlparserv2-904.zip")
    ? "$CMDDIR/../jlib/xmlparserv2-904.zip" : "";
    if ($XMLPARSERV2 eq "") {
    $XMLPARSERV2 =
    (-e "$CMDDIR/../jlib/xmlparserv2.zip")
    ? "$CMDDIR/../jlib/xmlparserv2.zip" : "";
    if ($XMLPARSERV2 eq "") {
    $XMLPARSERV2 =
    (-e "$CMDDIR/../jlib/xmlparserv2.jar")
    ? "$CMDDIR/../jlib/xmlparserv2.jar" : "";
    #try to get xmlparser under JAVA_TOP if it is set
    if ($XMLPARSERV2 eq "") {
    $XMLPARSERV2 =
    (-e "$ENV{s_af_jlib}/xmlparserv2-904.zip")
    ? "$ENV{s_af_jlib}/xmlparserv2-904.zip"
    The issue is that the 3 procedures mentioned above can't find the files thaey are looking for, and finally the 3 variables are set in null.
    I found those files in other locations:
    XMLPARSERV2=/ebs12/apps/tech_st/10.1.3/lib/xmlparserv2.jar
    JDBCCLASSES=/ebs12/apps/tech_st/10.1.3/jdbc/lib/ojdbc14.jar
    ADCONFIG=/ebs12/apps/apps_st/appl/ad/12.0.0/java/jar/adxlib.jar
    I run export for them:
    export XMLPARSERV2=/ebs12/apps/tech_st/10.1.3/lib/xmlparserv2.jar
    export JDBCCLASSES=/ebs12/apps/tech_st/10.1.3/jdbc/lib/ojdbc14.jar
    export ADCONFIG=/ebs12/apps/apps_st/appl/ad/12.0.0/java/jar/adxlib.jar
    and finally I execute again the step 2 of the procedure to change the hostname ... but the error is the same:
    adclonectx Version 120.23.12010000.1
    *Please ensure that Classpath is set properly*
    Do you know how to solve this error ?
    Thanks in advance
    Regards,
    Sergio Maestri
    Edited by: Sergio Maestri on 06-dic-2011 7:13

    >
    What echo $CLASSPATH return?$ echo $CLASSPATH
    /ebs12/apps/tech_st/10.1.3/appsutil/jdk/lib/dt.jar:
    /ebs12/apps/tech_st/10.1.3/appsutil/jdk/lib/tools.jar:
    /ebs12/apps/tech_st/10.1.3/appsutil/jdk/jre/lib/rt.jar:
    /ebs12/apps/apps_st/comn/java/lib/appsborg.zip:
    /ebs12/apps/tech_st/10.1.2/forms/java:
    /ebs12/apps/tech_st/10.1.2/forms/java/frmall.jar:
    /ebs12/apps/tech_st/10.1.2/jlib/ewt3.jar:
    /ebs12/apps/tech_st/10.1.2/j2ee/OC4J_BI_Forms/applications/formsapp/formsweb/WEB-INF/lib/frmsrv.jar:
    /ebs12/apps/apps_st/comn/java/classes
    But, the message displayed is related to the procedure "setJlibPath" contained inside the file "adclonectx.pl"
    sub setJlibPath {
    setADJavaPath();
    setJDBCPath();
    setXMLParserPath();
    $CLASSPATH = $JDBCCLASSES . $cpDel . $XMLPARSERV2 . $cpDel . $ADCONFIG;
    # print "\nCLASSPATH = $CLASSPATH\n";
    if ( $ADCONFIG eq "" or $XMLPARSERV2 eq ""
    or $JDBCCLASSES eq "") {
    print "Please ensure that Classpath is set properly\n";
    die "\n";
    else {
    The above procedure is called always you execute adclonectx.pl, and the reference CLASSPATH in the message error is about the variable CLASSPATH that the mentioned procedure try to set a value. It's not related to the ambient variable CLASSPATH... at least is what I understand ..
    I think this is a bug, because the files needed to find in order to set the values of DBCCLASSES, XMLPARSERV2 and ADCONFIG variables are located in other places.
    >
    Also see:
    https://kr.forums.oracle.com/forums/thread.jspa?threadID=2271869
    I saw it, but it's related to database hostname and it doesn't content any solution to the issue ...

  • Please ensure that the applicationhost.config file is correct and recommit the last configuration changes made

    I am receiving event ID 5189 on Server 2008 R2, IIS 7.5.  I experience this error across a number of servers, each of which is running only the default web site, but have 600+ applications running on the default web site.  Each application
    has its own application pool.  My point is, the applicationhost.config is rather large.
    I have seen a number of posts on this error message, but my issue itself seems to differ somewhat.  I am aware of a similar post: http://social.technet.microsoft.com/Forums/en-US/3128ee93-1319-4cc2-9257-003512caf476/event-id-5189-microsoftwindowswas?forum=exchangesvrgeneral
    which points to KB http://technet.microsoft.com/en-us/library/cc734988%28v=ws.10%29.aspx
    However, in my case, it doesn't seem that the extreme measures for this resolution are required.  The error usually indicates a corrupted applicationhost.config that must be manually fixed, or otherwise the WAS service needs to be restarted, or the
    server itself, etc.
    In my case, the issue can usually be fixed by an application pool recycle, or at worst a stop/start.  I have an application which is sensitive to recycles, and so we do not have periodic recycle events configured for this application, which is the bulk
    of the applications on the servers.  It seems to me that this issue is usually caused by the application being in use when there is an applicationhost.config change.
    For instance, we have one application that we deploy using msdeploy.  We found that when we ran an installation for this application via msdeploy, we were receiving this event, and we would subsequently get 500 errors in the application (sometimes the
    application pool corresponds to that which is identified in the event log, sometimes it doesn't).    It seems like applications that were being hit at the time the applicationhost.config was modified by msdeploy were affected.  In an attempt
    to correct this, we moved from msdeploy to a batch file containing appcmd commands.  This also did not resolve the issue.
    I have another application which is installed using PowerShell commandlets.  We started to notice that this script also caused the issue to occur on occasion.  As I continued to identify different processes that resulted in the same issue, I came
    to the conclusion that this is likely due to any change in the applicationhost.config.  I assume the issue is that the applicationhost.config is modified during a read operation to the file by the application pool, or WAS service, and that the recycle
    event, which corrects the issue, forces a re-read of the applicationhost.config, resolving the bad-read issue.
    Has anyone else experienced this, or do you have any recommendations?  My current work-around is to not install any applications during peak hours, and performing an IISRESET after installs are completed, to ensure application stability.
    Message              : The Windows Process Activation Service failed to generate an application pool config file for application pool 'myAppPool'. The error type is '7'. To resolve this issue,
    please ensure that the applicationhost.config file is correct and recommit the last configuration changes made. The data field contains the error number.
    Id                   : 5189
    Version              : 0
    Qualifiers           : 49152
    Level                : 2
    Task                 : 0
    Opcode               : 0
    Keywords             : 36028797018963968
    RecordId             : 324108
    ProviderName         : Microsoft-Windows-WAS
    ProviderId           : 524b5d04-133c-4a62-8362-64e8edb9ce40
    LogName              : System
    ProcessId            : 0
    ThreadId             : 0
    MachineName          : MyComputer
    TimeCreated          : 3/3/2014 9:03:24 PM
    ContainerLog         : system
    MatchedQueryIds      : {}
    Bookmark             : System.Diagnostics.Eventing.Reader.EventBookmark
    LevelDisplayName     : Error
    KeywordsDisplayNames : {Classic}
    Properties           : {System.Diagnostics.Eventing.Reader.EventProperty, System.Diagnostics.Eventing.Reader.EventProperty, System.Diagnostics.Eventing.Reader.EventProperty}

    As an update to this issue, after doing some research, it appears the behavior is related to a new feature in IIS7 called Application Pool Isolation (http://technet.microsoft.com/en-us/library/dd163536.aspx).
    This new feature prevents cross-application spillage by isolating the configuration for each application pool in IIS.  So in reality, an application pool never actually reads the applicationhost.config - that is just a master file, and each time it
    is update, it triggers a change to the individual application pool configuration files, located in C:\inetpub\temp\apppools.
    We did try setting Advanced Settings > Disable Recycling for Configuration Change to true, but after an IIS reset we were still able to reproduce the issue - worse actually, because in our test program, which continually hits the web
    service, and also continually makes apphost.config changes, when the two events collide, the 500.19 issue precipitates; but after an additional change to the apphost.config, it seems that the additional changes will actually correct the issue (seemingly forcing
    another recycle, which is also how we resolve the issue manually); after making this setting adjustment, once the 500.19 issue precipitates, additional changes to the apphost.config does not correct the problem, only a manual recycle corrects it.  This
    is the recycling.disallowRotationOnConfigChange property of the app pool.  We also set the setting for recycling.disallowOverlappingRotation to True as well, with the same result.
    We ARE able to prevent this issue by setting the C:\inetpub\temp\apppools\myapppool\myapppool.config to read-only, but for obvious reasons, this is not a desired work-around.
    It seems like what is happening is that any change to the ApplicationHost.config is resulting in each of the C:\inetpub\temp\apppools temp application pool config files being updated as well, in addition to triggering an application pool recycle.  It
    seems to me the desired behavior would be that these files are only updated if the applicationhost.config changes are specific to that application pool - but that doesn't seem to be the behavior.
    After turning on failed request tracing, I was able to narrow the error down more:
    ModuleName
    AnonymousAuthenticationModule
    Notification
    2
    HttpStatus
    500
    HttpReason
    Internal Server Error
    HttpSubStatus
    19
    ErrorCode
    2147942413
    ConfigExceptionInfo
    \\?\C:\inetpub\application\application\web.config ( 9) :Failed to decrypt attribute 'password'
    Notification
    AUTHENTICATE_REQUEST
    ErrorCode
    The data is invalid. (0x8007000d)
    This seems to be pretty static.  Trying to look into possible causes of this issue.

  • After i restoring the vault and finish the restore the aperture pop up icon said : a problem was encountered when attempting to restore from this vault. Please ensure that the has the appropriate permissions and try again.

    after i restoring the vault and finish the restore the aperture pop up icon said : a problem was encountered when attempting to restore from this vault. Please ensure that the has the appropriate permissions and try again.  

    Try this:
    #Go to '''Tools '''| '''Options '''| '''Advanced '''and click the '''Network '''tab.
    #In the Offline Storage menu, click the '''Clear Now''' button.
    #In the location bar, type '''about:config '''and hit Enter.
    #In the filter at the top, type: '''keyword.URL'''
    #Double click it and remove whatever's in there. You'll see it revert to "Default" and "String".
    #Go to File | Exit
    #Restart Firefox and go to the page you want to set as your homepage
    #Go to '''Tools '''| '''Options '''| '''General'''.
    #Make sure it says "''Show My Homepage''" in the first dropdown menu.
    #Click the button called "'''Use Current Pages'''" to set the homepage to the one you have on the screen.

  • HtmlToPdf Error (ALC-PDG-015-013-Acrobat cannot open the file. Please ensure that it is not password

    Hello,
    We have LiveCycle 8.x with jBoss. It works ok. The server (Windows 2003) can browses to the link, but the link gives error in the LiveCycle Console Admministrator when I use the "HtmlToPdf" service.
    JBoss service is started like Local System. I don´t know what to do
    This is the error trace:
    2012-02-06 10:32:46,881 INFO  [com.adobe.service.ProcessResource] BMC508: Service HtmlToPdfSvc: Native process PID = 4708
    2012-02-06 10:32:58,426 INFO  [com.adobe.pdfg.GeneratePDFImpl] ALC-PDG-001-028-http://repsolnet/pubs/es_es/home/home.aspx: Job Completion Status: Failed
    2012-02-06 10:32:58,428 INFO  [com.adobe.pdfg.GeneratePDFImpl] ALC-PDG-001-025-http://repsolnet/pubs/es_es/home/home.aspx: Time Job Completed: 2/6/12 10:32
    AM for job = 503c34-7d0386-30aeb9-b17f60-2885dd-9ed84a
    2012-02-06 10:32:58,428 INFO  [com.adobe.pdfg.GeneratePDFImpl] ALC-PDG-001-030-http://repsolnet/pubs/es_es/home/home.aspx: Waiting time in queue: 0 ms for
    job = 503c34-7d0386-30aeb9-b17f60-2885dd-9ed84a
    2012-02-06 10:32:58,429 INFO  [com.adobe.pdfg.GeneratePDFImpl] ALC-PDG-001-026-http://repsolnet/pubs/es_es/home/home.aspx: Time of Job Execution: 12,682 ms
    for job = 503c34-7d0386-30aeb9-b17f60-2885dd-9ed84a
    2012-02-06 10:32:58,430 ERROR [com.adobe.pdfg.GeneratePDFImpl] ALC-PDG-001-000-
    Error message from the primary converter:
    ALC-PDG-015-013-Acrobat cannot open the file. Please ensure that it is not password protected or a corrupt PDF document.
    Error message from the fallback converter:
    ALC-PDG-052-020-HTML Converter could not convert the given file or URL.
    2012-02-06 10:32:58,447 ERROR [com.adobe.workflow.AWS] An exception was thrown with name com.adobe.livecycle.generatepdf.client.ConversionException message:
    Error message from the primary converter:
    ALC-PDG-015-013-Acrobat cannot open the file. Please ensure that it is not password protected or a corrupt PDF document.
    Error message from the fallback converter:
    ALC-PDG-052-020-HTML Converter could not convert the given file or URL. while invoking service GeneratePDFService and operation HtmlToPDF2 and no fault
    routes were found to be configured.
    2012-02-06 10:32:58,447 ERROR [com.adobe.idp.workflow.dsc.invoker.WorkflowDSCInvoker] An exception was thrown with name
    com.adobe.livecycle.generatepdf.client.ConversionException message:
    Error message from the primary converter:
    ALC-PDG-015-013-Acrobat cannot open the file. Please ensure that it is not password protected or a corrupt PDF document.
    Error message from the fallback converter:
    ALC-PDG-052-020-HTML Converter could not convert the given file or URL. while invoking service GeneratePDFService and operation HtmlToPDF2 and no fault
    routes were found to be configured.
    2012-02-06 10:32:58,460 ERROR [com.adobe.workflow.AWS] An exception was thrown with name com.adobe.livecycle.generatepdf.client.ConversionException message:
    Error message from the primary converter:
    ALC-PDG-015-013-Acrobat cannot open the file. Please ensure that it is not password protected or a corrupt PDF document.
    Error message from the fallback converter:
    ALC-PDG-052-020-HTML Converter could not convert the given file or URL. while invoking service GeneratePDFService and operation HtmlToPDF2 and no fault
    routes were found to be configured.
    Thanks for help me.

    What happens if you try converting the page using Acrobat?  Is this a public page or internal, if public can you provide the url.

  • Errors when creating a PDF: Failed to create a Data Manager. Please ensure that the Document Services Data Manager service is running

    When a PDF is created through the web portal BW gives the following error:
    Log ID: 00505688424200660000001000001D940005122BD8D83308
    Initial cause
    Message: Processing exception during a "Render" operation.
    Request start time: Thu Mar 26 08:20:15 CET 2015
    com.adobe.ProcessingException: Failed to create a Data Manager. Please ensure that the Document Services Data Manager service is running
    #1.5 #00505688424200690000001200001D940005122BD8D7D9B9#1427354415038#com.adobe.service.J2EEConnectionFactoryManagerPeerImpl#com.adobe/AdobeDocumentServices#com.adobe.service.J2EEConnectionFactoryManagerPeerImpl#ADSUSER#101#SAP J2EE Engine JTA Transaction : [03bffffffb7ffffffb2008ffffffe9]#P0VAPPSAPB1_BWP_3913650##5ebdcfeed38811e4ada90000003bb7b2#SAPEngine_Application_Thread[impl:3]_35##0#0#Fatal##Plain###Failed to allocate a connection due to an exception (the full stack trace is logged below): org.omg.CORBA.COMM_FAILURE: Could not connect to host and port localhost:3333, useSSL=false. There are not working dispatcher nodes.  vmcid: SUN  minor code: 2  completed: No#
    #1.5 #00505688424200690000001300001D940005122BD8D7DC9A#1427354415039#com.adobe.service.J2EEConnectionFactoryManagerPeerImpl#com.adobe/AdobeDocumentServices#com.adobe.service.J2EEConnectionFactoryManagerPeerImpl#ADSUSER#101#SAP J2EE Engine JTA Transaction : [03bffffffb7ffffffb2008ffffffe9]#P0VAPPSAPB1_BWP_3913650##5ebdcfeed38811e4ada90000003bb7b2#SAPEngine_Application_Thread[impl:3]_35##0#0#Fatal##Plain###org.omg.CORBA.COMM_FAILURE: Could not connect to host and port localhost:3333, useSSL=false. There are not working dispatcher nodes.  vmcid: SUN  minor code: 2  completed: No
    org.omg.CORBA.COMM_FAILURE: Could not connect to host and port localhost:3333, useSSL=false. There are not working dispatcher nodes.  vmcid: SUN  minor code: 2  completed: No
      at com.sap.engine.services.iiop.server.CommunicationLayerImpl.retrieveDispAndConnID(CommunicationLayerImpl.java:544)
      at com.sap.engine.services.iiop.server.CommunicationLayerImpl.getDelegate(CommunicationLayerImpl.java:608)
      at com.sap.engine.services.iiop.internal.ClientORB.getDelegate(ClientORB.java:579)
      at com.sap.engine.services.iiop.CORBA.CORBAObject.<init>(CORBAObject.java:49)
      at com.sap.engine.services.iiop.CORBA.IOR.read_object(IOR.java:111)
      at com.sap.engine.services.iiop.internal.ClientORB.string_to_object(ClientORB.java:536)
      at com.sap.engine.system.ORBProxy.string_to_object(ORBProxy.java:290)
      at com.adobe.service.J2EEConnectionFactoryManagerPeerImpl.getConnection(J2EEConnectionFactoryManagerPeerImpl.java:140)
      at com.adobe.ads.remote.ServiceLocator.lookupDataManager(Unknown Source)
      at com.adobe.ads.remote.ServiceLocator.getDataManager(Unknown Source)
      at com.adobe.ads.remote.EJB_DataManager.getDataManager(Unknown Source)
      at com.adobe.ads.remote.EJB_DataManager.<init>(Unknown Source)
      at com.adobe.ads.request.Request.getDataManager(Unknown Source)
      at com.adobe.ads.operation.Render.execute(Unknown Source)
      at com.adobe.ads.operation.ADSOperation.doWork(Unknown Source)
      at com.adobe.ads.request.Request.processOperations(Unknown Source)
      at com.adobe.ads.request.Request.process(Unknown Source)
      at com.adobe.AdobeDocumentServicesEJB.processRequest(Unknown Source)
      at com.adobe.AdobeDocumentServicesEJB.rpData(Unknown Source)
      at com.adobe.AdobeDocumentServicesLocalLocalObjectImpl0_0.rpData(AdobeDocumentServicesLocalLocalObjectImpl0_0.java:120)
      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      at java.lang.reflect.Method.invoke(Method.java:331)
      at com.sap.engine.services.webservices.runtime.EJBImplementationContainer.invokeMethod(EJBImplementationContainer.java:126)
      at com.sap.engine.services.webservices.runtime.RuntimeProcessor.process(RuntimeProcessor.java:174)
      at com.sap.engine.services.webservices.runtime.RuntimeProcessor.process(RuntimeProcessor.java:81)
      at com.sap.engine.services.webservices.runtime.servlet.ServletDispatcherImpl.doPost(ServletDispatcherImpl.java:90)
      at SoapServlet.doPost(SoapServlet.java:47)
      at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
      at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
      at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)
      at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
      at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:386)
      at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:364)
      at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:1060)
      at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:265)
      at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
      at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175)
      at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
      at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
      at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
      at java.security.AccessController.doPrivileged(Native Method)
      at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:104)
      at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:176)
    #1.5 #00505688424200690000001500001D940005122BD8D7DDF5#1427354415039#com.adobe.AdobeDocumentServices#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServices#ADSUSER#101#SAP J2EE Engine JTA Transaction : [03bffffffb7ffffffb2008ffffffe9]#P0VAPPSAPB1_BWP_3913650##5ebdcfeed38811e4ada90000003bb7b2#SAPEngine_Application_Thread[impl:3]_35##0#0#Error#1#/System/Server#Plain###Exception getting DataManager reference, trying again...#
    #1.5 #00505688424200690000001700001D940005122BD8D7EF1B#1427354415044#com.adobe.service.J2EEConnectionFactoryManagerPeerImpl#com.adobe/AdobeDocumentServices#com.adobe.service.J2EEConnectionFactoryManagerPeerImpl#ADSUSER#101#SAP J2EE Engine JTA Transaction : [03bffffffb7ffffffb2008ffffffe9]#P0VAPPSAPB1_BWP_3913650##5ebdcfeed38811e4ada90000003bb7b2#SAPEngine_Application_Thread[impl:3]_35##0#0#Fatal##Plain###Failed to allocate a connection due to an exception (the full stack trace is logged below): org.omg.CORBA.COMM_FAILURE: Could not connect to host and port localhost:3333, useSSL=false. There are not working dispatcher nodes.  vmcid: SUN  minor code: 2  completed: No#
    #1.5 #00505688424200690000001800001D940005122BD8D7F204#1427354415045#com.adobe.service.J2EEConnectionFactoryManagerPeerImpl#com.adobe/AdobeDocumentServices#com.adobe.service.J2EEConnectionFactoryManagerPeerImpl#ADSUSER#101#SAP J2EE Engine JTA Transaction : [03bffffffb7ffffffb2008ffffffe9]#P0VAPPSAPB1_BWP_3913650##5ebdcfeed38811e4ada90000003bb7b2#SAPEngine_Application_Thread[impl:3]_35##0#0#Fatal##Plain###org.omg.CORBA.COMM_FAILURE: Could not connect to host and port localhost:3333, useSSL=false. There are not working dispatcher nodes.  vmcid: SUN  minor code: 2  completed: No
    org.omg.CORBA.COMM_FAILURE: Could not connect to host and port localhost:3333, useSSL=false. There are not working dispatcher nodes.  vmcid: SUN  minor code: 2  completed: No
      at com.sap.engine.services.iiop.server.CommunicationLayerImpl.retrieveDispAndConnID(CommunicationLayerImpl.java:544)
      at com.sap.engine.services.iiop.server.CommunicationLayerImpl.getDelegate(CommunicationLayerImpl.java:608)
      at com.sap.engine.services.iiop.internal.ClientORB.getDelegate(ClientORB.java:579)
      at com.sap.engine.services.iiop.CORBA.CORBAObject.<init>(CORBAObject.java:49)
      at com.sap.engine.services.iiop.CORBA.IOR.read_object(IOR.java:111)
      at com.sap.engine.services.iiop.internal.ClientORB.string_to_object(ClientORB.java:536)
      at com.sap.engine.system.ORBProxy.string_to_object(ORBProxy.java:290)
      at com.adobe.service.J2EEConnectionFactoryManagerPeerImpl.getConnection(J2EEConnectionFactoryManagerPeerImpl.java:140)
      at com.adobe.ads.remote.ServiceLocator.lookupDataManager(Unknown Source)
      at com.adobe.ads.remote.ServiceLocator.getDataManager(Unknown Source)
      at com.adobe.ads.remote.EJB_DataManager.getDataManager(Unknown Source)
      at com.adobe.ads.remote.EJB_DataManager.<init>(Unknown Source)
      at com.adobe.ads.request.Request.getDataManager(Unknown Source)
      at com.adobe.ads.operation.Render.execute(Unknown Source)
      at com.adobe.ads.operation.ADSOperation.doWork(Unknown Source)
      at com.adobe.ads.request.Request.processOperations(Unknown Source)
      at com.adobe.ads.request.Request.process(Unknown Source)
      at com.adobe.AdobeDocumentServicesEJB.processRequest(Unknown Source)
      at com.adobe.AdobeDocumentServicesEJB.rpData(Unknown Source)
      at com.adobe.AdobeDocumentServicesLocalLocalObjectImpl0_0.rpData(AdobeDocumentServicesLocalLocalObjectImpl0_0.java:120)
      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      at java.lang.reflect.Method.invoke(Method.java:331)
      at com.sap.engine.services.webservices.runtime.EJBImplementationContainer.invokeMethod(EJBImplementationContainer.java:126)
      at com.sap.engine.services.webservices.runtime.RuntimeProcessor.process(RuntimeProcessor.java:174)
      at com.sap.engine.services.webservices.runtime.RuntimeProcessor.process(RuntimeProcessor.java:81)
      at com.sap.engine.services.webservices.runtime.servlet.ServletDispatcherImpl.doPost(ServletDispatcherImpl.java:90)
      at SoapServlet.doPost(SoapServlet.java:47)
      at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
      at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
      at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)
      at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
      at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:386)
      at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:364)
      at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:1060)
      at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:265)
      at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
      at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175)
      at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
      at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
      at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
      at java.security.AccessController.doPrivileged(Native Method)
      at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:104)
      at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:176)
    #1.5 #00505688424200690000001900001D940005122BD8D7F530#1427354415045#com.adobe.AdobeDocumentServices#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServices#ADSUSER#101#SAP J2EE Engine JTA Transaction : [03bffffffb7ffffffb2008ffffffe9]#P0VAPPSAPB1_BWP_3913650##5ebdcfeed38811e4ada90000003bb7b2#SAPEngine_Application_Thread[impl:3]_35##0#0#Fatal##Plain###Fatal exception on second attempt at getting DataManager reference
    com.adobe.ProcessingException: CORBA system exception instantiating a DataManager from the ConnectionFactory
      at com.adobe.ads.remote.ServiceLocator.lookupDataManager(Unknown Source)
      at com.adobe.ads.remote.ServiceLocator.getDataManager(Unknown Source)
      at com.adobe.ads.remote.EJB_DataManager.getDataManager(Unknown Source)
      at com.adobe.ads.remote.EJB_DataManager.<init>(Unknown Source)
      at com.adobe.ads.request.Request.getDataManager(Unknown Source)
      at com.adobe.ads.operation.Render.execute(Unknown Source)
      at com.adobe.ads.operation.ADSOperation.doWork(Unknown Source)
      at com.adobe.ads.request.Request.processOperations(Unknown Source)
      at com.adobe.ads.request.Request.process(Unknown Source)
      at com.adobe.AdobeDocumentServicesEJB.processRequest(Unknown Source)
      at com.adobe.AdobeDocumentServicesEJB.rpData(Unknown Source)
      at com.adobe.AdobeDocumentServicesLocalLocalObjectImpl0_0.rpData(AdobeDocumentServicesLocalLocalObjectImpl0_0.java:120)
      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      at java.lang.reflect.Method.invoke(Method.java:331)
      at com.sap.engine.services.webservices.runtime.EJBImplementationContainer.invokeMethod(EJBImplementationContainer.java:126)
      at com.sap.engine.services.webservices.runtime.RuntimeProcessor.process(RuntimeProcessor.java:174)
      at com.sap.engine.services.webservices.runtime.RuntimeProcessor.process(RuntimeProcessor.java:81)
      at com.sap.engine.services.webservices.runtime.servlet.ServletDispatcherImpl.doPost(ServletDispatcherImpl.java:90)
      at SoapServlet.doPost(SoapServlet.java:47)
      at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
      at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
      at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)
      at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
      at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:386)
      at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:364)
      at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:1060)
      at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:265)
      at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
      at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175)
      at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
      at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
      at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
      at java.security.AccessController.doPrivileged(Native Method)
      at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:104)
      at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:176)
    Caused by: org.omg.CORBA.COMM_FAILURE: Could not connect to host and port localhost:3333, useSSL=false. There are not working dispatcher nodes.  vmcid: SUN  minor code: 2  completed: No
      at com.sap.engine.services.iiop.server.CommunicationLayerImpl.retrieveDispAndConnID(CommunicationLayerImpl.java:544)
      at com.sap.engine.services.iiop.server.CommunicationLayerImpl.getDelegate(CommunicationLayerImpl.java:608)
      at com.sap.engine.services.iiop.internal.ClientORB.getDelegate(ClientORB.java:579)
      at com.sap.engine.services.iiop.CORBA.CORBAObject.<init>(CORBAObject.java:49)
      at com.sap.engine.services.iiop.CORBA.IOR.read_object(IOR.java:111)
      at com.sap.engine.services.iiop.internal.ClientORB.string_to_object(ClientORB.java:536)
      at com.sap.engine.system.ORBProxy.string_to_object(ORBProxy.java:290)
      at com.adobe.service.J2EEConnectionFactoryManagerPeerImpl.getConnection(J2EEConnectionFactoryManagerPeerImpl.java:140)
      ... 37 more
    #1.5 #00505688424200690000001B00001D940005122BD8D7F9BB#1427354415047#com.adobe.ads.request.Request#com.adobe/AdobeDocumentServices#com.adobe.ads.request.Request#ADSUSER#101#SAP J2EE Engine JTA Transaction : [03bffffffb7ffffffb2008ffffffe9]#P0VAPPSAPB1_BWP_3913650##5ebdcfeed38811e4ada90000003bb7b2#SAPEngine_Application_Thread[impl:3]_35##0#0#Error#1#/System/Server#Plain###Processing exception during a "Render" operation.
    Request start time: Thu Mar 26 08:20:15 CET 2015
    com.adobe.ProcessingException: Failed to create a Data Manager. Please ensure that the Document Services Data Manager service is running
    Exception Stack Trace:
    com.adobe.ProcessingException: Failed to create a Data Manager. Please ensure that the Document Services Data Manager service is running
      at com.adobe.ads.operation.Render.execute(Unknown Source)
      at com.adobe.ads.operation.ADSOperation.doWork(Unknown Source)
      at com.adobe.ads.request.Request.processOperations(Unknown Source)
      at com.adobe.ads.request.Request.process(Unknown Source)
      at com.adobe.AdobeDocumentServicesEJB.processRequest(Unknown Source)
      at com.adobe.AdobeDocumentServicesEJB.rpData(Unknown Source)
      at com.adobe.AdobeDocumentServicesLocalLocalObjectImpl0_0.rpData(AdobeDocumentServicesLocalLocalObjectImpl0_0.java:120)
      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      at java.lang.reflect.Method.invoke(Method.java:331)
      at com.sap.engine.services.webservices.runtime.EJBImplementationContainer.invokeMethod(EJBImplementationContainer.java:126)
      at com.sap.engine.services.webservices.runtime.RuntimeProcessor.process(RuntimeProcessor.java:174)
      at com.sap.engine.services.webservices.runtime.RuntimeProcessor.process(RuntimeProcessor.java:81)
      at com.sap.engine.services.webservices.runtime.servlet.ServletDispatcherImpl.doPost(ServletDispatcherImpl.java:90)
      at SoapServlet.doPost(SoapServlet.java:47)
      at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
      at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
      at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)
      at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
      at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:386)
      at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:364)
      at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:1060)
      at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:265)
      at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
      at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175)
      at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
      at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
      at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
      at java.security.AccessController.doPrivileged(Native Method)
      at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:104)
      at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:176)
    #1.5 #00505688424200660000000700001D940005122BD8D80DDF#1427354415052#com.sap.tc.webdynpro.pdfobject.core.PDFObject#sap.com/irj#com.sap.tc.webdynpro.pdfobject.core.PDFObject.doSoapCall#NGS_MM77#100##n/a##5ebdcfeed38811e4ada90000003bb7b2#SAPEngine_Application_Thread[impl:3]_2##0#0#Error#1#/System/UserInterface#Plain###Result(0): Error_Level is: 2#
    #1.5 #00505688424200660000000900001D940005122BD8D80EA3#1427354415052#com.sap.tc.webdynpro.pdfobject.core.PDFObject#sap.com/irj#com.sap.tc.webdynpro.pdfobject.core.PDFObject.doSoapCall#NGS_MM77#100##n/a##5ebdcfeed38811e4ada90000003bb7b2#SAPEngine_Application_Thread[impl:3]_2##0#0#Error#1#/System/UserInterface#Plain###Result(1): Results is: Processing exception during a "Render" operation.
    Request start time: Thu Mar 26 08:20:15 CET 2015
    com.adobe.ProcessingException: Failed to create a Data Manager. Please ensure that the Document Services Data Manager service is running
    Exception Stack Trace:
    com.adobe.ProcessingException: Failed to create a Data Manager. Please ensure that the Document Services Data Manager service is running
      at com.adobe.ads.operation.Render.execute(Unknown Source)
      at com.adobe.ads.operation.ADSOperation.doWork(Unknown Source)
      at com.adobe.ads.request.Request.processOperations(Unknown Source)
      at com.adobe.ads.request.Request.process(Unknown Source)
      at com.adobe.AdobeDocumentServicesEJB.processRequest(Unknown Source)
      at com.adobe.AdobeDocumentServicesEJB.rpData(Unknown Source)
      at com.adobe.AdobeDocumentServicesLocalLocalObjectImpl0_0.rpData(AdobeDocumentServicesLocalLocalObjectImpl0_0.java:120)
      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      at java.lang.reflect.Method.invoke(Method.java:331)
      at com.sap.engine.services.webservices.runtime.EJBImplementationContainer.invokeMethod(EJBImplementationContainer.java:126)
      at com.sap.engine.services.webservices.runtime.RuntimeProcessor.process(RuntimeProcessor.java:174)
      at com.sap.engine.services.webservices.runtime.RuntimeProcessor.process(RuntimeProcessor.java:81)
      at com.sap.engine.services.webservices.runtime.servlet.ServletDispatcherImpl.doPost(ServletDispatcherImpl.java:90)
      at SoapServlet.doPost(SoapServlet.java:47)
      at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
      at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
      at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)
      at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
      at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:386)
      at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:364)
      at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:1060)
      at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:265)
      at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
      at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175)
      at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
      at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
      at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
      at java.security.AccessController.doPrivileged(Native Method)
      at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:104)
      at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:176)
    #1.5 #00505688424200660000000B00001D940005122BD8D80FBD#1427354415052#com.sap.tc.webdynpro.pdfobject.core.PDFObject#sap.com/irj#com.sap.tc.webdynpro.pdfobject.core.PDFObject.doSoapCall#NGS_MM77#100##n/a##5ebdcfeed38811e4ada90000003bb7b2#SAPEngine_Application_Thread[impl:3]_2##0#0#Error#1#/System/UserInterface#Plain###Result(2): VersionInfo is: 800.20120718063822.876753#
    #1.5 #00505688424200660000000D00001D940005122BD8D81033#1427354415052#com.sap.tc.webdynpro.pdfobject.core.PDFObject#sap.com/irj#com.sap.tc.webdynpro.pdfobject.core.PDFObject.doSoapCall#NGS_MM77#100##n/a##5ebdcfeed38811e4ada90000003bb7b2#SAPEngine_Application_Thread[impl:3]_2##0#0#Error#1#/System/UserInterface#Plain###Result(3): TraceString is:    Begin operation: Render, elapsed time = 7488 ms.
             com.adobe.ProcessingException: Failed to create a Data Manager. Please ensure that the Document Services Data Manager service is running
       End operation: Render, elapsed time = 7501 ms.
    #1.5 #00505688424200660000000E00001D940005122BD8D81FB2#1427354415056#com.sap.ip.bi.export.xfa.impl.PDFConverter#sap.com/irj#com.sap.ip.bi.export.xfa.impl.PDFConverter#NGS_MM77#100##n/a##5ebdcfeed38811e4ada90000003bb7b2#SAPEngine_Application_Thread[impl:3]_2##0#0#Error##Plain###EXPORT XFA calcTemplate=Processing exception during a "Render" operation.
    Request start time: Thu Mar 26 08:20:15 CET 2015
    com.adobe.ProcessingException: Failed to create a Data Manager. Please ensure that the Document Services Data Manager service is running
    Exception Stack Trace:
    com.adobe.ProcessingException: Failed to create a Data Manager. Please ensure that the Document Services Data Manager service is running
      at com.adobe.ads.operation.Render.execute(Unknown Source)
      at com.adobe.ads.operation.ADSOperation.doWork(Unknown Source)
      at com.adobe.ads.request.Request.processOperations(Unknown Source)
      at com.adobe.ads.request.Request.process(Unknown Source)
      at com.adobe.AdobeDocumentServicesEJB.processRequest(Unknown Source)
      at com.adobe.AdobeDocumentServicesEJB.rpData(Unknown Source)
      at com.adobe.AdobeDocumentServicesLocalLocalObjectImpl0_0.rpData(AdobeDocumentServicesLocalLocalObjectImpl0_0.java:120)
      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      at java.lang.reflect.Method.invoke(Method.java:331)
      at com.sap.engine.services.webservices.runtime.EJBImplementationContainer.invokeMethod(EJBImplementationContainer.java:126)
      at com.sap.engine.services.webservices.runtime.RuntimeProcessor.process(RuntimeProcessor.java:174)
      at com.sap.engine.services.webservices.runtime.RuntimeProcessor.process(RuntimeProcessor.java:81)
      at com.sap.engine.services.webservices.runtime.servlet.ServletDispatcherImpl.doPost(ServletDispatcherImpl.java:90)
      at SoapServlet.doPost(SoapServlet.java:47)
      at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
      at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
      at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)
      at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
      at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:386)
      at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:364)
      at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:1060)
      at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:265)
      at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
      at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175)
      at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
      at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
      at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
      at java.security.AccessController.doPrivileged(Native Method)
      at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:104)
      at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:176)

    Thanks Sandy,
    I have already solved the problem , I  have done the following actions:
    1. Stop J2EE engine
    2. rename folder
         /usr/sap/<SID>/<Instance>/j2ee/os_libs/adssap
         Please rename this adssap folder to adssap.old
    3. Start J2EE engine
       During starting J2EE engine, folder adssap will be re-generated.
    4. Also make sure XMLform.exe is extracted under
        /usr/sap/<SID>/<Instance>/j2ee/os_libs/adssap/XMLFormService/bin
    I restarted the entire instance (ABAP  and JAVA) and now all is running fine.

  • PCI-6602: How do I ensure that it is functioning properly??

    Hi!
    I have installed a PCI-6602 into my system.
    I have ran a "Self-Test" on the board and it says it passed.
    We are trying to generate a pulse through PFI36 cntr0. For some reason, it is not generating the signal from the software we recieved from another company.
    Is it possible that a NI-DAQmx version difference could be driving this problem? We have a 8.8.0f2 and they have 8.7.1f3.
    Are there any other "Self-Tests" we can run on this board to ensure that the NI board is functioning properly?
    What other problems could we be looking at?
    Thanks for your time!

    Hello,
    You can do this:  Set up a slow pulse train for CTR0 (1Hz).  Set up a continuous digital channel read for Port 0 Line 0 on your card.  Hook up CTR0 output (pin 5) to P0.0 (pin 10).  Start your program to do the counter output pulse train and continuous read.  You should see your digital line transition from high to low over time.  The examples you can use to set this up are Gen Dig Pulse Train-Continuous.vi and Cont Read Dig Chan-Int Clk.vi.  For Cont Read Dig Chan-Int Clk.vi, remove the DAQmx Timing VI to make it software timed, and connect the task handle and error wires accordingly. They can be ran from separate VI's as they don't use the same resources. 
    To be exact on the verbage used, you can perform a self-test on the device by right clicking the device in Measurement and Automation Explorer (MAX) and select Self-Test.  As for testing the device manually, go with what I described above. 
    Kyle A.
    National Instruments
    High Speed Digital I/O Product Support Engineer - R&D

  • "An error occurred while trying to load some required components. Please ensure that the following prerequisites components are installed: Microsoft Web Developer Tools Microsoft Exchange Web Service."

    Did a LOT of troubleshooting, but not finding suitable solution, still getting same error i referred all below links but not working for me.
    "http://blogs.msdn.com/b/how24/..."
    "http://social.msdn.microsoft.com/Forums/..."
    "http://stackoverflow.com/questions/.."
    "http://tomvangaever.be/blogv2/2013/06/..."
    I am using "Microsoft Visual Studio Professional 2012".
    Can anyone please tell, How can I achieve????
    sharad patil

    Hi,
    Sorry for my delay.
    It seems that this issue was more related with Visual Studio, I suggest you move to Visual Studio Development Forum, the forum link is:http://social.msdn.microsoft.com/Forums/vstudio/en-US/home?category=visualstudio
    , may be you'll get solution on that forum.
    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.

  • Please ensure that your batteries are inserted before you proce

    I have just received a Nomad Jukebox Zen Xtra and immediately encountered a firmware problem. I've tried updating the firmware, but when I do I receive the following message:
    Restart the program when you are ready.
    Normally this wouldn't be an issues because I actually don't have the battery in there, and I could just insert it - but I don't currently HAVE a battery. Do I actually need to have the battery in to do this, even though I'm using my AC adapter? If I do, why? This seems completely ridiculous to me, and as a result I'm unable to use the player. Anybody know anything about this?

    I am getting the same error, but my battery is inserted. I assume the problem is that the battery has little or no charge.
    To this end, I tried charging the player overnight, but whilst the player was on the recovery screen, it refused to normally turn off, and the only way it would fully do so is by pressing the reset button. Even when turned off in this fashion, it immediately restarted again. I cannot seem to get the player to charge the battery, so I cannot reinstall the firmware, but without reinstalling the firmware it seems I cannot charge the battery!
    A vicious cycle indeed.
    Is it possible for me to:
    . Somehow charge the battery
    2. Restore the player to factory-new firmware, and hold on to the music stored upon it
    3. Get my music off the player in order to back it up, and then reformating
    I really appreciate help in this matter. I attemptedusing all the FAQs and the Creative Knowledge Base, but I got no help regarding this specific problem.
    Thanks,
    John

  • Your computer must be connected to the Internet in order to initially configure synchroniz​ation settings. Please ensure that you are able to connect to the Internet and try again.

    I keep getting the above message when I try to configure my synchronization settings...yet I clearly have an internet connection. I downloaded the most recent Desktop Software and that did not correct the problem.
    What am I missing?
    Solved!
    Go to Solution.

    Hello 1066stump,
    Welcome to the BlackBerry Support Community Forums
    The following KB article may help regarding the issue you are having:
    http://www.blackberry.com/btsc/KB16471
    Cheers,
    -FB
    Come follow your BlackBerry Technical Team on Twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.
    Click "Accept as a Solution" for posts that have solved your issue(s)!

  • Adclonectx.pl throwing classpath is not set properly error

    I recreated the appsutil folder on DB tier and now when I am running the below command to create the context file I am getting error.
    perl adclonectx.pl outfile=E:\R12\11.1.0\appsutil
    The above command is giving error, 'Please ensure that Classpath is set properly'
    Even though I have set the classpath to the below I am getting the error.
    SET CLASSPATH=E:\R12\11.1.0\jdbc\lib\ojdbc5.jar;E:\R12\11.1.0\appsutil\java\xmlparserv2.jar;E:\R12\11.1.0\appsutil\java;E:\R12\11.1.0\jlib\netcfg.jar;E:\R12\11.1.0\jlib\ldapjclnt11.jar
    SET PERL5LIB=E:\R12\11.1.0\perl\5.8.3\lib\MSWin32-X64-multi-thread;E:\R12\11.1.0\perl\5.8.3\lib;E:\R12\11.1.0\perl\site\5.8.3\lib\MSWin32-X64-ulti-thread;E:\R12\11.1.0\perl\site\5.8.3\lib;E:\R12\11.1.0\appsutil\perl

    Sami,
    Are you passing the template in the command as in (R12 adbldxml.pl AutoConfig Tool to Generate the Context File on the Database Tier [ID 1079053.1])?
    If this is a RAC-to-RAC cloning, please see (R12 RAC to RAC cloning fails with 'Please ensure that Classpath is set properly' [ID 966321.1]).
    Thanks,
    Hussein

  • Unable to load performance pack. Using Java I/O instead. Please ensure...

    Hi there.
    I am running WL 1033 development version using 64-bit 1.6.1 jdk (jdk-6u21-windows-x64) and the performance is terrible. I have upped my mem settings to this:
    set MEM_ARGS=-Xms1024m -Xmx1408m -XX:PermSize=1024m -XX:MaxPermSize=1024m
    and after a couple of deploys, I still get out of memory errors.
    I notice this message on startup: <BEA-000438> <Unable to load performance pack. Using Java I/O instead. Please ensure that wlntio.dll is in:
    Could this be part of my performace issues? If so, how do I fix it?
    I followed the install directions in the README.txt file from this zip file: wls1033_dev.zip
    Mike

    Hi Mike,
    If you are using 64 bit of Windows Operating System then Make sure that you add the following directory in the *"java.library.path"*....
    Directory: E:\bea1033\wlserver_10.3\server\native\win\64
    Example: In your servers start Script please add the following MEM_ARGS or in JAVA_OPTIONS:
    <b><font color=maroon>
    set MEM_ARGS= -Xms1024m -Xmx1408m -XX:PermSize=1024m -XX:MaxPermSize=1024m -Djava.library.path=E:\bea1033\wlserver_10.3\server\native\win\64</font></b>
    Thanks
    Jay SenSharma
    http://middlewaremagic.com/weblogic (Middleware Magic Is Here)

  • Receiving Error : Please set the Receivables system options for this operating unit and ensure that the MO: Operating Unit profile option is correctly set with an operating unit that is set up in Receivables. while trying to create a new Customer.

    Hi All,
    We have set up a new Operating Unit in Oracle Apps. Now when I am trying to create a new Customer in that Operating Unit, I am receiving following error:
    ERROR MESSAGE:-Please set the Receivables system options for this operating unit and ensure that the MO: Operating Unit profile option is correctly set with an operating unit that is set up in Receivables.
    We do have MO: Operating Unit and MO: Default Operating Unit set properly at Responsibility level for the Responsibility through which I am accessing this form.
    Your help is appreciated!
    Thanks in advance,
    SKA

    You can refer this thread and check your MO operating unit is set or not https://community.oracle.com/message/3937028 thanks

  • My nook app continues to state "Please be sure you have internet connectivity, then try again."  I am currently connected to wifi and it seems that all my other apps that need to be connect to the internet are properly working.  Help!

    My nook app keeps telling me "Please be sure you have internet connectivity, then try again."  I am currently connected to wifi and it seems that all my other apps that need to be connect to the internet are properly working.  I have turn off my phone, signed off my wifi, installed a new app, but nothing is working.  My friend is having similar issues.  My phone is up to date.  I even tried taking off the wifi in hopes that it could just connect to the 3g but nothing.  Not sure if anyone else is experiencieng this issue or knows what I can do.  I think that it may be an app problem that needs fixed, but not sure. Help!

    Maybe its a Viber problem. As that is not an Apple product, why don't you try and contact the developer?

  • Dynamic Calc processor cannot lock more than [100] ESM blocks during the calculation, please increase CalcLockBlock setting and then retry(a small data cache setting could also cause this problem, please check the data cache size setting).

    Hi,
    Our Environment is Essbase 11.1.2.2 and working on Essbase EAS and Shared Services components.One of our user tried to run the Cal Script of one Application and faced this error.
    Dynamic Calc processor cannot lock more than [100] ESM blocks during the calculation, please increase CalcLockBlock setting and then retry(a small data cache setting could also cause this problem, please check the data cache size setting).
    I have done some Google and found that we need to add something in Essbase.cfg file like below.
    1012704 Dynamic Calc processor cannot lock more than number ESM blocks during the calculation, please increase CalcLockBlock setting and then retry (a small data cache setting could also cause this problem, please check the data cache size setting).
    Possible Problems
    Analytic Services could not lock enough blocks to perform the calculation.
    Possible Solutions
    Increase the number of blocks that Analytic Services can allocate for a calculation:
    Set the maximum number of blocks that Analytic Services can allocate to at least 500. 
    If you do not have an $ARBORPATH/bin/essbase.cfg file on the server computer, create one using a text editor.
    In the essbase.cfg file on the server computer, set CALCLOCKBLOCKHIGH to 500.
    Stop and restart Analytic Server.
    Add the SET LOCKBLOCK HIGH command to the beginning of the calculation script.
    Set the data cache large enough to hold all the blocks specified in the CALCLOCKBLOCKHIGH setting. 
    Determine the block size.
    Set the data catche size.
    Actually in our Server Config file(essbase.cfg) we dont have below data  added.
    CalcLockBlockHigh 2000
    CalcLockBlockDefault 200
    CalcLockBlocklow 50
    So my doubt is if we edit the Essbase.cfg file and add the above settings and restart the services will it work?  and if so why should we change the Server config file if the problem is with one application Cal Script. Please guide me how to proceed.
    Regards,
    Naveen

    Your calculation needs to hold more blocks in memory than your current set up allows.
    From the docs (quoting so I don't have to write it, not to be a smarta***:
    CALCLOCKBLOCK specifies the number of blocks that can be fixed at each level of the SET LOCKBLOCK HIGH | DEFAULT | LOW calculation script command.
    When a block is calculated, Essbase fixes (gets addressability to) the block along with the blocks containing its children. Essbase calculates the block and then releases it along with the blocks containing its children. By default, Essbase allows up to 100 blocks to be fixed concurrently when calculating a block. This is sufficient for most database calculations. However, you may want to set a number higher than 100 if you are consolidating very large numbers of children in a formula calculation. This ensures that Essbase can fix all the required blocks when calculating a data block and that performance will not be impaired.
    Example
    If the essbase.cfg file contains the following settings:
    CALCLOCKBLOCKHIGH 500  CALCLOCKBLOCKDEFAULT 200  CALCLOCKBLOCKLOW 50 
    then you can use the following SET LOCKBLOCK setting commands in a calculation script:
    SET LOCKBLOCK HIGH; 
    means that Essbase can fix up to 500 data blocks when calculating one block.
    Support doc is saying to change your config file so those settings can be made available for any calc script to use.
    On a side note, if this was working previously and now isn't then it is worth investigating if this is simply due to standard growth or a recent change that has made an unexpected significant impact.

Maybe you are looking for