Welcome to the SRP Forum! Please refer to the SRP Forum FAQ post if you have any questions regarding how the forum works.

JaredBratu

About

Username
JaredBratu
Joined
Visits
118
Last Active
Roles
Administrator

Comments

  • If you can take the table offline by detaching it from the database manager to ensure no one accesses it while the resize occurs, you could perform the resize maintenance while the system is in use. Another option would be to replace the table with…
  • Try changing DEP to the first option, which applies only to essential Windows components. I don't recall having to use bcdedit.exe in the past.
  • Please completely disable DEP and try again. I don't know that excluding certain processes is enough.
  • Luann, Just to clarify, I assume you were using SearchIndex and not "Search_Index". It's possible you have something custom named "Search_Index" in Database_Services but I'm assuming not. The SearchIndex method uses btree.extract to query the inde…
  • I do not know if we can return a value from the functions in the %%PROCESS%% record. Error_Services() should allow you to check the result if any of the called procedures raised an error [with Error_Services()]. It might also be possible to have y…
  • Paxton, The OESocketServer.jar file has a parameter for you to specify which eserver.cfg file to use for a particular application. This allows the same OI copy to serve different engines for different applications. The easiest way to explain it is…
  • Notes on Renaming OECGI4.exe to OECGI3.exe This will work but OECGI will look in the registry path for the version it was compiled against. So if you rename OECGI4.exe to OECGI3.exe you'll have to setup the registry as if it were OECGI4 because when…
  • IIS can be very specific, the handler mappings can be applied per website and also per directory. Depending on your IIS setup the website handler mappings might have been different than the CMG directory. As opto_will indicated, some of the OI docu…
  • Are you thinking of the /DV=1 command line argument for oinsight.exe? This causes OpenInsight to launch into the IDE which allows you to click the launch application button in the bottom left corner.
  • Opto_Will, back in the early Windows Server 2008 days when SMB 2.0 was released an issue was uncovered with the timing of SMB and operations of the LinearHash service where FS133 errors could occur when copying tables. The scope of this was very spe…
  • Bryan, Yes, that is absolutely possible. We've done it at a few clients where regulatory requirements disabled file sharing directly on the database server. If all of your data is under the root OpenInsight folder a single share in the Universal D…
  • @BarryStevens In response to: >Is it a 'resource' that should be 'installed' on the local server do you think. No, it's a setting on the remote server for the resource you are trying to access. Specifically, the URL https://app-directory.s3.am…
  • CORS is a security protection in place by modern browsers that prevent one JavaScript app running in the browser from accessing resources on a different server unless that server specifically allows access. In your case, the app-directory.s3.amazona…
  • 5 to 10 years ago when OI 9 first came out I believe I had commands for the caspol utility to allow .net assemblies to load from network shares. As I recall this could be limited to a specific share or specific assemblies. So it should be able to op…
  • From the system monitor try: run detach_table "DICT.PURCHASE_5" run detach_table "!PURCHASE_5" run detach_table "PURCHASE_5" This would detach the dictionary, index (id indexed) and data portion of the table. It sounds like the DICT got atta…
  • Will, I've used the Google API's to generate quick QR codes. Here is some sample code: YourBarcodeData = 'Hello World!' URL = 'https://chart.apis.google.com/chart?cht=qr&chs=300x300&chl=' : YourBarcodeData Response = HTTPClient_Services(…
    in QR Codes Comment by JaredBratu May 2022
  • This isn't exactly what I was looking for but I think I can answer your question based on intent and the information provided. For the sake of discussion, I'm going to rename LANoecgiapi to lan-oecgiapi and FESoecgiapi to fes-oecgiapi. The reason i…
  • What is the path to the second URL without any URL rewrite rules. i.e. localhost/cgi-bin/myapp2/oecgi4.exe ? If you are using rewrite rules, what is the path to the same app with the rewrite rules. i.e. localhost/api2/myapp ?
  • Yes, this is doable but will need some specifics as there are subtly different ways to accomplish this. Is your API dictating how the upload should occur by the client or are you trying to make an API that is compatible for an existing client?
  • Not yet, when I went through my notes to write the documentation I was surprised to see that OECGI4 behaves differently when used with the OI Web Console versus O4W or with the SRP HTTP Framework. The bottom line is that the existing documentation s…
  • Barry, Disregard the previous suggestion to move the 'OECGI4/api' registry settings to 'OECGI4'. Let me get you some instructions specific to OI 10 because the OI 10 default registry settings are going to conflict with the SRP HTTP Framework regist…
  • Barry, Thanks for the screenshot. The 'Cannot process query' message indicates that RUN_OECGI_REQUEST handled the request and not the HTTP_MCP program. This also means that the request made it to the OEngineServer (OESocketServer.jar) process. I…
  • Barry, You have a couple of options to have different versions of application.js. Without a better understanding of the architecture of your application it's difficult to advise in depth but given that you're getting this working the simplest solut…
  • Thanks for the information. I don't use the compress option very often but I have run into this from time to time. What version of the network client driver and LinearHash service are you using? What version of OpenInsight? Assuming that you are …
  • Josh, I feel your discomfort when having to use the RDK window and have pondered the same question as you over the years for various projects. Here are two things that might help. 1. This code was provided to me during a support request when I inq…
  • Since you're familiar with the .net tools and to build upon what Don said you could use this blog article https://blog.srpcs.com/powershell-as-an-openinsight-tcl-enhancement/ as an example of how to connect in to OpenInsight with the OEngineServer u…
  • Does the phone app need to access the state within the running OpenInsight session, i.e. check what record the user has open on their OI form or does it simply need to access the OI database to get information? I'm assuming that since you want to do…
  • I've run into the issue of getting a 'too many parameters' message from time to time over the years while trying to install an RDK. It sounds like you are getting the issue when you are making the RDK so I don't think this applies but in the chance …
  • You are unable to get the value of @odata.nextLink because the period indicates that SRP_JSON should get the nextLink property of the @odata object but in your JSON @odata.nextLink points to a property that contains a period in the name. In order to…
  • I'm pretty sure OpenInsight requires the APP username (i.e. EXAMPLES app has a user for the app named EXAMPLES) as a service account that can't be removed. If SSO were to go down you could still gain admin-level access to the app using the account. …