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,188
- Last Active
- Roles
- Administrator
Comments
-
What you are doing is not wrong, but the original intent of the control is to have one residing on a master window. You would then create a messaging system (not unlike a web request/response) that would contain all the metadata and payload data nec…
-
As they say, a picture is worth a thousand words. I don't believe this should be a problem, but why do you have multiple SRP DirectConnect controls running in a single application? How does this benefit your application to have multiple controls?
-
So there is only one form with the SRP DirectControl control (MAINMENU) rather than multiple forms?
-
I see. Well, the information provided still isn't all that helpful. I also could not understand what this sentence really means: Screen that could be open with multiple copies with ole control with SRP.DirectConnect.1 that receives messages Can yo…
-
Unfortunately that doesn't help me shed any light. What prompted you to think that the crash is related to these products? Did you recently implement them and that's when the crashing began?
-
I might not understand your configuration properly, but allow me to begin by stating that I think you are not following the recommended configuration that Revelation Software has specified. This subject is outside of the scope of the SRP HTTP Framew…
-
I see. If it helps, we try to make it easy to go back and forth between sites. If you find yourself in the documentation site (wiki.srpcs.com), look for the Production Information under Space Shortcuts at the top of the navigation tree. This should …
-
This is most likely a result of your upgrade not completing successfully. SRP Utilities has two components: an RDK and the SRPUtilities.dll. If the SRPUtilities.dll is missing or out of date, the error you described can result. If you installed this…
-
Did you recently install/upgrade SRP Utilities in this system?
-
You correct enough on both points. At some level OI must convert the data to an internal format so that it can perform proper comparisons (especially those like LT, GT, BETWEEN), but the expectation is that you are using converted data in your selec…
-
Hmmm...in my experience when we get this far and the indexes still are not working it likely means 1) something obvious was overlooked or missed, or 2) something more arcane, like delimiters in Key IDs, is corrupting the index. Something else that i…
-
You suggestion is appreciated. I purposely left it out of the article for two reasons: * Less importantly - It might not be easily seen since the format of that part of the article doesn't allow for word-wrapping. * More importantly - HTTP_X_AU…
-
You have summarized my suggestion and Mark's solution correctly. In light of this thread, I think I will add some proper setters to the HTTP_Services module. In the end, however, I believe that any solution that works for you is a good solution. Ti…
-
Those settings should work. I forgot to ask, right justified?
-
It was good to get that out of the way regardless as it would have likely been another reason for a failed select. Now we can confidently look at more traditional causes for index problems. I know you said you rebuilt the index, but how is your dic…
-
Yes. OI 9 introduced a .NET based index manager. IDX_SETS2 in your config record tells OI to use this new index manager. Installing the client setup will resolve this.
-
Most of the time when in index was working in OI 8 but is not in OI 9 it's due to the IDX_SETS configuration. What do you see in field 1 of your SYSENV\CFG_IDX_SETS record? Also, I seem to recall from another correspondence that this might be a new…
-
Complex Select statements are known to have issues in all versions of OI. In general, however, the newer versions of OI have improved the situation rather than made it worse. Before we go running down a false bunny trail, can you confirm that a sim…
-
Personally I think the following would be a simpler (and more BASIC+ friendly) way of doing this: * In the specific end point API code that calls HTTP_Resource_Services, get the Body using the GetHTTPPostString service, modify the content as requ…
-
Are you looking for example code that sets up the SRP DatePicker or example code that uses its events to return data? Are you familiar with how other ActiveX controls are used? I'm just trying to understand the level of knowledge and experience you…
-
Does anyone have some simple code examples of using SRP's DatePicker... I suggest you create a new thread for this subject rather than piggy pack on a very different topic. We'll help you as best we can in that thread.
-
Honestly, no way for us to know. I keep hoping that someone (you, Chris, or even our own developers) will find the special sauce that fairly consistently reproduces the crash. That would at least help avoid the "needle in the haystack" issue we are …
-
4.0.2 is still the most recent official release. We are working to release 4.0.3 soon, but we do not have a commit date on that yet.
-
So the calculated column would return json, right? But wouldn't that result in json encoded json being returned by the HTTP_Resource_Services? How would it know that it's already json? To be honest, I threw that in at the last moment so I did not …
-
Okay. Then I am going to move this thread to the SRP Tree category. But, if I understood your analysis, the key to causing the crash is setting the SelectBehavior property to Multi. Thus, you have tested everything by disabling this code and you don…
-
I just want to confirm something, does the problem seem to be related to the SRP Tree control or the SRP Ribbon control?
-
Anyways, when I was driving home I thought it would be better to have this SVM decoding in the standard procedure, because I think I will need it again. I'm not sure what AVM means (I consider myself still a OI rookie), but in my case I use the SVM …
-
To begin at the bottom: could you maybe post your code so I have an example to work with? I was actually going the same route, although my developer-performance-emotion says it's a pity to undo stuff that was done by the code before. But I cannot ex…
-
So in the end I am probably better off working with proper json, instead of keeping in the subvalue marker. So I'll try to figure out what the best way is to overload this for specific endpoints. I would consider making an official update to HTTP …
-
Another question about this encoding issue; if I set SetUTF(8), will this only affect the data that is going through the web server? Or will this also assume that data that is stored in tables is in UTF-8? The SetUTF8() function does not permanent…