Because it is a part of admin-panel of our web-application, that could generate any task.
- Log in to post comments
Because it is a part of admin-panel of our web-application, that could generate any task.
Yes, it's possible. For this you need to create class of the task. I used it to create server-monitoring sheduled task, that send me eamil. For example, i have class, that contains parameters of futured monitoring tasks (like task-name, period, timestart, timefinish, activity, description and so on), and contain method to create task:
I have the same problem with cache-2017.2.0.744.0-win_x64 on Win 10 Pro 64, no kaspersky, windows defender was off. No solution yet?
Yes, I tried thats tutorial, and yes, I use Cache, not Ensemble
I think this guide needs to be updated, because of new versions of client and RabbitMQ Performance Testing Tool are avaliable. I used rabbitmq-perf-test 2.8.1 and amqp-client-5.7.3
I had problems with Runing HelloServer example, error was Could not find or load main class com.rabbitmq.examples.HelloServer, may be because there is no such classes in new versions of testing tool. And it seems like author forgot to specify that we need to copy runjava to bin client directory, not only *.jar file..
So I can't start hello-server example, please, help me.
What I need do to use it on Cache 2018 except Ensemble?
Hi Yuriy,
Not so far ago I was need such utilit, and i didn't find it, so I've written simple method, that converts xml-node from DOM-represented xml, may be it'll be usefull for you:
/// Метод генерации динамичекского объекта из ноды /// Подчеркивания и дефисы в названиях тегов удаляются ClassMethod NodeToDynObj(Node As %XML.Node) As %DynamicObject { d Node.MoveToFirstChild(1) i (Node.NodeType = $$$xmlTEXTNODE) { s res = Node.NodeData d Node.MoveToParent(1) q res } s res = {} do { s propertyName = $TR(Node.LocalName,"-_","") continue:propertyName="" i ((Node.HasChildNodes(1)) && (Node.NodeType '=$$$xmlWHITESPACENODE) && (Node.NodeType '=$$$xmlTEXTNODE)){ s value = ..NodeToDynObj(Node) d res.%Set(propertyName,value) } else{ s value = "" d Node.GetText(.value) d res.%Set(propertyName,value) } } while Node.MoveToNextSibling(1) d Node.MoveToParent(1) q res }