Search found 545 matches

by BobK
Wed Mar 16, 2022 10:49 pm
Forum: General discussion and questions about Aware IM
Topic: REST GET,POST,PUT,DELETE?
Replies: 25
Views: 24206

Re: REST GET,POST,PUT,DELETE?

BLOMASKY wrote: Wed Mar 16, 2022 10:45 pm 1) GET POSTMAN! This lets you very easily with a GUI create REST calls and see the return. Use it, Love it. This way you are only debugging the Aware part of this.
+10
by BobK
Wed Mar 16, 2022 5:13 pm
Forum: General discussion and questions about Aware IM
Topic: Error launching default browser, error=2, No such file or directory
Replies: 4
Views: 8836

Re: Error launching default browser, error=2, No such file or directory

It IS configured by settings in some .props files, but I don't care about it. It is configured in the UIConfig.props file and you need to add: OperationMode=<your URL> But you should only need to do that if you changed the name of the AwareIM folder ..\Tomcat\webapps\ AwareIM FYI: I never use that ...
by BobK
Wed Mar 16, 2022 5:07 pm
Forum: General discussion and questions about Aware IM
Topic: REST GET,POST,PUT,DELETE?
Replies: 25
Views: 24206

Re: REST GET,POST,PUT,DELETE?

I would be interested in seeing Jaymer's BSV too.

I may be missing something, but in my experience Aware handles all of the verbs in the same way. No matter what verb is used, the process listed in the Service Implementation is executed and I do not know of any way to determine which verb was used.
by BobK
Thu Mar 03, 2022 5:59 pm
Forum: General discussion and questions about Aware IM
Topic: Round down condition without using an IF?
Replies: 1
Views: 2414

Re: Round down condition without using an IF?

The problem I’m having is with step five, as it needs to be rounded down to 5 if the value returned is more than 5. Take a look at the MIN2 function. It takes 2 numbers and returns the smallest of the two. for example: MIN2(YourRemainder, 5) will return 5 if YourRemainder is 6 or more or it will re...
by BobK
Wed Feb 23, 2022 1:23 pm
Forum: General discussion and questions about Aware IM
Topic: Problem with simple SUBSTRING / INDEX_OF
Replies: 11
Views: 5703

Re: Problem with simple SUBSTRING / INDEX_OF

You could do : REPLACE PATTERN (strip out the _) and WORDS_FROM_RIGHT , its a work around :) one of my use examples: Audiogram.Time=WORDS_FROM_RIGHT(REPLACE_PATTERN(Audiogram.Date_Time_of_meassure,'_',' '),1) I also thought of this, but no joy. It does not work in a calculated column of a query.
by BobK
Fri Feb 18, 2022 7:04 pm
Forum: General discussion and questions about Aware IM
Topic: Send MMS from Aware
Replies: 1
Views: 2250

Re: Send MMS from Aware

We have used both Twilio and Telnyx for sending SMS and they both support MMS.

A couple of years ago I wrote a java plug-in to send MMS via Twilio. With AwareIM improvements in REST services, a plug-in may not be needed anymore.
by BobK
Wed Feb 16, 2022 6:12 pm
Forum: General discussion and questions about Aware IM
Topic: [Solved] How do I send an email to a random address (ie. Not someone who is an Intelligent BO)?
Replies: 6
Views: 3595

Re: How do I send an email to a random address (ie. Not someone who is an Intelligent BO)?

does this still use a "SEND Notif to BO" syntax? Not quite CREATE notif WITH notif.CC=<your guest's email address*> // I use CC but I guess BCC would work too SEND notif No BO needed and the email is sent to the addresses in CC and/or BCC * I assume the form your guest fills out is the form for a B...
by BobK
Thu Feb 10, 2022 1:50 pm
Forum: General discussion and questions about Aware IM
Topic: [SOLVED] Guest access issues (again). Hiding menus
Replies: 6
Views: 3506

Re: Guest access issues (again). Hiding menus

May be a bug! Jaymer, when I saw your post I thought "that should work". So I did some playing around with the Guest access. Doing something like If LoggedInRegularUser.AccessLevel = 'Guest' Then in a Process works as expected. but using LoggedInRegularUser.AccessLevel = 'Guest' for the "invisible w...
by BobK
Tue Feb 08, 2022 6:06 pm
Forum: General discussion and questions about Aware IM
Topic: Problem with INDEX_OF
Replies: 5
Views: 3332

Re: Problem with INDEX_OF

Rocketman, I do not think you can use INDEX_OF as part of a query. There might be better ways to do what you want, but here is one way: Use the EXE_SQL function like EXEC_SQL `SELECT * FROM Members WHERE EmailAddress LIKE '%@%@%'` RETURN Members If you are using the default AwareIM database, you wil...
by BobK
Thu Feb 03, 2022 2:50 am
Forum: General discussion and questions about Aware IM
Topic: Import Document from URL
Replies: 20
Views: 24948

Re: Import Document from URL

Would you be interested in a java plug-in that DOWNLOADS and IMPORTS a file from an URL?
by BobK
Tue Jan 25, 2022 8:45 pm
Forum: General discussion and questions about Aware IM
Topic: Version 8.7 beta
Replies: 14
Views: 6055

Re: Version 8.7 beta

Will support for exposing SOAP web services be in this version?
by BobK
Wed Jan 12, 2022 10:52 pm
Forum: General discussion and questions about Aware IM
Topic: REST API Name Mapping
Replies: 1
Views: 1064

Re: REST API Name Mapping

I have not had this issue, but I did a quick test and the following worked for me. Assuming you want to map data.id to dataid and data.price.id to priceid, your mapping would be mapping.png AwareIM seems to know which BO it is currently creating and which attributes are available. If you wanted to u...
by BobK
Mon Jan 10, 2022 5:18 pm
Forum: General discussion and questions about Aware IM
Topic: ** SOLVED** Upgrade help
Replies: 3
Views: 1668

Re: Upgrade help

Per posting
viewtopic.php?f=1&t=12057&p=55921

Delete AwareIM/bin/startupOptions.props
by BobK
Wed Dec 29, 2021 9:17 pm
Forum: Problem reports
Topic: REST service stops working if XML tag is self-closing
Replies: 5
Views: 16949

Re: REST service stops working if XML tag is self-closing

I agree that AwareIM should handle empty XML fields. But since it does not, here is a work around. First: Change your REST service to dump the complete response into 1 plain text attribute (make sure the attribute is large enough to hold the complete result). To do this: in the "Reply Details" of yo...
by BobK
Wed Dec 01, 2021 5:39 pm
Forum: General discussion and questions about Aware IM
Topic: Allowing logins from API ?
Replies: 2
Views: 1460

Re: Allowing logins from API ?

Seems like it would also be nice to have a VALIDATE_PASSWORD() function ? No such function I use the undocumented PWD_ENCRYPT(<plain text password>) function to encrypt the incoming password and then compare that with the RegularUser Password field. Use the Context Assistant for details on the func...