Welcome to the SRP Forum! Please refer to the SRP Forum FAQ post if you have any questions regarding how the forum works.

DonBakke

About

Username
DonBakke
Joined
Visits
3,092
Last Active
Roles
Administrator

Comments

  • Barry - I just replied. It's something we have to address due to changes in 10.2.
  • You didn't update your XPath argument as Kevin included.
  • The OEngine.dll version is important to match the OInsight version. Yes, except that Oengine.dll would always report 9.4 for all 9.4.x versions of OpenInsight until 9.4.6.
  • I'm sure the normal issues that headless engines face are relevant here. Anything that requires event context would not work as expected.
  • Is the OENGINE.dll the correct version for the rest of the system?
  • Is this path defined within a namespace?
  • Nice. Barry would need to convert his date and time to OI internal date time. This looks to be doable using the SRP_DateTime Combine service.
  • Will this support a span of more than 24 hours?
  • Seems like the Debugger got disabled.
  • I usually convert everything to seconds: (date * 86400) + time. Then just subtract the seconds1 from seconds2 and then divide the difference by 3600 to get hours.
  • Wiki documentation and everything! LOL. I totally forgot that this is included with the HTTP Framework and thus documented in the wiki!
  • We wrote a Logging_Services module to encapsulate the above approach. The two most prominent services are NewLog and AppendLog. The NewLog service primarily initializes the file and allows you to define column headers. It has an optional flag to kee…
  • @BarryStevens - The official release is still v2.2.5, so it would not be expected to have the fix yet.
  • Your standard approach is just fine for files that aren't expected to grow significantly (and don't ask me what qualifies as "significant"). Just note that each time you read the file you are doing memory management and incurring overhead. As local …
  • You can use the Dir() function to get the size of the file and avoid having to OSRead (or use OSBRead and start where you want).
  • Nice! Thanks for the confirmation and update.
  • @vince - Mark's answer is the right one.
  • Some of what I have read suggests to me that there might still be a little bit of confusion. It seems as if some think the Output Format is the important issue and is referenced under the hood. This is not the case so I want to make sure there is pr…
  • @Opto_Will, I guess you could say I've been holding out. While these are commercial products, we don't broadly advertise them for a few reasons. Primarily it is because these products always require a bit of tweaking to fit the target environment a…
    in PowerBI Comment by DonBakke January 2023
  • The only implementation that I've experienced was connecting it to a SQL database and thus OI data was pushed to SQL. Our Replication management tool coupled with our SQL data mapping utility has been used in several sites to provide near real-time …
    in PowerBI Comment by DonBakke January 2023
  • @Opto_Will - Indeed. This was the very thing I was trying to remember much earlier in this thread. I knew there was a way but I rarely do it so it escaped my memory and I couldn't find any of the sites that had this. Also, this isn't documented. Jus…
  • @Opto_Will - Jared gets the credit for this and I think he meant to post earlier but he must have forgotten. In wrapper.conf add the last line: # Application parameters. Add parameters as needed starting from 1 wrapper.app.parameter.1=com.revelat…
  • I don't think so. Since this is based on percentage then 0-100 is the range. You would need to convert your min/max values into percentages and update the progress accordingly.
  • We also ran into this recently, but I think it was also the result of OI 9.4.6 being less forgiving when using internal values in Btree.Extract. It is interesting because Btree indexes do store the internal value. Thus, it is natural to think that …
  • @albertkurniawan What @Opto_Will is suggesting is that you Oconv the dates before using them in your SEARCH_STRING. Your dictionary items should also be properly formatted so the system will now how to properly Iconv your dates.
  • Are ARCS and DCE parallel applications that inherit from SYSPROG or do they have a different relationship to each other?
  • It looks like eserver.cfg is tied to the OInsight folder. Is the eserver.cfg filename hard coded in the Java application? doesn't seem reasonable. @paxton - That is the question I've been trying to answer. You would not need to as it is implied th…
  • I think that has the same information in the PDF document I referenced. It just isn't clear how the custom eserver.cfg is referenced. Do you see something I don't?
  • The aforementioned document does refer to running multiple EngineServer services and this would require a custom InstallApp-NT.bat file that points to a custom wrapper.conf file. I know this is necessary so the service can be named differently, but …
  • 103-966 OpenInsight OEngineServer Configuration.pdf documents the /l switch for using a renamed eserver.cfg file, but this is only relevant when launching OESocketServer.jar from a command prompt. I forget how to install the service using a renamed…