Doorgaan naar hoofdcontent

Posts

Er worden posts getoond met het label custom

Cordys: Using custom Java within your Message Map

Introduction Sometimes it is needed to add a custom Java call within your Message Map or Data Transformation. This blog item describes how to do this for a Message Map. In this example I wrote a decode/encode methods for base64Binary. Java Code First you have to write your Java code. This can be done in any environment you like. Generate the .jar file. Here's my Java code: package com.util; import com.eibus.util.system.Native; public class Base64Util { public static String decodeFromBase64(String input){ String result = new String(Native.decodeBinBase64(input.getBytes(), input.length())); return result; } public static String encodeToBase64(String input){ String result = new String(Native.encodeBinBase64(input.getBytes(), input.length())); return result; } } Import within BOP4 The next step you need to do is to import your .jar library within Cordys. Create a Folder where you want to import the .jar file ...