go to post Scott Roth · Feb 16, 2024 I just ran through several scenarios of testing the change to Ens.Configuration("Queues","KeepInQueues")=1, but when IRIS was restarted the messages were placed back in the Ens.Suspended queue.
go to post Scott Roth · Feb 15, 2024 How do I configure Apache/Web Gateway to allow this connection to happen?
go to post Scott Roth · Feb 2, 2024 I am wondering if the Query against LDAP is taking too long and timing out in a response, even though he is getting an Invalid Username/password error returned but this happens when he tries to sign in from VS Code using /api/atelier. I tried increasing the timeout, but it doesn't seem to make a difference. I tried adjusting the Base DN search, and the Nested Group search to no avail.
go to post Scott Roth · Jan 30, 2024 John, if we have multiple authentication methods turned on for /api/Atelier could this also cause Unauthenticated tries against /api/Atelier? trying to track down login issues and I am seeing this...
go to post Scott Roth · Jan 23, 2024 No doubt I will do a full backup prior to the changes. But thanks just wanted to confirm. I know not all the settings are mirrored, which I have asked for some of the settings to be so we can keep the servers in sync.
go to post Scott Roth · Jan 23, 2024 I have no intention of replacing the Cache users with LDAP. It is for everyone else...Password Authentication regardless of what Auditing says will always need to be available for "Emergency" purposes.
go to post Scott Roth · Jan 22, 2024 Thanks I got it running, but I am not sure what to do next. When I try to access HealthShare within the Management Portal, it is telling me the Service is Unavailable. I want to be able to see what the System can do.
go to post Scott Roth · Jan 22, 2024 The Responses from the Stored Procedure calls back to the Operation look correct, and yes if there was an error it should of shown up.
go to post Scott Roth · Jan 19, 2024 Is there a template to use for ZSTART or should I just grab the code from the Documentation?
go to post Scott Roth · Jan 14, 2024 Is there a way to query the original SourceConfig through the process id?
go to post Scott Roth · Jan 14, 2024 I think I tried that but I. Previous testing via terminal I had to put the multiple “” to get it to actively write the output to a log file. I will give it a try again later.
go to post Scott Roth · Jan 3, 2024 If you are running Windows maybe it’s the Windows Defender Firewall on your local machine?
go to post Scott Roth · Dec 28, 2023 We created a shell script that logs into the terminal and runs EnableConfigItem from the cron in Linux to schedule processes to run at certain times of the day.
go to post Scott Roth · Dec 20, 2023 Do you have to use Result Set, why not use EnsLib.SQL.Snapshot as a context variable, and using a While loop call the Snapshot.Next() to loop through the results to do what you need to do? For example.... I make calls to a Stored Procedure then use the Snapshot that is returned to fill in other properties that I need... <call name='Ref_PrivilegeForm' target='CREDVerityMFNCPDWriteDev' async='0' xpos='200' ypos='350' > <annotation><![CDATA[Execute stored procedure to insert/update the PrivilegeForm value sent by Verity into the Ref_PrivilegeForm table, and return the identity key]]></annotation> <request type='osuwmc.Credentialing.DataStructures.RefPrivilegeForm' > <assign property="callrequest" value="context.RefPrivilegeForm" action="set" /> </request> <response type='EnsLib.SQL.Snapshot' > <assign property="context.Snapshot" value="callresponse" action="set" /> </response> </call> <while name='Snapshot.Next()' condition='context.Snapshot.Next()' xpos='200' ypos='450' xend='200' yend='350' > <assign name="PrivilegeFormKey" property="context.PrivilegeFormKey" value="context.Snapshot.Get("PrivilegeFormKey")" action="set" xpos='200' ypos='250' > <annotation><![CDATA[aka Index]]></annotation> </assign> </while> <assign name="reset Snapshot" property="context.Snapshot" value="""" action="set" xpos='200' ypos='550' />
go to post Scott Roth · Dec 15, 2023 Didn't give me any more additional information on the error besides what was in the Audit Database, but thanks.
go to post Scott Roth · Dec 11, 2023 Yes %Development resource is set as part of the Role he is assigned from the detail we get from LDAP. The user is not really the issue I have at the moment, I am trying to track down why UnknownUser keeps trying to access the Gateway.
go to post Scott Roth · Dec 11, 2023 Yes... I have no issues with VSCode, its just the one user. The issue with the user I believe is with LDAP not InterSystems as the same error happens when trying to sign into the Management Portal, periodically. Does /api/atelier need to have unauthenticated turned on? Why am I seeing the ERROR #815: User not authorized for service %Service_WebGatewayWeb Application: /api/atelier I don't want Unauthenticated users to access the system or be able to get through the Web Gateway at all...
go to post Scott Roth · Dec 3, 2023 Yes I am attempting to connect to Epic Interconnect using OAuth 2.0. I created an internal backend application on vendor services and supplied it with a public key I had generated from our IRIS server. I just haven’t found the right sequence of code or syntax for the request to happen yet. I’m working with WRC but since Epic suggested using JWT and our systems team doesn’t have a jwks setup it’s been kind of a hard thing to figure out.