Search found 156 matches

Go to advanced search

by allistar
Mon Jul 26, 2021 9:34 am
Forum: General Discussion
Topic: SFTP
Replies: 1
Views: 923

Re: SFTP

For security and robustness I would install a proper FTP server application rather than rolling your own or using a library. As far as the client side goes you could fairly easily use one of the many command line FTP clients out there and call that from Jade. For example, the FTP clients available f...
by allistar
Mon Jun 14, 2021 9:32 am
Forum: General Discussion
Topic: No Application Named from jadehttp.dll
Replies: 2
Views: 1014

Re: No Application Named from jadehttp.dll

Is there a web.config file for the URL? Do you have any rewrite rules set up? We set up rewrite rules so we can hide the application name (and so there isn't a .dll in the URL). Rewrite rules could explain what you're seeing.
by allistar
Fri Mar 19, 2021 12:00 pm
Forum: General Discussion
Topic: How to script delete a system class
Replies: 6
Views: 1713

Re: How to script delete a system class

I doubt someone will tell you on a public forum if there was! :-)
Can you instead change the name with setPropertyValue or does that give you the same error?
This is a Jade bug so the support team should provide you with a proper fix.
by allistar
Thu Mar 11, 2021 10:34 pm
Forum: Design and Architecture
Topic: SDS Encryption
Replies: 1
Views: 1023

Re: SDS Encryption

It was pretty easy to set this up using stunnel. I now have SDS in Jade 2018 running through a TLSv1.3 encrypted tunnel.
by allistar
Thu Mar 11, 2021 12:42 pm
Forum: Design and Architecture
Topic: SDS Encryption
Replies: 1
Views: 1023

SDS Encryption

Hi all, Has anyone successfully implemented encryption of all SDS traffic? If so what approach did you take? It shouldn't be too hard to push the traffic down an SSH tunnel but it needs to be robust without needing any babysitting. Also, a failover needs to still work in the usual fashion. We have a...
by allistar
Tue Aug 25, 2020 12:33 pm
Forum: General Discussion
Topic: SDS secondary using up nearly all memory
Replies: 4
Views: 1740

Re: SDS secondary using up nearly all memory

Hi Darrell,
The [PersistentDb] DiskCacheMaxSegments tells the database server how much memory the database engine can use for disk cache. This is in units of 64Mb, so a setting of "40" allows it to use about 2.5Gb. Check this setting and make sure it's not too high.

Regards,
Allistar.
by allistar
Sun Apr 26, 2020 4:17 pm
Forum: Tips and Techniques
Topic: Running Web Monitors on Local PC
Replies: 2
Views: 1576

Re: Running Web Monitors on Local PC

Instead of relying on write statements I would use causeEvent to send a notification to an application running on your PC that writes out the text (or displays it in a UI you develop). This way you don't need to mess around with where jadehttp.dll runs from.
by allistar
Fri Mar 20, 2020 8:56 pm
Forum: General Discussion
Topic: Referencing Method types
Replies: 2
Views: 1670

Re: Referencing Method types

In my experience you should only reference Jade metadata on transient objects. A reorg can change the underlying oid and as you have noted you could remove a method which would lead to invalid references. I would reference the schema entities by name, not by reference. If you are concerned about dis...
by allistar
Fri Jun 21, 2019 4:13 pm
Forum: Jade Support Bulletins
Topic: #37 - Critical fix for databases upgraded to 2018
Replies: 2
Views: 3314

Re: #37 - Critical fix for databases upgraded to 2018

Can you please confirm two things:

- that after the certify is clean we can run the compact online,

- that we only need to compact files that are (kind = DbFile.Kind_User_Data)

Thanks,
Allistar.
by allistar
Fri Jan 11, 2019 8:09 am
Forum: Tips and Techniques
Topic: Adding Headers Via JadeHttpConnection
Replies: 3
Views: 2749

Re: Adding Headers Via JadeHttpConnection

vars vRequest: WinHttpRequest; vResponse: String; vData: String; begin create vRequest transient; vRequest.open("POST", aInstanceEndpoint & URL, false); vRequest.setRequestHeader("Authorization", "Bearer " & aAccessToken); //this forces the component to negotiate the SSL protocol instead of using t...

Go to advanced search

cron