Search found 100 matches

by k-insis
Tue Nov 14, 2023 5:12 am
Forum: eXpress++ Support
Topic: ADS: sp_mgGetUserTables() with same user name
Replies: 19
Views: 4554

Re: ADS: sp_mgGetUserTables() with same user name

Great! Thx for sharing info. Might be handy. Found a way, Marcus Herz from the german forum helped me. If I retrieve all user tables open for a user name (which is the computer name), I can walk through the result list and find out using "sp_mgGetTableUsers(<cTable>)", which TSAddress or OSLoginUser...
by k-insis
Mon Nov 13, 2023 11:28 pm
Forum: eXpress++ Support
Topic: ADS: sp_mgGetUserTables() with same user name
Replies: 19
Views: 4554

Re: ADS: sp_mgGetUserTables() with same user name

To track users who have open files eg. program running so you can kick it out of exe for maintenance? How about each user has single, after that user named table? Like 'con_sepplG.dbf' , 'conn_betinaM.dbf', etc and all are opened shared+RO all the time in separate thread. So you might check for open...
by k-insis
Thu Nov 02, 2023 12:53 am
Forum: Xbase++ 2.0
Topic: SMTPclient() - access Sent items
Replies: 4
Views: 1777

Re: SMTPclient() - access Sent items

Some options as xbase does not support such functionality per self. 1) IMAP with one of clients (ChKat will do too), mind for proper security for TLS/SSL . 2) All sent emails from application are automatically BCC to one or more internal adresses for easy access to history via Outlook, TB and such 3...
by k-insis
Wed Oct 25, 2023 11:21 pm
Forum: eXpress++ Support
Topic: sign an XML using a .p12 certificate
Replies: 8
Views: 2547

Re: sign an XML using a .p12 certificate

You are probably not specifying node which has to be signed.
Watch for case sensitivity.
digitsoft wrote: Wed Oct 25, 2023 8:52 am I am using Chilkat the library for 30 days
and I have some error that I can't locate

I hope you give me an idea of ​​what I'm doing wrong.
by k-insis
Tue Oct 24, 2023 6:33 am
Forum: eXpress++ Support
Topic: sign an XML using a .p12 certificate
Replies: 8
Views: 2547

Re: sign an XML using a .p12 certificate

xmlsec a opensource util, can be used to script things on workstation or server side, no install required, widely used on unix and linux, binaries for windows are available, xml has to provide blank signature fields in file though xmlsec sign --pkcs12 certfile.p12 --output NameOfSignedxml.xml --pwd ...
by k-insis
Tue Oct 10, 2023 11:12 pm
Forum: eXpress++ Support
Topic: ADS
Replies: 24
Views: 6287

Re: ADS

In my use case I prefer PostgreSQL ; It is harder and stricter but at end it offers really a lot of performance and features. Skip MySQL and use MariaDB instead which is my 2nd choice Mariadb is fully mysql compatible but is very actively developed where MySQL's owner Oracle is not active much and c...
by k-insis
Tue Oct 10, 2023 11:01 pm
Forum: Xbase++ 2.0
Topic: Validating bank account numbers
Replies: 4
Views: 1972

Re: Validating bank account numbers

Just to clarify: You are seeking checker for US bank acc number or standard iBAN transaction account ? Does anyone have Xbase++ code for validating a bank account number using the check digit algorithm? I'm not sure if the Luhn algorithm is correct for validating bank accounts. It claims that accoun...
by k-insis
Tue Oct 10, 2023 12:37 am
Forum: eXpress++ Support
Topic: ADS
Replies: 24
Views: 6287

Re: ADS

Hi Mr. MIGUELON Never used ADS but I can understand that at some point SAP just decided it is not worth developing it further anymore as use base dvindled due to technology shift. PGDBE requires yearly license fee (since this year) for each user connection at customer: https://www.alaska-software.co...
by k-insis
Mon Oct 02, 2023 11:39 pm
Forum: PostGreSQL
Topic: DbRegisterClient() with PostGres
Replies: 15
Views: 4301

Re: DbRegisterClient() with PostGres

Found this one: "Schema By default PostgresSQL use a public schema used for store information about the databases, tables, procedures. This schema by default is accessible by all users, so all users can see every tables structure or procedures " Which is bummer :( In pgODBC you can set search path f...
by k-insis
Thu Sep 28, 2023 11:04 pm
Forum: eXpress++ Support
Topic: moving xbase/express to new computer
Replies: 11
Views: 3793

Re: moving xbase/express to new computer

@Bruce: Just copy that .ch file into project directory and be done. You are probably missing some ";" in path of includes or you have some weird file attribute on that directory or file that has those includes. Perhaps you are editing environemnt for admin account and not for your user account of sy...