Have you tried to merge the pdf using Embedded Python? In IRIS 2023 is already available, you only require to install the pypdf library in your instance to use it.
You can find an example of pdf merge using python here.
This is a personal opinion but I think that it means that the restoring of the journal didn't affect all the databases of the system located in different folders.
If you execute the bat file from the command line of Windows...does it work? Maybe the PATH to the java bin folder is not accessible from the Ensemble user.
Try removing the Tiempo de espera and... Could you show the popup when you click on the magnifying glass of Llamadas? Just to be sure that it had correctly detected the calls.
The problem with web applications is that sometimes the behaviour is a bit "stange", it's possible that the DTL page would be cached on explorer's memory and this makes it to work with errors.
Well, not sure if this would work but maybe you can set the stream into a dynamic object using the stream>base64 transformation and compare base64 Vs base64.
go to post
Have you tried to merge the pdf using Embedded Python? In IRIS 2023 is already available, you only require to install the pypdf library in your instance to use it.
You can find an example of pdf merge using python here.
go to post
Here is the documentation for the Nginx in Windows:
https://docs.intersystems.com/healthconnect20243/csp/docbook/Doc.View.cl...
go to post
Thank you very much Community!!
go to post
You can get the latest version from here:
https://containers.intersystems.com/contents?family=InterSystems%20IRIS%...
go to post
Thank you very much! With the Community to the infinity and beyond!
go to post
Maybe the error is on the declaration of the table, use the parameter NODELIMITEDIDS for the declaration:
CREATE FOREIGN SERVER server-name FOREIGN DATA WRAPPER jdbc CONNECTION 'mysqlconnection' NODELIMITEDIDS
go to post
This is a personal opinion but I think that it means that the restoring of the journal didn't affect all the databases of the system located in different folders.
go to post
Hi @Martin Staudigel you only can include DTD in the XSD if you define it using specific flags.
The solution is to create a new class to import the schema in XSD programatically. This is an example of the code:
Class XML.SchemaReader Extends %Persistent { ClassMethod ImportClasses(fileName As %String = "C:\Temp\example.xsd") As %Status { #include %occInclude #include %occSAX #dim sReader as %XML.Utils.SchemaReader = ##class(%XML.Utils.SchemaReader).%New() #dim features as Filero.DataType.String set sReader.SAXFlags = $$$SAXFULLDEFAULT-$$$SAXVALIDATIONREUSEGRAMMAR set sReader.MakePersistent = 0 set sReader.MakeRelationships = 0 set sReader.GenerateXMLNILNOOBJECT = 1 set sReader.GenerateXMLNIL = 1 set sReader.KeepEmptyClasses = 1 set features("BINARYASSTREAM") = 1 quit sReader.Process(fileName,"ImportedScheme",.features) } }
This code will create a package "ImportedScheme" in your IRIS
go to post
As the creator of the idea, you have all my support! The localized versions are really confusing with literal translations that have no sense.
go to post
If you execute the bat file from the command line of Windows...does it work? Maybe the PATH to the java bin folder is not accessible from the Ensemble user.
go to post
Hi @Kurro Lopez
Did you follow step by step this documentation?
go to post
Try removing the Tiempo de espera and... Could you show the popup when you click on the magnifying glass of Llamadas? Just to be sure that it had correctly detected the calls.
go to post
Try to put together all the calls followed by the sync, all of them inside the scope and at the end, after the sync, the catchall.
go to post
Sync is your friend! Declare it after calls and configure it to wait for the answers.
https://docs.intersystems.com/irislatest/csp/docbook/DocBook.UI.Page.cls...
go to post
The problem with web applications is that sometimes the behaviour is a bit "stange", it's possible that the DTL page would be cached on explorer's memory and this makes it to work with errors.
go to post
It's really easy, to declare a dynamic object you just need:
set dynamicObject = {} do dynamicObject.%Set(...)
https://docs.intersystems.com/csp/docbook/Doc.View.cls?FIND=CLASSES+%25L...
go to post
Have you tried this?
https://community.intersystems.com/post/how-do-you-change-namespaces-rou...
go to post
Well, not sure if this would work but maybe you can set the stream into a dynamic object using the stream>base64 transformation and compare base64 Vs base64.
https://docs.intersystems.com/iris20242/csp/documatic/%25CSP.Documatic.c...
go to post
Performance in what functionality? Interoperability? SQL queries? Database configuración?
go to post
To do async calls shouldn't be a problem:
https://docs.intersystems.com/iris20243/csp/docbook/DocBook.UI.Page.cls?...