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

Comments

  • 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…
  • To follow up on Jared's question, if your web app needs to support Unicode then you should do something like calling SetUTF8(1) either in your end point service or even at the beginning of HTTP_MCP. Having said that, your post raises a few question…
  • M@ - While perhaps not as rich as XPath, SRP_JSON does support a path syntax. I'm not sure if you knew this or perhaps you did but it doesn't support your needs. Look at the example code in the GETVALUE service.
  • I obviously missed the advise to change to this calling assembly. When was the last time you upgraded your system? The format was introduced in v2.0.0, which is almost a year old. I didn't think to consider that your end point web service may hav…
  • i missed changing this line from oecgi4 to oecgi3 (oecgi3 is actually a renamed oecgi4, but the docs still refer to 3 so I was confused enough as it was :) ) Now you have me confused. Where in the docs does it still refer to 3?
  • Thanks for the note. This has already been identified and discussed on our end. There are a number of odd auto-complete issues that we have experienced. Unfortunately, they aren't simple to rectify given the various checks that have to be done that …
  • Not really. At this point I would need to debug your code to figure this out.
  • Seems to me that RemainingURL has data in it and this is why assignment to SelfURL is getting truncated.
  • Your developer is correct. The self URL should have an end point that reflects the unique ID of your resource. What you are getting is the same end point of the collection URL. The best I can do is to direct you to where the self URL is generated: H…
  • I won't say this is "bad practice" but it is not completely inline with the intent of HTTP/REST design. The philosophy of the web is that you are accessing "resources" (hence, the "R" in URL). Resources are meant to be abstractions of content rather…
  • There is no other way right now. I believe this is under consideration but there are other ways we want to improve the Favorites bar which will require a significant amount of retooling. When that happens, the need (or desire) to sort might be lesse…
  • We are eager to revamp the SRP Editor documentation itself. To that end we have already collected a list of the major features we want to document and Enhanced BASIC+ is among them. However, we don't have a target date for this.
  • Can I just make one comment. It looks like you are going to make it whether I give you permission or not! :) Because I have a number of modifications I have made to existing modules, I upgrade the original copy and visually copy the code changes. …
  • Barry - Thanks for sending me your feed back. I have already sent you a new RDK to test with. Since distribution of this version of the product has not yet reached critical mass, I'm still keeping this at v3.0.0. Now to respond to your issues: Load…
  • Mark - You may have noticed that we released v3 of the SRP HTTP Framework. One of the new features is the ability to setup URLs that will always bypass authentication. The primary purpose for this is to support OAuth2. The reason I got into this (de…
  • The name you give the stopwatch is used like so: StopWatchName = "SRP_Stopwatch_":Name Common //StopWatchName// StartTime@, EndTime@ I don't think there is any mystery as to why OI choked on your...ahem...creative choice of stopwatch names. You are…
  • Mark - I suspect you are not far from identifying the source of the problem. However, I don't think this is an IIS issue. IIS only calls OECGI. OECGI then calls the EngineServer. The EngineServer is what calls OpenEngine to run the BASIC+ procedures…
  • I was not holding it right. All fixed thanks Just as I was writing my response. :) Very good.
  • David - Open up the Options dialog and check the bottom right area labeled "User Interface". Is the "Always Hide Tab Strip" checked?
  • Dan - I moved the thread to the SRP Editor Tool rather than the SRP Editor Control. No doubt I'm now going to be quizzed as to why we have a category for the control...but I have my reasons. :) I thought for sure this was already posted and answere…
  • The first thing we need to clear up is that the SRP Sync Server does not have to be on the same machine that is hosting OpenInsight. It can run on any machine that is visible to all clients. Normally it is on the same server as OpenInsight for conve…
  • Are you sure that port is open? Regarding the IP address question, were none of the responses provided to you on the Rev forum helpful?
  • There is no single method that will accomplish what you are asking for. However, I think you can accomplish this without resorting to extracting the whole list. You could use the RecordData property to get the data of the row you intend to delete, u…
  • This is a classic solution for the SRP Subclass control. Take a look at the Combo property. Let me know if you have any questions about this.
  • Yes, I know I've done this and I'm pretty certain others have as well. However, can you clarify exactly what you are hoping to gain by doing this? There might be a better/easier way to get this done. The SRP Subclass control enables edit line contro…
  • I'm afraid not.
  • If this was an AppBackup then you would have only received entities that are local to that application. Therefore, unless the original developer was working in SYSPROG, your SYSPROG application should not have any changes to it. Perhaps you do not …
  • That is a promoted event handler. OpenInsight thinks that your form (or forms) are supposed to execute this promoted event handler and thus it is crashing because it is missing from your environment. The best fix is to get this handler into your sys…