How to re-enable data collection with a task queued

I have a strange situation. Data collection is, but I use the Force of Orchestrator data collection workflow:

Now, I can not re turn on inventory data collection. What can I fix this?

Thank you

Finally I could solve it. Just to keep track:

I use a workflow in Orchestrator and use the method vCACEntityManager.updateModelEntityBySerializedKey (host.id, modelName, entitySetName, entityKey, Updateproperties, links, headers) to change the property "IsDisable" from true to false.

Very strange indeed.

D.

Tags: VMware

Similar Questions

  • How to view the data collected in vi main indicators in an another vi

    Hello

    I data collection to aid NI 6251 USB DAQ in vi but as I have too many controls and indicators on the main façade of vi. So I want to display the indicators (graphs) in an another vi. I want also the vi with graphs automatically opens. Anyone know how I can do this? I'd appreciate any help.

    Thank you

    ygupta

    Hello

    Search for the concept vi sub forum.

    For your reference, I have attached an example.

    You can see the procedure for the same thing on the net.

    Kind regards

    Shrek

  • Calendar and the problems of data collection with the DAQ Assistant

    Hello NOR Developer area,

    I am a Novice of LabVIEW and have seen how helpful you all can be, and if I come to ask for your help.

    I'm having some trouble with a VI I built that specifies an input voltage, a SCB - 100 connected to a PCI-6031E and converts this tension in a temperature displayed on a waveform table. The goal is to give a constant reading of the temperature and display it in a chart for as long that the VI is running (and to reset the chart the next time the tracks of VI).

    The problems I've encountered currently are:

    -After a few minutes of the VI running, I get an error message 200279: tried to read samples that are no longer available. The requested sample was already available, but has since been replaced. (to the DAQ Assistant express VI).

    -I don't know how to change my chart so that the minimum value X is both during which the VI was launched and have the maximum X value increases with each iteration of the loop. Currently, I have the VI get the time system and contributing to the property node X scale. This worked for the graph of the voltage, but not for the temperature chart

    I appreciate those of you who took the time to read my post.

    Thank you all for your help.

    Sincerely,

    Ethan A. Klein

    SB candidate in Chemistry & Physics

    Massachusetts Institute of Technology

    Class of 2015

    PS I enclose my VI to give you a better understanding of my current situation.

    E A Klein wrote:

    Thanks for writing.

    What property node is talking?
    I do not understand that many different data types. How can I go on the treatment of all the data?

    (Did you mean I should wire 'blue' data for mathematical functions rather than using the node property tension?)

    Sincerely,

    In fact, one of the nodes property.  I mean specifically the tension property node.  But in reviewing, I noticed the other nodes in property for the chart.  Just set auto-scaling to the X scale and that should take care of two of the nodes property (right click on the graph, X scale-> AutoScale X Scale).  I also recommend placing your mathematical functions in a Subvi to make things easier to read.  Attached, that's what I think you're after.

    I hope that these small tweaks will speed things up enough to avoid your error.  If this isn't the case, then we should begin to look at the design of producer/consumer model or take readings at the same time.  It might also be worth looking away the DAQ Assistant and DAQmx real screws.  But one step at a time.

  • How the tables of data collected from a certain time three multiplot loop

    Hello.

    In my project, I'm trying to multiplot three data tables that is to say, two tables against a single Berry. I managed to platting two separate parcels, but I can't combine the two plots in a single. so please help me with this problem.

    PS - I want that the graph of V P to be combined with the graph of VI. (I added Orange to wave in V I graph using paint to illustrate)

    Bundle allows you to create your XY plots (X in the first element array, array of Y in the second) and then use table build to an array of clusters that contain your XY plots.

  • Can I use scan interface mode during the collection of the data of cRIO? How to view the data collected continuously on a waveform graph?

    Hello

    I intend to use cRIO as a standalone device to collect certain data off a tachometer House.  My goal is to store the data in the cRIO chassis, since it has its internal memory, but I can't even a cluster of data of the analog inputs of its devices.  I dragged and dropped the channel I collect data in a while loop, but it is only a point.  I want to see the data from the different time, what should I do?  Is this possible in Mode Interface Scan?  If Yes, could someone give me a simple example that shows streamed on a waveform data?  I would be very grateful!


  • How to save the data just with qml?

    is it possible to save data in an application just with qml?

    for example, I want to record some settings that the user has set.

    or an array of integers.

    or is it still possible to use sqlite?

    willie44 wrote:

    I could be completely wrong, but QSettings should work for you.

    The sample application QSettings is the spaceship one.

    QSettings is no longer usable in C++

    but this seems to be the only way to do

  • How to create the data store with multiple LUNS

    Someone could please tell me that how can I have multiple LUNS in a single data store, is it possible?

    See the "Storage management" section in the document provided in the previous comment. You are probably looking for information on page 104.

  • How to complete the data sorted with Model Driven Development

    Hello

    I use a model based development. I use count with all the Fill method. But the results are not be returned sorted by a field that interests me. How can I tell the filling to sort by a field. Is there an annotation that I provided in the model...

    Thank you

    RK

    You should be able to achieve what you want with a filter of explicit criteria on your entity.

    In the Design of Modeler view, select your entity and add a filter. You will see that there is an "Order By" field in the properties view.

    Enter the value that you want there, and then save and transfer your model. When you do not enter anything in the 'Criteria' field, you create a fill count with all.

    Here is an example of an entity created with this type of filter. they are sorted by price in ascending order:

     

  • Manipulation of data collection with loop

    Hello

    I want to write a SQL procedure that calculates and generate revenue with the parameter array type.

    1. it has table for the type of income and the amount.
    > ('cash', '500')
    > ("Service", "100")
    > ('cash', '100')
    > ("sentence", "50")
    > ('Service', '200')
    > ("penalty, 80')

    2. I want to generate income as the sum of them.
    > cash: 600
    > Service: 300
    > sentence: 130

    3 table parameter means;
    "> create or replace the NUMBER TABLE (10.2) of TYPE"NUMBER_ARRAY"AS"

    Questions
    Q1. Can I sort and sum with table group?
    Q2. Type of income can be increased or decreased subsequently. This is why I don't want to fix it.
    How can I implement this dynamically?


    Any good idea?

    Thanks in advance
    Dan

    You are looking for something like this

    create or replace type objIncome as object(incomeType varchar2(50), income number(10,2))
    /
    create or replace type tblIncome as table of objIncome
    /
    declare
      lIncomeTbl tblIncome := tblIncome();
    begin
      lIncomeTbl.extend;
      lIncomeTbl(1) := objIncome('cash','500');
      lIncomeTbl.extend;
      lIncomeTbl(2) := objIncome('Service','100');
      lIncomeTbl.extend;
      lIncomeTbl(3) := objIncome('cash','100');
      lIncomeTbl.extend;
      lIncomeTbl(4) := objIncome('penalty','50');
      lIncomeTbl.extend;
      lIncomeTbl(5) := objIncome('Service','200');
      lIncomeTbl.extend;
      lIncomeTbl(6) := objIncome('penalty','80');
    
      for i in (select incometype, sum(income) income
                  from table(lIncomeTbl)
                 group by incometype)
      loop
        dbms_output.put_line('Income Type: ' || i.incometype ||' Income: ' || i.income);
      end loop;
    end;
    /
    
  • How do I enable Notification - Sync with mobile Lightroom-

    So with the last update of Lightroom CC, whenever I have a folder 'in sync' with mobile LR, lightroom will take the relay my mouse and show me where is the sync tab and tell me the synchronization is paused.  I do not know that they have added it after 1 million people have asked their tech support about this, but you should be able to cut the notification.  Help, please. It's driving me crazy.

    Hi Enginyr,

    Could you please check the current status of synchronization on LR?

    Send us the report of 'diagnostic' of Lr mobile,

    • Tap and hold the top left icon LR in the mobility of Lightroom settings.
    • After that, LR mobile generates a diagnostic log and it will open in your email client.

    Kind regards

    Assani

  • How to import repeated data cells with XML?

    Hello!

    I have some small problems with the XML import feature.

    Consider a table of billing:

    Agenda Prix
    Percentage of tax VAT Total price
    Description of the object$8020%$20$100
    TOTA l$80
    $20$100

    Quickly, I modified an existing XML, I'm working. Try this.

    Agenda

    Price

    Tax

    Total

    Point 1

    Price 1

    Tax 1

    Total 1

    Point 2

    Price 2

    Tax 2

    Total 2

    Point 3

    Price 3

    Tax 3

    Total 3

  • How to use Data Guard with E-Business Suite

    Hello

    I'm trying to get my head around how would you use Data Guard with E - Business Suite.

    I know that you can use only physical standby with EBS, however I have a few basic questions about specific values < SETTING > and how they are treated by a standby.

    Given that the standby and primary servers will have different host names and that generally there are < FRAME > specific values that include the hostname, where they will have to change on the standby server, both from the point of view of the battery backup Apps and within the standby database itself, I wondered how it would happen.

    Usually, EBS cloning process would change the < FRAME > target settings in the target apps stack and the target database (for example, parameters such as FND_NODES etc.).

    Q1. However I do not know how the process of cloning E - Biz would fit with a database of the day before?

    Q2. As the standby database won't even be in an open State, I don't know yet how you would apply a party any of the cloning process to a database of pending to the target?

    Q3. Even if you were able to change on the eve of the database to reflect the < FRAME > from backup server, it would mean surely it was more a physical copy of the primary database, that's why it would be more a day before.

    All a bit confusing - any clarification appreciated

    Jim

    PL see if MOS Doc 1070033.1 can help you

  • How to use the date with the report parameter format

    Hi all

    How to use the date format with this tag function,

    <? param@begin:P_FROM_DATE? > <? $P_FROM_DATE? >

    This date of form source of report and setting is coming as this 2012/11/01 00:00:00.

    So now I need this in MY-DD-YYYY marker. I tried like this..? param@begin:P_FROM_DATE? > <? $format - date: P_FROM_DATE; ' DD-MON-YYYY '? >

    but its giving error. Can someone pls how to convert to the format of date custom.

    Thanks and greetings
    Srikkanth.M

    Problem solved.

    REF this link

    Date Format of XML

  • VCAC data collection

    How to change the data collection interval in vCAC to collect the vCAC data?

    So assuming it's vCAC 6.x, log in as an Admin fabric and then go Infrastructure > Compute Reources > highlight resources calculation and click on the "data collection".  All the options are there.

    Danny

  • How to troubleshoot incidents of endpoint vRO data collection embedded in HRV 7

    Hello

    We have problems with the collection of data for the endpoint vRO in vra 7. Data collection fails. We believe this is related to the worker DEM, but we do not know how to solve this. So far, the only mistake we have is when running on endpoint vRO data collection:

    In the console of vRA > infrastructure > monitoring, logs:

    Endpoint data collection has no endpoint internal Instance [Workflow Instance Id = 31009] vRO vRealize Orchestrator has returned an error: internal server error.

    In C:\Program Files (x 86) execution of the \VMware\vCAC\Distributed Manager\DEM - Core2\Logs\DEM-Core2_Errors

    [UTC:2016 - 05-20 21:24:05 local: 2016-05-20 14:24:05] "[Error]: Thread-Id ="11"- context =" "token =" "<? XML version = "1.0" encoding = "utf-16"? >

    < Boolean > false < / Boolean >

    Endpoint data collection has no endpoint internal Instance [Workflow Instance Id = 31009] vRO

    System.Net.WebException: vRealize Orchestrator has returned an error: internal server error.

    at DynamicOps.VcoModel.Common.VcoClient.CheckResponseStatus (IRestResponse answer)

    at DynamicOps.VcoModel.Common.VcoClient.DecodeJsonResponse (IRestResponse answer)

    to DynamicOps.VcoModel.Common.VcoVersionUtils.GetPluginsInformation (customer VcoClient)

    to DynamicOps.VcoModel.Activities.StoreVcoPluginsInformation.Execute (CodeActivityContext context)

    to System.Activities.CodeActivity.InternalExecute (ActivityInstance, executor, BookmarkManager bookmarkManager ActivityExecutor instance)

    to System.Activities.Runtime.ActivityExecutor.ExecuteActivityWorkItem.ExecuteBody (ActivityExecutor executor, BookmarkManager bookmarkManager, location resultLocation)

    In addition, when you run the data collection on an inventory of POSSIBLE computing resources, the following error occurs:

    [UTC:2016 - 05-20 22:54:53 local: 2016-05-20 15:54:53] "[Error]: Thread-Id ="12"- context =" "token =" "<? XML version = "1.0" encoding = "utf-16"? >

    < Boolean > false < / Boolean >

    Workflow "vSphereVCNSInventory" failed with the following exception:

    DynamicOps.VcoModel.Common.VcoException: Point endpoint could not be found. There is no point vRealize Orchestrator endpoints configured with the __VMware.VCenterOrchestrator.Plugin.NSX.Build property.

    to DynamicOps.VcoModel.Common.EndpointSelector.ctor (context, ManagementModelEntities, String selectionFilter)

    at DynamicOps.VCNSModel.Activities.VcoNsxHelper.VcoNsxConnectionInfo.GetVcoEndpoint (ManagementModelEntities managementDataContext, Guid virtualMachineId)

    at DynamicOps.VCNSModel.Activities.VcoNsxHelper.VcoNsxConnectionInfo.GetConnection (ManagementModelEntities managementDataContext, point endpoint VCNSEndpoint, Guid virtualMachineId)

    at DynamicOps.VCNSModel.Workflows.vSphereVCNSInventory_CompiledExpressionRoot.vSphereVCNSInventory_CompiledExpressionRoot_TypedDataContext3_ForReadOnly.__Expr21Get)

    at DynamicOps.VCNSModel.Workflows.vSphereVCNSInventory_CompiledExpressionRoot.InvokeExpression (Int32 expressionId, IList 1 locations, ActivityContext activityContext)

    to Microsoft.CSharp.Activities.CSharpValue'1.Execute (CodeActivityContext context)

    to System.Activities.Runtime.ActivityExecutor.ExecuteInResolutionContext [T] (ActivityInstance parentInstance, activity 1 expressionActivity)

    to System.Activities.InArgument'1.TryPopulateValue (LocationEnvironment targetEnvironment ActivityInstance activityInstance ActivityExecutor executor)

    to System.Activities.ActivityInstance.InternalTryPopulateArgumentValueOrScheduleExpression (RuntimeArgument argument, Int32 nextArgumentIndex, ActivityExecutor executor, IDictionary 2 argumentValueOverrides, place resultLocation, Boolean isDynamicUpdate)

    to System.Activities.ActivityInstance.ResolveArguments (ActivityExecutor executor, IDictionary 2 argumentValueOverrides, place resultLocation, Int32 startIndex)

    to System.Activities.Runtime.ActivityExecutor.ExecuteActivityWorkItem.ExecuteBody (ActivityExecutor executor, BookmarkManager bookmarkManager, location resultLocation)

    We use a distributed deployment of vRA 7 and have 2 devices with the built-in vro. Both devices show the service as running vco-server, and I can connect to each instance of vco using the orchestrator client. Also the asax component can load workflows vro. I am able to navigate to the inventory.

    Also, we noticed this problem after one of our servers of iaas is dead on us. We had to rebuild a starting from scratch and shiv inside. It was the Manager node, then this is the EDO, DEM and Manager of services that run on it. Not sure if this is related, it's just that we noticed after. It could occurred earlier also...

    Any suggestions on where to look to refine this would be greatly appreciated.

    Thank you

    Darrenoid

    Thank you for your response.

    I finally understood that this morning. I searched in the /var/log/vco/app-server/server.log on the vra devices and found errors like this:

    2016-05-21 08:31:33.345 - 0700 [http-nio-127.0.0.1-8280-exec-10] ERROR {} [[restServlet]] Servlet.service () for servlet [restServlet] in the context of path [/vco] has thrown the exception [processing request failed, the nested exception is java.lang.NullPointerException] origin

    java.lang.NullPointerException

    at com.vmware.o11n.web.util.CommonUtil.getServerConfiguration(CommonUtil.java:44)

    at com.vmware.o11n.web.plugins.PluginController.listAllPlugins(PluginController.java:116)

    at sun.reflect.GeneratedMethodAccessor347.invoke (unknown Source)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)

    at java.lang.reflect.Method.invoke(Method.java:497)

    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:221)

    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:137)

    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:110)

    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:806)

    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:729)

    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:85)

    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:959)

    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:893)

    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)

    at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)

    at javax.servlet.http.HttpServlet.service(HttpServlet.java:622)

    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)

    at javax.servlet.http.HttpServlet.service(HttpServlet.java:729)

    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:291)

    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)

    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52)

    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:239)

    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)

    to org.springframework.security.web.FilterChainProxy$ VirtualFilterChain.doFilter (FilterChainProxy.java:316)

    at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:126)

    at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:90)

    to org.springframework.security.web.FilterChainProxy$ VirtualFilterChain.doFilter (FilterChainProxy.java:330)

    at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:114)

    to org.springframework.security.web.FilterChainProxy$ VirtualFilterChain.doFilter (FilterChainProxy.java:330)

    at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:111)

    to org.springframework.security.web.FilterChainProxy$ VirtualFilterChain.doFilter (FilterChainProxy.java:330)

    at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:169)

    to org.springframework.security.web.FilterChainProxy$ VirtualFilterChain.doFilter (FilterChainProxy.java:330)

    at org.springframework.security.web.authentication.www.BasicAuthenticationFilter.doFilterInternal (BasicAuthenticationFilter.java:158)

    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)

    to org.springframework.security.web.FilterChainProxy$ VirtualFilterChain.doFilter (FilterChainProxy.java:330)

    at com.vmware.o11n.web.auth.http.TokenAuthenticationFilter.doFilter(TokenAuthenticationFilter.java:97)

    to org.springframework.security.web.FilterChainProxy$ VirtualFilterChain.doFilter (FilterChainProxy.java:330)

    at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:64)

    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)

    to org.springframework.security.web.FilterChainProxy$ VirtualFilterChain.doFilter (FilterChainProxy.java:330)

    at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:53)

    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)

    to org.springframework.security.web.FilterChainProxy$ VirtualFilterChain.doFilter (FilterChainProxy.java:330)

    at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:91)

    to org.springframework.security.web.FilterChainProxy$ VirtualFilterChain.doFilter (FilterChainProxy.java:330)

    at org.springframework.security.web.access.channel.ChannelProcessingFilter.doFilter(ChannelProcessingFilter.java:152)

    to org.springframework.security.web.FilterChainProxy$ VirtualFilterChain.doFilter (FilterChainProxy.java:330)

    at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:213)

    at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:176)

    at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:346)

    at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:262)

    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:239)

    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)

    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:85)

    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)

    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:239)

    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)

    at org.springframework.web.filter.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:77)

    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)

    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:239)

    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)

    at com.vmware.o11n.json.DefaultJsonVersionHeaderFilter.doFilter(DefaultJsonVersionHeaderFilter.java:95)

    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:239)

    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)

    at com.vmware.o11n.web.cluster.RestActiveNodeFilter.doFilter(RestActiveNodeFilter.java:50)

    at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:346)

    at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:262)

    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:239)

    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)

    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:219)

    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:106)

    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:614)

    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:142)

    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:79)

    at org.apache.catalina.valves.RemoteIpValve.invoke(RemoteIpValve.java:676)

    at org.apache.catalina.valves.AbstractAccessLogValve.invoke(AbstractAccessLogValve.java:616)

    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:88)

    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:518)

    at org.apache.coyote.http11.AbstractHttp11Processor.process(AbstractHttp11Processor.java:1091)

    to org.apache.coyote.AbstractProtocol$ AbstractConnectionHandler.process (AbstractProtocol.java:673)

    to org.apache.tomcat.util.net.NioEndpoint$ SocketProcessor.doRun (NioEndpoint.java:1526)

    to org.apache.tomcat.util.net.NioEndpoint$ SocketProcessor.run (NioEndpoint.java:1482)

    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)

    to java.util.concurrent.ThreadPoolExecutor$ Worker.run (ThreadPoolExecutor.java:617)

    to org.apache.tomcat.util.threads.TaskThread$ WrappingRunnable.run (TaskThread.java:61)

    at java.lang.Thread.run(Thread.java:745)

    I searched google for the first line in the stack trace 'com.vmware.o11n.web.util.CommonUtil.getServerConfiguration' and came across this recent article from VMWare:

    https://KB.VMware.com/selfservice/microsites/search.do?language=en_US&cmd=displayKC&externalID=2145044

    That fixed it for me, now the collection of data on the endpoint vro works.

    Kind regards

    Darrenoid

Maybe you are looking for

  • All few minutes my L500 Statelite begins to lag and freezes

    Just last week, I was in the fight of the problems with Statelite, PSLS9A/L500-025012. Every few minutes, or so it starts to lag and crashes especially on Firefox and IE Web pages. During this period, I can always access Win emails and other programs

  • Can I use a disc of recovery for transfers of files, data storage, etc.?

    Hello I bought 2 Z580 days back with windows 8. I did recovery disc on my drive external usb hard 250 GB using OneKey Recovery. Can I use tht same drive for file transerfers, store files, etc? Is it possible to make the recovery disc for win8?

  • HP 8560w: CPU clock stuck at maximum speed

    I am under W7 Pro 64 bit on an HP Elitebook 8560w, with i7 2820QM. Yesterday after installing a new device (external finger scanner), I noticed that the fan is running too high. I checked the CPU usage, it has been very low: up to 5%. The processor c

  • Attempt to update XP SP3 and get this error 0x8024800A

    I have an 0x8024800A error that will not update my computer, this computer is a Dell laptop, and it has not fed for about 6 to 8 months. I have read everything I can find on the KB and nothing seems to help. . The website has encountered a problem an

  • printing from samsung Galaxy

    is it possible to print from a samsung galaxy s2 smartphone to my hp photosmart 7150 by e-print