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

  • @Opto_Will - Thanks for the clarification. Windows definitely has upper limits to the number of files in a folder so this definitely seems like the HTTP Framework is adversely impacted by this limit.
  • Are you referring to the built-in logging of the HTTP Framework or some other kind of logging? I am confused because you seem to associate debugging with logging, but these are not related issues as far as the HTTP Framework is concerned.
  • No, there is no registering going on. If everything is a literally a copy of a working system then I would expect everything to work exactly the same insofar as OI is concern.
  • My best guess is that the RDK is still out of sync with the newer DLL. Did you install by manually loading the RDK or did you run our exe installer? If the latter, are you installing using a UNC path or drive path?
  • Are you passing the entire @TM delimited string into column.value?
  • Okay, you are using SRP JsonX. That's mostly all I needed to know. However, this syntax looks odd to me: srp_jsonX("rows",column.value,'string array') 'string array' is not a valid value as far as I know.
  • This definitely looks like system delimiters are not getting converted. How are you building the JSON in the API?
  • Awesome!
  • @Opto_Will - I am rather certain these engines will use a license count when engaged, which is why I am sure they terminate ASAP.
  • I decided to do a little R&D on this as I was curious myself. I learned a few things. Much credit goes to Bryan Shumsky who offered to guide me on various issue. First, those settings I previously mentioned work, but they are directly tied to s…
  • @Opto_Will - Yes. I haven't actually done this with OEngineServer but some of the relevant settings from eserver.cfg are: // time (in seconds) to check on idle engines (and to run 'timer proc', if any) IdleCheck=60 // Process to run for mode -1,0,…
  • The .exe installer is still the normal way our tools should be installed. However, there are situations where the installer is blocked from installing the RDK. Thus, as a backup plan we make the RDK available.
  • We have a number of sites that use the Windows Task Scheduler for similar purposes. If you want to use OpenInsight, you can create a custom user login or even an inherited application that does exactly what you want. A lightweight approach is to us…
  • Does this stored procedure require a UI or event context to run or is it written more as a service and can run stand-alone within an engine?
  • @BarryStevens, no resolution yet. I haven't heard back from Revelation at all. I'm somewhat surprised there hasn't been any acknowledgement to the bug tracker entry or our forum thread. I was planning on following up, which I'll do now. I do want to…
  • This could very well be me misremembering, but aren't there also printing problems related to different SMB versions?
  • We are intending to work on a simple API that developers can use to interact with the SRP Editor. This feature would be included. We don't have an ETA for this. In the meantime, you can do what you suggested. The problem is that when you complete th…
  • Then the [] issue was a red herring. It was never the problem, correct? When I read this, "If on first line it does not appear to get an error", I took that to mean, "If the [] is on the first line but not on other lines, it does not appear to get …
  • Hmmm...something still smells off about this. I find it odd that a web developer would produce malformed JSON, especially if using a library that would prevent this from happening. I also think it is odd that this appeared to work when the [] charac…
  • @BarryStevens - Can you confirm that the JSON has line breaks in the original log file? I get the feeling that the line breaks got added when you pasted the JSON into the forum post. If you want, just email me the original log file.
  • That makes sense. Your employer must be using it. We haven't broadly advertised this product because it has a limited set of encryption protocols.
  • This is a commercial product we developed to provide AES256 encryption. Is this on your personal system or an employer's system?
  • Okay. So far it seems limited to OLE controls for us, but we tend to have a lot of OLE controls so it could be that I'm getting a biased result. Based on your previous comment I recompiled my form and now it appears to work. Still, I think this is a…
  • I take it you are referring to a form you designed? Do you perchance have any OLE controls on this form?
  • @BarryStevens - Thanks. We'll have to upgrade our SRP Editor development environment now and try to figure out what the issue is.
  • @BarryStevens - Did you happen to upgrade an existing 10.1 application that already had entities that you designed? If so, can you run a few forms and confirm if the event handlers are working? It seems that whenever RUN_EVENT is called, RTP27 has t…
  • I've duplicated the issue. It occurs even with a fresh install of 10.2 and the SRP Editor. Now we just have to figure out what the problem actually is. In the future if you post the Call Stack that will put us on the trail a little quicker.
  • Can you confirm this is an issue at your end or just me. We will, eventually. ;) We have the 10.2 full install and upgrade so we'll be testing it soon enough but we have some high priority projects on our plate at the moment. Hopefully within a d…
  • An alternative is to store your multiple arrays in a dimensioned array: Dim Arrays(100) ; // Either some arbitrary large number or a known number ArrayCnt = Dcount(......) For CurrArray = 1 to ArrayCnt FocusArray = Arrays(CurrArray) //D…
  • No, at least not with simple variables. Assuming this program is running in the event context of a form, you can store your arrays in UDPs instead: Set_Property(@Window, '@MY_ARRAY_1', Array1) Set_Property(@Window, '@MY_ARRAY_2', Array2) Then in yo…