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

  • SMB is the protocol that Windows uses for accessing shared files and printers over a mapped network driver or UNC. This is probably a little better overview https://searchnetworking.techtarget.com/definition/Server-Message-Block-Protocol Is there s…
  • I believe the UD 5 uses TLS for client authentication and or connection encryption (if those features are used). OpenInsight may indirectly use TLS for SMB (File Sharing and NTLM authentication) but I would expect your file shares to stop working i…
  • I've only ever seen the FS12345 error with the UDH (Universal Driver Heavy) and since you've gotten it resolved I won't speculate above what was previously mentioned in the post: This will occur when the client attempts to write to a table managed …
  • I don't remember hearing that either and RTI_OS_Directory is usually my goto command. Based on the symptoms you described it might have been particular to the network share or the files in the share you were accessing. Windows Explorer will act slug…
  • As Don said it should be fairly seamless for your API, the biggest thing you have to worry about is not building a URL that redirects the user back to HTTP using an absolute URL. If your URLs are relative and your server name is correct in the HTTP …
  • You might need to download json2.js and place it in the HTML folder inside your OpenInsight root directory. I've run into this error message in the past and used RTI_JSON a lot prior to using SRP_JSON. There were some edge cases with RTI_JSON that w…
  • Thanks for the feedback. You are right but the actual answer is a little more complicated than whether you have OI 9 or OI 10. It's a combination of whether you have a 32-bit or 64-bit server and 32-bit or 64-bit software. I've updated the Registry …
  • Barry, I’ve seen this behavior too. The updated SRPUtil.ocx in conjunction with deleting these registry entries should fix it. HKEY_CURRENT_USER\Software\SRP\SRPEditor\Styles HKEY_CURRENT_USER\Software\SRP\SRPEditor\Styles2 The wrong values set i…
  • Is this for the basic OpenInsight edit table or the SRP EditTable control? Since you posted in the general OpenInsight category I assume it's for the basic version. In which case, you can use the SELPOS property to get and set selected rows. Here i…
  • Matt, if you right click on SRPControls64.ocx and open the file properties is the 'unblock' button visible? If so, please click it. Perhaps when you downloaded it the file came through as untrusted.
  • Jeff, It sounds like you are moving to a .NET web application and want to communicate with OI. You could communicate with OECGI using REST such as the SRP HTTP Framework. This would mean your .NET could make REST requests to OECGI and OI which is s…
  • Michael, You mentioned in a previous thread that you were using UD 5. You MUST have a REVPARAM file in the path \\drkvmappXX\Revelation\SNBackup otherwise the REV*.LK/OV files created will get put on the DB server instead of the location you specif…
  • Michael, It's uncommon to have a SYSPROCS table stored anywhere other than REVBOOT. Thus I'm going to rule out a whole bunch of possibilities that you've actually attached an old version. You can compare which SYSPROCS table is attached through the…
  • Are you using the OECGI4.exe that was recently posted on revelation.com or an older version that was released prior to the public release? The older OECGI4.exe was 32-bit and on a 64-bit server the correct registry path would be: HKEY_LOCAL_MACHINE…
  • What server version is the Remote Desktop server? E.g. Windows 2008, 2012, or 2016? Do you have at least one printer installed on the server? I understand your redirected printers are appearing but these can get set up in the background while loggi…
  • Jim, I realize this isn't the solution you were looking for but a slightly off-the-wall idea and possible improvement in mail handling would be to have the messages sent to MailGun and then use their REST API to manage and get the messages. You can …
  • Is this specific to the Ribbon Control or do other windows and applications exhibit similar redraw issues.
  • When you say 'The Api call are working from the parent folder but not from the sub folder.' Do you mean the URL 'folder' or a Registry folder? For what it's worth OECGI (3 and 4) use sub-folders in the registry to determine which settings to apply b…
  • According to the help file Set_Printer has error codes that go from -1 to -20. Are any of the routines generating PDF files with OIPI and maybe you're hitting an undocumented error?
  • Here is some code to do just what Don described. Function SCRATCH_RECOMPILE_FORMS(VOID) Declare Function Get_Repos_Entities,Repository,DCOUNT $Insert Logical StatusCode = 0 AppID = @APPID<1> TypeID = "OIWIN" ClassID = "" *Get …
  • This error can occur due to differences in your Revparam file. Verify the revparam file in C:\Revsoft\Universal Driver and D:\AREV\NCA\ are the same. The Universal Driver manager detects differences in the ServerName revparam setting and shows the …
  • For what it's worth the default timeout can be up to 2 hours. This comes from the default TCP port KeepAliveTime https://technet.microsoft.com/en-us/library/cc957549.aspx setting. Every 2 hours Windows checks all TCP connections to see if the client…
  • Michael, %LOCALAPPDATA%\VirtualStore usually points to C:\Users\Username\AppData\Local\VirtualStore which is the virtual store location as you already know but this can be changed through group policy if the Home Drive path is changed. Check %Home…
  • It could be related to the 'Allow time zone redirection' setting on the server. If this is/isn't set it can impact the time returned to an application. See https://technet.microsoft.com/en-us/library/cc725887(v=ws.10).aspx
  • Are you starting OpenInsight in UTF8 mode?
  • Thanks for pointing that out, you are right about the level depth. The original article was a simple demonstration of rewrite rules and as the HTTP Framework grew it was based off some of those rules. I checked the rules we have been deploying for t…
  • @PCadieux Are you using Arev 16 (i.e. Arev 3.1.2 the DOS version) or Arev 32 the OpenInsight windows version of Arev?
  • You are correct, the extra slash is required otherwise IIS skips the rewrite rule because it doesn't match '/api/whatdidwhosay/fox' and instead looks for a matching directory on the file system. We will have to update the rewrite rules for IIS as it…
  • Mark, The screen shot you posted shows the rewrite rule with an extra forward slash / in the brackets. The rewrite rule should be: ^app/([_0-9a-z-]+)$ Don is correct, to get http://mywebpage/api working an additional rule is needed. The rules fro…
  • Don, Could you elaborate on why adjusting the dictionary column length resolved the problem or where that task is documented? Obviously it worked but I can't find checking the column length as a troubleshooting step and it's tickled my curiosity.