Profile

Contact Details

IBM

Hermann Stamm-Wilbrandt

Compiler Level 3 support, IBM DataPower Gateways,
IBM

Contributions

1 to 5 of 50+ total
Posted By Hermann Stamm-Wilbrandt Tue April 15, 2025 05:42 AM
Found In Egroup: DataPower
\ view thread
Your code only removes Unicode characters not on BMP (Basic Multilingual Plane, the first 65536 characters). U+2747 (❇) is in BMP and therefore not removed by your code. You need to walk through all BMP characters and identify those that you want to exclude. That is needed because there is no function ...
Posted By Hermann Stamm-Wilbrandt Mon April 14, 2025 06:39 AM
Found In Egroup: DataPower
\ view thread
I cannot because I don't have MQ skills. Please don't hijack unrelated threads. Please create a support ticket. ------------------------------ Hermann Stamm-Wilbrandt Compiler Level 3 support, IBM DataPower Gateways IBM Boeblingen ------------------------------
Posted By Hermann Stamm-Wilbrandt Fri April 11, 2025 06:41 AM
Found In Egroup: DataPower
\ view thread
Hi Daviid, your script works indeed: $ echo -e "foo\xF0\x9F\x91\x8Dbar" foo👍bar $ coproc2 onlyBmp.js <(echo -e "foo\xF0\x9F\x91\x8Dbar") http://127.0.0.1:2227 foobar $ The problem is that your script is a Non-XML script, and INPUT seems to be available as is in MPGW, but not in ...
Posted By Hermann Stamm-Wilbrandt Fri April 11, 2025 02:46 AM
Found In Egroup: DataPower
\ view thread
Hi, here is the easy part. First have a xform action with a stylesheet or a GatewayScript action with input contect INPUT and output context _INPUT_ The change all actions with INPUT as input context to use _INPUT_ instead. In a XSLT you can use XPath 1.0 function "translate()" to delete ...
Posted By Hermann Stamm-Wilbrandt Thu March 20, 2025 09:09 AM
Found In Egroup: DataPower
\ view thread
That is a second "by hand" way of dealing with "gzip"ed backend response. You don't need to use "dp:inflate()" when you set "Compression" to "on" as I showed in my previous posting. Then DataPower will do the inflate and your service will get inflated data as input. ------------------------------ ...