- Log in to post comments
User bio
404 bio not found
Member since Jan 11, 2023
Posts:
David has not published any posts yet.
Replies:
byte[] content = (binary content of exported xml file)
string flags = "/compile=1"
var iris = IRIS.CreateIRIS(cn);
string text = System.Text.Encoding.UTF8.GetString(content);
IRISObject stream = (IRISObject)iris.ClassMethodObject("%Stream.GlobalCharacter", "%New");
stream.InvokeVoid("Write", content);
iris.ClassMethodStatusCode("%SYSTEM.OBJ", "LoadStream", stream, flags, errorlog);
- Log in to post comments
Certifications & Credly badges:
David has no Certifications & Credly badges yet.
Followers:
David has no followers yet.
Following:
David has not followed anybody yet.
Sorry, las reply was wrong
stream.InvokeVoid("Write", text)
byte[] content = (binary content of exported xml file)
string flags = "/compile=1"
var iris = IRIS.CreateIRIS(cn);
string text = System.Text.Encoding.UTF8.GetString(content);
IRISObject stream = (IRISObject)iris.ClassMethodObject("%Stream.GlobalCharacter", "%New");
stream.InvokeVoid("Write", text);
iris.ClassMethodStatusCode("%SYSTEM.OBJ", "LoadStream", stream, flags, errorlog);