How to change HTTP URL in FHIR Listener while using mirth connect?

北慕城南 提交于 2019-12-24 08:04:41

问题


I am trying to use the FHIR Listener extension in mirth connect. I want to use a sample FHIR server to test the process but i am not able to change the HTTP URL in FHIR Listener Settings. Is there any way I can change that?


回答1:


We cannot change the URL of either HTTP url or FHIR listener url. It will always remain localhost. If you are trying read a sample data from the any test server try as below:

  • Go to the HTTP sender
  • select GET and paste the URL there test the connection.
  • deploy the channel and send some RAW data if your URL is correct you will get the response in Mirth.
  • In destination under navigate to "EDIT RESPONSE" portion and type the following to consume the response and print it (or) manipulate the response.
  var ResponseMessage = response.getMessage();
 logger.info(ResponseMessage)


来源:https://stackoverflow.com/questions/39033048/how-to-change-http-url-in-fhir-listener-while-using-mirth-connect

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!