Search found 197 matches

by UnionSystems
Mon Jul 24, 2017 8:59 pm
Forum: General discussion and questions about Aware IM
Topic: Can Aware run in "Container" like Docker?
Replies: 8
Views: 17887

Re: Can Aware run in "Container" like Docker?

I investigated this and an issue I came across was MAC addresses changing after restart of a container which breaks the AwareIM licence (which I believe requires a stable MAC address). This may have been a problem specific to the AWS Docker Container environment, but it was enough to stop me pursuin...
by UnionSystems
Tue Jul 18, 2017 12:43 am
Forum: General discussion and questions about Aware IM
Topic: Rest.props
Replies: 0
Views: 3329

Rest.props

I'm attempting to DISPLAY DOCUMENT a Word XML file on a linux server and I get a 500 error in the browser : HTTP Status 500 - java.lang.Exception: Cannot find Rest.props file The only reference I have found for a Rest.props file is at page 309 of the 7.1 user manual... NOTE: If you choose this optio...
by UnionSystems
Tue Jul 18, 2017 12:23 am
Forum: General discussion and questions about Aware IM
Topic: Need URL_ENCODE Function plugin
Replies: 9
Views: 20597

Re: Need URL_ENCODE Function plugin

I've done this using Python scripts on a Linux server. I believe you can run Python on Windows as well. The beauty of Python is has lots of pre-built plug in to handle parsing of JSON and CSV. Basic scheme is : Develop test python script that requests a hard coded URL and converts response into an A...
by UnionSystems
Sun Jul 16, 2017 7:44 am
Forum: General discussion and questions about Aware IM
Topic: Calling a URL in the background
Replies: 5
Views: 8542

Re: Calling a URL in the background

The only problem I've had using URL_CONTENTS is when you need to actually act on any structured contents that is returned. My method has been to create a temporary python script which I execute to call the URL and parse the information that comes back. I typically have assembled that info into a CSV...
by UnionSystems
Sat Jul 15, 2017 1:49 pm
Forum: General discussion and questions about Aware IM
Topic: Calling a URL in the background
Replies: 5
Views: 8542

Re: Calling a URL in the background

What about URL_CONTENTS function, page 424 of user manual?
by UnionSystems
Mon Jul 10, 2017 1:37 am
Forum: General discussion and questions about Aware IM
Topic: Adding META tags
Replies: 3
Views: 8192

Re: Adding META tags

In a separate topic aware_support https://www.awareim.com/forum/viewtopic.php?f=1&t=9628 also advises using startup.html to force references to separate JS files into a specific order. Based on aware_support advice we have successfully used startup.html to both add meta tags to an App and order JS f...
by UnionSystems
Thu Jun 22, 2017 9:22 pm
Forum: Tips and Tricks
Topic: Allowing input of alternative date formats
Replies: 0
Views: 5518

Allowing input of alternative date formats

This came from a client requesting the ability to enter dates without having to type a delimiter (eg enter 230617 rather than the required date format of 23/06/2017). In the configuration tool add the following code to Presentation > Advanced for the date field config.config.parseFormats = [ "dd-MM-...
by UnionSystems
Mon Jun 19, 2017 10:36 am
Forum: General discussion and questions about Aware IM
Topic: Display query result in a pop-up window
Replies: 2
Views: 6501

Re: Display query result in a pop-up window

I'm away from my configuration tool at the moment but I think the trick to getting a query display in a pop-up window is to call a process and get that process to run the query. By default a process will display in a pop-up window.
by UnionSystems
Mon May 15, 2017 10:34 pm
Forum: General discussion and questions about Aware IM
Topic: Sequencing Scripts in Custom/JS
Replies: 2
Views: 5329

Re: Sequencing Scripts in Custom/JS

The only way I found to fix this was to copy the original files to new files until the sequence was what was required. Perhaps if the files could be added to the source code in alpha order by the AwareIM server in alphabetic order so one could simply change the file names to force the required sort.
by UnionSystems
Mon May 15, 2017 6:08 am
Forum: General discussion and questions about Aware IM
Topic: DISTANCE and MGeoLocation
Replies: 15
Views: 28078

Re: DISTANCE and MGeoLocation

Hi Mark, I found an SQL query that supposedly is a bit more precise and I'm calling it as a stored procedure with a EXEC_SP The store procedure (as entered via mysql command line) is mysql> DROP PROCEDURE IF EXISTS Workplace_Nearest; mysql> DELIMITER // mysql> CREATE PROCEDURE Workplace_Nearest(IN T...
by UnionSystems
Sat May 13, 2017 8:12 am
Forum: General discussion and questions about Aware IM
Topic: Any news or updates on V8?
Replies: 25
Views: 43908

Re: Any news or updates on V8?

At the Brisbane meeting on 1st April Vladimir said updates would be limited to the Configuration Tool and there would be no server changes. My understanding of that is there would not be any new configuration options nor any new object, process or query functionality of any sort. So that this upgrad...
by UnionSystems
Sat May 13, 2017 2:11 am
Forum: General discussion and questions about Aware IM
Topic: overriding process popup
Replies: 8
Views: 12281

Re: overriding process popup

I know this original post is 3 years old but I've just spent a lot of time finding the solution so I wanted to add that for the reference of others including my forgetful self. Bet it's one of those things that everyone knows already. Look forward to the day I can remember 90% of the AIM settings:-)...
by UnionSystems
Wed May 10, 2017 9:56 am
Forum: General discussion and questions about Aware IM
Topic: Sequencing Scripts in Custom/JS
Replies: 2
Views: 5329

Sequencing Scripts in Custom/JS

I have a number of javascript files located in Custom/JS/ BusinessSpaceName they are being included in AwareIM with <script type="text/javascript" src="Custom/JS/BusinessSpaceName/JavascriptName.js" ></script> But some of the files are sequence sensitive (ie they need to be inserted in a particular ...
by UnionSystems
Mon May 08, 2017 3:38 am
Forum: General discussion and questions about Aware IM
Topic: Passing Multiple References to an SQL Stored Procedure
Replies: 4
Views: 10208

Re: Passing Multiple References to an SQL Stored Procedure

Hi John, The code I presented before had names changed to make it more generic so it was not exactly what I'm doing. I did get the search through EXEC_SP working but discovered I needed to do SQL JOINs to included reference attributes in the search criteria and it all got to hard. That said I've now...
by UnionSystems
Sun May 07, 2017 7:34 am
Forum: General discussion and questions about Aware IM
Topic: Passing Multiple References to an SQL Stored Procedure
Replies: 4
Views: 10208

Re: Passing Multiple References to an SQL Stored Procedure

Thanks John, I have found away to do this. In AIM I'm building a plaintext list of the required IDs with the following AIM Attribute rule. StoredProcedure.Attribute_Query='<<LIST_LINE(StoredProcedure.pm_Attribute,``,`,`,`,`,`ID`)>>' Storing this in calculated attribute (handy for debugging) and it e...