go to post Tani Frankel · Nov 22, 2023 Hi Dmitrii,Thanks for this question.Programmatically you can use the method Security.Applications:Modify() (from within the %SYS namespace). Here's an example: set props("RedirectEmptyPath")=1 set status = ##class(Security.Applications).Modify("/myapp/name",.props) This article by @David Hockenbroch covers this Security Applications API (including reference to this setting) in general.
go to post Tani Frankel · Nov 20, 2023 By the way using Structured Logging might also be useful in this context.
go to post Tani Frankel · Nov 6, 2023 Sorry for the basic questions - Do you have data (Resources) in your FHIR Server? How many Resources do you see were processed in the Analysis?
go to post Tani Frankel · Nov 2, 2023 Maybe the problem with IIS has to do with Web Socket support. See for example from the Docs here: This extension uses WebSockets to communicate with the InterSystems server during debugging. If you are experiencing issues when trying to start a debugging session, check that the InterSystems server’s web server allows WebSocket connections. For example from the Windows Features - See also IIS Docs. If this is not the issue let us know if you are getting any error on the VS Code side and/or if you can turn on some logging on the Web Gateway or Server side.
go to post Tani Frankel · Oct 19, 2023 Until 2023.3 is GA, and you can upgrade to it, see also this related Global Summit 2023 session recording: https://www.intersystems.com/performing-advanced-fhir-validation-intersy... [Not sure I fully trust the presenter though 😉] And the related Open Exchange app (and GitHub repo): https://openexchange.intersystems.com/package/fhir-profile-validation
go to post Tani Frankel · Oct 3, 2023 See relevant values from the docs here: https://docs.intersystems.com/irisforhealthlatest/csp/documatic/%25CSP.D...
go to post Tani Frankel · Aug 24, 2023 Though this post does not address the question/issue raised directly it might help shed some light on some of the settings used.
go to post Tani Frankel · Jul 18, 2023 Now you can see also the latest related session from Global Summit 2023: https://www.intersystems.com/clinical-alerts-notifications-on-fhir-putti...
go to post Tani Frankel · Jul 16, 2023 See related Idea to allow the Web Gateway installer to map all requests from the Web Server to the Web Gateway.
go to post Tani Frankel · Jul 16, 2023 Thanks @Patrick Dunn this is indeed a common issue, so thanks for taking the time to post about it. I was thinking that this might become an even more common issue once we remove our Private Web Server (PWS) [related post for reference] so added this Idea to allow the Web Gateway installer to do this work for you in advance. @Andreas Dieckow please review (perhaps this was already taken into consideration).
go to post Tani Frankel · Jul 5, 2023 Great work and great article @José Pereira! For those who saw @Donald.Woodlock's keynote at the InterSystems Global Summit 2023 you probably recall a similar concept demoed, for those who haven't I recommend you check it out here.
go to post Tani Frankel · May 28, 2023 @Evgeny Shvarov I believe the Market place link @John Murray provided has details of how to run the test (including some GIFs etc.) https://marketplace.visualstudio.com/items?itemName=intersystems-communi...
go to post Tani Frankel · May 2, 2023 Hi @Dmitrii Baranov You can take a peak at a similar task performed internally in the FHIR Server REST handler class - HS.FHIRServer.RestHandler:marshallRequestFromHttp() // For compatability, copy all HTTP_ headers into the AdditionalInfo section of the request Set tKey = "" For { Set tKey = $ORDER(%request.CgiEnvs(tKey)) Quit:tKey="" If tKey?1"HTTP_"1.E { // Determine the proper header name (will be all caps unfortunately) Set tHeader = $PIECE(tKey,"HTTP_",2,*) // Copy the HTTP headers - except for certain ones. If (tHeader '= "AUTHORIZATION") { Do pRequest.AdditionalInfo.SetAt(%request.CgiEnvs(tKey), "HEADER:"_tHeader) } } } Note this is internal code. You can also similar code for the Generic HTTP Service (used by the Passthrough I mentioned to Alex above), from: EnsLib.HTTP.Service:addAttributesToBody() Set tattrH=$O(%request.CgiEnvs("HTTP_")) While $E(tattrH,1,5)="HTTP_" { If tattrH'="HTTP_URL",tattrH'="HTTP_VERSION" { Set attr=$REPLACE($E(tattrH,6,*),"_","-"), lwrattr=$ZCVT(attr,"L") If '((lwrattr="transfer-encoding")&&($ZCVT(%request.CgiEnvs(tattrH),"L")="chunked")),'((lwrattr="content-encoding")&&($ZCVT(%request.CgiEnvs(tattrH),"L")="gzip")) { Set:..#TOLOWERHEADERVARS attr=lwrattr Set:'$D(lwrattrs(lwrattr)) pStream.Attributes(attr)=%request.CgiEnvs(tattrH), lwrattrs(lwrattr)="" Set:"content-length"=lwrattr tLen=pStream.Attributes(attr) Set:"content-type"=lwrattr tContentType=pStream.Attributes(attr) } ElseIf (lwrattr="content-encoding") { Set tgzip = 1 } ElseIf tLen = "x" { Set tLen="xchunked" } } Set tattrH=$O(%request.CgiEnvs(tattrH)) } Again this is internal code. But coming back to my comment to Alex above, I would recommend using one of the approaches I mentioned there (the Generic Passthrough service, or the FHIR Interop. built-in service) and this way all of the above is already handled for you.
go to post Tani Frankel · May 2, 2023 Hi @Alex Baumberg ! First, if you just want to send an HTTP Request from one point to another you can use the HTTP Passthrough mechanism. And see also my comment to Dmitrii's reply below. In addition if you are focusing on FHIR requests (as I assume you are, per prior knowledge 😉) you can consider using the FHIR Interoperability Adapter mechanism where you will have a "digested" request which already includes all the HTTP Headers in the AdditionalInfo array.
go to post Tani Frankel · Mar 6, 2023 See this related Docs. If you want something more advanced and powerful I recommend you check out the apiPub tool.
go to post Tani Frankel · Mar 6, 2023 I'd seriously consider using the Record Mapper. No code required. See related Docs and Online Learning.
go to post Tani Frankel · Feb 26, 2023 Indeed it is in the Location Header. From the related FHIR docs: The server returns a 201 Created HTTP status code, and SHALL also return a Location header which contains the new Logical Id and Version Id of the created resource version: Location: [base]/[type]/[id]/_history/[vid] where [id] and [vid] are the newly created id and version id for the resource version. The Location header should be as specific as possible - if the server understands versioning, the version is included. If a server does not track versions, the Location header will just contain [base]/[type]/[id]. The Location MAY be an absolute or relative URL.
go to post Tani Frankel · Feb 21, 2023 See the RESOURCE Class Parameter of a Zen page, see related Docs. Then you can provide or not provide permissions on this Resource for your Role.
go to post Tani Frankel · Feb 20, 2023 Thank you for the update Mark, happy it's working well for you. And thank you for posing your question on the community so it could be helpful for other users in the future, to make the usage clearer for them. By the way, you mention testing, so you might find this tool useful in this context.