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

  • Mark, Are you inspecting the request array early, such as in HTTP_MCP before the SetOECGIRequest service, or later? If later, I would suggest that you to inspect the request array before any of the internal services touch it and make changes to it.…
  • Mark, Okay, I'm 99% positive this is IIS swallowing the header for its own use. The same problem occurs with Apache. Both web servers assume you want the web software to manage the authentication. Thus, they take the Authorization header data and a…
  • Mark, what web server software are you using?
  • Mark, As Colin mentioned, he did submit an RDK for us to work with. As last week was RevCon 2016, we did not have an opportunity to test it but I suspect this week we'll take a look and see what we can do.
  • Hi Colin, Actually, my comment was directed to Mark, not you. He had offered to send us an example (I would have guessed an RDK) so we could use it to test on our end. It seems that the original thread ended with him saying he would get back to us.…
  • Colin, It does indeed look like the same problem Mark ran into. Mark, As I recall from reading through the other thread, you were going to send us something to work with for troubleshooting purposes. Did that ever happen?
  • Mark, I may have responded a bit stridently, so I want to revisit this topic. My reservations against OAuth come from two concerns. First, while OAuth is quite popular and is becoming the de-facto authentication protocol by just about everybody, it…
  • Dave, Yes, multipage form just like in OI. Make the OLE control "All Pages". The specific event that the SRP Tab control generates is OnSelChanged. However, this won't trigger unless you properly qualify the event so OpenInsight is listening for i…
  • Hi Dave, When you ask about "how to name" the controls, are you referring to the ProgID? If so, then all of our ProgIDs are documented in the "info box" that appears on each controls's main wiki page. For instance, here is the SRP Tab controls main…
  • Hi Mark, We've implemented a solution for OI to act as a client that connects to another web service via OAuth, but we have not had a requirement to implement OAuth as an authentication protocol within the framework. If you needed to do something a…
  • Colin, I'm not sure how you provide copy/paste capability, but you could implement a right-click context menu to help. The ShowContextMenu method and the OnContextMenuClick event make this easy to implement.
    in Drag Drop Comment by DonBakke April 2016
  • Colin, No, not really. There are no supported drag-and-drop features with the SRP EditTable. I know developers have simulated the experience using code, but I don't think the experience has been ideal.
    in Drag Drop Comment by DonBakke April 2016
  • Mark, I can't say for sure, but I would have expected ADD to be better since it does not have to track a pointer into the array nor worry about allocating elements of the array that are not referenced.
  • Aaron, I can't answer that technical question. If it requires us to provide some kind of interim solution (i.e., to avoid the need for a full implementation), I am doubtful we would provide such a tool. My suggestion is to wait for us to do our ow…
  • Aaron, Actually, we aren't using Codejock for the editor. We are using Scintilla (albeit an older version). But I'm glad to see you understand the potential issues. We first need to see if the control supports dark backgrounds. I think it does. The…
  • Aaron, This is not a response to be taken as a "yes" or "no" to your request. I don't have enough internal information to make that call just yet. But I do want to offer some general comments: * Right now we are hyperfocused on the conference. W…
  • Ken, It seems like Kevin has a handle on why you are asking for but I'm a little slow in visualizing this properly. Do you have an example from another application (perhaps from MS Office) where you see this done well?
  • Ken, This isn't necessarily relevant to your specific problem, but I would like to suggest that you replace your ALL_OLES special keyword with individual OLE events that you want to qualify. Since OI 9.x, qualifying with ALL_OLES has been known to …
  • Ariel, Also, please confirm the version of your control.
  • Ray, My best guess is that something is running on the machine such as AV or Malware blockers that is preventing the installation from proceeding. I don't know why this creates a process that can't be deleted, but I'm sure this is the fault of the …
  • Dan, When I did my proof of concept testing on this, I found that the MsgCode argument was populated with a value of 2 (SYSMSG_DELETEWARN$). I'm not sure why you are getting a null other than perhaps you just happen to be catching other system mess…
  • Jim, Thanks for updating the thread on your results. I'm always glad to hear that SRP FrameWorks does what it is designed to do! However, it is a pity that this OI feature isn't as reliable as you need it to be. Do you really need this for the edi…
  • Dan, You can also trap the SYSMSG event handler and return a 0 so the SYSMSG system event handler does not process the message box. Since you have to intercept this before the system event handler, you would either need to do this in a script event…
  • HI Dan, I honestly don't think you can do this directly. The DELETE event itself does not have a suppressWarning argument the same way the CLEAR event does. I think you best bet is to use the CLEAR event handler (with the suppressWarning argument s…
  • I've made some changes to HTTP_JSON_Services and HTTP_Resource_Services so that AMV fields are now grouped together in the same embedded object. This works for both GET and POST methods. Thus, if you send an embedded JSON object in the request and y…
  • Jim, Yep...I get the thrill of the challenge. It's kept me away from much more productive work far too many times. :) That said, I've never been too fond of the Drag-n-Drop implementation of OI, so I've never used it. I wish our own EditTable cont…
  • Jim, Well, other than having to comment out the TEST_EDITTABLE_DND_EVENTS entry in the SYSENV\SYSPROCNAMES configuration record (I have no idea why they would protect this code), it was pretty easy to copy this into a local FrameWorks app and get i…
  • Jim, I'll try to match your effort and make a FrameWorks version of TEST_EDITTABLE_DND and see if it crashes. One thing you might try right away is to see if the PROMOTED_CREATE_EVENT code is contributing to the problem. I would write some quick co…
  • Hi Jim, The version and age of your FrameWorks system is not likely to be relevant. I was able to get the TEST_EDITTABLE_DND form to work while in a FrameWorks app. However...the commuter module did crash because FrameWorks assumes that the argumen…