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

Comments

  • >>custom HTTP header My try was in the OI http program, I assume what you are refering to is having it setup in the copy of the web application that is used. (what the IIS virtual dir points to) - would prefer not to do that as done by a 3rd …
  • I'm going to split up my response into two posts. >>authentication to identify which "client" Not sure what you mean by that. What do you refer to as the "Client" "Client" is the generic term for the entity making a request from the server…
  • I think the best practice is to use the authentication to identify which "client" the current user is associated with. Barring that, you should be able to add a custom HTTP header to the request. You indicated that you tried this but it didn't work…
  • I haven't done this myself but my notes from forums discussions and email exchanges with others indicate that you must create a Volume Pointer and update the MFS list in field 2 that record much like you would in the REVMEDIA record. Use the Databas…
  • I saw that you had originally reported success and then you deleted your post. I also see that you are posting this question in the Revelation forums but I think the answers are assuming you are working in AREV/AREV32. Can you clarify what is the st…
  • To confirm, you don't even have to load anything into the SRP Panel control and this problem happens? The secret ingredient is to just have the SRP Panel control on an OI form and a traditional menu and that results in this problem? What version of …
  • I'm not sure what you are referring to by "field 6". The whitepaper is accurate when it refers to value position (not field position) 21 for a given control. The proper way to remove your script events is to go to the Event Script editor from withi…
  • Using the RDK would be the standard and safe route to deploy your BRW report. However, BRW reports are stored within Report Groups. So, if you have a Report Group of 10 reports, you have to deploy all 10 at a time. This might not be desirable. Yes,…
  • I can't recall this happening before. I'm pretty sure the launcher just calls a standard Windows library to load the image. I'm tempted to believe that one of these library calls is getting hung somewhere at a low level. I'll have to defer to Kevin …
  • Should I visit the other script event handlers in the repo and make them all return 1 as well then...? I admit I'm not always clear if I'm fighting my lack of understanding, or flakey behavior in OI, when it acts in unexpected ways. I this scenari…
  • ...away from using repository-based event handling towards using a commuter module. I assume "repository-based event handling" refers to script event handlers. Even commuter modules are called via the Repository so that description is a little amb…
  • @BarryStevens perhaps this won't help, but do you see these lines in the AuthenticateRequest service (from the HTTP_Authentication_Services module): // All response headers that need to be set, regardless of authentication, should be handled here. …
  • This isn't a work around or fix for the Ctrl-Z issue, but when I know I'm working on a stored procedure that is locked, I don't Ctrl-Z to "undo" the change that can't be saved. Rather, I move it to the Favorites section (Ctrl+F8), close it (Ctrl+W),…
  • That way will work and it is similar to the original way the Framework derived the Home URL. However, it was pointed out to me that API sites that support multiple URLs will always be returning a hard-set URL rather than the one actually used to mak…
  • I would update the API_SETUP insert with new variable called FullEndpointURLPort and assign it like this: FullEndpointURLPort = HTTP_Services('GetFullEndpointURL') : ':' : HTTP_Services('GetHTTPServerPort') Then you can use your flag to determine…
  • As noted in the help text you posted, the Home URL you see in the Setup window is only used when "one cannot be derived". Let me explain exactly how this is derived. The HTTP Framework relies upon data coming in through the Request dynamic array th…
  • I suspect this is for OI 9. If so, then those entities don't have SYSREPOS pointers.
  • SYSREPOSRELEASES and SYSREPOSVIEWS.
  • We have no other thoughts as we were waiting to see how this panned out. Kevin is out until mid-next week so he wouldn't have any follow-up until then anyway. I suppose you could roll back to an earlier version of the SRP Mail utility, but you will…
  • I believe Kevin sent a response to your IT representative almost two weeks ago which referenced this stackoverflow article. Was this followed up on?
  • We run the OEngines as a Service on all client sites but they are visible in the 'Details' tab of the Task Manager. Please confirm that you are seeing OpenEngine and not OENGINE.exe in the 'Details' tab. Or do you see both?
  • To piggy back off of Kevin's suggestion, try your test on a different application other than SYSPROG and your primary application. For instance, if you still have the EXAMPLES application then test there. Most likely it will work.
  • Pretty funny...but did I confuse you or did I illuminate you? More importantly, did I provide you any clues to troubleshoot the problem with? BTW, I also recommend making the Command line visible for processes so you can get even more information on…
  • @Opto_Will I don't have a ready answer to the primary question. I haven't done much work or testing with those configuration options but I think others on our team have so I'll let them chime in. OENGINE.dll is the binary that consumes a license. H…
  • I suspect you will get an answer tomorrow (which is Monday for us) by the lead engineer on the product when he reports to work, but I am curious what your version of SRPEditor.ocx is. Can you take a screen show of the Help > About window and also…
  • The Remove Table menu in the Database Manager is the equivalent of this Detach_Table command: run detach_table "PURCHASE_5" Normally this is sufficient, as this will also detach the dictionary and index table at the same time. However, if the data t…
  • I don't see that in my code so it must have slipped out and quickly restored without realizing it. This seems connected to this issue, but I'm still waiting to get more information from you on how this is getting triggered.
  • Well, the debug should probably be removed and was only added for testing purposes, but there are no radiobuttons on the form so I am confused as to how that line of code got called.
  • How did this get triggered? Did you modify the form?
  • Luann - Unless you upgraded SRP Utilities yourself, the SRP_Run_Command would not have been updated recently on your system. Also, with regard to Kevin's question, replace "VAR" with "DOSOPEN" so you can see the command being executed as well as any…