Question Mike Kadow · Apr 4, 2016

Hey, those who created and are maintaining the Community software.

There is a lot of very good post coming in.

However, how do I either send them off to my Email or a File to save them.

I do no wish to lose some of these posts in the volume of what is coming in!

Help me Mr. Wizard!

I am sure someone knows how.

3
0 386
Article Paul Gomez · Apr 3, 2016 1m read

Task
[DCE-96] - Show views counter for the post
[DCE-97] - Clean up My Collaborations and My Content
[DCE-108] - Remove Find Menu
[DCE-109] - Search page - fix Categories dropdown, remove internal naming
[DCE-110] - Add warning to comments, answers and posts when page is dirty and you move off-page
[DCE-111] - Developer Synchronization: Copy global-summit-2016 view

Bug
[DCE-93] - Post author and date messaging is wrong on Post Detail Page
[DCE-112] - Improve Tag Selection - Handle Special Characters
 

0
0 248
Question Jose Antonio Cañizares · Apr 1, 2016

Hi all,

I've been looking for a way to extract the sorting  from the ^CacheTemp.zenData global that contain the tablePane snapshot data in order to use it on a report following the current UI sorting criteria.

I could see that if the column is sorted by one column, new entries with this structure are created:

^CacheTemp.zenData(<sessionId>,<snapShotId>,<tablePaneId>,"index",<columnId>,<value>,<dataId>)=""

These are created the first time that the sort criteria is applied (asc) and has the same amount of entries as the data being displayed. But then if I change the criteria to descentant this data

6
0 611
Announcement Evgeny Shvarov · Apr 1, 2016

Hi, Community!

Here is the digest of the most interesting and valuable articles published on Developer Community in March 2016.

If we missed something interesting, please feel free to add it in comments.

So, here we go!

News and Events

Caché and Ensemble 2016.1 Release

New Book, Caché and MUMPS – Part II

Global Summit Contest I

Global Summit Contest II

Most commented

Class Projections and Projection Classes – 15 comments

How to display or save stack information? – 12 comments

Using Class Queries - %SQL.Statement versus %Library.ResultSet – 12 comments

How can I pass multiple parameters to an Ensemble REST

0
0 434
Article sween · Mar 24, 2016 3m read

This will be a stretch to be useful, but it was sorta fun.  If you just so happen to have a use case to make your HealthShare productions talk to a Slack channel, this is the Business Operation for you.

In Slack, it is a dead simple process to enable an incoming web hook:

  • Name It
  • Give it an Icon or Emoji
  • Declare a Channel to Interact With

One you supplies those, it spits out a URL that you can go to town posting to your channel using that endpoint.

To demonstrate this, I whooped up a small Production that accepted HL7 via a Business Service, and routed the message to the Slack Busine

3
0 789
Question Chris Stewart · Mar 29, 2016

Hi

I have been experimenting with the creation of a set of REST services for an app.  The basic GET operation is set to create a %ZEN.proxyObject instance, and then set an instance of a Persistant class as a property, which gives me all of the values I want to return.  However, it also gives me some values that I don't want to return over REST (because they are both private, and large registered objects which will bog down performance)

How do I remove these values from the ZENproxyObject?  I can only see a full clear() in the documentation, but nothing which can remove individual elements

Thanks

3
0 573
Question Eduard Lebedyuk · Mar 28, 2016

Hello.

For debugging purposes I  sometimes need to display stack information to the current device or save it (to a global for example).

There is this snippet offered in documentation:

ClassMethod StackToDisplay()
{
    For loop = 0:1:$Stack(-1) {
        Write !, "Context level:", loop, ?25, "Context type: ", $Stack(loop)
        Write !, ?5, "Current place: ", $Stack(loop, "PLACE")
        Write !, ?5, "Current source: ", $Stack(loop, "MCODE")
        Write !
    }
}

And to save stack to a global there's always an exception method:

ClassMethod StackToGlobal()
{
    Set ex = ##
11
0 1778
Article Alberto Fuentes · Feb 19, 2016 2m read

The attached file contains two $system.Event examples that processes work asynchronously using persistent queues:

Events_Simple

This is a very basic example that creates some worker processes and then enqueue messages to them using $system.Event.

; create shared resource, create worker jobs.USER>do ##class(IAT.S04.Event.Test).Setup(); enqueue some messages to workers and see what happensUSER>do ##class(IAT.S04.Event.Test).Run()Show log? no/[yes]:

Example Log

6
1 1329
Article Steve Brunner · Jan 25, 2016 1m read

I am pleased to announce the field test of Caché and Ensemble 2016.2 -  an exciting new release with improvements on many different fronts.

The entire product team at InterSystems looks forward to your participation in the field test and feedback over the coming months.

Some of the more profound changes in 2016.2 include:

  • Atelier - the new multi-platform IDE for Caché, Ensemble and HealthShare.
  • Introduction of a DOCUMENT data model (extending the reach of our multi-model capabilities)
  • Concurrent management and configuration of many servers

As always, there are a host of scalability and performance i

6
0 1232
Question Chip Gore · Mar 29, 2016

Hi -

I was looking at the “Purge Data Management” page, and one of the “Record Types” is the “I/O Log” which sometimes doesn’t clear when you purge all of the message.

But I’m not sure what it’s actually reporting as “I/O Log” messages (and I can’t find anyplace to view what is being considered I/O Logged Messages - so I can understand what’s happening)

Can anyone shed some light on these messages?

1
0 389
Question Benjamin Eriksson · Mar 22, 2016

Hello! 

We use iKnow's GetSimilar for decision making. Right now we have a domain with both good and bad documents and using GetSimilar we want to see if a document is more similar to the good ones or the bad ones. To do this we simply compare the weighted average of the score from the good ones and the bad ones that GetSimilar returns.  

The problem is that GetSimilar doesn't always return the score to all other documents. Assuming we have 50 documents I would expect the following result:


DO ##class(%iKnow.Queries.SourceAPI).GetSimilar(.sim,domId,id,1,200,"",$$$SIMSRCSIMPLE, $LB("ent"))

1
0 425
Article Mike Kadow · Mar 26, 2016 1m read

If you are waiting for the Kindle Edition of Caché and MUMPS – Part II, I must apologize. I believed what others told me that once I have a book manuscript, the Kindle manuscript will be easy. Being a programmer I should have remembered: "never assume anything." The conversion to Kindle is proving a much bigger task than I thought. But don't lose heart, I am working full time on it. I have as my goal before May 1st. But, then again, you know what they say about goals. ;) - - Paul Mike Kadow

0
0 373
Question Harry Tong · Mar 22, 2016

Hi Community: I have a legacy Caché based app that has Zlogin or %Zlogin routine. I understand that such routine will be invoked as soon as the user logs in. Can someone tell me where to find such routine? The namespace where the user connects to? Or in CACHESYS? Thanks, HT

3
0 595
Article Paul Gomez · Mar 24, 2016 1m read

Here are the release notes for the release planned for Friday, March 25th.

Task
[DCE-64] - Need breadcrumbs at top of post detail page (/post)
[DCE-71] - Developer Synchronization: Main page now filtering Feedback
[DCE-80] - Change ranking (relevancy) definition on the search results page
[DCE-87] - Need tag cloud page
[DCE-88] - Install AutoComplete Deluxe Module
[DCE-89] - Tag selection in New Post should work like JIRA's tag selection
[DCE-90] - Tag selection in New Post should auto-select group
[DCE-92] - Developer Synchronization: Email template modifications

Bug
[DCE-76] - Search results need to be

2
0 277
Question Josh Barney · Mar 24, 2016

I believe the I have followed the instructions to attach a document to the body of a post request but nothing is being sent out in the files{} port of the request.  I can either get the stream in "data", not visible at all, or visible but no form data. Any help would be appreciated, below is what I have:

ClassMethod SendFax(phone As %Stringcoverpath As %Stringdocpath As %StringAs %String
{
     Set req ##class(%Net.HttpRequest).%New()
    //test server
    Set req.Server "httpbin.org"
    Set req.SSLConfiguration "CardChoice"
    
    Do req.InsertFormData("Username",##class(HData.SiteSett




3
0 2542
Article Jon Jensen · Mar 23, 2016 1m read

It looks like andreas posting is in triplicate - I am sure the bureaucrats are very happy - on the homepage

Not sure why...?  Is there really 3 unique posts IDs that are the same or is there a bug in the hoempage display logic that is repeating the items listed?

triple post

1
0 262
InterSystems Official Andreas Dieckow · Jan 27, 2016 1m read

At the end of this year support for OpenSSL 1.0.1 will end. InterSystems has started the process to move to OpenSSL 1.0.2 and use the 1/28/2016 release (1.0.2f) for verification and product inclusion. I will update this post once InterSystems  decided which versions will receive  support for OpenSSL 1.0.2.

1
0 555
Question Eduard Lebedyuk · Mar 20, 2016

Here's the screenshot of the sidebar widget "Related conversations":

 

The question turn-key export of data for XML-enabled class currently has 2 answers, 0 comments for the post and 1 comment for an answer. I think it would be more informative to display one of these metrics in the widget:

  • Number of answers and comments for post and comments for answers
  • Number of answers and comments for post
  • Number of answers

Instead of the current value of number of comments for post.

2
0 289
Article John Murray · Mar 18, 2016 1m read

Here's something I find a bit awkward. Suppose I'm reading the posts in a group, e.g from https://community.intersystems.com/group/developer-community-feedback

I see an interesting post, so I click into it.

I add a comment to the post.

Now I want to go back to the list of posts in the group, i.e. to https://community.intersystems.com/group/developer-community-feedback but I don't see a link that takes me there. I have to resort to several clicks on the browser back button.

Perhaps it'd help if somewhere on a post's header you gave us the name of the group owning the post. A click on it could take

3
0 157
Article Scott Beeson · Mar 17, 2016 1m read
Option 1:
Groups are renamed "Forums".  They are segregated and have their own sets of tags.  If I'm viewing "Ensemble" and I click "Create a Post", it is posted in that forum.  I must tag the post with one or more tags from that forum, "Business Service", "Production", "DTD", etc.  Tags can be assigned to multiple forums.  I am never prompted to choose a "group"/forum.  It's based on the context I was viewing.
Option 2:
Groups and tags are completely removed and replaced with "Topics" and subtopics.  These work just like tags except that the first one chosen is the topic.  
Option 3:
Complete ta
1
0 243
Article Paul Gomez · Mar 17, 2016 1m read

We can change to this mode of UI in the Create New Post that I think makes the tag usage easier. There's help text under the window in this screen shot and it will contain instructions on the use of tagging, the benefits and also a link to a standing post to request new tags. I think this method of operation will allow us to add many more tags without making them burdensome to navigate.

Thoughts?

Not quite sure how to connect groups to tags in this UI but that might be the next step.

5
0 302
Article Scott Beeson · Mar 17, 2016 1m read

I received an email notification and the only link was directly to the comment: https://community.intersystems.com/question406316/answer406331

From that page you can see that there is no way to get to the full question itself (unless I'm missing it).  

Looking through my subscriptions it looks like I'm literally subscribed to the answer and not the main topic. 

4
0 390