Robert Cemper · Jun 20, 2022 go to post

Does  NewHeaderId allow NULL or is it required ?
in addition, you could try '' instead of NULL

Robert Cemper · Jun 20, 2022 go to post

I joined with an article and a video.
Might be an inspiration for other writers.

Robert Cemper · Jun 15, 2022 go to post

CloudStudio is now also available with Docker Support and on Online Demo Server 

Docker support

Prerequisites

Make sure you have git and Docker desktop installed.

Installation

Clone/git pull the repo into any local directory

git https://github.com/rcemper/Dataset-OEX-reviews.git

Run the IRIS container with your project:

docker-compose up -d --build

How to Test it

http://localhost:42773/cloudstudio/CloudStudio.Index.cls

or use Online Demo 

Robert Cemper · Jun 13, 2022 go to post

you get  <FILEFULL> in the directory  e:\eos\ and this is full. Whatever file you write there.
could E:\ be your journal location ? or temp ?
 

Robert Cemper · Jun 8, 2022 go to post

to use ECP you need a MultiServer License. Entree (the smallest, cheapest) is note suited for it.

Robert Cemper · Jun 2, 2022 go to post

Version 0.0.2 
Improved Statistic #5 "Winner's Profile" as Rank vs. Contest table

Robert Cemper · May 28, 2022 go to post
set sc=rs.Execute("a")

You pass a paramter,
but there is no need for a parameter visible.  NO ? in query

try

set sc=rs.Execute()

Robert Cemper · May 28, 2022 go to post

just after

Do Httprequest.EntityBody.Write(mystring)
Do Httprequest.EntityBody.%Save()

As with any other object

Robert Cemper · May 28, 2022 go to post

Httprequest.EntityBody is a %GlobalBinaryStream object.
In your code I see

Do Httprequest.EntityBody.Write(mystring)

But no %Save()  to take care of completion and persistence of the object

Robert Cemper · May 26, 2022 go to post

Congrats!
By manual intervention, you managed to get your index out of sync with your date.
Check this Repairing your Index

Sorry the method is not yet available in 2014.1 you need a Rebuildindex (from SMP)

Robert Cemper · May 25, 2022 go to post

Check acces rights to the files.
Especially for the Windows USER your Caché installation is runing on. 

Robert Cemper · May 23, 2022 go to post

Once again I fail to follow the repeated almost religious secret of $LIST() encoding
that is celebrated by Support and Engineering over decades.
Especially when the use of the knowledge is labeled "illegal".
That's just disappointing.

The problem of a possible unexpected change rather indicates incomplete Release Notes to me. 

Robert Cemper · May 22, 2022 go to post

Do you expect to save #1) the input JSON object or
#2) a dump of the converted result?
For both:

set stream=##class( %Stream.GlobalCharacter).%New()

#1)  with myjson as your JSON input

do stream.Write(myjson)
do stream.%Save()  

#2) dump the generated Object  obj  using my package Full-OBJ-Dump described here

do ##class(Z.obj).dumpToStream(.stream,obj,1)
do stream.%Save()  
Robert Cemper · May 20, 2022 go to post

try:

Set REC="CANTON,TX.,75103"
Set li=$LFS(REC)
SET ZIP=$li(li,3)
SET STA= $li(li,2)
SET CTY=$li(li,1)