Replies: 1 comment
-
Found answer through youtube video. Necessary to create a transformer for the source connector as well that will map the variables to allow them to be used by the destination connector. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am running windows 11. Mirth 4.5.2.
I have a Maria database container:
docker pull mariadb:latest
docker run -d --name mariadb -e MYSQL_ROOT_PASSWORD=xxx -p 3306:3306 mariadb:latest
"docker ps" -> verifies container is running
docker run -d --name mirthconnect -p 8080:8080 -p 8443:8443 -p 6661:6661 --link mariadb:mariadb -e DB_TYPE=MySQL -e DB_HOST=mariadb -e DB_PORT=3306 -e DB_NAME=mirthdb -e DB_USER=root -e DB_PASS=xxx nextgenhealthcare/connect
Now when I send a test message:
It arrives to the source fine, but the destination connector has an issue sending the message to the DB:
Not sure what to do. Chatgpt was of 0 help. The issue seems to be related to the query not parsing the information(JSON) from the source connector.
Beta Was this translation helpful? Give feedback.
All reactions