HI,
I want to validate my XML file with a DTD file.
I found this https://community.intersystems.com/post/validating-xml but it's with the SAX parser...
Is there an easier solution?
Intersytems Ensemble version 2017.2
Regards,
Guillaume LEPRETRE
HI,
I want to validate my XML file with a DTD file.
I found this https://community.intersystems.com/post/validating-xml but it's with the SAX parser...
Is there an easier solution?
Intersytems Ensemble version 2017.2
Regards,
Guillaume LEPRETRE
Hello,
I've got a table with many attributes and data. There is 10 000 000 registrations approximatly.
I need to make a research on this table with filters, paging, and order.
You can see an example of my SQL request :
SELECT * FROM ( SELECT TOP ALL * FROM ANCV_Data.Titre WHERE etatTitre = 'Emis' ORDER BY numRemise desc) v WHERE %vid BETWEEN 1 AND 25
Cause there are many data on my table, my SQL req is too long if I don't have index on my attributes BUT there are many associations possible...
Are they any solutions ?
Regards,
Hello everyone,
I want to fill data into my select component with sql request and parameter.
I tried to follow this example https://docs.intersystems.com/latest/csp/docbook/DocBook.UI.Page.cls?KE…;
I need to call a method because my parameter can be different. I tried something like this but it doesn't work...
ClientMethod changeParams() [ Language = javascript ] { var query = zenPage.getComponentById('categorieBeneficiaire'); query.setProperty('parameter', 1, 'OS'); quer
Hello,
I used the operation :
what is the best way to do it?
I tried to add informations in OnAlertRequest method as below but I need to change mail operation from all namespaces...

Hello,
In all web services, i need to my get login and token. So with Postman, i tried to call a HTTP request where I put the login/token in the header :
I tried to get data from Http request header. The REST APi use

But it didn't work..
Someone can give me some example or other method ?
Regards,