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,213
- Last Active
- Roles
- Administrator
Comments
-
Awesome. I was able to duplicate the problem. We'll get back to you.
-
Thanks for letting us know!
-
It would be very helpful if you could create a reduced version of your code that still demonstrates the problem but is easy to send us so we can try to duplicate in-house. I tried to duplicate with existing code but could not, so there might be some…
-
I've not used OCSP so this is a bit outside my experience. But I would like to add a few comments: * The article I wrote suggested using Msxml2.ServerXMLHTTP.6.0. This is based on ServerXMLHTTP rather than XMLHTTP. ServerXMLHTTP can resolve issue…
-
I don't have any ideas triggered yet, but I would venture to suggest that it is not worth trying to compare the forms as I had previously suggested. The problem does not seem to be rooted to any copy of OI nor does it appear to be a problem that is …
-
It is not a generic problem. To quote Carl: Found a bug in the coercion layer
-
Thanks for testing it!
-
Hmmm...I can't duplicate that.
-
Thanks. So this is really an extension of what you reported in point #2. That is, you cursor to another control and the auto-filled text returns even though you had deleted it using the Delete key.
-
2. I can duplicate this behavior. We'll discuss internally and come back with a response. 3. I'm not sure what you mean here. I take it that "to cursor" means to use the mouse to put the cursor somewhere. Can you elaborate on what you mean by "did n…
-
1. You can modify the previously searched list by editing the Registry values in this Key: Computer\HKEY_CURRENT_USER\SOFTWARE\SRP\SRPEditor\{path to OI folder}\{appID}\FIND The (Default) key stores the number of previous matches, so you can just …
-
This is not a solution to the problem but perhaps it is a means to isolate the cause. Create the same form with the 4 check box controls in another application, preferably in a clean copy of OI or at least a different copy of OI than the one that wa…
-
Any way to resolve it? Does the above help you resolve it?
-
The logs are not uniform. This behavior started after a particular looping error that I though would have just created a lot of debug records, but apparently it must have made one or multiple very large records in the table. I'm having trouble remov…
-
Oh, you said your LK file was quite large...but I think you meant your OV file. Okay, this helps explain the performance issues even more. My previous assertations were based on the assumption that the LK file was the larger of the two, which genera…
-
Well, look at your average size: 2.6 MB. Even if each record was exactly that size, you should expect each record to take a moment to read. I suspect that your record sizes aren't uniform so you have some that are even larger and some that are signi…
-
If the LK is extremely large and you only have about 5000 records, then I would suspect this is a presized table designed to hold many more records than it actually contains and perhaps it is sizelocked so it won't resize. Tables of sufficiently lar…
-
Set the NewRowCount property to 0.
-
It works. I've used it, although not very often. That is mostly due to a lack of use case need. However, it's been around since AREV, so I think it is a well vetted routine. Plus, it is used by Get_SI_Values and IndexLoop. Regarding the Rev forums,…
-
No, not all index searching via RList reduces down to Btree.Extract calls. However, if you have well formed indexes then RList and Btree.Extract should produce the same results. Having said that, there have been some index patches released for OI 9.…
-
If you need to properly store and retrieve UTF-8 encoded data then you should use those settings.
-
Unless they have been removed, you should have a Documents sub-folder underneath your OpenInsight folder. Look for the file called 103-966 OpenInsight OEngineServer Configuration.pdf. Note, I don't think this documents the UTF8 port but it should he…
-
It should be in your OI folder.
-
Sorry for the delayed response. I got caught up with several issues this week and I wanted to take the time to test a few things for you. I can confidently report that OI is encoding the characters correctly. I literally pasted your encoded characte…
-
Before digging into this further, is your OECGI configured for the UTF-8 port?
-
We support a lot of UTF-8 applications so I was surprised by your first post. It might help if you could identify a few (perhaps 3 or more) characters you think are problematic.
-
The Realm is something of a "namespace" for websites, or APIs in this case. If you changed the realm on a per-site basis then you could also use that to determine how things should work. That is, it's just another flag that doesn't do anything withi…
-
No, not out of the box. Everything is driven from the "API Call Procedure" setting in the HTTP Framework Setup UI. However, if you care to update some existing code I think you can implement this relatively easily. My suggestion is to create a loc…
-
Bizarre indeed. I can only fathom that this is due to some buffer overload (and yes...I'm making this up but it's the best I've got).
-
I have never seen that happen before. This might lead one to conclude that when pulling in so much data, it causes a problem with the second Get_Property command. However, without seeing your code, I can only take this at face value and assume that …