go to post Robert Cemper · Jun 1, 2022 Do you still expect some echo?Or is the question meanwhile just out of date?
go to post Robert Cemper · Jun 1, 2022 Do you still expect some echo?Or is the question meanwhile just out of date?
go to post Robert Cemper · Jun 1, 2022 Do you still expect some echo?Or is the question meanwhile just out of date?
go to post Robert Cemper · May 28, 2022 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()
go to post Robert Cemper · May 28, 2022 Just an idea:wouldn't CopyFromAndSave(source As %Stream.Object) be a better approach ??
go to post Robert Cemper · May 28, 2022 just after Do Httprequest.EntityBody.Write(mystring)Do Httprequest.EntityBody.%Save() As with any other object
go to post Robert Cemper · May 28, 2022 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
go to post Robert Cemper · May 26, 2022 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)
go to post Robert Cemper · May 25, 2022 Check acces rights to the files.Especially for the Windows USER your Caché installation is runing on.
go to post Robert Cemper · May 23, 2022 Once again I fail to follow the repeated almost religious secret of $LIST() encodingthat 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.
go to post Robert Cemper · May 22, 2022 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()
go to post Robert Cemper · May 20, 2022 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)
go to post Robert Cemper · May 18, 2022 YES it works ! IMAGE_NAME: iris-google-run-demo SERVICE: deploy-demo DOMAIN_NAME: deploy.demo.community.intersystems.com The domain should end .demo.community.intersystems.com just like all others
go to post Robert Cemper · May 18, 2022 Take a closer look to Caché I/O Device Guideespecially Chapter 5: TCP Client/Server Communication
go to post Robert Cemper · May 17, 2022 As you operate on 2014.* just write it down as any other string. after 2017.1 you may (but are not forced to) use %DynamicObjects and %%DynamicArrays.but the result looks the same