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.

Similar Messages

  • [svn] 2277: 1) Update the messaging-config. xml under resource and add the cluster definition with shared-backend attribute .

    Revision: 2277
    Author: [email protected]
    Date: 2008-06-27 08:22:18 -0700 (Fri, 27 Jun 2008)
    Log Message:
    1) Update the messaging-config.xml under resource and add the cluster definition with shared-backend attribute. [#blz-197]
    2) Minor update to the session test.
    Ticket Links:
    http://bugs.adobe.com/jira/browse/blz-197
    Modified Paths:
    blazeds/branches/3.0.x/qa/apps/qa-regress/WEB-INF/src/remoting/session/FlexSessionAttribu teListenerTest.java
    blazeds/branches/3.0.x/resources/config/messaging-config.xml

    To use servlets u have indeed to update your web.xml...Well I'm not sure this is relevant to your case anyway.
    You have to add a <servlet> element to this file.
    Something like this:
    <servlet>
    <servlet-name>blabla</servlet-name>
    <servlet-class>blablapackage.Blablaclass</servlet-class>
    <init-param>...</init-param>
    </servlet>
    Now this may not solve your problem. Make sure you refer to your servlets using their full qualified names.btw, just to be sure, what is your definition of "servlet"? (i mean: any java class or only javax.servlet.Servlet)

  • 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 ...

  • The setting ExternalProxy in the Web.Config file was not valid.

    Since installing Exchange 2010 SP1 (Upgrade from RTM) I get this in the event viewer.
    The setting ExternalProxy in the Web.Config file was not valid. The previous value was null and has been changed to .
    Any ideas what to check?

    I'm also getting a number of these errors on Exchange 2010 SP1 RU1, the settings that I get notified include (the values have been changed to a number of diferent values):
    ExternalProxy
    BootstrapMailDeliveryDelay
    MobileUpdateInformationURL
    BootstrapCABForWM61HostingURL
    FullServerVersion
    ADCacheMaxOrgCount
    ADCacheExpirationTimeout
    MaxDocumentDataSize
    MaxDocumentLibrarySearchResults
    MaxGALSearchResults
    BadItemEmailToText
    BadItemIncludeEmailToText
    BadItemIncludeStackTrace
    MaxClientSentBadItems
    MailboxSearchTimeoutNoContentIndexing
    MailboxSearchTimeout
    MaxMailboxSearchResults
    MaxRequestsQueued
    MaxWorkerThreadsPerProc
    MaxCollectionsToLog
    ProxyConnectionPoolConnectionLimit
    ProxyHandlerShortTimeout
    ProxyHandlerLongTimeout
    BackOffErrorWindow
    BackOffTimeOut
    BackOffThreshold
    ProxyVirtualDirectory
    BlockLegacyMailboxes
    BlockNewMailboxes
    SchemaValidate
    SchemaDirectory
    SyncLogDirectory
    SyncLogEnabled
    DisableCaching
    DeviceClassCacheADCleanupInterval
    DeviceClassPerOrgMaxADCount
    DeviceClassCachePerOrgRefreshInterval
    DeviceClassCacheMaxADUploadCount
    DeviceClassCacheMaxStartDelay
    MaxWindowSize
    MaxRetrievedItems
    EventQueuePollingInterval
    ADCacheRefreshInterval
    MaxSizeOfMailboxLog
    NumOfQueuedMailboxLogEntries
    MaxNumOfFolders
    Can these be resolved in a similar manner. Some additional information would be great (as sjoegarrett I can also ignore them, but would prefer if these could be eliminated).

  • 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.

  • 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.

  • 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.

  • The system could not find a javax.ws.rs.ext.MessageBodyWriter or a DataSourceProvider class for the com.rest.assignment.EmpBean type and application/json mediaType.  Ensure that a javax.ws.rs.ext.MessageBodyWriter exists in the JAX-RS application for the

    Hi,
    Im trying to create a Rest WS with a @GET method that will return me an Emp object. I need the output as a JSON string.
    I have created a dynamic web project and added javax RS jars:
    When im trying to run this, i'm getting the below mentioned error:
    FlushResultHa E org.apache.wink.server.internal.handlers.FlushResultHandler handleResponse The system could not find a javax.ws.rs.ext.MessageBodyWriter or a DataSourceProvider class for the com.rest.assignment.EmpBean type and application/json mediaType.  Ensure that a javax.ws.rs.ext.MessageBodyWriter exists in the JAX-RS application for the type and media type specified.
    RequestProces I org.apache.wink.server.internal.RequestProcessor logException The following error occurred during the invocation of the handlers chain: WebApplicationException (500 - Internal Server Error)
    Please help as im stuck with this from long.
    Thanks in advance.
    Below is the code for my service class:
    package com.rest.assignment;
    import java.io.FileInputStream;
    import java.io.FileNotFoundException;
    import java.io.IOException;
    import java.util.Enumeration;
    import java.util.HashSet;
    import java.util.Properties;
    import java.util.Set;
    import javax.ws.rs.GET;
    import javax.ws.rs.Path;
    import javax.ws.rs.Produces;
    import javax.ws.rs.core.Application;
    import javax.ws.rs.core.MediaType;
    import javax.ws.rs.core.Response;
    @Path("/restService")
    public class RestService extends Application {   
        @GET
        @Path("/getEmpDetails")
        @Produces(MediaType.APPLICATION_JSON)
        public Response getStringResponse()
            EmpBean empBean = new EmpBean();
            String filePath = "C:/Program Files/IBM/workspace/HelloWorld/src/com/rest/resources/EmpData.properties";
            Properties properties = new Properties();
            try {
                properties.load(new FileInputStream(filePath));
            } catch (FileNotFoundException e) {
                e.printStackTrace();
            } catch (IOException e) {
                e.printStackTrace();
             Enumeration e = properties.propertyNames();
             String result="";
            String[] empDetailsArr;
            while (e.hasMoreElements()) {
              String key = (String) e.nextElement();
              String empDetails = properties.getProperty(key);
              empDetailsArr=empDetails.split(",");    
              empBean.setFirstName(empDetailsArr[0]);
              empBean.setLastName(empDetailsArr[1]);
              empBean.setEmpId(empDetailsArr[2]);
              empBean.setDesignation(empDetailsArr[3]);
              empBean.setSkillSet(empDetailsArr[4]);
              result = empDetailsArr[1];
            //return empBean;
            return Response.ok(empBean).type(MediaType.APPLICATION_JSON_TYPE).build();
        @Override
        public Set<Class<?>> getClasses() {
            Set<Class<?>> classes = new HashSet<Class<?>>();
            classes.add(RestService.class);
            classes.add(EmpBean.class);
            return classes;
    and my empBean goes like this:
    package com.rest.assignment;
    public class EmpBean {
        private String firstName;
        private String lastName;
        private String empId;
        private String designation;
        private String skillSet;
        public String getFirstName() {
            return firstName;
        public void setFirstName(String firstName) {
            this.firstName = firstName;
        public String getLastName() {
            return lastName;
        public void setLastName(String lastName) {
            this.lastName = lastName;
        public String getEmpId() {
            return empId;
        public void setEmpId(String empId) {
            this.empId = empId;
        public String getDesignation() {
            return designation;
        public void setDesignation(String designation) {
            this.designation = designation;
        public String getSkillSet() {
            return skillSet;
        public void setSkillSet(String skillSet) {
            this.skillSet = skillSet;
    Web.xml goes like this:
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app id="WebApp_ID" version="3.0" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd">
    <display-name>restWS</display-name>
    <welcome-file-list>
      <welcome-file>index.html</welcome-file>
      <welcome-file>index.htm</welcome-file>
      <welcome-file>index.jsp</welcome-file>
      <welcome-file>default.html</welcome-file>
      <welcome-file>default.htm</welcome-file>
      <welcome-file>default.jsp</welcome-file>
    </welcome-file-list>
    <servlet>
      <servlet-name>REST</servlet-name>
      <servlet-class>com.ibm.websphere.jaxrs.server.IBMRestServlet</servlet-class>
      <init-param>
       <param-name>javax.ws.rs.Application</param-name>
       <param-value>com.rest.assignment.RestService</param-value>
      </init-param>
      <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping>
      <servlet-name>REST</servlet-name>
      <url-pattern>/rest/*</url-pattern>
    </servlet-mapping>
    </web-app>
    When i try to return a string from my get method, it gives me a proper response. i get this exception when im trying to return a JSON response.

    Hi,
    Im trying to create a Rest WS with a @GET method that will return me an Emp object. I need the output as a JSON string.
    I have created a dynamic web project and added javax RS jars:
    When im trying to run this, i'm getting the below mentioned error:
    FlushResultHa E org.apache.wink.server.internal.handlers.FlushResultHandler handleResponse The system could not find a javax.ws.rs.ext.MessageBodyWriter or a DataSourceProvider class for the com.rest.assignment.EmpBean type and application/json mediaType.  Ensure that a javax.ws.rs.ext.MessageBodyWriter exists in the JAX-RS application for the type and media type specified.
    RequestProces I org.apache.wink.server.internal.RequestProcessor logException The following error occurred during the invocation of the handlers chain: WebApplicationException (500 - Internal Server Error)
    Please help as im stuck with this from long.
    Thanks in advance.
    Below is the code for my service class:
    package com.rest.assignment;
    import java.io.FileInputStream;
    import java.io.FileNotFoundException;
    import java.io.IOException;
    import java.util.Enumeration;
    import java.util.HashSet;
    import java.util.Properties;
    import java.util.Set;
    import javax.ws.rs.GET;
    import javax.ws.rs.Path;
    import javax.ws.rs.Produces;
    import javax.ws.rs.core.Application;
    import javax.ws.rs.core.MediaType;
    import javax.ws.rs.core.Response;
    @Path("/restService")
    public class RestService extends Application {   
        @GET
        @Path("/getEmpDetails")
        @Produces(MediaType.APPLICATION_JSON)
        public Response getStringResponse()
            EmpBean empBean = new EmpBean();
            String filePath = "C:/Program Files/IBM/workspace/HelloWorld/src/com/rest/resources/EmpData.properties";
            Properties properties = new Properties();
            try {
                properties.load(new FileInputStream(filePath));
            } catch (FileNotFoundException e) {
                e.printStackTrace();
            } catch (IOException e) {
                e.printStackTrace();
             Enumeration e = properties.propertyNames();
             String result="";
            String[] empDetailsArr;
            while (e.hasMoreElements()) {
              String key = (String) e.nextElement();
              String empDetails = properties.getProperty(key);
              empDetailsArr=empDetails.split(",");    
              empBean.setFirstName(empDetailsArr[0]);
              empBean.setLastName(empDetailsArr[1]);
              empBean.setEmpId(empDetailsArr[2]);
              empBean.setDesignation(empDetailsArr[3]);
              empBean.setSkillSet(empDetailsArr[4]);
              result = empDetailsArr[1];
            //return empBean;
            return Response.ok(empBean).type(MediaType.APPLICATION_JSON_TYPE).build();
        @Override
        public Set<Class<?>> getClasses() {
            Set<Class<?>> classes = new HashSet<Class<?>>();
            classes.add(RestService.class);
            classes.add(EmpBean.class);
            return classes;
    and my empBean goes like this:
    package com.rest.assignment;
    public class EmpBean {
        private String firstName;
        private String lastName;
        private String empId;
        private String designation;
        private String skillSet;
        public String getFirstName() {
            return firstName;
        public void setFirstName(String firstName) {
            this.firstName = firstName;
        public String getLastName() {
            return lastName;
        public void setLastName(String lastName) {
            this.lastName = lastName;
        public String getEmpId() {
            return empId;
        public void setEmpId(String empId) {
            this.empId = empId;
        public String getDesignation() {
            return designation;
        public void setDesignation(String designation) {
            this.designation = designation;
        public String getSkillSet() {
            return skillSet;
        public void setSkillSet(String skillSet) {
            this.skillSet = skillSet;
    Web.xml goes like this:
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app id="WebApp_ID" version="3.0" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd">
    <display-name>restWS</display-name>
    <welcome-file-list>
      <welcome-file>index.html</welcome-file>
      <welcome-file>index.htm</welcome-file>
      <welcome-file>index.jsp</welcome-file>
      <welcome-file>default.html</welcome-file>
      <welcome-file>default.htm</welcome-file>
      <welcome-file>default.jsp</welcome-file>
    </welcome-file-list>
    <servlet>
      <servlet-name>REST</servlet-name>
      <servlet-class>com.ibm.websphere.jaxrs.server.IBMRestServlet</servlet-class>
      <init-param>
       <param-name>javax.ws.rs.Application</param-name>
       <param-value>com.rest.assignment.RestService</param-value>
      </init-param>
      <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping>
      <servlet-name>REST</servlet-name>
      <url-pattern>/rest/*</url-pattern>
    </servlet-mapping>
    </web-app>
    When i try to return a string from my get method, it gives me a proper response. i get this exception when im trying to return a JSON response.

  • "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

  • Getting a "An error occurred while saving values to the app.config file." message

    The content of the title is just part of the message I get. The second line of the message is: "The file might be corrupted or contain invalid XML."
    I work with a lot of usercontrol libraries, and each one has 1 or 2 connection strings setup, and nothing else. I have no trouble in the code itself using the settings. Nor do I have trouble during runtime with them. But I do have the problem with every single library I work on.
    The problem occurs when I make a change to the settings in the VS IDE (2005), which I do whenever I need to the connection string to point to my test SQL server, or need to set it back to the production SQL server. The connection strings were setup in the Settings tab of the Property page for the application.
    I get the error message whenever I select the settings tab and again when I go to save it. I once tried deleting the app.config file, and recreating the settings, and the message went away until I checked it in. No one else has the problem when they get the files, but when I get then, I get the error message.
    Any ideas what may be causing this. My boss thouight it might be an addon from CodeSMART, but I uninstalled it to see if the errors would go away and it didn't.
    Thanks.
    MarshallMarshall Youngblood

    Marshall,
    I am not sure if it helps in your case, but I have the similar problem. Add foloowing lines in your app.config file  in configSections  tag.
    <
    configSections>
    <
    sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
    <
    section name="ApLibrary.My.MySettings" type="System.Configuration.ClientSettingsSection, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
    </
    sectionGroup>
    </
    configSections>
    let me know if that helps.
    Purvi Patel

  • Not able to Start Hyper-V(2012 R2) VM when placing the VM config file on Samba Share,Its giving error:Unable to initialize the saveset

    ---We are trying to setup Hyper-V on Samba shares samba version 3.6 exported from Ubuntu  M/c. Basically runnig the Public(share) from the Ubuntu and able to access it from Windows 2012 (create/modify everything). I used Hyper-V and placed the disks
    ".vhd" on this , VM succesfull created and started. However when I placed the VM config files on this (samba) shares VM created successfully but its not starting, Its giving error like Unable to initialize the saveset -- Any idea how to place the
    Hyper-V VM config files samba share?

    Hi Rakesh KK,
    Please confirm your share meet the Serve 2012r2 Hyper-V requirement, you can refer the following KB to get more detail require conditions.
    Deploy Hyper-V over SMB
    http://technet.microsoft.com/en-us/library/jj134187.aspx
    Hope this helps.
    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.

  • When i try to start itunes i get a message saying that the MSVCR80.dll file is missing and to reinstall itunes.  When I try to reinstall itunes it tells me that I have an Error 7 (windows error 126).  Can anybody tell me what this means?  Thanks

    When i try to start itunes i get a message saying that the MSVCR80.dll file is missing and to reinstall itunes.  When I try to reinstall itunes it tells me that I have an Error 7 (windows error 126).  Can anybody tell me what this means?  Thanks

    Go to Control Panel > Add or Remove Programs (Win XP) or Programs and Features (later)
    Remove all of these items in the following order:
    iTunes
    Apple Software Update
    Apple Mobile Device Support (if this won't uninstall move on to the next item)
    Bonjour
    Apple Application Support
    Reboot, download iTunes, then reinstall, either using an account with administrative rights, or right-clicking the downloaded installer and selecting Run as Administrator.
    The uninstall and reinstall process will preserve your iTunes library and settings, but ideally you would back up the library and your other important personal documents and data on a regular basis. See this user tip for a suggested technique.
    Please note:
    Some users may need to follow all the steps in whichever of the following support documents applies to their system. These include some additional manual file and folder deletions not mentioned above.
    HT1925: Removing and Reinstalling iTunes for Windows XP
    HT1923: Removing and reinstalling iTunes for Windows Vista, Windows 7, or Windows 8
    tt2

  • SWFVISU task not appearing in any of the UWL Config files

    Hello Workflow/Portal gurus, gotta question...
    Scenario: I want custom workflow single-step tasks used in perf. mgmt. workflows to launch BSP application.
    My understanding is that when you maintain link between workflow task and BSP application in SWFVISU followed by 'Register item types for all systems' in UWL and clearing Cache, UWL config file should be updated to include the task maintained in SWFVISU with appropriate launching parameters. I have used this successfully in the past with Wedbdynpro applications.
    In my portal system, a new custom task that I maintain in SWFVISU is not even appearing in any of the UWL config file. when we use 'Register item types for all systems' option in UWL followed by clearing Cache,one of the config file does successfully get updated (we see success message and update date and time) but custom task is missing from the config.
    Also, when I manually try to configure custom task and launching applications using one of the UWL wizard it gives error symbol with no messages. UWL behaves strange (Auth is not an issue) and couple of things we checked per UWL/Portal config docs seems to be in order.
    Any pointers what we could be missing? Is there anything else other than adding task in SWFVISU followed by 'Register item types for all systems' in UWL and clearing Cache that needs to be done?
    Appreciate your help,
    Saurabh

    Hi,
    i had the same problem that all entries form SWFVISU could not be displayed in the XML config file.
    The solution is very simple since SP 18 of NW portal: you need to configure a RFC destination in the Visual Admin (see Note 1133821).
    Though if you are not using Delta Pull you have to create this destination to register the UWL.
    I hope this helps.
    Regards,
    Marc

  • AzureDiagnostics fails after role udpate with no changes to configuration, error "Failed to parse the WAD config file"

    Windows event log shows AzureDiagnostics errors "Failed to parse the WAD config file" and warning "
    No certficate with given thumbprint found in the certificate store. Thumbprint:" and
    System.ArgumentNullException: Value cannot be null.
    Parameter name: s
       at System.IO.StringReader..ctor(String s)
       at Microsoft.Azure.Plugins.Plugin.WadConfigValidator`1.Validate(String configString, String schemaPath, StringBuilder builder)
       at Microsoft.Azure.Plugins.Plugin.WadConfigValidator`1.Initialize(String configString, String schemaPath)
       at Microsoft.Azure.Plugins.Plugin.WadParser.Parse()
    Also tried a different deployment on a different subscription, same issue, and this one gets stuck in 'create' state with no roles showing up in 'instances' section for quite some time. Are Cloud Services even maintained by Microsoft
    anymore? Seems that they are second class citizens to VMs, no updates, no new portal, no new features, often can't update single role without updating all roles, etc.

    i am facing same error : here is the log:
    DiagnosticsPlugin.exe Information: 0 : [3/19/2015 6:00:39 PM] Starting DiagnosticPlugin.exe DiagnosticPlugin-ShutdownEvent DiagnosticPlugin-TotalShutdownEvent -wadVer1v3
    DiagnosticsPlugin.exe Information: 0 : [3/19/2015 6:00:39 PM] Starting DiagnosticsPlugin
    DiagnosticsPlugin.exe Information: 0 : [3/19/2015 6:00:39 PM] Checking VM Type
    DiagnosticsPlugin.exe Information: 0 : [3/19/2015 6:00:39 PM] File HandlerEnvironment.json not found. Extension set to PAAS
    DiagnosticsPlugin.exe Information: 0 : [3/19/2015 6:00:39 PM] RcfFileName: C:\Config\881bb2e524c04870b4e993fd8fefb7d8.881bb2e524c04870b4e993fd8fefb7d8.WorkerRole1_IN_0.13.xml
    DiagnosticsPlugin.exe Information: 0 : [3/19/2015 6:00:39 PM] RoleInstanceId: WorkerRole1_IN_0; DeploymentId: 881bb2e524c04870b4e993fd8fefb7d8; RoleName: WorkerRole1
    DiagnosticsPlugin.exe Information: 0 : [3/19/2015 6:00:39 PM] Checking VM Type
    DiagnosticsPlugin.exe Information: 0 : [3/19/2015 6:00:39 PM] File HandlerEnvironment.json not found. Extension set to PAAS
    DiagnosticsPlugin.exe Information: 0 : [3/19/2015 6:00:39 PM] Store Size: 4096
    DiagnosticsPlugin.exe Information: 0 : [3/19/2015 6:00:39 PM] Reading XML configuration file
    DiagnosticsPlugin.exe Information: 0 : [3/19/2015 6:00:39 PM] Will use thumbprint 
    DiagnosticsPlugin.exe Information: 0 : [3/19/2015 6:00:39 PM] Decrypting private configuration
    DiagnosticsPlugin.exe Warning: 0 : [3/19/2015 6:00:39 PM] No certficate with given thumbprint found in the certificate store. Thumbprint:
    DiagnosticsPlugin.exe Information: 0 : [3/19/2015 6:00:39 PM] Retrying after 30 seconds. Retry attempt 1
    DiagnosticsPlugin.exe Warning: 0 : [3/19/2015 6:01:09 PM] No certficate with given thumbprint found in the certificate store. Thumbprint:
    DiagnosticsPlugin.exe Information: 0 : [3/19/2015 6:01:09 PM] Retrying after 30 seconds. Retry attempt 2
    DiagnosticsPlugin.exe Warning: 0 : [3/19/2015 6:01:39 PM] No certficate with given thumbprint found in the certificate store. Thumbprint:
    DiagnosticsPlugin.exe Information: 0 : [3/19/2015 6:01:39 PM] Retrying after 30 seconds. Retry attempt 3
    DiagnosticsPlugin.exe Error: 0 : [3/19/2015 6:02:09 PM] System.Security.Cryptography.CryptographicException: The enveloped-data message does not contain the specified recipient.
       at System.Security.Cryptography.Pkcs.EnvelopedCms.DecryptContent(RecipientInfoCollection recipientInfos, X509Certificate2Collection extraStore)
       at Microsoft.Azure.Plugins.Diagnostics.dll.PluginConfigurationSettingsProvider.DecryptPrivateConfig(String encryptedConfig)
    DiagnosticsPlugin.exe Information: 0 : [3/19/2015 6:02:09 PM] WadCfg is provided in initial configuration. Using that to initialize Diagnostics.
    DiagnosticsPlugin.exe Information: 0 : [3/19/2015 6:02:09 PM] <PublicConfig xmlns="http://schemas.microsoft.com/ServiceHosting/2010/10/DiagnosticsConfiguration">
      <WadCfg>
        <DiagnosticMonitorConfiguration overallQuotaInMB="4096">
          <DiagnosticInfrastructureLogs />
          <Directories scheduledTransferPeriod="PT1M">
            <IISLogs containerName="wad-iis-logfiles" />
            <FailedRequestLogs containerName="wad-failedrequestlogs" />
          </Directories>
          <PerformanceCounters scheduledTransferPeriod="PT1M">
            <PerformanceCounterConfiguration counterSpecifier="\Memory\Available MBytes" sampleRate="PT3M" />
            <PerformanceCounterConfiguration counterSpecifier="\Web Service(_Total)\ISAPI Extension Requests/sec" sampleRate="PT3M" />
            <PerformanceCounterConfiguration counterSpecifier="\Web Service(_Total)\Bytes Total/Sec" sampleRate="PT3M" />
            <PerformanceCounterConfiguration counterSpecifier="\ASP.NET Applications(__Total__)\Requests/Sec" sampleRate="PT3M" />
            <PerformanceCounterConfiguration counterSpecifier="\ASP.NET Applications(__Total__)\Errors Total/Sec" sampleRate="PT3M" />
            <PerformanceCounterConfiguration counterSpecifier="\ASP.NET\Requests Queued" sampleRate="PT3M" />
            <PerformanceCounterConfiguration counterSpecifier="\ASP.NET\Requests Rejected" sampleRate="PT3M" />
            <PerformanceCounterConfiguration counterSpecifier="\Processor(_Total)\% Processor Time" sampleRate="PT3M" />
          </PerformanceCounters>
          <WindowsEventLog scheduledTransferPeriod="PT1M">
            <DataSource name="Application!*" />
            <DataSource name="System!*" />
          </WindowsEventLog>
          <CrashDumps dumpType="Full">
            <CrashDumpConfiguration processName="WaAppAgent.exe" />
            <CrashDumpConfiguration processName="WaIISHost.exe" />
            <CrashDumpConfiguration processName="WindowsAzureGuestAgent.exe" />
            <CrashDumpConfiguration processName="WaWorkerHost.exe" />
            <CrashDumpConfiguration processName="DiagnosticsAgent.exe" />
            <CrashDumpConfiguration processName="w3wp.exe" />
          </CrashDumps>
          <Logs scheduledTransferPeriod="PT1M" scheduledTransferLogLevelFilter="Verbose" />
        </DiagnosticMonitorConfiguration>
      </WadCfg>
      <StorageAccount>vinaystorageaccounttest</StorageAccount>
    </PublicConfig>
    DiagnosticsPlugin.exe Information: 0 : [3/19/2015 6:02:09 PM] Private setting is loaded
    DiagnosticsPlugin.exe Error: 0 : [3/19/2015 6:02:09 PM] System.ArgumentNullException: Value cannot be null.
    Parameter name: s
       at System.IO.StringReader..ctor(String s)
       at Microsoft.Azure.Plugins.Plugin.WadConfigValidator`1.Validate(String configString, String schemaPath, StringBuilder builder)
       at Microsoft.Azure.Plugins.Plugin.WadConfigValidator`1.Initialize(String configString, String schemaPath)
       at Microsoft.Azure.Plugins.Plugin.WadParser.Parse()
    DiagnosticsPlugin.exe Error: 0 : [3/19/2015 6:02:09 PM] Failed to parse the WAD config file
    DiagnosticsPlugin.exe Information: 0 : [3/19/2015 6:02:09 PM] DiagnosticPlugin.exe exit with code -106

  • Append line into all.js file to include in the Mozilla config file

    I need to make settings globally to Firefox 23. To lock the settings the instructions state to:
    Append line into all.js file to include in the Mozilla config file
    The problem is, I cannot locate the all.js in the firefox directory. Also the changes do not appear to act globally on a public machine. The changes stay in my profile. Any assistance will be greatly appreciated.

    hello, please implement the preferences lock file as it's described at http://kb.mozillazine.org/Locking_preferences

Maybe you are looking for

  • How can I sync settings and programs between 2 user accounts on the same mac?

    Hi, I have created 2 user accounts on my mac, one for personal, and one for work (but both for me). It's primarily for organization, keeping files separate, but also because I have two separate Dropbox accounts and only one can be installed per user.

  • Parse errors while creating a Web service from Java class!

    Can anybody tell me please, is it possible to create a Web Service from java class where the input from user is required ? I have the following program, which is successfully compiled, but when I'm trying to make a web service in JDeveloper, the foll

  • Why can I no longer drag and drop in iMovie 11?

    Why can I no longer drag and drop in iMovie 11? This means I can't select transitions, titles, or even move clips within the project. Never had this problem before.

  • Export FCP seq in a way that will work on Windows Media Player (good grief)

    Hello all (again). Before getting down to business I wanted to thank “FxDude,” TopoTone,” and “governor” for their assistance to my recent posts. By the way- (to all) sorry for the double postings. I was in a time crunch and kind of panicked. With th

  • JWSC in weblogic 10.3

    Hi, We are currently do the migration of our application from weblogic 8.1 to 10.3. As a part of the migration, we need to migrate our web services developed in our application. We made web service war file using JWSC task and deployed in the server.