Search found 224 matches

by joben
Thu Apr 11, 2024 8:26 am
Forum: Tips and Tricks
Topic: Kendo icons that can be used in AwareIM
Replies: 1
Views: 92

Kendo icons that can be used in AwareIM

I just noticed that when you configure the input control (like a search field), you get a few options of the icon class that you can pick from. The default is "k-i-search" which renders the icon of a magnifying glass. I always thought this was Fontawesome, but it is not. Turns out Kendo has its own ...
by joben
Wed Apr 10, 2024 12:05 pm
Forum: General discussion and questions about Aware IM
Topic: Applying AwareIM UPDATES
Replies: 3
Views: 144

Re: Applying AwareIM UPDATES

You can find some inspiration here. You should write your own guide to simplify your upgrading process. 0. Download the new version (and license key if needed) of AwareIM. 1. Make a complete backup of your virtual machine. 2. Stop the AwareIM and Tomcat service in Windows 3. Copy your Custom folder,...
by joben
Thu Apr 04, 2024 7:12 am
Forum: General discussion and questions about Aware IM
Topic: REST service and passing Passwords
Replies: 3
Views: 134

Re: REST service and passing Passwords

Just to add some clarifications about passwords. They are stored hashed in the database. This is not the same as encrypted since it is impossible to decrypt these values. Authentication works by entering a password, letting the Aware IM hashing algorithm convert this into a hash, then compare it aga...
by joben
Tue Mar 26, 2024 7:16 am
Forum: General discussion and questions about Aware IM
Topic: *SOLVED* PKIX path building failed.
Replies: 7
Views: 209

Re: *SOLVED* PKIX path building failed.

Glad to hear!

I suggest opening a new thread regarding the API question so that others can find it easier.
by joben
Mon Mar 25, 2024 1:32 pm
Forum: General discussion and questions about Aware IM
Topic: *SOLVED* PKIX path building failed.
Replies: 7
Views: 209

Re: PKIX path building failed.

Bingo. The intermediate certificate is often included as a separate file when you get it from your provider. Otherwise you can just download it from their website. If you are lucky you can just open your certificate files in notepad and see text like this: -----BEGIN CERTIFICATE----- yadayadayada --...
by joben
Mon Mar 25, 2024 1:06 pm
Forum: General discussion and questions about Aware IM
Topic: *SOLVED* PKIX path building failed.
Replies: 7
Views: 209

Re: PKIX path building failed.

Could you please confirm that the certificate chain is valid? This tool should do the trick: (this assumes that your application is accessible from the internet) https://decoder.link/sslchecker Oftentimes when I have seen SSL certificate errors where only certain clients had problems accessing it, i...
by joben
Mon Mar 25, 2024 9:59 am
Forum: General discussion and questions about Aware IM
Topic: Showing icon in a cell of a query
Replies: 2
Views: 93

Re: Showing icon in a cell of a query

When working with the query, you should see this option in the right panel:
Display as: Standard Grid

Click the "..." button.

in the "Columns to Display" section, make sure that the value option is set to "Icon only". Default is "Value only".
by joben
Fri Mar 22, 2024 1:37 pm
Forum: General discussion and questions about Aware IM
Topic: SOLVED! Calendar start time not same as database start time
Replies: 5
Views: 157

Re: Calendar start time not same as database start time

The RegularUser BO has an attribute called TimeZone. I have never played around with it, but this is what I would try: Make sure TimeZone is visible in the user form so that you can change it. Then compare the calendar between a user who has it set as default, and another user with Central Daylight ...
by joben
Fri Mar 22, 2024 7:56 am
Forum: Problem reports
Topic: Custom list / custom queries, changes to conditional logic
Replies: 2
Views: 160

Re: Custom list / custom queries, changes to conditional logic

Thanks. I am sure I have used your examples when constructing my first custom queries.
by joben
Thu Mar 21, 2024 3:11 pm
Forum: General discussion and questions about Aware IM
Topic: MAX Function on datetime
Replies: 2
Views: 80

Re: MAX Function on datetime

FIND ListwithDates.Entrydate WHERE (ListwithDates.Entrydate<=CURRENT_TIMESTAMP) ORDER BY Entrydate DESC TAKE BEST 1
BO1.DateAttr=ListwithDates.Entrydate
by joben
Thu Mar 21, 2024 3:05 pm
Forum: Problem reports
Topic: Custom list / custom queries, changes to conditional logic
Replies: 2
Views: 160

Custom list / custom queries, changes to conditional logic

We just moved one of our applications from v 8.3 to V 9. We had some custom queries / custom lists with HTML and conditional logic. The conditional logic that broke looked similar to this: # if(data["ExtraInfo"] != undefined) { # <div>{ExtraInfo}</div> # } # # if(data["ExtraInfo"] == undefined) { # ...
by joben
Mon Mar 18, 2024 12:50 pm
Forum: Problem reports
Topic: Query for business object group, can't change "display as" settings
Replies: 1
Views: 90

Re: Query for business object group, can't change "display as" settings

Hmm my bad, seems to have been fixed in build 3124:

Pressing Display As on a query for object groups caused a crash
https://www.awareim.com/dokuwiki/doku.p ... n/8.8/3124
by joben
Fri Mar 15, 2024 1:20 pm
Forum: Problem reports
Topic: Query for business object group, can't change "display as" settings
Replies: 1
Views: 90

Query for business object group, can't change "display as" settings

When trying to edit "Display as" settings of a business object group query, I get this error:

Code: Select all

Internal Error

Reason:
java.lang.NullPointerException
I just want to set how many records there are per page.

Version 8.8 Build 3123.
by joben
Tue Mar 12, 2024 7:54 am
Forum: General discussion and questions about Aware IM
Topic: HTML in a PDF Report
Replies: 20
Views: 632

Re: HTML in a PDF Report

Same result if you use "pt" or "em" instead of pixels?
by joben
Wed Mar 06, 2024 2:57 pm
Forum: General discussion and questions about Aware IM
Topic: Installing SSL on Window Server - Tomcat
Replies: 2
Views: 196

Re: Installing SSL on Window Server - Tomcat

Connector port should be 443. Here is how we to do it if the certificate is in .pfx format: <Connector port="443" address="1.2.3.4" protocol="HTTP/1.1" SSLEnabled="true" maxThreads="150" scheme="https" secure="true" sslProtocol="TLS" keystoreFile="c:/your/folder/acme.pfx" keystoreType="PKCS12" keyst...