In a fresh IRIS Community Edition container if we create a new Database and after we create a new Namespace enabling it for interoperability then we will see the message "ERROR #68: the mounted database count exceeds license limit"
Hello,
We need to consume files (right now using FileInboundAdapter) with a strict order.
Example:
File order will be A, B, C. Suppose A, B and C will be the names of the files.
Then B will never be consumed before A or after C.
How deal with this? Any idea?
Regards
Hello,
There is a programatic way to Export/Import the Ensemble System Default Settings?
I know you can use the Production Export Screen and add the "Deployable settings" but I am looking for something more quick and flexible
Thanks
I want do to a "simple thing". Show a dynamic log of actions in the browser as we can see on Terminal. For that, I guess to make a simple CSP Page that show a new line every WRITE command is the thing I need.
But how I refresh after each WRITE?
How I can refresh the content automatically?
I made a simple CSP Page and in method OnPage I do this test:
for i=1:1:10{
hang 1
write "Doing "_i,!
}
Don't work... because the browser show me only after the process finish.
I guess I should use another way... any help?
Hello,
I am trying to router a custom message using the content of one of its property, but this property is a List. ¿How I can do it?
The rule could be something like this
<rule name="">
<constraint name="msgClass" value="Test.TestMessage"></constraint>
<when condition="Document.myList.GetAt(1).property1="AA"">
<send transform="" target="DummyOperation"></send>
<return></return>
</when>
</rule>But this rule doesn't compile.
TestClass is a simple Request Class like this:
Class Test.TestMessage Extends Ens.
Usually I recommend to set the global buffer (GB) as large as possible in order to maintain in memory more globals as possible. I don't know if this is a standard recommendation, but I want to discuss what should be the best buffer size for a Ensemble instance that only process messages.
I mean, if the instance only runs productions that pass messages then the 90% of the global access is used for persist the messages.
Hello,
I am trying to use %ZEN.proxyObject to send out in JSON format so I do:
set tProxyRequest.notanumber = "28001"
set tProxyRequest.aboolean = "true"
set tBody = ##class(%GlobalCharacterStream).%New()
do ##class(Ens.Util.JSON).ObjectToJSONStream(tProxyRequest,.tBody,"aelotwu")
w tBody.Read()
and I get:
{
"aboolean":"true",
"notanumber":28001
}
But I want this:
{
"aboolean":true,
"notanumber":"28001"
}
Help please !
Hello,
I am trying to log the output of csession in Linux. I try this command:
csession cache | tee myoutput.log
Although it works each new lines at screen output doesn't appear at row 1...
Any tip?
There is any mean to use different fonts? For example "Courier New" for code text, or different colors? To work only with HTML is too hard