Search found 230 matches

by joben
Wed Jan 12, 2022 8:27 am
Forum: General discussion and questions about Aware IM
Topic: Stripe API
Replies: 9
Views: 3568

Re: Stripe API

Have had similar thoughts hpl123. I imagine a future with free and paid API sample .bsv's connected to popular services such as Mailchimp, Azure, various RMM and ERP systems. Basically, you import the .bsv package and just enter your own API keys and parameters and you have saved tons of hard work. ...
by joben
Mon Jan 10, 2022 12:53 pm
Forum: General discussion and questions about Aware IM
Topic: Stripe API
Replies: 9
Views: 3568

Re: Stripe API

I don't think this type of authentication is classified as OAuth. I was wrong before. Here is what I did for it to work in Postman: 1. Added the bearer token, sent a request, it worked: bearer1.png 2. Looked at the actual headers and displayed the hidden ones, this is what you should enter in AwareI...
by joben
Mon Jan 10, 2022 9:59 am
Forum: General discussion and questions about Aware IM
Topic: Stripe API
Replies: 9
Views: 3568

Re: Stripe API

Do you use an API tool like Postman to test your requests?
https://www.postman.com/
If not, it is highly recommended for troubleshooting!
I usually think of it this way: If you can't get it to work in Postman, It will not work in AwareIM.
by joben
Mon Jan 10, 2022 8:53 am
Forum: General discussion and questions about Aware IM
Topic: Stripe API
Replies: 9
Views: 3568

Re: Stripe API

Is this oauth?
Which AwareIM version are you on?
Do you have this option when creating a REST channel?
oauth.png
oauth.png (177.13 KiB) Viewed 3566 times
by joben
Mon Jan 10, 2022 7:14 am
Forum: Problem reports
Topic: REST service stops working if XML tag is self-closing
Replies: 5
Views: 16982

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

Just got a confirmation from Vlad that this will be fixed in the next release :D
by joben
Tue Jan 04, 2022 9:59 pm
Forum: General discussion and questions about Aware IM
Topic: Disappearing attribute on form
Replies: 5
Views: 1724

Re: Disappearing attribute on form

Well, that was my original thought too. I do have a read protect on one of the 'tabs' at the top of the form, but nothing on the attribute that is disappearing. Did you try to use "Find references" for the attribute that disappears? findref.png This is incredibly useful when troubleshooting. It wil...
by joben
Tue Jan 04, 2022 3:54 pm
Forum: Wish List
Topic: charts with targets
Replies: 0
Views: 19000

charts with targets

Would be great if it was possible to add target goals and let them be displayed in charts. Preferably the target goal values are stored inside a BO so certain users can control this without being dependent on the Config Tool. target.png I know KendoUI has some way of adding target goal lines in bar ...
by joben
Thu Dec 30, 2021 8:16 am
Forum: Problem reports
Topic: REST service stops working if XML tag is self-closing
Replies: 5
Views: 16982

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

Thanks for the reply BobK. I was aware of the method you suggested, but I wanted to avoid it for as long as possible :) It is a pretty neat workaround for situations like these and I hope others will find it useful. APIs that are limited to XML are probably not that common anymore, so maybe there is...
by joben
Wed Dec 29, 2021 1:03 pm
Forum: Problem reports
Topic: REST service stops working if XML tag is self-closing
Replies: 5
Views: 16982

REST service stops working if XML tag is self-closing

I am using a REST service to fetch data from N-able RMM. Example of how the data is structured: https://documentation.n-able.com/remote-management/userguide/Content/listing_workstations_.htm As far as I know and based on their documentation, I can only get the data as XML from their API. I am curren...
by joben
Mon Dec 20, 2021 9:27 am
Forum: General discussion and questions about Aware IM
Topic: I need to authenticate a user from OUTSIDE of Aware, against his Aware password
Replies: 3
Views: 15730

Re: I need to authenticate a user from OUTSIDE of Aware, against his Aware password

Interesting, and completely undocumented as far as I know. This will not answer your question but might give some ideas whats going on. The default Administrator account password is a plain MD5 hash: password = 5f4dcc3b5aa765d61d8327deb882cf99 However, the new users don't get plain MD5 hashes. The k...
by joben
Mon Dec 20, 2021 8:19 am
Forum: General discussion and questions about Aware IM
Topic: VP not showing grid list items on phone
Replies: 1
Views: 1158

Re: VP not showing grid list items on phone

Are the query items visible on your PC when using the Chrome Developer Tools and emulating a mobile device? This is the first thing I would check. If you are unsure whether you closed the tags correctly or not, you can always copy paste the source code into a text editor which allows syntax highligh...
by joben
Wed Dec 01, 2021 7:47 am
Forum: General discussion and questions about Aware IM
Topic: [SOLVED] Is there a way to open windows explorer to a specific path... from the browser?
Replies: 6
Views: 3577

Re: Is there a way to open windows explorer to a specific path... from the browser?

As far as I know, opening something with Windows Explorer from a browser link was only possible in some Internet Explorer versions (or if you are running an html file locally on your computer). Sharepoint for instance had this feature out of the box and it worked in IE. Would be surprised if Chrome ...
by joben
Wed Nov 03, 2021 8:21 am
Forum: General discussion and questions about Aware IM
Topic: Hide Content panels with empty queries
Replies: 2
Views: 1538

Re: Hide Content panels with empty queries

This is how we do it: conditional.png Instead of using "Display results of query", use "Display results of process". Then make your process like this: If COUNT YourBoName >0 Then DISPLAY 'Name of your query' Or you could use EXISTS : If EXISTS YourBoName WHERE (YourBoName.Name CONTAINS 'John') Then ...