Hi Prabath,

I agree that the fix is valid and current behavior of ESB is correct.

According to the offline discussion I had with Keerthika after changing the
connector with proper url we can resolve this issue.

On Thu, Aug 27, 2015 at 6:16 PM, Keerthika Mahendralingam <
keerth...@wso2.com> wrote:

> Hi All,
> I got the same error in ESB-Beta. But it worked with the ESB-Beta-Snapshot.
>
> Thanks,
>
> On Thu, Aug 27, 2015 at 6:09 PM, Prabath Ariyarathna <prabat...@wso2.com>
> wrote:
>
>> Hi Malaka.
>>
>> My concern is why we are getting this behavior change from Beta - RC1?
>>
>> AFAIK This fix is already there in the BETA pack.
>>
>>
>> Thanks.
>>
>> On Thu, Aug 27, 2015 at 5:58 PM, Prabath Ariyarathna <prabat...@wso2.com>
>> wrote:
>>
>>> Hi Malaka.
>>>
>>> This is due to this[1] issue.
>>>
>>> [1] = https://wso2.org/jira/browse/ESBJAVA-3698
>>>
>>> Thanks.
>>>
>>> On Thu, Aug 27, 2015 at 5:56 PM, Malaka Silva <mal...@wso2.com> wrote:
>>>
>>>> Hi Prabath,
>>>>
>>>> My concern is why we are getting this behavior change from Beta - RC1?
>>>>
>>>> Can this be due to an issue fix?
>>>>
>>>> @Keertika - Pls confirm this worked fine in BETA?
>>>>
>>>> On Thu, Aug 27, 2015 at 4:24 PM, Prabath Ariyarathna <
>>>> prabat...@wso2.com> wrote:
>>>>
>>>>> Hi Keethika.
>>>>>
>>>>> In previous implementation we continue with response processing even
>>>>> though response contents cannot be built properly and as a response we 
>>>>> used
>>>>> default payload. You can see it in your success response wire log.
>>>>>
>>>>> [2015-08-27 12:13:33,881] ERROR - JsonUtil #newJsonPayload. Could not
>>>>> save JSON payload. Invalid input stream found. MessageID:
>>>>> urn:uuid:f9e21a9f-9f94-4f84-b1b1-d2733afa9250
>>>>>
>>>>> Response is invalid, but you can still get the response and we changed
>>>>> this behavior to send AxisFault when we cannot build response properly. In
>>>>> your case "true" value cannot build to the JSON content hence getting this
>>>>> exception. We have no solution for this kind of specific situation. you
>>>>> need to make sure to execute correct API with expected responses.
>>>>>
>>>>>
>>>>> Thanks.
>>>>>
>>>>> On Thu, Aug 27, 2015 at 3:11 PM, Keerthika Mahendralingam <
>>>>> keerth...@wso2.com> wrote:
>>>>>
>>>>>> Hi Prabath,
>>>>>> When we add the latest verion in the api url for the above call we
>>>>>> got the json format response. If we not add the api version in the
>>>>>> url it automatically redirect to the latest version but getting only 
>>>>>> "true"
>>>>>> as the response. I'm not sure why it is returning different responses. 
>>>>>> But
>>>>>> this response was handled by ESB upto 4.9.0-Beta version. If this is an
>>>>>> expected behaviour in 4.9.0-RC1 pack, then how to handle these kind of
>>>>>> responses since we are working with the third party API's we may get 
>>>>>> these
>>>>>> kind of responses.
>>>>>>
>>>>>> Thanks,
>>>>>>
>>>>>> On Thu, Aug 27, 2015 at 2:36 PM, Prabath Ariyarathna <
>>>>>> prabat...@wso2.com> wrote:
>>>>>>
>>>>>>> Hi Keethika.
>>>>>>>
>>>>>>> Could you please recheck your configurations. May be something wrong
>>>>>>> in your API call. I can just see "true" value is returning from the API
>>>>>>> according to the wirelog but we expecting JSON format.
>>>>>>>
>>>>>>>
>>>>>>> Thanks.
>>>>>>>
>>>>>>>
>>>>>>> On Wed, Aug 26, 2015 at 7:31 PM, Keerthika Mahendralingam <
>>>>>>> keerth...@wso2.com> wrote:
>>>>>>>
>>>>>>>> Hi Prabath,
>>>>>>>> Sorry i changed the jsonStreamBuilder as jsonBuilder thats why i
>>>>>>>> got the error for the above scenario. Please find the correct 
>>>>>>>> artifacts to
>>>>>>>> reproduce the issue:
>>>>>>>>
>>>>>>>> *Template:*
>>>>>>>> <template name="deletePageMilestone" xmlns="
>>>>>>>> http://ws.apache.org/ns/synapse";>
>>>>>>>>     <parameter name="milestoneId" description="The id of the
>>>>>>>> milestone which needs to be deleted"/>
>>>>>>>>     <parameter name="accessToken"/>
>>>>>>>>     <sequence>
>>>>>>>>         <property name="uri.var.milestoneId"
>>>>>>>> expression="$func:milestoneId"/>
>>>>>>>>         <property name="uri.var.accessToken"
>>>>>>>> expression="$func:accessToken"/>
>>>>>>>>         <call>
>>>>>>>>             <endpoint>
>>>>>>>>                 <http method="delete"
>>>>>>>>                       uri-template="
>>>>>>>> https://graph.facebook.com/{uri.var.milestoneId}?access_token={uri.var.accessToken}
>>>>>>>> "/>
>>>>>>>>             </endpoint>
>>>>>>>>         </call>
>>>>>>>>     </sequence>
>>>>>>>> </template>
>>>>>>>>
>>>>>>>> *Proxy:*
>>>>>>>> <?xml version="1.0" encoding="UTF-8"?>
>>>>>>>> <proxy xmlns="http://ws.apache.org/ns/synapse";
>>>>>>>>        name="testProxy"
>>>>>>>>        transports="https,http"
>>>>>>>>        statistics="disable"
>>>>>>>>        trace="disable"
>>>>>>>>        startOnLoad="true">
>>>>>>>>    <target>
>>>>>>>>       <inSequence>
>>>>>>>>          <property name="milestoneId"
>>>>>>>> expression="//milestoneId/text()"/>
>>>>>>>>          <property name="accessToken"
>>>>>>>> expression="//accessToken/text()"/>
>>>>>>>>          <call-template target="deletePageMilestone">
>>>>>>>>             <with-param name="milestoneId"
>>>>>>>> value="{$ctx:milestoneId}"/>
>>>>>>>>             <with-param name="accessToken"
>>>>>>>> value="{$ctx:accessToken}"/>
>>>>>>>>          </call-template>
>>>>>>>>          <respond/>
>>>>>>>>       </inSequence>
>>>>>>>>    </target>
>>>>>>>>    <description/>
>>>>>>>> </proxy>
>>>>>>>>
>>>>>>>> Sample Request:
>>>>>>>>  {
>>>>>>>>
>>>>>>>> "accessToken":"CAACEdEose0cBAKiEOLu78rUk36Isi7fzFgZALSQ4NmsbZCVSrUgGg3UXpOmCZCvAHgbRw2rYgtwPJp1rbXK7xBN610j4KCULHRgBiyVZBti7tlAZBBysK7pC9I8igZAAwW8oJrgk0IsYItRp74FkoDWgaxM5bXgaDDu90pNOtZAHpaTEdZBNa3AqIrP2mEZCTvl4nfxYZBmbbJgwZDZD",
>>>>>>>> "milestoneId":"109934502690046"
>>>>>>>> }
>>>>>>>>
>>>>>>>> On Wed, Aug 26, 2015 at 7:17 PM, Prabath Ariyarathna <
>>>>>>>> prabat...@wso2.com> wrote:
>>>>>>>>
>>>>>>>>> Hi Keerthika
>>>>>>>>>
>>>>>>>>> I have tried several time with given configurations, but I didn't
>>>>>>>>> get exception you mentioned.
>>>>>>>>> Could you please recheck you have configured any custom builder of
>>>>>>>>> formatter?
>>>>>>>>>
>>>>>>>>>
>>>>>>>>> Thanks.
>>>>>>>>>
>>>>>>>>> On Wed, Aug 26, 2015 at 6:31 PM, Keerthika Mahendralingam <
>>>>>>>>> keerth...@wso2.com> wrote:
>>>>>>>>>
>>>>>>>>>> Hi Prabath,
>>>>>>>>>> Please find the artifacts to reproduce the issue:
>>>>>>>>>>
>>>>>>>>>> *Template:*
>>>>>>>>>>
>>>>>>>>>> <?xml version="1.0" encoding="UTF-8"?>
>>>>>>>>>> <template name="getCurrentWeatherForSeveralCitiesWithinCycle"
>>>>>>>>>> xmlns="http://ws.apache.org/ns/synapse";>
>>>>>>>>>>     <!-- Required parameters -->
>>>>>>>>>>     <parameter name="lat" description="latitude"/>
>>>>>>>>>>     <parameter name="lon" description="longitude "/>
>>>>>>>>>>     <!-- Optional parameters -->
>>>>>>>>>>     <parameter name="cnt" description="Expected number of cities
>>>>>>>>>> ('cnt') around point  "/>
>>>>>>>>>>     <parameter name="lang" description="language "/>
>>>>>>>>>>     <parameter name="cluster" description="Use server clustering
>>>>>>>>>> of points. Possible values ​​are [yes, no]"/>
>>>>>>>>>>     <parameter name="callback" description=" Javascript
>>>>>>>>>> functionName"/>
>>>>>>>>>>
>>>>>>>>>>     <sequence>
>>>>>>>>>>         <property name="uri.var.apiParameters" value=""/>
>>>>>>>>>>         <property name="uri.var.lat" expression="$func:lat"/>
>>>>>>>>>>         <property name="uri.var.lon" expression="$func:lon"/>
>>>>>>>>>>         <property name="uri.var.cnt" expression="$func:cnt"/>
>>>>>>>>>>         <property name="uri.var.lang" expression="$func:lang"/>
>>>>>>>>>>         <property name="uri.var.cluster"
>>>>>>>>>> expression="$func:cluster"/>
>>>>>>>>>>         <property name="uri.var.callback"
>>>>>>>>>> expression="$func:callback"/>
>>>>>>>>>>
>>>>>>>>>>         <filter xpath="(not(get-property('uri.var.lang') = '' or
>>>>>>>>>> (not(string(get-property('uri.var.lang'))))))">
>>>>>>>>>>             <then>
>>>>>>>>>>                 <property name="uri.var.apiParameters"
>>>>>>>>>>
>>>>>>>>>> expression="fn:concat(get-property('uri.var.apiParameters'),'&amp;lang=',get-property('uri.var.lang'))"/>
>>>>>>>>>>             </then>
>>>>>>>>>>         </filter>
>>>>>>>>>>         <filter xpath="(not(get-property('uri.var.cluster') = ''
>>>>>>>>>> or (not(string(get-property('uri.var.cluster'))))))">
>>>>>>>>>>             <then>
>>>>>>>>>>                 <property name="uri.var.apiParameters"
>>>>>>>>>>
>>>>>>>>>> expression="fn:concat(get-property('uri.var.apiParameters'),'&amp;cluster=',get-property('uri.var.cluster'))"/>
>>>>>>>>>>             </then>
>>>>>>>>>>         </filter>
>>>>>>>>>>         <filter xpath="(not(get-property('uri.var.cnt') = '' or
>>>>>>>>>> (not(string(get-property('uri.var.cnt'))))))">
>>>>>>>>>>             <then>
>>>>>>>>>>                 <property name="uri.var.apiParameters"
>>>>>>>>>>
>>>>>>>>>> expression="fn:concat(get-property('uri.var.apiParameters'),'&amp;cnt=',get-property('uri.var.cnt'))"/>
>>>>>>>>>>             </then>
>>>>>>>>>>         </filter>
>>>>>>>>>>         <filter xpath="(not(get-property('uri.var.callback') = ''
>>>>>>>>>> or (not(string(get-property('uri.var.callback'))))))">
>>>>>>>>>>             <then>
>>>>>>>>>>                 <property name="uri.var.apiParameters"
>>>>>>>>>>
>>>>>>>>>> expression="fn:concat(get-property('uri.var.apiParameters'),'&amp;callback=',get-property('uri.var.callback'))"/>
>>>>>>>>>>             </then>
>>>>>>>>>>         </filter>
>>>>>>>>>>         <call>
>>>>>>>>>>             <endpoint>
>>>>>>>>>>                 <http method="get"
>>>>>>>>>>                       uri-template="
>>>>>>>>>> http://api.openweathermap.org/data/2.5/find?lat={uri.var.lat}&amp;lon={uri.var.lon}{+uri.var.apiParameters}
>>>>>>>>>> <http://api.openweathermap.org/data/2.5/find?lat=%7Buri.var.lat%7D&amp;lon=%7Buri.var.lon%7D%7B+uri.var.apiParameters%7D>
>>>>>>>>>> "/>
>>>>>>>>>>             </endpoint>
>>>>>>>>>>         </call>
>>>>>>>>>>         <!-- Remove response custom header information -->
>>>>>>>>>>         <header name="x-li-format" scope="transport"
>>>>>>>>>> action="remove" />
>>>>>>>>>>         <header name="X-LI-UUID" scope="transport"
>>>>>>>>>> action="remove" />
>>>>>>>>>>         <header name="X-Li-Fabric" scope="transport"
>>>>>>>>>> action="remove" />
>>>>>>>>>>         <header name="x-li-request-id" scope="transport"
>>>>>>>>>> action="remove" />
>>>>>>>>>>         <header name="X-Li-Pop" scope="transport" action="remove"
>>>>>>>>>> />
>>>>>>>>>>         <header name="Set-Cookie" scope="transport"
>>>>>>>>>> action="remove" />
>>>>>>>>>>
>>>>>>>>>>     </sequence>
>>>>>>>>>> </template>
>>>>>>>>>>
>>>>>>>>>> *Proxy:*
>>>>>>>>>> <?xml version="1.0" encoding="UTF-8"?>
>>>>>>>>>> <proxy xmlns="http://ws.apache.org/ns/synapse";
>>>>>>>>>>        name="testProxy"
>>>>>>>>>>        transports="https,http"
>>>>>>>>>>        statistics="disable"
>>>>>>>>>>        trace="disable"
>>>>>>>>>>        startOnLoad="true">
>>>>>>>>>>    <target>
>>>>>>>>>>       <inSequence>
>>>>>>>>>>          <property name="apiUrl" expression="//apiUrl/text()"/>
>>>>>>>>>>          <property name="apiVersion"
>>>>>>>>>> expression="//apiVersion/text()"/>
>>>>>>>>>>          <property name="lon" expression="//lon/text()"/>
>>>>>>>>>>          <property name="lat" expression="//lat/text()"/>
>>>>>>>>>>          <property name="callback"
>>>>>>>>>> expression="//callback/text()"/>
>>>>>>>>>>          <call-template
>>>>>>>>>> target="getCurrentWeatherForSeveralCitiesWithinCycle">
>>>>>>>>>>             <with-param name="callback" value="{$ctx:callback}"/>
>>>>>>>>>>             <with-param name="apiUrl" value="{$ctx:apiUrl}"/>
>>>>>>>>>>             <with-param name="apiVersion"
>>>>>>>>>> value="{$ctx:apiVersion}"/>
>>>>>>>>>>             <with-param name="lat" value="{$ctx:lat}"/>
>>>>>>>>>>             <with-param name="lon" value="{$ctx:lon}"/>
>>>>>>>>>>          </call-template>
>>>>>>>>>>          <respond/>
>>>>>>>>>>       </inSequence>
>>>>>>>>>>    </target>
>>>>>>>>>>    <description/>
>>>>>>>>>> </proxy>
>>>>>>>>>>
>>>>>>>>>> *Sample request:*
>>>>>>>>>> {
>>>>>>>>>>   "lat":"35",
>>>>>>>>>>   "lon":"139",
>>>>>>>>>>   "cnt":"10",
>>>>>>>>>>   "lang":"en",
>>>>>>>>>>   "cluster":"yes",
>>>>>>>>>>   "callback":"test"
>>>>>>>>>> }
>>>>>>>>>>
>>>>>>>>>> Thanks,
>>>>>>>>>>
>>>>>>>>>> On Wed, Aug 26, 2015 at 6:06 PM, Prabath Ariyarathna <
>>>>>>>>>> prabat...@wso2.com> wrote:
>>>>>>>>>>
>>>>>>>>>>> Hi Keerthika.
>>>>>>>>>>>
>>>>>>>>>>> Could please provide artifacts to reproduce this issue?
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>> Thanks.
>>>>>>>>>>>
>>>>>>>>>>> On Wed, Aug 26, 2015 at 5:23 PM, Keerthika Mahendralingam <
>>>>>>>>>>> keerth...@wso2.com> wrote:
>>>>>>>>>>>
>>>>>>>>>>>> Hi All,
>>>>>>>>>>>> When we receive invalid json format response with the
>>>>>>>>>>>> content-type application/json header we are getting following 
>>>>>>>>>>>> builder
>>>>>>>>>>>> formatting error in ESB-RC1 pack but it works with 
>>>>>>>>>>>> ESB-Beta-Snapshot. Is
>>>>>>>>>>>> this expected behaviour? If so, how to resolve this?
>>>>>>>>>>>>
>>>>>>>>>>>> [2015-08-26 17:15:15,044] DEBUG - wire >> "POST
>>>>>>>>>>>> /services/facebook HTTP/1.1[\r][\n]"
>>>>>>>>>>>>
>>>>>>>>>>>> [2015-08-26 17:15:15,045] DEBUG - wire >> "Host:
>>>>>>>>>>>> esb.wso2.com:8280[\r][\n]"
>>>>>>>>>>>>
>>>>>>>>>>>> [2015-08-26 17:15:15,045] DEBUG - wire >> "Connection:
>>>>>>>>>>>> keep-alive[\r][\n]"
>>>>>>>>>>>>
>>>>>>>>>>>> [2015-08-26 17:15:15,045] DEBUG - wire >> "Content-Length:
>>>>>>>>>>>> 292[\r][\n]"
>>>>>>>>>>>>
>>>>>>>>>>>> [2015-08-26 17:15:15,045] DEBUG - wire >> "Action:
>>>>>>>>>>>> urn:deletePageMilestone[\r][\n]"
>>>>>>>>>>>>
>>>>>>>>>>>> [2015-08-26 17:15:15,045] DEBUG - wire >> "Cache-Control:
>>>>>>>>>>>> no-cache[\r][\n]"
>>>>>>>>>>>>
>>>>>>>>>>>> [2015-08-26 17:15:15,045] DEBUG - wire >> "Origin:
>>>>>>>>>>>> chrome-extension://fdmmgilgnpjigdojojpjoooidkmcomcm[\r][\n]"
>>>>>>>>>>>>
>>>>>>>>>>>> [2015-08-26 17:15:15,045] DEBUG - wire >> "User-Agent:
>>>>>>>>>>>> Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/537.36 
>>>>>>>>>>>> (KHTML,
>>>>>>>>>>>> like Gecko) Chrome/44.0.2403.155 Safari/537.36[\r][\n]"
>>>>>>>>>>>>
>>>>>>>>>>>> [2015-08-26 17:15:15,045] DEBUG - wire >> "Content-Type:
>>>>>>>>>>>> application/json[\r][\n]"
>>>>>>>>>>>>
>>>>>>>>>>>> [2015-08-26 17:15:15,045] DEBUG - wire >> "Accept: */*[\r][\n]"
>>>>>>>>>>>>
>>>>>>>>>>>> [2015-08-26 17:15:15,045] DEBUG - wire >> "Accept-Encoding:
>>>>>>>>>>>> gzip, deflate[\r][\n]"
>>>>>>>>>>>>
>>>>>>>>>>>> [2015-08-26 17:15:15,046] DEBUG - wire >> "Accept-Language:
>>>>>>>>>>>> en-US,en;q=0.8[\r][\n]"
>>>>>>>>>>>>
>>>>>>>>>>>> [2015-08-26 17:15:15,046] DEBUG - wire >> "Cookie:
>>>>>>>>>>>> __ar_v4=LOY73IEDGREW5ABOLPMGGI%3A20141012%3A10%7C3HZ3H74ZSZHCLIQQVDL7FW%3A20141012%3A10%7CCZDVOXTUDJEN7DJK45GUJ6%3A20141012%3A10;
>>>>>>>>>>>> __utmx=62040490.Ai96-XwTT32uGt454LGacQ$80443214-37:;
>>>>>>>>>>>> __utmxx=62040490.Ai96-XwTT32uGt454LGacQ$80443214-37:1432283552:15552000;
>>>>>>>>>>>> __utma=62040490.99968054.1406221425.1425200186.1433095074.3;
>>>>>>>>>>>> __utmz=62040490.1433095074.3.3.utmcsr=google|utmccn=(organic)|utmcmd=organic|utmctr=(not%20provided);
>>>>>>>>>>>> CAKEPHP=0ueo79km0ue216pp32326bibh0;
>>>>>>>>>>>> BIGipServersjgcp-restapi_https=4262002698.47873.0000;
>>>>>>>>>>>> SESS73db9c87576ccc08af28bf2520013ef7=63232bff43562fb56e9d80ca59e15bef;
>>>>>>>>>>>> csrftoken=6a5d43410cf85c55adc8c5d99bfa62b5;
>>>>>>>>>>>> __auc=8de3c8c814769541720b3574cf2; 
>>>>>>>>>>>> _ga=GA1.2.99968054.1406221425[\r][\n]"
>>>>>>>>>>>>
>>>>>>>>>>>> [2015-08-26 17:15:15,046] DEBUG - wire >> "[\r][\n]"
>>>>>>>>>>>>
>>>>>>>>>>>> [2015-08-26 17:15:15,046] DEBUG - wire >> " {[\n]"
>>>>>>>>>>>>
>>>>>>>>>>>> [2015-08-26 17:15:15,046] DEBUG - wire >> ""apiUrl":"
>>>>>>>>>>>> https://graph.facebook.com",[\n]";
>>>>>>>>>>>>
>>>>>>>>>>>> [2015-08-26 17:15:15,046] DEBUG - wire >>
>>>>>>>>>>>> ""accessToken":"CAACEdEose0cBAPXBiNfTtIM4SzYTuuTEtzC6RdeaPl52v46BsZCogdNxPaJrLTZCFP1AP5In5DwWc4sfPZBT81nNPsnDJwINSAAVYtohyrfGUksUVu16cpVt6ZALetZAW3tISEdylqqGVNQ47VbZC91SrZCW5ZCMUWsspPvav4G43I8CHSVebwRj22te8cuezZCMZD",[\n]"
>>>>>>>>>>>>
>>>>>>>>>>>> [2015-08-26 17:15:15,046] DEBUG - wire >>
>>>>>>>>>>>> ""milestoneId":"116905618659601"[\n]"
>>>>>>>>>>>>
>>>>>>>>>>>> [2015-08-26 17:15:15,046] DEBUG - wire >> "}"
>>>>>>>>>>>>
>>>>>>>>>>>> [2015-08-26 17:15:15,178] DEBUG - wire << "DELETE
>>>>>>>>>>>> /116905618659601?access_token=CAACEdEose0cBAPXBiNfTtIM4SzYTuuTEtzC6RdeaPl52v46BsZCogdNxPaJrLTZCFP1AP5In5DwWc4sfPZBT81nNPsnDJwINSAAVYtohyrfGUksUVu16cpVt6ZALetZAW3tISEdylqqGVNQ47VbZC91SrZCW5ZCMUWsspPvav4G43I8CHSVebwRj22te8cuezZCMZD
>>>>>>>>>>>> HTTP/1.1[\r][\n]"
>>>>>>>>>>>>
>>>>>>>>>>>> [2015-08-26 17:15:15,178] DEBUG - wire << "Accept-Language:
>>>>>>>>>>>> en-US,en;q=0.8[\r][\n]"
>>>>>>>>>>>>
>>>>>>>>>>>> [2015-08-26 17:15:15,178] DEBUG - wire << "Cookie:
>>>>>>>>>>>> __ar_v4=LOY73IEDGREW5ABOLPMGGI%3A20141012%3A10%7C3HZ3H74ZSZHCLIQQVDL7FW%3A20141012%3A10%7CCZDVOXTUDJEN7DJK45GUJ6%3A20141012%3A10;
>>>>>>>>>>>> __utmx=62040490.Ai96-XwTT32uGt454LGacQ$80443214-37:;
>>>>>>>>>>>> __utmxx=62040490.Ai96-XwTT32uGt454LGacQ$80443214-37:1432283552:15552000;
>>>>>>>>>>>> __utma=62040490.99968054.1406221425.1425200186.1433095074.3;
>>>>>>>>>>>> __utmz=62040490.1433095074.3.3.utmcsr=google|utmccn=(organic)|utmcmd=organic|utmctr=(not%20provided);
>>>>>>>>>>>> CAKEPHP=0ueo79km0ue216pp32326bibh0;
>>>>>>>>>>>> BIGipServersjgcp-restapi_https=4262002698.47873.0000;
>>>>>>>>>>>> SESS73db9c87576ccc08af28bf2520013ef7=63232bff43562fb56e9d80ca59e15bef;
>>>>>>>>>>>> csrftoken=6a5d43410cf85c55adc8c5d99bfa62b5;
>>>>>>>>>>>> __auc=8de3c8c814769541720b3574cf2; 
>>>>>>>>>>>> _ga=GA1.2.99968054.1406221425[\r][\n]"
>>>>>>>>>>>>
>>>>>>>>>>>> [2015-08-26 17:15:15,179] DEBUG - wire << "Action:
>>>>>>>>>>>> urn:deletePageMilestone[\r][\n]"
>>>>>>>>>>>>
>>>>>>>>>>>> [2015-08-26 17:15:15,179] DEBUG - wire << "Accept-Encoding:
>>>>>>>>>>>> gzip, deflate[\r][\n]"
>>>>>>>>>>>>
>>>>>>>>>>>> [2015-08-26 17:15:15,179] DEBUG - wire << "Origin:
>>>>>>>>>>>> chrome-extension://fdmmgilgnpjigdojojpjoooidkmcomcm[\r][\n]"
>>>>>>>>>>>>
>>>>>>>>>>>> [2015-08-26 17:15:15,179] DEBUG - wire << "Content-Type:
>>>>>>>>>>>> application/json[\r][\n]"
>>>>>>>>>>>>
>>>>>>>>>>>> [2015-08-26 17:15:15,179] DEBUG - wire << "Accept: */*[\r][\n]"
>>>>>>>>>>>>
>>>>>>>>>>>> [2015-08-26 17:15:15,179] DEBUG - wire << "Cache-Control:
>>>>>>>>>>>> no-cache[\r][\n]"
>>>>>>>>>>>>
>>>>>>>>>>>> [2015-08-26 17:15:15,179] DEBUG - wire << "Host:
>>>>>>>>>>>> graph.facebook.com:443[\r][\n]"
>>>>>>>>>>>>
>>>>>>>>>>>> [2015-08-26 17:15:15,179] DEBUG - wire << "Connection:
>>>>>>>>>>>> Keep-Alive[\r][\n]"
>>>>>>>>>>>>
>>>>>>>>>>>> [2015-08-26 17:15:15,179] DEBUG - wire << "User-Agent:
>>>>>>>>>>>> Synapse-PT-HttpComponents-NIO[\r][\n]"
>>>>>>>>>>>>
>>>>>>>>>>>> [2015-08-26 17:15:15,179] DEBUG - wire << "[\r][\n]"
>>>>>>>>>>>>
>>>>>>>>>>>> [2015-08-26 17:15:18,058] DEBUG - wire >> "HTTP/1.1 200
>>>>>>>>>>>> OK[\r][\n]"
>>>>>>>>>>>>
>>>>>>>>>>>> [2015-08-26 17:15:18,059] DEBUG - wire >>
>>>>>>>>>>>> "Access-Control-Allow-Origin: *[\r][\n]"
>>>>>>>>>>>>
>>>>>>>>>>>> [2015-08-26 17:15:18,059] DEBUG - wire >> "Content-Type:
>>>>>>>>>>>> application/json; charset=UTF-8[\r][\n]"
>>>>>>>>>>>>
>>>>>>>>>>>> [2015-08-26 17:15:18,059] DEBUG - wire >> "X-FB-Trace-ID:
>>>>>>>>>>>> Et9/Ab1xmGg[\r][\n]"
>>>>>>>>>>>>
>>>>>>>>>>>> [2015-08-26 17:15:18,059] DEBUG - wire >> "X-FB-Rev:
>>>>>>>>>>>> 1903775[\r][\n]"
>>>>>>>>>>>>
>>>>>>>>>>>> [2015-08-26 17:15:18,059] DEBUG - wire >> "Pragma:
>>>>>>>>>>>> no-cache[\r][\n]"
>>>>>>>>>>>>
>>>>>>>>>>>> [2015-08-26 17:15:18,059] DEBUG - wire >> "Cache-Control:
>>>>>>>>>>>> private, no-cache, no-store, must-revalidate[\r][\n]"
>>>>>>>>>>>>
>>>>>>>>>>>> [2015-08-26 17:15:18,059] DEBUG - wire >>
>>>>>>>>>>>> "Facebook-API-Version: v2.0[\r][\n]"
>>>>>>>>>>>>
>>>>>>>>>>>> [2015-08-26 17:15:18,059] DEBUG - wire >> "Expires: Sat, 01 Jan
>>>>>>>>>>>> 2000 00:00:00 GMT[\r][\n]"
>>>>>>>>>>>>
>>>>>>>>>>>> [2015-08-26 17:15:18,059] DEBUG - wire >> "P3P: CP="Facebook
>>>>>>>>>>>> does not have a P3P policy. Learn why here: http://fb.me/p3p
>>>>>>>>>>>> "[\r][\n]"
>>>>>>>>>>>>
>>>>>>>>>>>> [2015-08-26 17:15:18,059] DEBUG - wire >> "Set-Cookie:
>>>>>>>>>>>> __ar_v4=deleted; expires=Thu, 01-Jan-1970 00:00:01 GMT;
>>>>>>>>>>>> Max-Age=-1440589455; path=/; domain=.facebook.com;
>>>>>>>>>>>> httponly[\r][\n]"
>>>>>>>>>>>>
>>>>>>>>>>>> [2015-08-26 17:15:18,060] DEBUG - wire >> "Set-Cookie:
>>>>>>>>>>>> __utmx=deleted; expires=Thu, 01-Jan-1970 00:00:01 GMT; 
>>>>>>>>>>>> Max-Age=-1440589455;
>>>>>>>>>>>> path=/; domain=.facebook.com; httponly[\r][\n]"
>>>>>>>>>>>>
>>>>>>>>>>>> [2015-08-26 17:15:18,060] DEBUG - wire >> "Set-Cookie:
>>>>>>>>>>>> __utmxx=deleted; expires=Thu, 01-Jan-1970 00:00:01 GMT;
>>>>>>>>>>>> Max-Age=-1440589455; path=/; domain=.facebook.com;
>>>>>>>>>>>> httponly[\r][\n]"
>>>>>>>>>>>>
>>>>>>>>>>>> [2015-08-26 17:15:18,060] DEBUG - wire >> "Set-Cookie:
>>>>>>>>>>>> __utma=deleted; expires=Thu, 01-Jan-1970 00:00:01 GMT; 
>>>>>>>>>>>> Max-Age=-1440589455;
>>>>>>>>>>>> path=/; domain=.facebook.com; httponly[\r][\n]"
>>>>>>>>>>>>
>>>>>>>>>>>> [2015-08-26 17:15:18,060] DEBUG - wire >> "Set-Cookie:
>>>>>>>>>>>> __utmz=deleted; expires=Thu, 01-Jan-1970 00:00:01 GMT; 
>>>>>>>>>>>> Max-Age=-1440589455;
>>>>>>>>>>>> path=/; domain=.facebook.com; httponly[\r][\n]"
>>>>>>>>>>>>
>>>>>>>>>>>> [2015-08-26 17:15:18,060] DEBUG - wire >> "Set-Cookie:
>>>>>>>>>>>> CAKEPHP=deleted; expires=Thu, 01-Jan-1970 00:00:01 GMT;
>>>>>>>>>>>> Max-Age=-1440589455; path=/; domain=.facebook.com;
>>>>>>>>>>>> httponly[\r][\n]"
>>>>>>>>>>>>
>>>>>>>>>>>> [2015-08-26 17:15:18,060] DEBUG - wire >> "Set-Cookie:
>>>>>>>>>>>> BIGipServersjgcp-restapi_https=deleted; expires=Thu, 01-Jan-1970 
>>>>>>>>>>>> 00:00:01
>>>>>>>>>>>> GMT; Max-Age=-1440589455; path=/; domain=.facebook.com;
>>>>>>>>>>>> httponly[\r][\n]"
>>>>>>>>>>>>
>>>>>>>>>>>> [2015-08-26 17:15:18,060] DEBUG - wire >> "Set-Cookie:
>>>>>>>>>>>> SESS73db9c87576ccc08af28bf2520013ef7=deleted; expires=Thu, 
>>>>>>>>>>>> 01-Jan-1970
>>>>>>>>>>>> 00:00:01 GMT; Max-Age=-1440589455; path=/; domain=.facebook.com;
>>>>>>>>>>>> httponly[\r][\n]"
>>>>>>>>>>>>
>>>>>>>>>>>> [2015-08-26 17:15:18,060] DEBUG - wire >> "Set-Cookie:
>>>>>>>>>>>> csrftoken=deleted; expires=Thu, 01-Jan-1970 00:00:01 GMT;
>>>>>>>>>>>> Max-Age=-1440589455; path=/; domain=.facebook.com;
>>>>>>>>>>>> httponly[\r][\n]"
>>>>>>>>>>>>
>>>>>>>>>>>> [2015-08-26 17:15:18,060] DEBUG - wire >> "Set-Cookie:
>>>>>>>>>>>> __auc=deleted; expires=Thu, 01-Jan-1970 00:00:01 GMT; 
>>>>>>>>>>>> Max-Age=-1440589455;
>>>>>>>>>>>> path=/; domain=.facebook.com; httponly[\r][\n]"
>>>>>>>>>>>>
>>>>>>>>>>>> [2015-08-26 17:15:18,060] DEBUG - wire >> "X-FB-Debug:
>>>>>>>>>>>> TUcxVdp3M8spoaP52Msi0ax4Dy/3HmVuh5i1wXRDw7mm9eFEn2PphfnvZ8vVkqo/i557d+83pRSutH+/sv0f9Q==[\r][\n]"
>>>>>>>>>>>>
>>>>>>>>>>>> [2015-08-26 17:15:18,060] DEBUG - wire >> "Date: Wed, 26 Aug
>>>>>>>>>>>> 2015 11:44:19 GMT[\r][\n]"
>>>>>>>>>>>>
>>>>>>>>>>>> [2015-08-26 17:15:18,061] DEBUG - wire >> "Connection:
>>>>>>>>>>>> keep-alive[\r][\n]"
>>>>>>>>>>>>
>>>>>>>>>>>> [2015-08-26 17:15:18,061] DEBUG - wire >> "Content-Length:
>>>>>>>>>>>> 4[\r][\n]"
>>>>>>>>>>>>
>>>>>>>>>>>> [2015-08-26 17:15:18,061] DEBUG - wire >> "[\r][\n]"
>>>>>>>>>>>>
>>>>>>>>>>>> [2015-08-26 17:15:18,062] DEBUG - wire >> "true"
>>>>>>>>>>>>
>>>>>>>>>>>> [2015-08-26 17:15:18,065] ERROR - RelayUtils Error while
>>>>>>>>>>>> building Passthrough stream
>>>>>>>>>>>>
>>>>>>>>>>>> org.apache.axiom.om.OMException:
>>>>>>>>>>>> javax.xml.stream.XMLStreamException: ParseError at [row,col]:[1,1]
>>>>>>>>>>>>
>>>>>>>>>>>> Message: Not in an object
>>>>>>>>>>>>
>>>>>>>>>>>> at
>>>>>>>>>>>> org.apache.axiom.om.impl.builder.StAXOMBuilder.next(StAXOMBuilder.java:296)
>>>>>>>>>>>>
>>>>>>>>>>>> at
>>>>>>>>>>>> org.apache.axiom.om.impl.llom.OMDocumentImpl.getOMDocumentElement(OMDocumentImpl.java:109)
>>>>>>>>>>>>
>>>>>>>>>>>> at
>>>>>>>>>>>> org.apache.axiom.om.impl.builder.StAXOMBuilder.getDocumentElement(StAXOMBuilder.java:570)
>>>>>>>>>>>>
>>>>>>>>>>>> at
>>>>>>>>>>>> org.apache.axiom.om.impl.builder.StAXOMBuilder.getDocumentElement(StAXOMBuilder.java:566)
>>>>>>>>>>>>
>>>>>>>>>>>> at
>>>>>>>>>>>> org.apache.synapse.commons.json.JsonUtil.toXml(JsonUtil.java:254)
>>>>>>>>>>>>
>>>>>>>>>>>> at
>>>>>>>>>>>> org.apache.synapse.commons.json.JsonBuilder.processDocument(JsonBuilder.java:35)
>>>>>>>>>>>>
>>>>>>>>>>>> at
>>>>>>>>>>>> org.apache.synapse.transport.passthru.util.DeferredMessageBuilder.getDocument(DeferredMessageBuilder.java:138)
>>>>>>>>>>>>
>>>>>>>>>>>> at
>>>>>>>>>>>> org.apache.synapse.transport.passthru.util.RelayUtils.builldMessage(RelayUtils.java:133)
>>>>>>>>>>>>
>>>>>>>>>>>> at
>>>>>>>>>>>> org.apache.synapse.transport.passthru.util.RelayUtils.buildMessage(RelayUtils.java:98)
>>>>>>>>>>>>
>>>>>>>>>>>> at
>>>>>>>>>>>> org.apache.synapse.mediators.AbstractListMediator.mediate(AbstractListMediator.java:72)
>>>>>>>>>>>>
>>>>>>>>>>>> at
>>>>>>>>>>>> org.apache.synapse.mediators.template.InvokeMediator.mediate(InvokeMediator.java:154)
>>>>>>>>>>>>
>>>>>>>>>>>> at
>>>>>>>>>>>> org.apache.synapse.mediators.filters.SwitchMediator.mediate(SwitchMediator.java:184)
>>>>>>>>>>>>
>>>>>>>>>>>> at
>>>>>>>>>>>> org.apache.synapse.mediators.base.SequenceMediator.mediate(SequenceMediator.java:267)
>>>>>>>>>>>>
>>>>>>>>>>>> at
>>>>>>>>>>>> org.apache.synapse.core.axis2.Axis2SynapseEnvironment.mediateFromContinuationStateStack(Axis2SynapseEnvironment.java:679)
>>>>>>>>>>>>
>>>>>>>>>>>> at
>>>>>>>>>>>> org.apache.synapse.core.axis2.Axis2SynapseEnvironment.injectMessage(Axis2SynapseEnvironment.java:244)
>>>>>>>>>>>>
>>>>>>>>>>>> at
>>>>>>>>>>>> org.apache.synapse.core.axis2.SynapseCallbackReceiver.handleMessage(SynapseCallbackReceiver.java:525)
>>>>>>>>>>>>
>>>>>>>>>>>> at
>>>>>>>>>>>> org.apache.synapse.core.axis2.SynapseCallbackReceiver.receive(SynapseCallbackReceiver.java:172)
>>>>>>>>>>>>
>>>>>>>>>>>> at
>>>>>>>>>>>> org.apache.axis2.engine.AxisEngine.receive(AxisEngine.java:180)
>>>>>>>>>>>>
>>>>>>>>>>>> at
>>>>>>>>>>>> org.apache.synapse.transport.passthru.ClientWorker.run(ClientWorker.java:247)
>>>>>>>>>>>>
>>>>>>>>>>>> at
>>>>>>>>>>>> org.apache.axis2.transport.base.threads.NativeWorkerPool$1.run(NativeWorkerPool.java:172)
>>>>>>>>>>>>
>>>>>>>>>>>> at
>>>>>>>>>>>> java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1110)
>>>>>>>>>>>>
>>>>>>>>>>>> at
>>>>>>>>>>>> java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:603)
>>>>>>>>>>>>
>>>>>>>>>>>> at java.lang.Thread.run(Thread.java:722)
>>>>>>>>>>>>
>>>>>>>>>>>> Caused by: javax.xml.stream.XMLStreamException: ParseError at
>>>>>>>>>>>> [row,col]:[1,1]
>>>>>>>>>>>>
>>>>>>>>>>>> Message: Not in an object
>>>>>>>>>>>>
>>>>>>>>>>>> at
>>>>>>>>>>>> org.apache.synapse.commons.staxon.core.base.AbstractXMLStreamReader.hasNext(AbstractXMLStreamReader.java:449)
>>>>>>>>>>>>
>>>>>>>>>>>> at
>>>>>>>>>>>> org.apache.synapse.commons.staxon.core.base.AbstractXMLStreamReader.next(AbstractXMLStreamReader.java:456)
>>>>>>>>>>>>
>>>>>>>>>>>> at
>>>>>>>>>>>> javax.xml.stream.util.StreamReaderDelegate.next(StreamReaderDelegate.java:88)
>>>>>>>>>>>>
>>>>>>>>>>>> at
>>>>>>>>>>>> org.apache.axiom.om.impl.builder.StAXOMBuilder.parserNext(StAXOMBuilder.java:681)
>>>>>>>>>>>>
>>>>>>>>>>>> at
>>>>>>>>>>>> org.apache.axiom.om.impl.builder.StAXOMBuilder.next(StAXOMBuilder.java:214)
>>>>>>>>>>>>
>>>>>>>>>>>> ... 22 more
>>>>>>>>>>>>
>>>>>>>>>>>> [2015-08-26 17:15:18,068] ERROR - TemplateMediator Error while
>>>>>>>>>>>> building message
>>>>>>>>>>>>
>>>>>>>>>>>> org.apache.axis2.AxisFault: Error while building Passthrough
>>>>>>>>>>>> stream
>>>>>>>>>>>>
>>>>>>>>>>>> at
>>>>>>>>>>>> org.apache.synapse.transport.passthru.util.RelayUtils.handleException(RelayUtils.java:283)
>>>>>>>>>>>>
>>>>>>>>>>>> at
>>>>>>>>>>>> org.apache.synapse.transport.passthru.util.RelayUtils.builldMessage(RelayUtils.java:142)
>>>>>>>>>>>>
>>>>>>>>>>>> at
>>>>>>>>>>>> org.apache.synapse.transport.passthru.util.RelayUtils.buildMessage(RelayUtils.java:98)
>>>>>>>>>>>>
>>>>>>>>>>>> at
>>>>>>>>>>>> org.apache.synapse.mediators.AbstractListMediator.mediate(AbstractListMediator.java:72)
>>>>>>>>>>>>
>>>>>>>>>>>> at
>>>>>>>>>>>> org.apache.synapse.mediators.template.InvokeMediator.mediate(InvokeMediator.java:154)
>>>>>>>>>>>>
>>>>>>>>>>>> at
>>>>>>>>>>>> org.apache.synapse.mediators.filters.SwitchMediator.mediate(SwitchMediator.java:184)
>>>>>>>>>>>>
>>>>>>>>>>>> at
>>>>>>>>>>>> org.apache.synapse.mediators.base.SequenceMediator.mediate(SequenceMediator.java:267)
>>>>>>>>>>>>
>>>>>>>>>>>> at
>>>>>>>>>>>> org.apache.synapse.core.axis2.Axis2SynapseEnvironment.mediateFromContinuationStateStack(Axis2SynapseEnvironment.java:679)
>>>>>>>>>>>>
>>>>>>>>>>>> at
>>>>>>>>>>>> org.apache.synapse.core.axis2.Axis2SynapseEnvironment.injectMessage(Axis2SynapseEnvironment.java:244)
>>>>>>>>>>>>
>>>>>>>>>>>> at
>>>>>>>>>>>> org.apache.synapse.core.axis2.SynapseCallbackReceiver.handleMessage(SynapseCallbackReceiver.java:525)
>>>>>>>>>>>>
>>>>>>>>>>>> at
>>>>>>>>>>>> org.apache.synapse.core.axis2.SynapseCallbackReceiver.receive(SynapseCallbackReceiver.java:172)
>>>>>>>>>>>>
>>>>>>>>>>>> at
>>>>>>>>>>>> org.apache.axis2.engine.AxisEngine.receive(AxisEngine.java:180)
>>>>>>>>>>>>
>>>>>>>>>>>> at
>>>>>>>>>>>> org.apache.synapse.transport.passthru.ClientWorker.run(ClientWorker.java:247)
>>>>>>>>>>>>
>>>>>>>>>>>> at
>>>>>>>>>>>> org.apache.axis2.transport.base.threads.NativeWorkerPool$1.run(NativeWorkerPool.java:172)
>>>>>>>>>>>>
>>>>>>>>>>>> at
>>>>>>>>>>>> java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1110)
>>>>>>>>>>>>
>>>>>>>>>>>> at
>>>>>>>>>>>> java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:603)
>>>>>>>>>>>>
>>>>>>>>>>>> at java.lang.Thread.run(Thread.java:722)
>>>>>>>>>>>>
>>>>>>>>>>>> Caused by: org.apache.axiom.om.OMException:
>>>>>>>>>>>> javax.xml.stream.XMLStreamException: ParseError at [row,col]:[1,1]
>>>>>>>>>>>>
>>>>>>>>>>>> Message: Not in an object
>>>>>>>>>>>>
>>>>>>>>>>>> at
>>>>>>>>>>>> org.apache.axiom.om.impl.builder.StAXOMBuilder.next(StAXOMBuilder.java:296)
>>>>>>>>>>>>
>>>>>>>>>>>> at
>>>>>>>>>>>> org.apache.axiom.om.impl.llom.OMDocumentImpl.getOMDocumentElement(OMDocumentImpl.java:109)
>>>>>>>>>>>>
>>>>>>>>>>>> at
>>>>>>>>>>>> org.apache.axiom.om.impl.builder.StAXOMBuilder.getDocumentElement(StAXOMBuilder.java:570)
>>>>>>>>>>>>
>>>>>>>>>>>> at
>>>>>>>>>>>> org.apache.axiom.om.impl.builder.StAXOMBuilder.getDocumentElement(StAXOMBuilder.java:566)
>>>>>>>>>>>>
>>>>>>>>>>>> at
>>>>>>>>>>>> org.apache.synapse.commons.json.JsonUtil.toXml(JsonUtil.java:254)
>>>>>>>>>>>>
>>>>>>>>>>>> at
>>>>>>>>>>>> org.apache.synapse.commons.json.JsonBuilder.processDocument(JsonBuilder.java:35)
>>>>>>>>>>>>
>>>>>>>>>>>> at
>>>>>>>>>>>> org.apache.synapse.transport.passthru.util.DeferredMessageBuilder.getDocument(DeferredMessageBuilder.java:138)
>>>>>>>>>>>>
>>>>>>>>>>>> at
>>>>>>>>>>>> org.apache.synapse.transport.passthru.util.RelayUtils.builldMessage(RelayUtils.java:133)
>>>>>>>>>>>>
>>>>>>>>>>>> ... 15 more
>>>>>>>>>>>>
>>>>>>>>>>>> Caused by: javax.xml.stream.XMLStreamException: ParseError at
>>>>>>>>>>>> [row,col]:[1,1]
>>>>>>>>>>>>
>>>>>>>>>>>> Message: Not in an object
>>>>>>>>>>>>
>>>>>>>>>>>> at
>>>>>>>>>>>> org.apache.synapse.commons.staxon.core.base.AbstractXMLStreamReader.hasNext(AbstractXMLStreamReader.java:449)
>>>>>>>>>>>>
>>>>>>>>>>>> at
>>>>>>>>>>>> org.apache.synapse.commons.staxon.core.base.AbstractXMLStreamReader.next(AbstractXMLStreamReader.java:456)
>>>>>>>>>>>>
>>>>>>>>>>>> at
>>>>>>>>>>>> javax.xml.stream.util.StreamReaderDelegate.next(StreamReaderDelegate.java:88)
>>>>>>>>>>>>
>>>>>>>>>>>> at
>>>>>>>>>>>> org.apache.axiom.om.impl.builder.StAXOMBuilder.parserNext(StAXOMBuilder.java:681)
>>>>>>>>>>>>
>>>>>>>>>>>> at
>>>>>>>>>>>> org.apache.axiom.om.impl.builder.StAXOMBuilder.next(StAXOMBuilder.java:214)
>>>>>>>>>>>>
>>>>>>>>>>>> ... 22 more
>>>>>>>>>>>>
>>>>>>>>>>>> [2015-08-26 17:15:18,071]  INFO - LogMediator To:
>>>>>>>>>>>> http://www.w3.org/2005/08/addressing/anonymous, WSAction: ,
>>>>>>>>>>>> SOAPAction: , MessageID: 
>>>>>>>>>>>> urn:uuid:6617ed27-8633-41bb-bc42-0e89ee776b9e,
>>>>>>>>>>>> Direction: request, MESSAGE = Executing default 'fault' sequence,
>>>>>>>>>>>> ERROR_CODE = 0, ERROR_MESSAGE = Error while building message, 
>>>>>>>>>>>> Envelope:
>>>>>>>>>>>> <?xml version='1.0' encoding='utf-8'?><soapenv:Envelope 
>>>>>>>>>>>> xmlns:soapenv="
>>>>>>>>>>>> http://schemas.xmlsoap.org/soap/envelope/
>>>>>>>>>>>> "><soapenv:Body/></soapenv:Envelope>
>>>>>>>>>>>>
>>>>>>>>>>>> --
>>>>>>>>>>>> <dev-requ...@wso2.org>
>>>>>>>>>>>> Keerthika Mahendralingam
>>>>>>>>>>>> Associate Software Engineer
>>>>>>>>>>>> Mobile :+94 (0) 776 121144
>>>>>>>>>>>> keerth...@wso2.com
>>>>>>>>>>>> WSO2, Inc.
>>>>>>>>>>>> lean . enterprise . middleware
>>>>>>>>>>>>
>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>> Dev mailing list
>>>>>>>>>>>> Dev@wso2.org
>>>>>>>>>>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>> --
>>>>>>>>>>>
>>>>>>>>>>> *Prabath Ariyarathna*
>>>>>>>>>>>
>>>>>>>>>>> *Associate Technical Lead*
>>>>>>>>>>>
>>>>>>>>>>> *WSO2, Inc. *
>>>>>>>>>>>
>>>>>>>>>>> *lean . enterprise . middleware *
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>> *Email: prabat...@wso2.com <prabat...@wso2.com>*
>>>>>>>>>>>
>>>>>>>>>>> *Blog: http://prabu-lk.blogspot.com
>>>>>>>>>>> <http://prabu-lk.blogspot.com>*
>>>>>>>>>>>
>>>>>>>>>>> *Flicker : https://www.flickr.com/photos/47759189@N08
>>>>>>>>>>> <https://www.flickr.com/photos/47759189@N08>*
>>>>>>>>>>>
>>>>>>>>>>> *Mobile: +94 77 699 4730 *
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> --
>>>>>>>>>> <dev-requ...@wso2.org>
>>>>>>>>>> Keerthika Mahendralingam
>>>>>>>>>> Associate Software Engineer
>>>>>>>>>> Mobile :+94 (0) 776 121144
>>>>>>>>>> keerth...@wso2.com
>>>>>>>>>> WSO2, Inc.
>>>>>>>>>> lean . enterprise . middleware
>>>>>>>>>>
>>>>>>>>>
>>>>>>>>>
>>>>>>>>>
>>>>>>>>> --
>>>>>>>>>
>>>>>>>>> *Prabath Ariyarathna*
>>>>>>>>>
>>>>>>>>> *Associate Technical Lead*
>>>>>>>>>
>>>>>>>>> *WSO2, Inc. *
>>>>>>>>>
>>>>>>>>> *lean . enterprise . middleware *
>>>>>>>>>
>>>>>>>>>
>>>>>>>>> *Email: prabat...@wso2.com <prabat...@wso2.com>*
>>>>>>>>>
>>>>>>>>> *Blog: http://prabu-lk.blogspot.com <http://prabu-lk.blogspot.com>*
>>>>>>>>>
>>>>>>>>> *Flicker : https://www.flickr.com/photos/47759189@N08
>>>>>>>>> <https://www.flickr.com/photos/47759189@N08>*
>>>>>>>>>
>>>>>>>>> *Mobile: +94 77 699 4730 *
>>>>>>>>>
>>>>>>>>>
>>>>>>>>>
>>>>>>>>>
>>>>>>>>>
>>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>> --
>>>>>>>> <dev-requ...@wso2.org>
>>>>>>>> Keerthika Mahendralingam
>>>>>>>> Associate Software Engineer
>>>>>>>> Mobile :+94 (0) 776 121144
>>>>>>>> keerth...@wso2.com
>>>>>>>> WSO2, Inc.
>>>>>>>> lean . enterprise . middleware
>>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>> --
>>>>>>>
>>>>>>> *Prabath Ariyarathna*
>>>>>>>
>>>>>>> *Associate Technical Lead*
>>>>>>>
>>>>>>> *WSO2, Inc. *
>>>>>>>
>>>>>>> *lean . enterprise . middleware *
>>>>>>>
>>>>>>>
>>>>>>> *Email: prabat...@wso2.com <prabat...@wso2.com>*
>>>>>>>
>>>>>>> *Blog: http://prabu-lk.blogspot.com <http://prabu-lk.blogspot.com>*
>>>>>>>
>>>>>>> *Flicker : https://www.flickr.com/photos/47759189@N08
>>>>>>> <https://www.flickr.com/photos/47759189@N08>*
>>>>>>>
>>>>>>> *Mobile: +94 77 699 4730 *
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>
>>>>>>
>>>>>> --
>>>>>> <dev-requ...@wso2.org>
>>>>>> Keerthika Mahendralingam
>>>>>> Associate Software Engineer
>>>>>> Mobile :+94 (0) 776 121144
>>>>>> keerth...@wso2.com
>>>>>> WSO2, Inc.
>>>>>> lean . enterprise . middleware
>>>>>>
>>>>>
>>>>>
>>>>>
>>>>> --
>>>>>
>>>>> *Prabath Ariyarathna*
>>>>>
>>>>> *Associate Technical Lead*
>>>>>
>>>>> *WSO2, Inc. *
>>>>>
>>>>> *lean . enterprise . middleware *
>>>>>
>>>>>
>>>>> *Email: prabat...@wso2.com <prabat...@wso2.com>*
>>>>>
>>>>> *Blog: http://prabu-lk.blogspot.com <http://prabu-lk.blogspot.com>*
>>>>>
>>>>> *Flicker : https://www.flickr.com/photos/47759189@N08
>>>>> <https://www.flickr.com/photos/47759189@N08>*
>>>>>
>>>>> *Mobile: +94 77 699 4730 *
>>>>>
>>>>>
>>>>>
>>>>>
>>>>>
>>>>>
>>>>
>>>>
>>>> --
>>>>
>>>> Best Regards,
>>>>
>>>> Malaka Silva
>>>> Senior Tech Lead
>>>> M: +94 777 219 791
>>>> Tel : 94 11 214 5345
>>>> Fax :94 11 2145300
>>>> Skype : malaka.sampath.silva
>>>> LinkedIn : http://www.linkedin.com/pub/malaka-silva/6/33/77
>>>> Blog : http://mrmalakasilva.blogspot.com/
>>>>
>>>> WSO2, Inc.
>>>> lean . enterprise . middleware
>>>> http://www.wso2.com/
>>>> http://www.wso2.com/about/team/malaka-silva/
>>>> <http://wso2.com/about/team/malaka-silva/>
>>>>
>>>> Save a tree -Conserve nature & Save the world for your future. Print
>>>> this email only if it is absolutely necessary.
>>>>
>>>
>>>
>>>
>>> --
>>>
>>> *Prabath Ariyarathna*
>>>
>>> *Associate Technical Lead*
>>>
>>> *WSO2, Inc. *
>>>
>>> *lean . enterprise . middleware *
>>>
>>>
>>> *Email: prabat...@wso2.com <prabat...@wso2.com>*
>>>
>>> *Blog: http://prabu-lk.blogspot.com <http://prabu-lk.blogspot.com>*
>>>
>>> *Flicker : https://www.flickr.com/photos/47759189@N08
>>> <https://www.flickr.com/photos/47759189@N08>*
>>>
>>> *Mobile: +94 77 699 4730 *
>>>
>>>
>>>
>>>
>>>
>>>
>>
>>
>> --
>>
>> *Prabath Ariyarathna*
>>
>> *Associate Technical Lead*
>>
>> *WSO2, Inc. *
>>
>> *lean . enterprise . middleware *
>>
>>
>> *Email: prabat...@wso2.com <prabat...@wso2.com>*
>>
>> *Blog: http://prabu-lk.blogspot.com <http://prabu-lk.blogspot.com>*
>>
>> *Flicker : https://www.flickr.com/photos/47759189@N08
>> <https://www.flickr.com/photos/47759189@N08>*
>>
>> *Mobile: +94 77 699 4730 *
>>
>>
>>
>>
>>
>>
>
>
> --
> <dev-requ...@wso2.org>
> Keerthika Mahendralingam
> Associate Software Engineer
> Mobile :+94 (0) 776 121144
> keerth...@wso2.com
> WSO2, Inc.
> lean . enterprise . middleware
>



-- 

Best Regards,

Malaka Silva
Senior Tech Lead
M: +94 777 219 791
Tel : 94 11 214 5345
Fax :94 11 2145300
Skype : malaka.sampath.silva
LinkedIn : http://www.linkedin.com/pub/malaka-silva/6/33/77
Blog : http://mrmalakasilva.blogspot.com/

WSO2, Inc.
lean . enterprise . middleware
http://www.wso2.com/
http://www.wso2.com/about/team/malaka-silva/
<http://wso2.com/about/team/malaka-silva/>

Save a tree -Conserve nature & Save the world for your future. Print this
email only if it is absolutely necessary.
_______________________________________________
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev

Reply via email to