<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>Question Re: Encoding version replacment in xml file in Technology Q&amp;A</title>
    <link>https://community.sap.com/t5/technology-q-a/encoding-version-replacment-in-xml-file/qaa-p/12221749#M4574582</link>
    <description>&lt;P&gt;Hello Shivaram,&lt;/P&gt;&lt;P&gt;Thank you for the prompt response.&lt;/P&gt;&lt;P&gt;I have Implemented recommended steps and achieved the requirement as output xml with ISO encoding tag.&lt;/P&gt;&lt;P&gt;I have used XSLT and set the xml declaration tag before target.&lt;/P&gt;&lt;P&gt;Thank you once again for your time and help!!&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Sree&lt;/P&gt;</description>
    <pubDate>Mon, 14 Dec 2020 18:31:20 GMT</pubDate>
    <dc:creator>former_member277492</dc:creator>
    <dc:date>2020-12-14T18:31:20Z</dc:date>
    <item>
      <title>Encoding version replacment in xml file</title>
      <link>https://community.sap.com/t5/technology-q-a/encoding-version-replacment-in-xml-file/qaq-p/12221735</link>
      <description>&lt;P&gt;Hello Experts,&lt;/P&gt;
  &lt;P&gt;I have got a requirement where Incoming xml with encoding version 'UTF-8' as below and output file is expected with 'ISO-8859-1' tag. &lt;/P&gt;
  &lt;P&gt;Input:&amp;lt;?xml version="1.0" encoding="UTF-8"?&amp;gt;&lt;/P&gt;
  &lt;P&gt;Output: &amp;lt;?xml version="1.0" encoding="ISO-8859-1"?&amp;gt; (Required)&lt;/P&gt;
  &lt;P&gt;Sample file structure below;&lt;/P&gt;
  &lt;P&gt;&amp;lt;?xml version="1.0" encoding="UTF-8"?&amp;gt;&lt;/P&gt;
  &lt;P&gt;&amp;lt;EMPLEADOS&amp;gt;&lt;/P&gt;
  &lt;P&gt;&amp;lt;EMPLEADO NUMERO="100000676" TIPO="A"&amp;gt;&lt;/P&gt;
  &lt;P&gt;&amp;lt;PROCESO PAC="000000" PERIODO="12345" TT="MN"/&amp;gt; &lt;/P&gt;
  &lt;P&gt;&amp;lt;SECCION ID="ABCD"&amp;gt; &lt;/P&gt;
  &lt;P&gt;&amp;lt;CAMPO1 FECHA="" ID="PTP_POCATP" SEC=""&amp;gt;0.97&amp;lt;/CAMPO1&amp;gt;&lt;/P&gt;
  &lt;P&gt;&amp;lt;CAMPO2 FECHA="" ID="PTP_SPPOC105" SEC=""&amp;gt;39.0&amp;lt;/CAMPO2&amp;gt;&lt;/P&gt;
  &lt;P&gt;&amp;lt;/SECCION7&amp;gt; &lt;/P&gt;
  &lt;P&gt;&amp;lt;/EMPLEADO&amp;gt; &lt;/P&gt;
  &lt;P&gt;&amp;lt;/EMPLEADOS&amp;gt;.&lt;/P&gt;
  &lt;P&gt;Do we have any groovy to fulfil this requirement. Please suggest.&lt;/P&gt;
  &lt;P&gt;Thanks in advance,&lt;/P&gt;
  &lt;P&gt;Best Regards,&lt;/P&gt;
  &lt;P&gt;Sree&lt;/P&gt;</description>
      <pubDate>Thu, 26 Nov 2020 17:22:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/encoding-version-replacment-in-xml-file/qaq-p/12221735</guid>
      <dc:creator>former_member277492</dc:creator>
      <dc:date>2020-11-26T17:22:20Z</dc:date>
    </item>
    <item>
      <title>Re: Encoding version replacment in xml file</title>
      <link>https://community.sap.com/t5/technology-q-a/encoding-version-replacment-in-xml-file/qaa-p/12221736#M4574569</link>
      <description>&lt;P&gt;Hello Sreekar,&lt;/P&gt;&lt;P&gt;Before you send the data to Target system add content modifier and set the property with below parameters which changes the Encoding.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;Action       Name                    Type                  Value
Create       CamelCharsetName        Constant              ISO-8859-1
        &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;STRONG&gt;Regards&lt;/STRONG&gt;,&lt;/P&gt;&lt;P&gt;Sriprasad Shivaram Bhat&lt;/P&gt;</description>
      <pubDate>Thu, 26 Nov 2020 17:31:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/encoding-version-replacment-in-xml-file/qaa-p/12221736#M4574569</guid>
      <dc:creator>Sriprasadsbhat</dc:creator>
      <dc:date>2020-11-26T17:31:17Z</dc:date>
    </item>
    <item>
      <title>Re: Encoding version replacment in xml file</title>
      <link>https://community.sap.com/t5/technology-q-a/encoding-version-replacment-in-xml-file/qaa-p/12221737#M4574570</link>
      <description>&lt;P&gt;Hi Sreekar&lt;/P&gt;&lt;P&gt;You can't just change the value of the encoding attribute in the XML prolog (the &amp;lt;?xml .... ?&amp;gt; part at the beginning of your document). You need to change the actual encoding of the document and &lt;EM&gt;then&lt;/EM&gt; reflect that in the encoding attribute. The answer from &lt;SPAN class="mention-scrubbed"&gt;sriprasadshivaramabhat&lt;/SPAN&gt; shows you how.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Morten&lt;/P&gt;</description>
      <pubDate>Thu, 26 Nov 2020 21:01:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/encoding-version-replacment-in-xml-file/qaa-p/12221737#M4574570</guid>
      <dc:creator>MortenWittrock</dc:creator>
      <dc:date>2020-11-26T21:01:21Z</dc:date>
    </item>
    <item>
      <title>Re: Encoding version replacment in xml file</title>
      <link>https://community.sap.com/t5/technology-q-a/encoding-version-replacment-in-xml-file/qaa-p/12221738#M4574571</link>
      <description>&lt;P&gt;Hello Shivaram and Morten,&lt;/P&gt;&lt;P&gt;Thanks for your response.&lt;/P&gt;&lt;P&gt;I have configured content modifier after mapping step and configured the shared details and still in output payload i am getting UTF-8 only.&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" /&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" /&gt;&lt;/P&gt;&lt;P&gt;Kindly advise,&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Sree&lt;/P&gt;</description>
      <pubDate>Wed, 02 Dec 2020 10:58:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/encoding-version-replacment-in-xml-file/qaa-p/12221738#M4574571</guid>
      <dc:creator>former_member277492</dc:creator>
      <dc:date>2020-12-02T10:58:42Z</dc:date>
    </item>
    <item>
      <title>Re: Encoding version replacment in xml file</title>
      <link>https://community.sap.com/t5/technology-q-a/encoding-version-replacment-in-xml-file/qaa-p/12221739#M4574572</link>
      <description>&lt;P&gt;Hello Shivaram and Morten,&lt;/P&gt;&lt;P&gt;Thanks for your response.&lt;/P&gt;&lt;P&gt;I have configured content modifier after mapping step and configured the shared details and still in output payload i am getting UTF-8 only.&lt;/P&gt;&lt;P&gt;Enclsoing the screenshots for your kind perusal.&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Sree&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/1863932-1.jpg" /&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/1863933-2.jpg" /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Dec 2020 11:07:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/encoding-version-replacment-in-xml-file/qaa-p/12221739#M4574572</guid>
      <dc:creator>former_member277492</dc:creator>
      <dc:date>2020-12-02T11:07:04Z</dc:date>
    </item>
    <item>
      <title>Re: Encoding version replacment in xml file</title>
      <link>https://community.sap.com/t5/technology-q-a/encoding-version-replacment-in-xml-file/qaa-p/12221740#M4574573</link>
      <description>&lt;P&gt;Hello Shivaram and Team,&lt;/P&gt;&lt;P&gt;Please could you suggest on above request on encoding version change.&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Sree&lt;/P&gt;</description>
      <pubDate>Thu, 03 Dec 2020 13:14:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/encoding-version-replacment-in-xml-file/qaa-p/12221740#M4574573</guid>
      <dc:creator>former_member277492</dc:creator>
      <dc:date>2020-12-03T13:14:48Z</dc:date>
    </item>
    <item>
      <title>Re: Encoding version replacment in xml file</title>
      <link>https://community.sap.com/t5/technology-q-a/encoding-version-replacment-in-xml-file/qaa-p/12221741#M4574574</link>
      <description>&lt;P&gt;Hi  &lt;SPAN class="mention-scrubbed"&gt;sreekar&lt;/SPAN&gt; ,&lt;/P&gt;&lt;P&gt;As explained above please store the value as a property" CamelCharsetName" &lt;BR /&gt;&lt;/P&gt;&lt;P&gt;After that please use the below code in the mapping then you will achieve the data as output:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;import com.sap.it.api.mapping.*;
import com.sap.it.api.mapping.MappingContext;
def String getProperty(String CamelCharsetName, MappingContext context) {
    def propValue= context.getProperty(property_name);
    return propValue;
}&lt;BR /&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Where You need to pass constant as " CamelCharsetName" to the Script and Map the target field.&lt;/P&gt;&lt;P&gt;Regards,&lt;BR /&gt;Vijender&lt;/P&gt;</description>
      <pubDate>Sun, 06 Dec 2020 13:41:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/encoding-version-replacment-in-xml-file/qaa-p/12221741#M4574574</guid>
      <dc:creator>VijenderGouda</dc:creator>
      <dc:date>2020-12-06T13:41:10Z</dc:date>
    </item>
    <item>
      <title>Re: Encoding version replacment in xml file</title>
      <link>https://community.sap.com/t5/technology-q-a/encoding-version-replacment-in-xml-file/qaa-p/12221742#M4574575</link>
      <description>&lt;P&gt;Hello Vijendra,&lt;/P&gt;&lt;P&gt;Thanks for the response.&lt;/P&gt;&lt;P&gt;I have tried the above provided approach. After Message Mapping I have used Content Modifier, set the below property and then i used the Groovy script before target.&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/1867684-contmdfr.jpg" /&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/1867685-grvy.jpg" /&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/1867686-excptn.jpg" /&gt;&lt;/P&gt;&lt;P&gt;Please let me know anything wrong am I doing or correct me any gap in my understanding&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Sree&lt;/P&gt;</description>
      <pubDate>Wed, 09 Dec 2020 14:11:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/encoding-version-replacment-in-xml-file/qaa-p/12221742#M4574575</guid>
      <dc:creator>former_member277492</dc:creator>
      <dc:date>2020-12-09T14:11:22Z</dc:date>
    </item>
    <item>
      <title>Re: Encoding version replacment in xml file</title>
      <link>https://community.sap.com/t5/technology-q-a/encoding-version-replacment-in-xml-file/qaa-p/12221743#M4574576</link>
      <description>&lt;P&gt;Hello Vijendra and Team,&lt;/P&gt;&lt;P&gt;Please could you help me out on this.&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Sree&lt;/P&gt;</description>
      <pubDate>Thu, 10 Dec 2020 08:43:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/encoding-version-replacment-in-xml-file/qaa-p/12221743#M4574576</guid>
      <dc:creator>former_member277492</dc:creator>
      <dc:date>2020-12-10T08:43:02Z</dc:date>
    </item>
    <item>
      <title>Re: Encoding version replacment in xml file</title>
      <link>https://community.sap.com/t5/technology-q-a/encoding-version-replacment-in-xml-file/qaa-p/12221744#M4574577</link>
      <description>&lt;P&gt;Hello Sreekar,&lt;/P&gt;&lt;P&gt;Quick question which target adapter you are using and which format it should be.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Regards&lt;/STRONG&gt;,&lt;/P&gt;&lt;P&gt;Sriprasad Shivaram Bhat&lt;/P&gt;</description>
      <pubDate>Thu, 10 Dec 2020 10:00:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/encoding-version-replacment-in-xml-file/qaa-p/12221744#M4574577</guid>
      <dc:creator>Sriprasadsbhat</dc:creator>
      <dc:date>2020-12-10T10:00:41Z</dc:date>
    </item>
    <item>
      <title>Re: Encoding version replacment in xml file</title>
      <link>https://community.sap.com/t5/technology-q-a/encoding-version-replacment-in-xml-file/qaa-p/12221745#M4574578</link>
      <description>&lt;P&gt;Hello Shivaram,&lt;/P&gt;&lt;P&gt;I am using SFTP adapter and output structure is xml.&lt;/P&gt;&lt;P&gt;Thanks!!&lt;/P&gt;&lt;P&gt;Sree&lt;/P&gt;</description>
      <pubDate>Fri, 11 Dec 2020 07:37:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/encoding-version-replacment-in-xml-file/qaa-p/12221745#M4574578</guid>
      <dc:creator>former_member277492</dc:creator>
      <dc:date>2020-12-11T07:37:40Z</dc:date>
    </item>
    <item>
      <title>Re: Encoding version replacment in xml file</title>
      <link>https://community.sap.com/t5/technology-q-a/encoding-version-replacment-in-xml-file/qaa-p/12221746#M4574579</link>
      <description>&lt;P&gt;Hello Shivaram,&lt;/P&gt;&lt;P&gt;Any clue on above mentioned topic please.&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Sree&lt;/P&gt;</description>
      <pubDate>Mon, 14 Dec 2020 07:47:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/encoding-version-replacment-in-xml-file/qaa-p/12221746#M4574579</guid>
      <dc:creator>former_member277492</dc:creator>
      <dc:date>2020-12-14T07:47:17Z</dc:date>
    </item>
    <item>
      <title>Re: Encoding version replacment in xml file</title>
      <link>https://community.sap.com/t5/technology-q-a/encoding-version-replacment-in-xml-file/qaa-p/12221747#M4574580</link>
      <description>&lt;P&gt;Hello Shivaram,&lt;/P&gt;&lt;P&gt;Any clue about above issue.&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;Sree&lt;/P&gt;</description>
      <pubDate>Mon, 14 Dec 2020 13:24:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/encoding-version-replacment-in-xml-file/qaa-p/12221747#M4574580</guid>
      <dc:creator>former_member277492</dc:creator>
      <dc:date>2020-12-14T13:24:48Z</dc:date>
    </item>
    <item>
      <title>Re: Encoding version replacment in xml file</title>
      <link>https://community.sap.com/t5/technology-q-a/encoding-version-replacment-in-xml-file/qaa-p/12221748#M4574581</link>
      <description>&lt;P&gt;Hello Sreekar,&lt;/P&gt;&lt;P&gt;Below should help you.I have tried to replicate your scenario ( without receiving system ).&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/1869704-sap-scn-iflow.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Step 1:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Add input XML&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&amp;lt;?xml version='1.0' encoding='UTF-8'?&amp;gt;
&amp;lt;Root&amp;gt;
	&amp;lt;Record&amp;gt;
		&amp;lt;CustomerName&amp;gt;üzüm bağları&amp;lt;/CustomerName&amp;gt;
		&amp;lt;CustomerID&amp;gt;C1&amp;lt;/CustomerID&amp;gt;
		&amp;lt;OrderNo&amp;gt;Ord1&amp;lt;/OrderNo&amp;gt;
		&amp;lt;OrderDesc&amp;gt;Headset&amp;lt;/OrderDesc&amp;gt;
		&amp;lt;OrderDate&amp;gt;15-11-2020&amp;lt;/OrderDate&amp;gt;		
	&amp;lt;/Record&amp;gt;
	&amp;lt;Record&amp;gt;
		&amp;lt;CustomerName&amp;gt;XYS Corp&amp;lt;/CustomerName&amp;gt;
		&amp;lt;CustomerID&amp;gt;C2&amp;lt;/CustomerID&amp;gt;
		&amp;lt;OrderNo&amp;gt;Ord12&amp;lt;/OrderNo&amp;gt;
		&amp;lt;OrderDesc&amp;gt;HardDisc&amp;lt;/OrderDesc&amp;gt;
		&amp;lt;OrderDate&amp;gt;11-11-2020&amp;lt;/OrderDate&amp;gt;
	&amp;lt;/Record&amp;gt;
	&amp;lt;Record&amp;gt;
		&amp;lt;CustomerName&amp;gt;üzüm bağları&amp;lt;/CustomerName&amp;gt;
		&amp;lt;CustomerID&amp;gt;C3&amp;lt;/CustomerID&amp;gt;
		&amp;lt;OrderNo&amp;gt;Ord22&amp;lt;/OrderNo&amp;gt;
		&amp;lt;OrderDesc&amp;gt;Mouse&amp;lt;/OrderDesc&amp;gt;
		&amp;lt;OrderDate&amp;gt;12-11-2020&amp;lt;/OrderDate&amp;gt;
	&amp;lt;/Record&amp;gt;
&amp;lt;/Root&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;STRONG&gt;Step 2:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Add below script if you want to convert encoding of input data ( content )&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;import com.sap.gateway.ip.core.customdev.util.Message;
import java.util.HashMap;
def Message processData(Message message) {
       //Get Body 
       def body = message.getBody();       
       def map = message.getProperties();
	  
       def op=new String(body.getBytes("UTF-8"), "ISO-8859-1");
       message.setBody(op);      
       message.setProperty("CamelCharsetName", "ISO-8859-1");      
       return message;    
}
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;STRONG&gt;Step 3:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Add XSLT mapping to remove XML declaration tag (which contains UTF-8)&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&amp;lt;xsl:stylesheet version="3.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"&amp;gt;
  &amp;lt;xsl:output method="xml" omit-xml-declaration="yes" /&amp;gt;
  &amp;lt;xsl:template match="@*|node()"&amp;gt;
    &amp;lt;xsl:copy&amp;gt;
      &amp;lt;xsl:apply-templates select="@*|node()"/&amp;gt;
    &amp;lt;/xsl:copy&amp;gt;
  &amp;lt;/xsl:template&amp;gt;
&amp;lt;/xsl:stylesheet&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;STRONG&gt;Step 4:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Add content modifier to set the XML declaration tag you are looking for.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&amp;lt;?xml version="1.0" encoding="ISO-8859-1"?&amp;gt;
${in.body}
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;STRONG&gt;Regards,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Sriprasad Shivaram Bhat&lt;/P&gt;</description>
      <pubDate>Mon, 14 Dec 2020 14:25:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/encoding-version-replacment-in-xml-file/qaa-p/12221748#M4574581</guid>
      <dc:creator>Sriprasadsbhat</dc:creator>
      <dc:date>2020-12-14T14:25:20Z</dc:date>
    </item>
    <item>
      <title>Re: Encoding version replacment in xml file</title>
      <link>https://community.sap.com/t5/technology-q-a/encoding-version-replacment-in-xml-file/qaa-p/12221749#M4574582</link>
      <description>&lt;P&gt;Hello Shivaram,&lt;/P&gt;&lt;P&gt;Thank you for the prompt response.&lt;/P&gt;&lt;P&gt;I have Implemented recommended steps and achieved the requirement as output xml with ISO encoding tag.&lt;/P&gt;&lt;P&gt;I have used XSLT and set the xml declaration tag before target.&lt;/P&gt;&lt;P&gt;Thank you once again for your time and help!!&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Sree&lt;/P&gt;</description>
      <pubDate>Mon, 14 Dec 2020 18:31:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/encoding-version-replacment-in-xml-file/qaa-p/12221749#M4574582</guid>
      <dc:creator>former_member277492</dc:creator>
      <dc:date>2020-12-14T18:31:20Z</dc:date>
    </item>
    <item>
      <title>Re: Encoding version replacment in xml file</title>
      <link>https://community.sap.com/t5/technology-q-a/encoding-version-replacment-in-xml-file/qaa-p/12221750#M4574583</link>
      <description>&lt;P&gt;Hello Sreekar,&lt;/P&gt;&lt;P&gt;Please close the thread if above answers your query by accepting correct answer.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Regards&lt;/STRONG&gt;,&lt;/P&gt;&lt;P&gt;Sriprasad Shivaram Bhat&lt;/P&gt;</description>
      <pubDate>Tue, 15 Dec 2020 05:29:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/encoding-version-replacment-in-xml-file/qaa-p/12221750#M4574583</guid>
      <dc:creator>Sriprasadsbhat</dc:creator>
      <dc:date>2020-12-15T05:29:18Z</dc:date>
    </item>
    <item>
      <title>Re: Encoding version replacment in xml file</title>
      <link>https://community.sap.com/t5/technology-q-a/encoding-version-replacment-in-xml-file/qaa-p/12221751#M4574584</link>
      <description>&lt;P&gt;Hello Shivaram,&lt;/P&gt;&lt;P&gt;I have accepted the answer and closed the thread.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Sree&lt;/P&gt;</description>
      <pubDate>Tue, 15 Dec 2020 08:50:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/encoding-version-replacment-in-xml-file/qaa-p/12221751#M4574584</guid>
      <dc:creator>former_member277492</dc:creator>
      <dc:date>2020-12-15T08:50:28Z</dc:date>
    </item>
    <item>
      <title>Re: Encoding version replacment in xml file</title>
      <link>https://community.sap.com/t5/technology-q-a/encoding-version-replacment-in-xml-file/qaa-p/12221752#M4574585</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;The code in Step 2 gives an error:&lt;BR /&gt;&lt;BR /&gt;Error Details&lt;/P&gt;java.lang.NoSuchMethodException: No signature of method: org.apache.camel.component.cxf.converter.CachedCxfPayload.getBytes() is applicable for argument types: (java.lang.String) values: [UTF-8]
Possible solutions: getAt(java.lang.String), getClass(), getBody()</description>
      <pubDate>Wed, 10 May 2023 09:48:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/encoding-version-replacment-in-xml-file/qaa-p/12221752#M4574585</guid>
      <dc:creator>former_member105769</dc:creator>
      <dc:date>2023-05-10T09:48:24Z</dc:date>
    </item>
  </channel>
</rss>

