go to post Martin Staudigel · Jan 3 Hello everybody, after some hours of searching it appeared, that I was mislead by the "404 Not Found" error. In the end is was nothing more than an authentication problem, which should have been answered by "403 Forbidden". Regards and a happy new year, Martin
go to post Martin Staudigel · Dec 23, 2024 What solved my problem was to copy the referenced XSD file from schemaLocation="../../tel/error/TelematikError.xsd" to the local folder where the wsdl file was located and then change the reference to schemaLocation="TelematikError.xsd". After doing this the import of the wsdl file ran through and created all datatype classes, request, resoponse and operation class. Thanks for your help and time, regards, Martin
go to post Martin Staudigel · Dec 23, 2024 Hello Jani, as far as I understand does the importer resolve imported references. Normally there is no need to separately import the referenced schemas when importing a wsdl file. This worked with some other serviced quite good, it is just two of them, which do not work. Anyways, I was using the schema reader provided by Luis and the result from importing the VSDService.xsd is a package structure that also contains the elements defined by the file ConnectorContext.xsd. What I still don't have is the soap operation class and the request and response message classes... Kind regards, Martin
go to post Martin Staudigel · Dec 23, 2024 Hello Luis, thanks for taking the time to analyze my problem. I'm not sure if I fully understood what the problem and the suggested solution is. In the end I would like to have a functional SOAP Operation, with request and response classes to use the service. As I understand your answer, the problem lies in the inclusion of datatypes, which is not supported by the SOAP wizard, so the process has to be done programmatically and the problem lies here: <types> <xs:schema> <xs:import schemaLocation="VSDService.xsd" namespace="http://ws.gematik.de/conn/vsds/VSDService/v5.2"/> <xs:import schemaLocation="../../tel/error/TelematikError.xsd" namespace="http://ws.gematik.de/tel/error/v2.0"/> </xs:schema></types> I would have to Import the referenced schemas using your to create the contained datatypes. I do so by importing the referenced xsd file using the classmethod you provided. After that, I'd guess the original wsdl file has also to be modified in some way to set the referenced datatypes to the formerly imported. Are my assumptions right, and how could I do this? What I meanwhile tried was to import the two schemas into the currently used namespace using the schema import feature of the management portal. Doing so leads to the creation of some new datatypes: When I'm then removing the "types" section from the wsdl file, I'm getting another error, which indicates that some other parts are missing. Could you explain how to enable the import and the class creation of the initial wsdl file after the xsd schema files are imported? I'm sorry, but it seems like there is a missing piece in my understanding. Thanks and regards, Martin
go to post Martin Staudigel · Jun 18, 2024 Hello Nick, thanks for your help. User rights configuration in Iris Healthconnect is a confusing field, I think. Nevertheless, I have configured a role that contains the functionalities I need, partly by trial and error. From my point of view, the documentation could be a bit more detailed, especially when it comes to the resource level. These days, the topic is too serious and important to simply fall back on %ALL for convenience. Regards, Martin
go to post Martin Staudigel · Apr 15, 2024 Thanks for the hint. In the past it was the port of the packaged webserver, that is true. Meanwhile we're using the Apache server that comes with the distribution's package manager in combination with the Intersystems webgateway. We're just using the same port configuration. I hope this at least alleviates the problem described, but unfortunately does not change the problem that all web apps, including the management portal, are addressed via the same port.
go to post Martin Staudigel · Apr 12, 2024 Thank you for your explanations. The procedure you described sounds somewhat complex, but (as ultimately proven by your report) feasible. Together we are 5 colleagues who deal with the development and administration of interfaces in addition to other topics. We would need external help from our systems department to set up a certificate-based access procedure. I can see the day coming when the certificate has expired or something else has happened and we have locked ourselves out with no way of quickly re-establishing this access on our own. But thanks again for the suggestion, I will definitely look into whether this could be an option for us.
go to post Martin Staudigel · Oct 6, 2023 Thank you very much for your feedback. After some back and forth and failed attempts, I have now decided on a different approach. The reasons for this are on the one hand that an export of all 133500 records would take something like 12h and in case of an error all preliminary work is gone.Furthermore, even with 1000 records the transfer to a FHIR bundle again ran into a STORE error. All in all it is more reasonable to split the export into smaller packages. I got a handle on the problem by now initiating export at 500 objects and persistently storing the IDs of the handled records so they can be ignored on the next run.The process is called on a timed basis every 5 minutes and works in chunks until all resources are exported. This runs since 1h now, and looks good so far. Regards, Martin
go to post Martin Staudigel · Aug 31, 2023 Yes, it took a while to find the solution as writing files did not cause problems. It came out, that the port for the lockd process is dynamically negotiated. We configured nfs to use a static port and opend the port in the firewall at the host system and the problems were gone. So you were right with the suggestion to search on OS-level. Thanks for your help.
go to post Martin Staudigel · Aug 28, 2023 Thanks to Andreas Schütz and Stephan Mohr - we found out that a blocked firewall port caused the open command to freeze. Timeout settings didn't have any effect, that should not be the case. Regards, Martin
go to post Martin Staudigel · Mar 15, 2023 This is how I translated and simplified your example: Method OnRequest(pRequest As Ens.Request, Output pResponse As Ens.Response) As %Status { #dim tSc = $$$OK #dim tConvertedStream as Ens.StreamContainer #dim tStream as %Library.GlobalBinaryStream if ( pRequest.%IsA("EnsLib.HTTP.GenericMessage") ){ set tConvertedStream = ##class(Ens.StreamContainer).%New() set tConvertedStream.Stream = ##class(%GlobalCharacterStream).%New() set tSc = tConvertedStream.Stream.CopyFrom(pRequest.Stream) set tConvertedStream.OriginalFilename = $Piece(pRequest.HTTPHeaders.GetAt("RawParams"),"=",2) set tStream = ##class(%Library.GlobalBinaryStream).%New() set tSc = tStream.Write("<html><head><title>Server Response</title></head><body><h1>This is your response</h1></body></html>") set tSc = tStream.%Save() set pResponse = ##class(EnsLib.HTTP.GenericMessage).%New(tStream,,pRequest.HTTPHeaders) do pResponse.HTTPHeaders.SetAt("HTTP/1.1 200 OK","StatusLine") do pResponse.%Save() } return tSc } It works like expected: that is exactly what I needed to continue. Thank you very much for your help, regards, Martin
go to post Martin Staudigel · Mar 15, 2023 Hi Oliver, thanks a lot for your help. Your assumption is right, but at the moment I'm following the approach to write some COS Code to solve the task. Class UKEr.BP.FHIR.HttpContsentRequestProcess Extends Ens.BusinessProcess { Method OnRequest(pRequest As Ens.Request, Output pResponse As Ens.Response) As %Status { #dim tSc = $$$OK #dim tResponse as %Net.HttpResponse = ##class(%Net.HttpResponse).%New() set tResponse.StatusCode = 200 // Do something to create a valdid response and assing it to pResponse Return tSc } /// Handle a 'Response' Method OnResponse(request As %Library.Persistent, ByRef response As %Library.Persistent, callrequest As %Library.Persistent, callresponse As %Library.Persistent, pCompletionKey As %String) As %Status { return $$$OK } } Nevertheless I'll import your example and have a look at the graphical BP as well. At the moment I'd prefer to create a response in code, but I'm quite confident also to be able to translate your example. Thank you very much, I'll get back here with results (hopefully). Regards, Martin
go to post Martin Staudigel · Jan 10, 2023 Hello David, thank you very much for your reply. How does this behave in case of using HS.FHIRServer.Interop.Request with HS.FHIRServer.InteropService? The creation of streams is done within the library classes, so it is not directly custom code. Since requests are derived from Ens.Request, they are cleaned up by the mentioned purge task. I can't find any hints in the code of the requests (something like a delete trigger does for persistent object hierarchies) that the quickstreams would be deleted as well. How is this handled in the Intersystems FHIR server? Edit: I discovered the globals in the namespace %SYS with "system items" checked in Cachetemp.HS.Stream. In the file system, unlike other stream types, quickstreams have no representation in the form of a file besides the database. As you described, the removal has to be done manually, because the quickstreams of the already purged requests are still present. Alternatively enough memory has to be provided and I wait until the next restart solves the problem by itself. If these assumptions aren't wrong this answers my questions from above. Regards, Martin
go to post Martin Staudigel · Nov 23, 2022 Hi Cristiano, I took your idea and (simplified) added a property and setting 'CheckServerIdentity' which is set to 1 by default to the custom business operation, to make this setting available over settings menu. Works like a charm! Thanks a lot for your help! Regards, Martin
go to post Martin Staudigel · Feb 16, 2022 Hello community, I'm trying to break it down to the core problem: why does this function return the following output when trying to create a XML stream - is this a bug? Class HOME.ms.MsFunctionSet Extends Ens.Rule.FunctionSet{ ClassMethod FhirToXmlExample() As %Status { #dim tCapStat as HS.FHIR.DTL.vR4.Model.Resource.CapabilityStatement; set tCapStat = ##class(HS.FHIR.DTL.vR4.Model.Resource.CapabilityStatement).%New() w tCapStat.ToJSON() w tCapStat.ToXML() }} > do ##class(HOME.ms.MsFunctionSet).FhirToXmlExample()> 426@%Stream.TmpCharacter> do ##class(HOME.ms.MsFunctionSet).FhirToXmlExample() - Error <FUNCTION> Regards, Martin
go to post Martin Staudigel · Jan 24, 2022 So, you mean replacing write tResponse.%ToJSON() with do tResponse.%ToJSON() will do the job, even for big responses? That would be great. Thank you, Martin
go to post Martin Staudigel · Jan 12, 2022 Hello Marc, thank's a lot! I had hoped and suspected that it must be a small thing. Regards, Martin
go to post Martin Staudigel · Dec 6, 2021 It seems like the former enterprise client systems configuration had to be modified. 2018.2.1 worked well with the server name. In 2021.1 I had to provide the fqdn at the Web IP Address setting to make the production monitor showing up like expected. I don't know if this was the actual reason, but at least it works now. Thanks and regards, Martin