Re: [Dev] [ESB] Some special characters are not preserved as encoded in ESB

2015-03-25 Thread Sriashalya Srivathsan
Hi, I tried this in following way inSequence log property name=name value=This is amp; lt; gt; ' #34; Test / /log respond/ /inSequence I'm getting the correct form like LogMediator To: /services/dev1, MessageID:

Re: [Dev] [ESB] Some special characters are not preserved as encoded in ESB

2015-03-25 Thread Asanka Abeyweera
Hi, I don't want to convert amp; to . I just want amp; to appear as it is in the response. On Wed, Mar 25, 2015 at 5:12 PM, Sriashalya Srivathsan asha...@wso2.com wrote: Hi, I tried this in following way inSequence log property name=name value=This is amp; lt; gt; '

Re: [Dev] [ESB] Some special characters are not preserved as encoded in ESB

2015-03-24 Thread Asanka Abeyweera
Hi all, Is it possible to preserve the encoded characters like quot; in the message body when sending through a proxy? On Sat, Sep 20, 2014 at 2:08 PM, Ishara Premadasa ish...@wso2.com wrote: Hi Miyuru, Is there any configuration available for keep the encodings? Thanks! Ishara On Fri,

Re: [Dev] [ESB] Some special characters are not preserved as encoded in ESB

2014-09-19 Thread Ishara Premadasa
Hi Miyuru, Is there any configuration available for keep the encodings? Thanks! Ishara On Fri, Sep 19, 2014 at 12:16 AM, Miyuru Wanninayaka miy...@wso2.com wrote: This behavior comes from axiom. OMElement omElement = AXIOMUtil.stringToOM(contentThis is amp; lt; gt; apos; quot; Test

[Dev] [ESB] Some special characters are not preserved as encoded in ESB

2014-09-18 Thread Ishara Premadasa
Hi all, I observed that when we send encoded special characters in msg context to ESB some of these characters are decoded inside ESB. Please see the example used below. My input message is like this, body contentThis is amp; lt; gt; apos; quot; Test /content /body When sending this into a

Re: [Dev] [ESB] Some special characters are not preserved as encoded in ESB

2014-09-18 Thread Miyuru Wanninayaka
This behavior comes from axiom. OMElement omElement = AXIOMUtil.stringToOM(contentThis is amp; lt; gt; apos; quot; Test /content/x); System.out.println(omElement.toString()); generates contentThis is amp; lt; ' Test /content @Do you know a way to turn this off in axiom level.