go to post Daniel Kutac · Dec 2, 2016 Bill, I'm having troubles launching the new Atelier on Windows 10, it says this:any idea?I have this java:java version "1.8.0_111"Java(TM) SE Runtime Environment (build 1.8.0_111-b14)Java HotSpot(TM) Client VM (build 25.111-b14, mixed mode) DanPS: Actually, colleague of mine has the same problem on his machine.
go to post Daniel Kutac · Nov 17, 2016 Probably not, as long as it inherits from correct parent. But then you need to make sure it's visible where it should (either via mapping or just copying to all namespaces needed)
go to post Daniel Kutac · Nov 2, 2016 Ricardo, we had direct communication about this issue. AFAIK, the last message from you was that you're all set. Can you please post an answer with description of what steps you took to fix the issue?Or am I wrong? Thank you.Dan Kutac
go to post Daniel Kutac · Oct 6, 2016 I have never been into building electric circuits, but this Arduion toy really got me. Purchased one and now starting experimenting. Next phase - with Cache. Nice topic.
go to post Daniel Kutac · Sep 9, 2016 You can store both structured and unstructured data in Cache. Thus you can retrieve this data. For structured data you can use regular SQL, XML or Object approach and others (JSON etc...). For unstructured data we have iKnow technology that allows to search such data. Please visit our documentation pages andf filter product to Cache.Dan
go to post Daniel Kutac · Sep 9, 2016 No prodlog opened yet, Timur. But it might be worthy asking at least to put the information about performance of the method into the class reference and documentation of file outbound adapter. I'll do that.Dan
go to post Daniel Kutac · Jul 19, 2016 Well, whilst it is true that we have much better ways of handling JSON today, this article mentions is by pure coincidence, driven by the fact that I had that problem some 3 years ago and when searching for solution, I found write redirection code withing the class mentioned in the article.BTW: there is a %Device class available, that wraps redirection code, so no need to write your own mac code anymore.
go to post Daniel Kutac · Jul 15, 2016 I tried several variants, and it seems to me that "dummy numbers" were result of some data corruption in customer database as I could not reproduce it.
go to post Daniel Kutac · Jun 27, 2016 Glad you sorted this out Murillo. However, one of great features of rules is that one can change them on the fly and as soon as they are compiled, the new version becomes active, without need to stop component/production. It would be difficult to find out now, why you needed to stop production. Perhaps Ensemble system developers can comments. On the other hand, it is true that you need (since 2010 or so) to stop/start production components (services, operations) when they are modified and compiled.
go to post Daniel Kutac · Jun 21, 2016 sure, supposed you have a class opened with the rule definition (the XML data you showed earlier) you just click a tiny icon with a little search glass in it. Or you can press Ctrl+Shift+V at the same time. This would bring the ObjectScript layer of the rule.But my feeling is that condition is simply never called due to the constraint in the rule 1. the constraint is evaluated first before it let's you go and evaluate condition within rule.You can also change level of tracing information produced by the rule, just makes sure that you production has "Log General Trace Events" turned on, then the Business process that uses the rule has "Log Trace Events: on and Rule logging set to "a" for collecting ALL details. This could also help in determining what is rule evaluating.Dan
go to post Daniel Kutac · Jun 21, 2016 My point was that if you can see at the INT (I was originally pointing to MAC) level, what actual ObjectScript code the rule (XML) generates, it would be easier to understand what's going on. You need to call View Other once more, from XML view, to get to the INT level. it would also help, if you put TRACE element and evaluate the two message properties there to see what Ensemble thinks of them.
go to post Daniel Kutac · Jun 21, 2016 Murillo,I'd open the rule definition in Studio, use View Other untill you see generated MAC code. That would give you direct clue what is evaluated and when/why.Dan
go to post Daniel Kutac · Jun 13, 2016 got it. I was missing xmlns declaration.this #dim vDoc as EnsLib.EDI.XML.Document=##class(EnsLib.EDI.XML.Document).ImportFromString("<Body xmlns=""http://tempuri.org/ISC/JBH""><Topic>Temperature</Topic><Value>30</Value></Body>",.sc) works as expected.
go to post Daniel Kutac · Jun 13, 2016 Thank you Markus for hint,I have modified the code to read this way:#dim vDoc as EnsLib.EDI.XML.Document=##class(EnsLib.EDI.XML.Document).ImportFromString("<Body><Topic>Temperature</Topic><Value>30</Value></Body>",.sc)s vDoc.DocType="message:Body"s vDoc.DocTypeCategory="message"w !,vDoc.GetValueAt("/Body/Value")w !,vDoc.GetValueAt("Value",,.sc)if $$$ISERR(sc) d $System.Status.DisplayError(sc) but it throws :ERROR <Ens>ErrGeneral: Can't evaluate DOM path '/Body/$2:Value' because xsd_2:Topic in /Body/xsd_2:Value is not an element, instead this node is a 'unknown' node. this drives me mad...BTW: you're still using DOM way and not property path way of retrieving data.
go to post Daniel Kutac · Jun 1, 2016 Stefan's initial answer is the best for me. Everything else is just too much work.
go to post Daniel Kutac · Jun 1, 2016 Cool!Thanks Stefan, yes I used Apache that comes with Cache. Putting directive you suggested solved my issue.DanPS: use case = pass pivot name into a rest service, I tend to use slashes to organize my DeepSee stuff into 'folders'
go to post Daniel Kutac · May 31, 2016 Cool!the VM I was experimenting with, is still on 2015.2. Time to upgrade.Thanks Joe!
go to post Daniel Kutac · May 31, 2016 I have seen it, but I need this: https://developers.google.com/maps/documentation/javascript/examples/lay...
go to post Daniel Kutac · May 31, 2016 Thank you Eduard!You saved me a lot of time! I am working on a small project where I am implementing Google HeatMap as a new way of displaying DeepSee geographical data. and for that, I just want to supply the source of data - the saved pivot definition, retrieve the MDX and execute it and build array of GEO points.
go to post Daniel Kutac · May 16, 2016 Thank you all for responses.I tried bootstrap and Angular, and after an indeed a painful period of trying to understand angular's javascript templates, I created some decent templates out of those available at web. This seems to be a good way forward and good to recommend to customers as an approach.Dan