Search found 544 matches

by BobK
Wed Mar 20, 2024 12:49 pm
Forum: General discussion and questions about Aware IM
Topic: Config tool AI?
Replies: 6
Views: 3155

Re: Config tool AI?

One of the sessions in the upcoming AwareIM Conference:


Improving AwareIM capabilities through Integration of AI/ML technologies
by BobK
Thu Mar 07, 2024 3:45 pm
Forum: General discussion and questions about Aware IM
Topic: V9 NEW FEATURES discussion
Replies: 16
Views: 13933

Re: V9 NEW FEATURES discussion

RLJB wrote: Thu Mar 07, 2024 3:25 am Does anyone have a list of V9 reserved words?

if so pls post here, tks

Comment
Client
Data
(so far)
+100

Here are a couple I have found
Admin
Authentication
by BobK
Tue Feb 20, 2024 6:09 pm
Forum: General discussion and questions about Aware IM
Topic: REST API Question
Replies: 6
Views: 409

Re: REST API Question

Mark, If I understand you correctly, you have set up a service in AwareIM to receive data from a third party. That third party is sending some data in JSON format in the body of the transaction, but also 1 piece of data in the URL to your service. If that is correct, I do not think it can be done wi...
by BobK
Wed Jan 31, 2024 1:54 pm
Forum: General discussion and questions about Aware IM
Topic: Handling Internal Exceptions in a Process
Replies: 2
Views: 5220

Re: Handling Internal Exceptions in a Process

gernotlg wrote: Tue Jan 30, 2024 12:07 am Surely there is a way to catch an internal error ... Remember On Error Goto ?
There is now way that I know of to catch an internal error.
I feel your pain.
by BobK
Fri Jan 12, 2024 1:57 pm
Forum: General discussion and questions about Aware IM
Topic: IN_CONTEXT doesn't work on Session Object ?
Replies: 8
Views: 44318

Re: IN_CONTEXT doesn't work on Session Object ?

gernotlg wrote: Fri Jan 12, 2024 11:50 am
If a process is running from the menu, that process has no concept of any user let alone a logged in user. When that process runs, there could be 0 users logged on ....
That doesn't make sense.
Sorry, my mistake. That first paragraph should have been "... from the scheduler..."
by BobK
Fri Jan 12, 2024 1:51 pm
Forum: General discussion and questions about Aware IM
Topic: Is SOAP officially dead in AwareIM
Replies: 3
Views: 18445

Re: Is SOAP officially dead in AwareIM

SOAP still works in AwareIM version 8.5.
In later versions the SOAP option displays but it is not active and can not be selected
by BobK
Fri Jan 12, 2024 1:47 pm
Forum: General discussion and questions about Aware IM
Topic: Log into Aware via REST
Replies: 3
Views: 18611

Re: Log into Aware via REST

I do not remember how I found it or who told me about it, but it is in the function context help (F4). The description from that help is: Parameters: attribute of Plain Text type or expression producing Plan Text Return: Result of the password encryption algorithm on the specified string as a hexade...
by BobK
Thu Jan 11, 2024 7:06 pm
Forum: General discussion and questions about Aware IM
Topic: How to check (in a Rule) if a Scheduler job is running?
Replies: 6
Views: 10399

Re: How to check (in a Rule) if a Scheduler job is running?

BTW... you should use ... LoggedInSystemUser.AccessLevel = 'System' Because if you have other userBO's (for eg. ClientUser) then LoggedInRegularUser wont work if you have a LoggedInClientUser You can certainly use LoggedInSystemUser.AccessLevel and that might even be the better option. But, I would...
by BobK
Thu Jan 11, 2024 6:47 pm
Forum: General discussion and questions about Aware IM
Topic: IN_CONTEXT doesn't work on Session Object ?
Replies: 8
Views: 44318

Re: [SOLVED] Re: IN_CONTEXT doesn't work on Session Object ?

From BOTH Scheduled (No User Logged in) processes and Processes run from a Menu (User Logged in): IN_CONTEXT('SessionObject') = 'Yes' ............ FALSE IN_CONTEXT('LoggedInSystemUser') = 'Yes'' .... FALSE Which renders IN_CONTEXT Useless for either of those. If a process is running from the menu, ...
by BobK
Thu Jan 11, 2024 6:23 pm
Forum: General discussion and questions about Aware IM
Topic: Log into Aware via REST
Replies: 3
Views: 18611

Re: Log into Aware via REST

We have users that use a mobile device and access data in our AwareIM system using REST. They do not actually log into the system, but here is how we validate them: They enter their user ID and password into the mobile device and those credentials get sent to our system as part of the REST data. Our...
by BobK
Wed Jan 10, 2024 11:04 pm
Forum: General discussion and questions about Aware IM
Topic: Is SOAP officially dead in AwareIM
Replies: 3
Views: 18445

Is SOAP officially dead in AwareIM

AwareIM has not supported SOAP since version 8.5. I vaguely remember talk that it might eventually be supported again in the future, but that was awhile ago and there has not been any mention of it for some time now. With a new version of AwareIM coming out soon, is SOAP officially dead, buried and ...
by BobK
Fri Oct 27, 2023 3:24 pm
Forum: General discussion and questions about Aware IM
Topic: Set attribute based on when the user logges in?
Replies: 16
Views: 79517

Re: Set attribute based on when the user logges in?

Need to ask what 'BAS_Guest@@' is? If you allow Guest entry by using http://localhost:8080/AwareIM/logonGuest.aw 'BAS_Guest@@' is the loginName of the guest. I am trying to see how I can alter this to fit my needs, but I'm not there yet. I can try to explain better what I am looking for, because I ...
by BobK
Fri Sep 22, 2023 5:23 pm
Forum: General discussion and questions about Aware IM
Topic: INDEX keyword
Replies: 7
Views: 26155

Re: INDEX keyword

I do not know about 'index', that might be a problem, but Aware should automatically map id to EXT_id. So inside Aware, you would access the id attribute as 'YourBO.EXT_id'
by BobK
Fri Sep 22, 2023 2:01 pm
Forum: General discussion and questions about Aware IM
Topic: INDEX keyword
Replies: 7
Views: 26155

Re: INDEX keyword

Color me confused I'm trying to integrate an external MS SQL Server database to view some data in our Aware Application. Connecting to the database works fine and attributes are Discovered fine. But there are a few fieldnames in the tables which causes problems. This fields are called "index", "id" ...