cancel
Showing results for 
Search instead for 
Did you mean: 

Abap Proxy Convert UTF-8 to ISO-8859-1

Former Member
0 Kudos

Dear,

I have the following scenario:

Abap Proxy-> PI -> WebService.

I need to change the encondig UTF-8 to ISO-8859-1 when the SAP ECC sends data to the PI.

How do I do this?

I have a XSLT program that performs the this conversion, UTF-8 to ISO-8859-1, between PI and WebService.

Regards,

Sérgio Salomã

Accepted Solutions (1)

Accepted Solutions (1)

samiullah_qureshi
Active Contributor
0 Kudos

Easiest way to achieve this is by using the Modules in ur SOAP receiver communication channel.

Just need to add followind module in module configuration of SOAP communication channel.

Module Key - SOAP .

Parameter Name - XMBWS.XMLEncoding

Parameter Value - ISO-8859-1(or any other encoding that you want to be used)

Answers (2)

Answers (2)

Former Member
0 Kudos

To understand more about Character Encoding in SAP Process Integration. You can refer the following link:

http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/502991a2-45d9-2910-d99f-8aba5d79f...

stefan_grube
Active Contributor
0 Kudos

> I need to change the encondig UTF-8 to ISO-8859-1 when the SAP ECC sends data to the PI.

No, you don't. PI works with UTF-8 only.

> I have a XSLT program that performs the this conversion, UTF-8 to ISO-8859-1, between PI and WebService.

That is fine.