Search found 1191 matches

by Rennur
Thu Feb 20, 2020 3:47 am
Forum: General discussion and questions about Aware IM
Topic: Which features do you want in the next release?
Replies: 204
Views: 9559009

Re: Which features do you want in the next release?

are you saying that INSTEAD of a radio button to 1)parse the result, or 2)store the result string, you want to do both? Process the webhook as you just discovered that it works, AND ALSO save the entire JSON result? Yes, keep the current functionality and add the ability to store the whole JSON pay...
by Rennur
Thu Feb 20, 2020 3:15 am
Forum: General discussion and questions about Aware IM
Topic: Which features do you want in the next release?
Replies: 204
Views: 9559009

Re: Which features do you want in the next release?

1) URL parameters - the implementing process needs to take object as input with attribute names equal to parameter names. Values of parameters will be written into the object It works, I forgot to specify process input. Parameters are now written in the BO attribute. 2) JSON parsing - will happen a...
by Rennur
Thu Feb 20, 2020 1:22 am
Forum: General discussion and questions about Aware IM
Topic: Which features do you want in the next release?
Replies: 204
Views: 9559009

Re: Which features do you want in the next release?

About webhooks. It seems to me that you can do it now using the Aware IM REST functionality and exposing services. If I send a POST request containing a JSON payload to REST URL: http://localhost:8080/AwareIM/REST/CRM/WEBHOOK?param1=12345 How does a service-implementing process in AwareIM: FIND the...
by Rennur
Sat Feb 08, 2020 5:40 am
Forum: General discussion and questions about Aware IM
Topic: Which features do you want in the next release?
Replies: 204
Views: 9559009

Latest version of KendoUI

Latest version of the KendoUI framework.
Current one is now 3 years old and 15 versions behind.
https://www.telerik.com/support/whats-n ... se-history
by Rennur
Mon Feb 03, 2020 5:14 am
Forum: Problem reports
Topic: BUG in Image Gallery feature photoalbum bsv
Replies: 4
Views: 8642

Re: BUG in Image Gallery feature photoalbum bsv

I think all the pictures in the album must have the FilePath set otherwise you get an error message.

You cannot have a mixture of File based and Database based pictures.
by Rennur
Mon Feb 03, 2020 4:24 am
Forum: General discussion and questions about Aware IM
Topic: Which features do you want in the next release?
Replies: 204
Views: 9559009

Webhooks Integration

Ability to create, listen to and process webhooks.
e.g. https://webhook.site/
by Rennur
Wed Jan 29, 2020 11:32 pm
Forum: Problem reports
Topic: Clicking on an uploaded document shows empty dialog(SOLVED)
Replies: 7
Views: 11833

Re: Clicking on an uploaded document shows a giant empty dia

IN WINDOW opens the document via the browser instead of the built-in Aware IM popup (blank windows). Browser will decide whether to prompt the user to save the document on their system or it will open the document itself if extentions/software is configured. e.g. PDFs can be opened by Chrome. ** Wor...
by Rennur
Wed Jan 29, 2020 11:22 pm
Forum: Problem reports
Topic: Clicking on an uploaded document shows empty dialog(SOLVED)
Replies: 7
Views: 11833

Re: Clicking on an uploaded document shows a giant empty dia

Try opening the document in the browser window using 'IN WINDOW'

e.g. DISPLAY DOCUMENT 'MyDocument' IN WINDOW
by Rennur
Fri Jan 24, 2020 4:29 am
Forum: Problem reports
Topic: BUG - No Question, for any Enter New (SOLVED)
Replies: 9
Views: 12342

Re: BUG - No Question, for any Enter New

The Enter New has to issue a database commit with an insert statement. In my experience the Process does not commit the transaction into the database until the entire Process is finished or there is a DISPLAY QUESTION action within the Process Rule. Have you tried using the COMMIT TRANSACTION action?
by Rennur
Mon Nov 11, 2019 11:45 pm
Forum: General discussion and questions about Aware IM
Topic: Need help with Query (LIST_LINE) (Brain Teaser)
Replies: 5
Views: 7805

Re: Need help with Query (LIST_LINE) (Brain Teaser)

Try:

Code: Select all

FIND Facility WHERE EXISTS Department WHERE (Department IN LoggedInUsers.pm_Department AND Department.Facility=Facility) 
by Rennur
Tue Oct 15, 2019 12:04 am
Forum: General discussion and questions about Aware IM
Topic: How to clear field after validation rule fails
Replies: 13
Views: 16227

Re: How to clear field after validation rule fails

Add a checkbox (Y/N attribute): IsEmailCheckFailed Rule 1 - IsEmailCheckFailed flag: If Customer.EmailAddress IS DEFINED AND Customer.EmailAddressCheck IS DEFINED AND Customer.EmailAddress<>Customer.EmailAddressCheck AND NOT(Customer.IsEmailCheckFailed WAS CHANGED TO 'Yes') Then Customer.IsEmailChe...
by Rennur
Mon Sep 09, 2019 12:26 am
Forum: General discussion and questions about Aware IM
Topic: How many Communication driven apps can we host on 1 server?
Replies: 15
Views: 23439

Re: How many Communication driven apps can we host on 1 serv

Have you added the Java memory params in AwareIM/CP/eclipse/CP.ini?
https://wiki.eclipse.org/FAQ_How_do_I_i ... Eclipse%3F

e.g.
-vmargs
-Xms 512m
-Xmx 3200m
-XX:PermSize=256m
-XX:MaxPermSize=256m
by Rennur
Fri Aug 09, 2019 1:49 am
Forum: General discussion and questions about Aware IM
Topic: Slow email
Replies: 24
Views: 32550

Re: Slow email

Try replacing the mail.jar in the dir with version 1.6.2. Download : Dir: https://mvnrepository.com/artifact/com.sun.mail/javax.mail/1.6.2 File: https://repo1.maven.org/maven2/com/sun/mail/javax.mail/1.6.2/javax.mail-1.6.2.jar Installation: In v8.3, rename javax.mail.jar to mail.jar and replace the ...
by Rennur
Wed Mar 06, 2019 3:48 am
Forum: General discussion and questions about Aware IM
Topic: Cors Access-Control-Allow-Origin
Replies: 12
Views: 15813

Re: Cors Access-Control-Allow-Origin

Have you tried adding all cors filter parameters to Tomcat's web.xml config file?
Documentation:
https://tomcat.apache.org/tomcat-8.5-doc/config/filter.html#CORS_Filter
by Rennur
Fri Feb 15, 2019 11:02 pm
Forum: Problem reports
Topic: Email problems nested exception is: javax.net.ssl.SSLHand...
Replies: 13
Views: 32591

Re: Email problems nested exception is: javax.net.ssl.SSLHan

Instead of a SSL connection port 465, try TLS port 587.