Search found 545 matches

by BobK
Fri Jan 08, 2021 6:21 pm
Forum: General discussion and questions about Aware IM
Topic: Loop thru BO records for process
Replies: 28
Views: 16094

Re: Loop thru BO records for process

Looking at wrapper.log (AwareIM\Logs\Wrapper.log) i do not see anything entered as you show. I am running in test mode. I do see entries for errors when I accidentally named the process wrong. But nothing after I corrected. I don't usually run Aware as a service, but I did temporarily to do some te...
by BobK
Thu Jan 07, 2021 6:09 pm
Forum: General discussion and questions about Aware IM
Topic: Loop thru BO records for process
Replies: 28
Views: 16094

Re: Loop thru BO records for process

Test it first with a process that doesn't call a program, for example set a timestamp field or set a flag. It definitely works . The issue may lie with the EXECUTE PROGRAM. I totally agree with PointWell that this works. Have you looked at the AwareIM main.log? To see how much DIRT the process 1 is...
by BobK
Wed Dec 09, 2020 4:38 pm
Forum: General discussion and questions about Aware IM
Topic: Odd dialog box after 8.5 Upgrade
Replies: 3
Views: 2742

Re: Odd dialog box after 8.5 Upgrade

Jaymer,

In you tomcat output, was there a line like the last line in your screen print ("Got XML request <root> ...") before the Exception?
by BobK
Tue Dec 08, 2020 7:42 pm
Forum: Tips and Tricks
Topic: Info: Better bug reporting
Replies: 7
Views: 42280

Re: Info: Better bug reporting

a new version of wink https://www.debugmode.com/wink/ was recently released.
by BobK
Tue Dec 01, 2020 4:58 pm
Forum: General discussion and questions about Aware IM
Topic: TRANSLATE function? Ideas?
Replies: 6
Views: 4145

Re: TRANSLATE function? Ideas?

I do not use the TRANSLATE function, but this is how I find information about functions not described in the user guide: In the config tool, start to create a new rule and press F4 to bring up the context help for functions. Scroll through the functions to find the one you are interested in and see ...
by BobK
Wed Nov 25, 2020 7:06 pm
Forum: General discussion and questions about Aware IM
Topic: Execute Program Parameters
Replies: 5
Views: 4985

Re: Execute Program Parameters

I have used something like the following:

Code: Select all

EXECUTE PROGRAM 'C:\FullPath\commandFile.cmd '+BO.attr1+' '+BO.attr2
Inside the command file the parameters are referenced as %1 and %2
by BobK
Wed Oct 28, 2020 7:38 pm
Forum: General discussion and questions about Aware IM
Topic: Are we at risk of needing to pay Oracle for Java fees?
Replies: 27
Views: 46160

Re: Are we at risk of needing to pay Oracle for Java fees?

On a windows machine you can find the version of java AwareIM uses by bringing up a command prompt and executing: c:\awareim\jdk\bin\java -version The current build of AwareIM uses: java version "1.8.0_91" Java(TM) SE Runtime Environment (build 1.8.0_91-b15) Java HotSpot(TM) 64-Bit Server VM (build ...
by BobK
Mon Oct 05, 2020 3:27 pm
Forum: Problem reports
Topic: SUBSTRING Function is being evaluated differently
Replies: 1
Views: 3102

SUBSTRING Function is being evaluated differently

I have a rule with the SUBSTRING Function in the Rule's Condition. In Version 8.4 Build 2722, the rule processed successfully but in Version 8.5 Build 2822, I get an Internal error. The rule is attached to to the Buseness Object and is: If TestSub.SerialNumber IS DEFINED AND SUBSTRING(TestSub.Serial...
by BobK
Wed Sep 23, 2020 8:35 pm
Forum: General discussion and questions about Aware IM
Topic: Calculate Age between Birth Date and a Given Date
Replies: 1
Views: 2929

Re: Calculate Age between Birth Date and a Given Date

Jhstephenson wrote: Is there some other Function I am missing?
Yes, check out Function FULL_YEARS
by BobK
Thu Sep 17, 2020 4:07 pm
Forum: Problem reports
Topic: Unable to have 2 communication channels on 1 BO
Replies: 4
Views: 10079

Re: Unable to have 2 communication channels on 1 BO

Having e-mail and REST channels on the same object does not make much sense. That may be true in the normal world, but in my world it makes sense to have both e-mail and REST on this one object. If it does not make sense in the normal world, does that mean that having 1 object with both e-mail and ...
by BobK
Wed Sep 16, 2020 10:22 pm
Forum: Problem reports
Topic: Unable to have 2 communication channels on 1 BO
Replies: 4
Views: 10079

Unable to have 2 communication channels on 1 BO

I am trying to setup a BO that exposes 2 communication channels (E-mail and REST). Unfortunately, I have been unable to get the second communication channel to work. Questions: 1) On the "Communication Channels" setup window, is the Channel at the top of the list the default channel? 2) is there any...
by BobK
Wed Sep 09, 2020 1:10 pm
Forum: Problem reports
Topic: Error when deploying SOAP Web Service - FIXED
Replies: 3
Views: 4764

Re: Error when deploying SOAP Web Service - FIXED

FIXED

Thank you
by BobK
Tue Sep 08, 2020 9:13 pm
Forum: Problem reports
Topic: Error when deploying SOAP Web Service - FIXED
Replies: 3
Views: 4764

Error when deploying SOAP Web Service - FIXED

I am using AwareIM version 8.5 Build 2816. When I log into the operation mode of my BSV, the WSDL is not being created and the following errors are in the tomcat log: Exception deploying Web Services Errors compiling app???.javas Note: sun.tools.javac.Main has been deprecated. C:\AwareIM\CP\eclipse\...
by BobK
Tue Aug 04, 2020 3:24 pm
Forum: General discussion and questions about Aware IM
Topic: is it possible to receive picture in a REST service
Replies: 4
Views: 5215

Re: is it possible to receive picture in a REST service

THANK YOU SUPPORT. Jaymer et al. This will be used to allow users to load their pictures into the system via a REST service. Here is a small sample of the JSON coming into the service: {"userid":"BobK","userpic":"bobk.jpg#iVBORw0KGgoAAAANSUhE..."} userid is so I know whose picture it is. userpic is ...
by BobK
Mon Aug 03, 2020 7:08 pm
Forum: General discussion and questions about Aware IM
Topic: is it possible to receive picture in a REST service
Replies: 4
Views: 5215

is it possible to receive picture in a REST service

I am trying to expose a REST service in my AwareIM application that accepts a picture, but I can not get it to work. In my testing, I am sending the picture as base64 encoded. The tomcat log file has the following error: "Invalid format of binary representation for attribute myPic" Is this possible ...