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

Comments

  • 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…
  • Does the IsNetworkPath service do what you want?
  • As you seem to recall, the problem is that Windows services do not share the same user context as your desktop user. This means you do not get mapped drives. Mapping drives on the fly is also challenging and not worth trying to work out. Your soluti…
  • I recommend researching these on your own first so you know what to expect. There are plenty of Google matches to help you along.
  • Based on that response log, there are no cookies being sent to the client. Here are the only headers in that log: Status: 200 OK Access-Control-Allow-Origin: * WWW-Authenticate: xBasic realm="LAN" Content-Type: application/hal+json Content-Length: …
  • It should be blank or the 6 characters I post there. Sorry for being dense about this, but what 6 characters are you referring to? That information should not be there so to me it is garbage. What convinces you that this information should not …
  • I for one have no idea what this means. In what way is the cookie "corrupted". When I look at the log you posted, the content doesn't look corrupted in the sense that there is garbage data. What am I missing?
  • As far as the API is concerned it doesn't need to do anything unless you yourself are adding state management features. As far as the HTTP Framework is concerned, everything is stateless. Thus, once any given API has finished responding, nothing is …
    in logoff Comment by DonBakke May 2022
  • @josh - I don't think reading the barcode will be an issue. Generally, a good barcode scanner will translate the barcode into serialized data that OI can easily store. @Opto_Will - I know you said your clients might be internet averse, but I have t…
    in QR Codes Comment by DonBakke May 2022
  • The easiest way is to get the data from the @TABLES system global variable. Look at @TABLES(0).
  • The short answer is that all service modules will use Error_Services when something unexpected occurs. When you request the value of a request header that doesn't exist, then this sets Error_Services. When the HTTP Framework is wrapping up and prepa…
  • I don't see any significant difference between this code and your previous code.
  • Not sure. I don't think I'm seeing enough of your solution to render a valid opinion.
  • Ah, yes. He is dealing with CORS.
  • Ask Mark noted, that would be one example. In the presentation I gave at the 2016 Revelation User's Conference, I stressed the importance of our systems now being an interconnected web of APIs. Thus, for OI applications to fit into this world, it n…
  • Sorry to answer a question with a question, but did you not see this in Postman?
  • The real problem was that you were using HTTPClient_Services, so the SRP Editor could not have auto-filled that for you. I missed that you were using the wrong module.