Search found 7567 matches

by aware_support
Thu Nov 07, 2024 10:47 pm
Forum: General discussion and questions about Aware IM
Topic: Copying LIVE into TEST
Replies: 15
Views: 6359

Re: Copying LIVE into TEST

Some of the new features will include parsing objects from a JSON file, improvements to mobile push notifications, improvements to native mobile, improvements to MAC UI and many small changes and fixes

We should release it within a couple of months
by aware_support
Thu Nov 07, 2024 12:32 am
Forum: General discussion and questions about Aware IM
Topic: Copying LIVE into TEST
Replies: 15
Views: 6359

Re: Copying LIVE into TEST

This is the video about the new feature:

https://youtu.be/kliKbicvqgg
by aware_support
Tue Oct 29, 2024 10:09 pm
Forum: Problem reports
Topic: Issue with Installing AwareIM v9 on Azure SQL Database (Hyperscale and SQL Managed Instance) due to USE Command Incompat
Replies: 4
Views: 641

Re: Issue with Installing AwareIM v9 on Azure SQL Database (Hyperscale and SQL Managed Instance) due to USE Command Inco

Change your AwareIM/bin/BASServer.props file and replace this line:
DatabaseComponent=com.bas.basserver.persistence.dbplugins.MSSQLServerInterface

With this one:
DatabaseComponent=com.bas.basserver.persistence.dbplugins.AzureDBInterface

Let me know if you still have the problem.
by aware_support
Tue Oct 29, 2024 4:17 am
Forum: General discussion and questions about Aware IM
Topic: Copying LIVE into TEST
Replies: 15
Views: 6359

Re: Copying LIVE into TEST

Awesome :) and when you are adding DB management tools inside Aware, why not add an option to export (backup) a DB to an archive file or zipped (or is this possibly already how it will work?) Yes, it already works like that - it creates a zip file with database records represented in Aware IM's way...
by aware_support
Tue Oct 29, 2024 12:43 am
Forum: General discussion and questions about Aware IM
Topic: Copying LIVE into TEST
Replies: 15
Views: 6359

Re: Copying LIVE into TEST

I am so glad you asked. In version 9.1 that is just around the corner we are releasing the Data Migration tool. - You will be able to export from production and import into test or the other way around. - You will be able to export from one database and import to another database. - You will be able...
by aware_support
Tue Oct 29, 2024 12:35 am
Forum: General discussion and questions about Aware IM
Topic: Why are Mac users 2nd class citizens
Replies: 4
Views: 1294

Re: Why are Mac users 2nd class citizens

It would be great if you could provide a list of things that is broken on a Mac - we will address them all in the next version.
Such a list would make our life so much easier...
by aware_support
Mon Sep 30, 2024 6:38 am
Forum: General discussion and questions about Aware IM
Topic: V9 New Menu Style
Replies: 8
Views: 10749

Re: V9 New Menu Style

What if we change the behavior of the minimized Classic to be similar to the minimized Modern?
by aware_support
Fri Sep 20, 2024 1:18 am
Forum: General discussion and questions about Aware IM
Topic: Layer layouts?
Replies: 26
Views: 30119

Re: Layer layouts?

Thanks for finding a glitch in getLayoutPanelId - we will fix it
by aware_support
Fri Sep 20, 2024 1:08 am
Forum: General discussion and questions about Aware IM
Topic: Site cannot be reach after update to build 3279
Replies: 6
Views: 6226

Re: Site cannot be reach after update to build 3279

There were no changes in this build that could cause any problems like that.

Please check that port 8080 is not blocked.

Check Tomcat output as well - it probably has an exception that explains what's going on - maybe you have changed something inadvertently while restoring your custom files.
by aware_support
Mon Sep 16, 2024 7:34 am
Forum: General discussion and questions about Aware IM
Topic: How to save status code and error?
Replies: 1
Views: 2737

Re: How to save status code and error?

When you communicate between two business spaces, you shouldn't use the status and error fields. The status code will always be success (200) and error conditions should be specified in the response - in other words all responses are successful and the error message is encoded in the response itself.
by aware_support
Thu Aug 22, 2024 11:31 pm
Forum: General discussion and questions about Aware IM
Topic: Callback function in Aware IM?
Replies: 24
Views: 37077

Re: Callback function in Aware IM?

Great stuff. Well done!
by aware_support
Sun Aug 18, 2024 10:56 pm
Forum: General discussion and questions about Aware IM
Topic: Build 3273
Replies: 0
Views: 5296

Build 3273

Dear Aware IM customers,

we have released build 3273, which has improved support for the Scroll View (gallery) widget for custom queries.

Another significant improvement is support for the "client credentials flow" in OAuth 2

The complete list is in the changelog:
awareim.com/dokuwiki
by aware_support
Wed Aug 14, 2024 8:00 am
Forum: General discussion and questions about Aware IM
Topic: Callback function in Aware IM?
Replies: 24
Views: 37077

Re: Callback function in Aware IM?

"It seems that the line "int count = 0;" should be "let count = 0;" or "var count = 0;" as 'int' is not a valid keyword in Javascript."

Yes, most definitely :D
by aware_support
Tue Aug 13, 2024 11:27 pm
Forum: General discussion and questions about Aware IM
Topic: Callback function in Aware IM?
Replies: 24
Views: 37077

Re: Callback function in Aware IM?

I had a look at the code. It can be done with some custom Javascript: 1) You need to change the type of the operation from StartvProcess to Execute Javascript. 2) Then you have to add the following scrript: var grid = parser.getWidget (); int count = 0; var id = setInterval (function () { if (! grid...