Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Expand
titleCompare the LLP Listener configuration in both products - what do you notice is different?

In IguanaX we have:

Image RemovedImage Added

Versus in Iguana 6:

Expand
titleWhat is different and why?

Iguana 6 looks like the complex dashboard of a 747 plane - there are lots of different options which most customers leave on the defaults.

With IguanaX a design goal was to make the operation of interfaces simpler by soft coding the components in Lua but giving each component a lot less configuration fields so that more attention can be given to what actually matters.

When you need to customize components we have made that simple.

Expand
titleFind the code where we map from the LLP Listener in the Converter component in Iguana X

Hint - look in the source code of the converter.

Look at the CHAN/CHANllpSource.lua file. This defines the mapping of configuration information from Iguana 6 to IguanaX.

Also look at the calls to CHANcreateStandardComp in CHAN/CHANmain.lua:

Code Block
CHANcreateStandardComp(Dir, C, "from_llp_listener", "#source #llp",
                 "git@bitbucket.org:interfaceware/hl7_server.git")

These calls define the mapping of Iguana 6 components to IguanaX components.

...