I want to access channel source and destination file path from property file. Is it possible to use properties file in mirth?
How to use properties file in mirth channel and where we write code for it
1k Views Asked by Hemant At
1
There are 1 best solutions below
Related Questions in PROPERTIES-FILE
- Using Java Messages.properties in Javascript
- pentaho can't access by chrome
- Can a Library jar read properties from Spring Cloud Config Server?
- Using property files in Web Applications
- How can I load a resource bundle properties file within a composite component?
- Open a properties file from a class in a Dynamic Web Project
- Loading of Java message properties for internalization
- Read Japanese Characters from a properties file using Resource Bundle
- Ordering keys in .properties file alphabetically while ignoring case sensitivity
- Maven build profiles in a mutli-module project property expansion
- Creating an ANT macro to combine two properties file
- How do I create a new line in a properties file using java?
- Reversing a properties file content
- How to inject java.nio.file.Path dependency using @ConfigurationProperties
- How to build a Maven project with Eclipse with a pom.xml that imports an external properties file?
Related Questions in MIRTH
- NCPDP D.0 integration using mirth Connect
- Using a Mirth Transformer to loop through multiple PID.3 Segments
- Perl : UTF8 characters gets distorted while trasnmitting
- Testing (C1+C3) on Cypress 3.0.3 throws error on QRDA 1 which are available for QRDA 3
- Mirth performance benchmark
- issue in writing multiple segments in the database through Mirth
- Mirth 3.5.0 - Importing Code Libraries via REST API
- How to insert created_timestamp in MongoDB using its Java Driver for Javascript
- How to get values from a field in Mongo, using its Java Driver (3.5.0)
- Java HotSpot(TM) 64-Bit Server VM warning: Insufficient space for shared memory file
- Mirth Connect Script to Re-process Errors?
- mirth can connect with Cache,sybase,informix database?
- Mirth Connect: Javascript Reader - Error listing files in dir (shared folder)
- Mirth Property File Corrupted on Editing using powershell
- Losing custom segments in batch file transformation
Related Questions in MIRTH-CONNECT
- Mirth 3.5.0 - Importing Code Libraries via REST API
- Debugging Transformer Errors in Mirth Connect Server Log
- How to create a mirth channel utilizing rest API.
- Set Mirth destination to send transform data back as a custom ACK
- How can I use HTTP Sender to submit a client certificate without the SSL Manager Plugin?
- What is a working minimal example of POST /channelgroups/_bulkUpdate in Mirth REST API?
- Mirth channel Source TCP Listener setting
- Where are the user guides for Mirth Connect?
- how to see content of a javascript array including objects at source section of a channel in Mirth Connect
- Mirth Connect: Failed to start channel_Failed to start HTTP Listener
- sending \X0D0A\ in OBX TX field in hl7 message
- Stop Mirth Connect keepalive messages from SFTP File Reader connector
- How to work with mirth in local
- Mirth connect error in channel deployment
- Mirth Connect to send file to a port number
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
The source and destination file path for a channel is stored in whatever database solution you've elected to use. If you left it at default it will likely use a Derby flat file database, otherwise you can query this by reviewing the schema in whatever RDBMS you've chosen. It's not recommended to modify the data in the Mirth database directly as it could cause data loss.
If you're saying you want to set the source or destination file path based on data in another file, you could do this using JavaScript to fetch the paths out of a file, write them to the channel map, then reference that variable when specifying the file path.