go to post Robert Cemper · Aug 2, 2017 Thanks Ed! I just went through old DC post for half an hour+ to detect it. It's much better than my link to Facebook. Regards
go to post Robert Cemper · Aug 1, 2017 do you look for this one?%ENSInstallDir%\CSP\broker\portal\EnsembleLogo210x50.png
go to post Robert Cemper · Jul 31, 2017 (in my case 192.168.56.1), whereas one would need 71.174.62.16This means you try to get information that is stored in your router's and/or firewall's (NAT, DHCP,... ) routing/mapping table.I'd assume you need to use some utility of your OS using $ZF(-1,...) $ZF(-2,...) to get the outside view of the inside serverThis might work inquiring nslookup on a DNS server outside your NAT, ... Though I never tried it
go to post Robert Cemper · Jul 31, 2017 Hi,without any REST (at that point) as you expect to hand action from front-end to back-end:If your front-end is able to listen on a dedicated IP port then all you need is to send your data to the (negotiated?) IP:port.Take a look to %Net.HttpRequest http://docs.intersystems.com/latest/csp/documatic/%25CSP.Documatic.cls?P...From point of view of Caché your front-end acts then like a web-server receiving data.Your reply from front-end signals to Caché that the front-end is ready for the next junk / or terminates the stream
go to post Robert Cemper · Jul 31, 2017 This is a matter of interpretation.If you also allow leading 0 for integers (eg. 00123) then you need to normalize it.
go to post Robert Cemper · Jul 29, 2017 You are right. The check for pure number got lostif +number=number has to precede so the combined is if +number=number,number\1=+number
go to post Robert Cemper · Jul 28, 2017 The oldest and most simple and fastest integer check isif value\1=+value\1 strips trailing decimals, + strips leading 0; just pure integer arithmetics no string checks
go to post Robert Cemper · Jul 28, 2017 Journaling a DeepSee environment is a real performance killer.Take a look of the Journal when using a Bitmap Index
go to post Robert Cemper · Jul 27, 2017 since every installation of Caché has it's gateway I'm not clear what you did by" configured as CSP gateway. "with no manual change the gateway always talks to your local server ser-app-wFrom CSPgatewayMgmt on ser-app-w you should check access to ser-app-db
go to post Robert Cemper · Jul 25, 2017 The fact that the table is external is just a concern of storage strategy in the generated Caché ClassTo your COS code it's just another class projected as table.Use it by your preferred ResultSet ClassIt might be a good idea to check access first from Mgmt Portal to verify access rights.for the example:http://docs.intersystems.com/latest/csp/documatic/%25CSP.Documatic.cls?P...
go to post Robert Cemper · Jul 25, 2017 so you may use $$$comClassDefined(class) for compile classesor go for ^oddCOM(....)
go to post Robert Cemper · Jul 25, 2017 Sébastien,<COLLATION NOT SUPPORTED>tells you that you have different NLS setting between your servers.e.g. FRAW on one side and something else not supporting French collation on the other end eg. ENUW or simiaror not wide characters ...Should be easy to change on the fly from Mgmt Portalhttp://localhost:57772/csp/sys/mgr/%25CSP.UI.Portal.NLS.zenSalue,
go to post Robert Cemper · Jul 25, 2017 I just got this information: Developer group worked at it and version 2018.1 1 will contain the new pattern.
go to post Robert Cemper · Jul 25, 2017 And if you also want to be sure that also the Method %New exists you my usewrite $$$comMemberDefined(ClassName,"m","%New")[just reading through %occReference.inc]
go to post Robert Cemper · Jul 24, 2017 I'm fully with you.Using hidden %System.whatever Classes is as bad practice as using undocumented $zu(anynumber, , , )