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,057
Last Active
Roles
Administrator

Comments

  • 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…
  • Luann - Normally this is a configuration setting done in AREV32 from SYSPROG. I can provide more guidance if needed. Also, confirm that your Database Manager > Environment Settings is configured to "Create Arev32 User".
  • Barry - I'm pretty sure that won't work. I had already tried text that is very similar to that with poor results.
  • Just got back yesterday!
  • I don't think there is a direct Set_Printer message to do this because the OIPI itself does not support a hyperlink object the way that, for instance, Word does. You are getting a hyperlink in your PDF because either 1.) VSPDF.ocx or 2.) your PDF re…
  • If you are going to test this theory then make sure you run the OEngineServer from a command prompt (i.e., debug mode). When you run it as a Service then it won't have access to mapped drives. When I get a moment I'll test this out on my web server…
  • I concur. There shouldn't be any way for this memory to be held over to another session.
  • I have this in my api which reads a control file record which, as I would like it kept in memory after first read, set the notexpired to 0. I was wondering what forces this to do a fresh read. Does it stay in memory for weeks? There are three con…
  • I'm not a javascript developer so I cannot comment on the attached code.
  • So, they should be doing What!!! - synchronous I assume. That depends on the app. Asynchronous calls are a valid way to get multiple requests processed in parallel to improve performance. This is fine as long as these calls are independent of each…
  • I was suspecting this was due to the web app making multiple asynchronous calls. In fact, I had a draft response suggesting this, but I ran out of time to finish the post before needing to leave. BTW, the logs I'm referring to are the ones that the…
  • Hi Albert - Does the NEXT property work with other controls?
  • I'm 99.9% certain this is not related to you seeing two engines spinning up. I suggest inspecting the logs to determine the nature of the HTTP request.
  • which I can establish from the XXX-oecgiapi in GetOECGIRequest')<18>, getting the XXX part. You can also get the same information using GetHTTPScriptName. There is a service to get every part of the OECGI Request array. So, my question now i…