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,220
- Last Active
- Roles
- Administrator
Comments
-
Sorry, let me ask you one more question. Is the argument coming into your service RemainingURL? Also, in the Notes section of the comment block, do you see anything like this: Notes : All HTTP web services should include the HTTP_SERVICE_…
-
I am not using the new fancy srp shortcut coding. I'm not sure what that means. How do I know that 123 has been passed and not just 16333P. I'll help answer this question based on the latest version of the framework, so your mileage may vary. My…
-
For the benefit of those who are unfamiliar with X-prefixed headers, this is just a way to submit custom, or non-standard, headers. So, the only reason X-Authorization works is simply because Apache ignores it and passes it through. For that matter,…
-
It's not coming through, so I switched to HTTP_X_AUTHORIZATION. Pity. I thought perhaps this had been resolved with this implementation of Apache. That lack of proper support for the Authorization header is disappointing and I'm very surprised thi…
-
Side question for you. Since you are using WampServer, have you found that the HTTP_AUTHORIZATION header comes through or do you have to rely upon HTTP_X_AUTHORIZATION?
-
I don't know any more. One of my senior developers, Paul, has the most experience with it. I have not personally used it in a long time and I suspect that no one else on our team has needed to purchase a new license for it in awhile either. Some re…
-
I'm not sure if you are asking a REST design question or a programming question. If this is a REST design question, I would say that you have two ways to go with this: * Use query params to define the records you want to retrieve from your URL. T…
-
That does not sound like anything I would consider to be a problem. Since I have not seen your problem before and since this might very well be unique to your configuration, my suggestion is to see if you can create a much simpler application where …
-
Barry - I doubt it is anything you are doing wrong. I think it is more just me having a hard time following your explanation. Screen shots and code snippets would be valuable.
-
The explanation of what you are trying to do is too confusing for me to follow. Outside of the crashing (whose source has yet to be determined...we got sidetracked), just continue with what you have been doing since it works for you. Try to see if y…
-
Aren't you already doing some kind of matching to make sure the right Key ID is loaded? I guess I don't know what kind of updating you are doing. I thought it was based on the record loaded in the window. Nevertheless, once you have the Window ID, …
-
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…