[prev in list] [next in list] [prev in thread] [next in thread] 

List:       wsf-java-dev
Subject:    Re: [Dev] Getting "SignatureDoesNotMatch" error with deleteBucketReplication operation in Amazon s3 
From:       Shakila Sasikaran <shakila () wso2 ! com>
Date:       2018-11-21 9:34:25
Message-ID: CAJTQ=Oac2GX=988bbQi6FqmjHCajxX2bn4a454ubXouEXUHsog () mail ! gmail ! com
[Download RAW message or body]

[Attachment #2 (multipart/alternative)]


Hi Keerthika,

This is reproducible in EI 6.4.0 WUM updated pack. According to [1] and [2]
we are checking whether the DELETE request contains payload with the
NO_ENTITY_BODY property. And if this NO_ENTITY_BODY is not set or set to
false, we send the request with body. Hence, shall we add NO_ENTITY_BODY in
your template before the call mediator and try? I also verified this. If
this works, we can modify the PR accordingly.

* <property name="NO_ENTITY_BODY" value="true" scope="axis2"
type="BOOLEAN"/>*

[1]
https://github.com/wso2-support/wso2-synapse/blob/support-2.1.7-wso2v80/modules/transp \
orts/core/nhttp/src/main/java/org/apache/synapse/transport/passthru/PassThroughHttpSender.java#L388
 [2]
https://github.com/wso2/wso2-synapse/blob/master/modules/transports/core/nhttp/src/main/java/org/apache/synapse/transport/passthru/util/RelayUtils.java#L227


Thanks

On Wed, Nov 21, 2018 at 9:32 AM Shakila Sasikaran <shakila@wso2.com> wrote:

> Hi Keerthika,
> 
> I tried with a DELETE request in proxy service and template mediator
> directly and the DELETE request doesn't contain the body even if I call the
> service with a request body and define the payload before the call
> mediator. Then, just edited one template as [1] inside the connector to
> make sure whether this behavior is reproducible in connector.
> When I invoke this particular method also I don't see the request body in
> the delete request [2]. Please note that I tried this on both EI 6.1.1 and
> EI 6.4.0. Therefore, I feel it would be better if we check the root cause
> of this issue?
> 
> [1]
> 
> <template name="deleteObject" xmlns="http://ws.apache.org/ns/synapse">
> <sequence>
> <class name="org.wso2.carbon.connector.amazons3.auth.RemoveAmazonS3Context"/>
> <class name="org.wso2.carbon.connector.amazons3.auth.AmazonS3AuthConnector"/>
> <payloadFactory media-type="xml">
> <format>
> <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
> <soapenv:Header/>
> <soapenv:Body>
> <a>test</a>
> </soapenv:Body>
> </soapenv:Envelope>
> </format>
> <args/>
> </payloadFactory>
> <filter xpath="string($ctx:authenticationCode) and $ctx:authenticationCode != ''">
> <then>
> <property name="Authorization" expression="$ctx:authenticationCode" \
> scope="transport" type="STRING"/> </then>
> </filter>
> <property name="uri.var.mockURL" value="http://www.mocky.io"/>
> <property name="uri.var.path" value="v2/56c4048611000006232824a9"/>
> <property name="uri.var.query" value=""/>
> <call>
> <endpoint>
> <http method="delete" \
> uri-template="{uri.var.mockURL}/{+uri.var.path}/{+uri.var.query}"/> </endpoint>
> </call>
> </sequence>
> </template>
> 
> 
> [2]
> 
> [2018-11-21 09:29:58,644] [EI-Core] DEBUG - wire HTTP-Listener I/O
> dispatcher-1 >> "POST /services/Test HTTP/1.1[\r][\n]"
> [2018-11-21 09:29:58,644] [EI-Core] DEBUG - wire HTTP-Listener I/O
> dispatcher-1 >> "Content-Type: application/xml[\r][\n]"
> [2018-11-21 09:29:58,644] [EI-Core] DEBUG - wire HTTP-Listener I/O
> dispatcher-1 >> "cache-control: no-cache[\r][\n]"
> [2018-11-21 09:29:58,644] [EI-Core] DEBUG - wire HTTP-Listener I/O
> dispatcher-1 >> "Postman-Token:
> 5a1272a8-4d46-48d0-8abc-61d0eaadd1cc[\r][\n]"
> [2018-11-21 09:29:58,645] [EI-Core] DEBUG - wire HTTP-Listener I/O
> dispatcher-1 >> "User-Agent: PostmanRuntime/7.3.0[\r][\n]"
> [2018-11-21 09:29:58,646] [EI-Core] DEBUG - wire HTTP-Listener I/O
> dispatcher-1 >> "Accept: */*[\r][\n]"
> [2018-11-21 09:29:58,647] [EI-Core] DEBUG - wire HTTP-Listener I/O
> dispatcher-1 >> "Host: localhost:8280[\r][\n]"
> [2018-11-21 09:29:58,647] [EI-Core] DEBUG - wire HTTP-Listener I/O
> dispatcher-1 >> "accept-encoding: gzip, deflate[\r][\n]"
> [2018-11-21 09:29:58,648] [EI-Core] DEBUG - wire HTTP-Listener I/O
> dispatcher-1 >> "content-length: 520[\r][\n]"
> [2018-11-21 09:29:58,669] [EI-Core] DEBUG - wire HTTP-Listener I/O
> dispatcher-1 >> "Connection: keep-alive[\r][\n]"
> [2018-11-21 09:29:58,670] [EI-Core] DEBUG - wire HTTP-Listener I/O
> dispatcher-1 >> "[\r][\n]"
> [2018-11-21 09:29:58,670] [EI-Core] DEBUG - wire HTTP-Listener I/O
> dispatcher-1 >> "<deleteObject>[\n]"
> [2018-11-21 09:29:58,670] [EI-Core] DEBUG - wire HTTP-Listener I/O
> dispatcher-1 >> "<accessKeyId>key123</accessKeyId>[\n]"
> [2018-11-21 09:29:58,670] [EI-Core] DEBUG - wire HTTP-Listener I/O
> dispatcher-1 >> "<secretAccessKey>1234</secretAccessKey>[\n]"
> [2018-11-21 09:29:58,671] [EI-Core] DEBUG - wire HTTP-Listener I/O
> dispatcher-1 >> "<methodType>DELETE</methodType>[\n]"
> [2018-11-21 09:29:58,671] [EI-Core] DEBUG - wire HTTP-Listener I/O
> dispatcher-1 >> "<contentType>application/xml</contentType>[\n]"
> [2018-11-21 09:29:58,671] [EI-Core] DEBUG - wire HTTP-Listener I/O
> dispatcher-1 >> "<isXAmzDate>true</isXAmzDate>[\n]"
> [2018-11-21 09:29:58,671] [EI-Core] DEBUG - wire HTTP-Listener I/O
> dispatcher-1 >> "<contentLength>0</contentLength>[\n]"
> [2018-11-21 09:29:58,671] [EI-Core] DEBUG - wire HTTP-Listener I/O
> dispatcher-1 >> "<bucketName>testbuck</bucketName>[\n]"
> [2018-11-21 09:29:58,671] [EI-Core] DEBUG - wire HTTP-Listener I/O
> dispatcher-1 >> "<host>s3.us-east-2.amazonaws.com</host>[\n]"
> [2018-11-21 09:29:58,671] [EI-Core] DEBUG - wire HTTP-Listener I/O
> dispatcher-1 >> "<bucketUrl>http://s3.us-east-2.amazonaws.com/testbuck
> </bucketUrl>[\n]"
> [2018-11-21 09:29:58,671] [EI-Core] DEBUG - wire HTTP-Listener I/O
> dispatcher-1 >> "<contentMD5/>[\n]"
> [2018-11-21 09:29:58,671] [EI-Core] DEBUG - wire HTTP-Listener I/O
> dispatcher-1 >> "<region>us-east-2</region>[\n]"
> [2018-11-21 09:29:58,672] [EI-Core] DEBUG - wire HTTP-Listener I/O
> dispatcher-1 >> "<expect/>[\n]"
> [2018-11-21 09:29:58,672] [EI-Core] DEBUG - wire HTTP-Listener I/O
> dispatcher-1 >> "<xAmzSecurityToken/>[\n]"
> [2018-11-21 09:29:58,672] [EI-Core] DEBUG - wire HTTP-Listener I/O
> dispatcher-1 >> "<xAmzAcl>public-read</xAmzAcl>[\n]"
> [2018-11-21 09:29:58,672] [EI-Core] DEBUG - wire HTTP-Listener I/O
> dispatcher-1 >> "<shortDate>public-read</shortDate>[\n]"
> [2018-11-21 09:29:58,672] [EI-Core] DEBUG - wire HTTP-Listener I/O
> dispatcher-1 >> "</deleteObject>"
> [2018-11-21 09:29:58,689] [EI-Core] ERROR - SynapseJsonPath
> #stringValueOf. Error evaluating JSON Path <$.bucketPolicy>. Returning
> empty result. Error>>> invalid path
> [2018-11-21 09:29:59,288] [EI-Core] DEBUG - wire HTTP-Sender I/O
> dispatcher-2 << "DELETE /v2/56c4048611000006232824a9/ HTTP/1.1[\r][\n]"
> [2018-11-21 09:29:59,289] [EI-Core] DEBUG - wire HTTP-Sender I/O
> dispatcher-2 << "Authorization: AWS4-HMAC-SHA256
> Credential=key123/20181121/us-east-2/s3/aws4_request,SignedHeaders=content-type;host \
> ;x-amz-acl;x-amz-content-sha256;x-amz-date,Signature=75620927fb3382c5d53ec98f6c561beb4c8ade73acc3c6494565b68148861cb3[\r][\n]"
>  [2018-11-21 09:29:59,289] [EI-Core] DEBUG - wire HTTP-Sender I/O
> dispatcher-2 << "Accept: */*[\r][\n]"
> [2018-11-21 09:29:59,289] [EI-Core] DEBUG - wire HTTP-Sender I/O
> dispatcher-2 << "x-amz-acl: public-read[\r][\n]"
> [2018-11-21 09:29:59,289] [EI-Core] DEBUG - wire HTTP-Sender I/O
> dispatcher-2 << "Postman-Token:
> 5a1272a8-4d46-48d0-8abc-61d0eaadd1cc[\r][\n]"
> [2018-11-21 09:29:59,289] [EI-Core] DEBUG - wire HTTP-Sender I/O
> dispatcher-2 << "cache-control: no-cache[\r][\n]"
> [2018-11-21 09:29:59,289] [EI-Core] DEBUG - wire HTTP-Sender I/O
> dispatcher-2 << "accept-encoding: gzip, deflate[\r][\n]"
> [2018-11-21 09:29:59,289] [EI-Core] DEBUG - wire HTTP-Sender I/O
> dispatcher-2 << "Content-Type: application/xml[\r][\n]"
> [2018-11-21 09:29:59,289] [EI-Core] DEBUG - wire HTTP-Sender I/O
> dispatcher-2 << "Host: www.mocky.io[\r][\n]"
> [2018-11-21 09:29:59,289] [EI-Core] DEBUG - wire HTTP-Sender I/O
> dispatcher-2 << "Connection: Keep-Alive[\r][\n]"
> [2018-11-21 09:29:59,289] [EI-Core] DEBUG - wire HTTP-Sender I/O
> dispatcher-2 << "User-Agent: Synapse-PT-HttpComponents-NIO[\r][\n]"
> [2018-11-21 09:29:59,290] [EI-Core] DEBUG - wire HTTP-Sender I/O
> dispatcher-2 << "[\r][\n]"
> [2018-11-21 09:29:59,501] [EI-Core] DEBUG - wire HTTP-Sender I/O
> dispatcher-2 >> "HTTP/1.1 200 OK[\r][\n]"
> 
> Thanks
> 
> On Mon, Nov 19, 2018 at 9:23 PM Keerthika Mahendralingam <
> keerthika@wso2.com> wrote:
> 
> > Hi Shaki,
> > 
> > Yes, my intension is to send a delete request without the body. But EI is
> > passing the existing payload in the context with the delete request as
> > well. Please find the wire log [1]. But as you said EI should not pass the
> > body with the delete request. Do you think I am missing anything or is this
> > needs to fixed from the EI side?
> > 
> > [2018-11-13 12:16:47,526] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > dispatcher-1 << "DELETE /testbuckkkbiru/?replication HTTP/1.1[\r][\n]"
> > [2018-11-13 12:16:47,526] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > dispatcher-1 << "Authorization: AWS4-HMAC-SHA256
> > Credential=XXXXXX/20181113/us-east-2/s3/aws4_request,SignedHeaders=content-type;ho \
> > st;x-amz-content-sha256;x-amz-date,Signature=a276ba88791386bfbce8650839a880e7e[\r][\n]"
> >  [2018-11-13 12:16:47,526] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > dispatcher-1 << "Origin:
> > chrome-extension://fhbjgbiflinjbdggehcddcbncdddomop[\r][\n]"
> > [2018-11-13 12:16:47,527] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > dispatcher-1 << "x-amz-content-sha256: UNSIGNED-PAYLOAD[\r][\n]"
> > [2018-11-13 12:16:47,527] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > dispatcher-1 << "Accept: */*[\r][\n]"
> > [2018-11-13 12:16:47,527] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > dispatcher-1 << "Cache-Control: no-cache[\r][\n]"
> > [2018-11-13 12:16:47,527] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > dispatcher-1 << "x-amz-date: Tue, 13 Nov 2018 06:46:47 GMT[\r][\n]"
> > [2018-11-13 12:16:47,527] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > dispatcher-1 << "Postman-Token:
> > c82f33f9-2c85-68d9-67f4-5a43a5d98049[\r][\n]"
> > [2018-11-13 12:16:47,527] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > dispatcher-1 << "Accept-Encoding: gzip, deflate[\r][\n]"
> > [2018-11-13 12:16:47,527] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > dispatcher-1 << "Accept-Language: en-US,en;q=0.9[\r][\n]"
> > [2018-11-13 12:16:47,527] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > dispatcher-1 << "Content-Type: application/xml[\r][\n]"
> > [2018-11-13 12:16:47,527] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > dispatcher-1 << "Transfer-Encoding: chunked[\r][\n]"
> > [2018-11-13 12:16:47,527] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > dispatcher-1 << "Host: s3.us-east-2.amazonaws.com[\r][\n]"
> > [2018-11-13 12:16:47,527] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > dispatcher-1 << "Connection: Keep-Alive[\r][\n]"
> > [2018-11-13 12:16:47,528] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > dispatcher-1 << "User-Agent: Synapse-PT-HttpComponents-NIO[\r][\n]"
> > [2018-11-13 12:16:47,528] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > dispatcher-1 << "[\r][\n]"
> > [2018-11-13 12:16:47,528] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > dispatcher-1 << "271[\r][\n]"
> > [2018-11-13 12:16:47,528] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > dispatcher-1 << "<deleteBucketReplication>[\n]"
> > [2018-11-13 12:16:47,528] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > dispatcher-1 << "    <accessKeyId>XXXXXXXX</accessKeyId>[\n]"
> > [2018-11-13 12:16:47,528] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > dispatcher-1 << "    <secretAccessKey>XXXXXXXX</secretAccessKey>[\n]"
> > [2018-11-13 12:16:47,528] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > dispatcher-1 << "    <methodType>DELETE</methodType>[\n]"
> > [2018-11-13 12:16:47,528] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > dispatcher-1 << "    <contentType>application/xml</contentType>[\n]"
> > [2018-11-13 12:16:47,528] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > dispatcher-1 << "    <isXAmzDate>true</isXAmzDate>[\n]"
> > [2018-11-13 12:16:47,528] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > dispatcher-1 << "    <contentLength>0</contentLength>[\n]"
> > [2018-11-13 12:16:47,528] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > dispatcher-1 << "    <bucketName>testbuck</bucketName>[\n]"
> > [2018-11-13 12:16:47,528] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > dispatcher-1 << "    <host>s3.us-east-2.amazonaws.com</host>[\n]"
> > [2018-11-13 12:16:47,528] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > dispatcher-1 << "    <bucketUrl>
> > http://s3.us-east-2.amazonaws.com/testbuck</bucketUrl>[\n]"
> > [2018-11-13 12:16:47,528] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > dispatcher-1 << "    <contentMD5/>[\n]"
> > [2018-11-13 12:16:47,529] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > dispatcher-1 << "    <region>us-east-2</region>[\n]"
> > [2018-11-13 12:16:47,529] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > dispatcher-1 << "    <expect/>[\n]"
> > [2018-11-13 12:16:47,529] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > dispatcher-1 << "    <xAmzSecurityToken/>[\n]"
> > [2018-11-13 12:16:47,529] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > dispatcher-1 << "    <xAmzAcl>public-read</xAmzAcl>[\n]"
> > [2018-11-13 12:16:47,529] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > dispatcher-1 << "</deleteBucketReplication>[\r][\n]"
> > [2018-11-13 12:16:47,529] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > dispatcher-1 << "0[\r][\n]"
> > [2018-11-13 12:16:47,529] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > dispatcher-1 << "[\r][\n]"
> > [2018-11-13 12:17:07,879] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > dispatcher-1 >> "HTTP/1.1 400 Bad Request[\r][\n]"
> > [2018-11-13 12:17:07,879] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > dispatcher-1 >> "x-amz-request-id: F5C724399C125966[\r][\n]"
> > [2018-11-13 12:17:07,879] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > dispatcher-1 >> "x-amz-id-2:
> > Hl9SMI32dNfQkO3lDftVSENO0HCYsECYSCxB2K4tQdITmn9hqHACt1AIqVFnD98Nq+YbPyv58y0=[\r][\n]"
> >  [2018-11-13 12:17:07,879] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > dispatcher-1 >> "Content-Type: application/xml[\r][\n]"
> > [2018-11-13 12:17:07,880] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > dispatcher-1 >> "Transfer-Encoding: chunked[\r][\n]"
> > [2018-11-13 12:17:07,880] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > dispatcher-1 >> "Date: Tue, 13 Nov 2018 06:43:13 GMT[\r][\n]"
> > [2018-11-13 12:17:07,880] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > dispatcher-1 >> "Connection: close[\r][\n]"
> > [2018-11-13 12:17:07,880] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > dispatcher-1 >> "Server: AmazonS3[\r][\n]"
> > [2018-11-13 12:17:07,880] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > dispatcher-1 >> "[\r][\n]"
> > [2018-11-13 12:17:07,881] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > dispatcher-1 >> "168[\r][\n]"
> > [2018-11-13 12:17:07,881] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > dispatcher-1 >> "<?xml version="1.0" encoding="UTF-8"?>[\n]"
> > [2018-11-13 12:17:07,881] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > dispatcher-1 >> "<Error><Code>RequestTimeout</Code><Message>Your socket
> > connection to the server was not read from or written to within the timeout
> > period. Idle connections will be
> > closed.</Message><RequestId>F5C724399C125966</RequestId><HostId>Hl9SMI32dNfQkO3lDf \
> > tVSENO0HCYsECYSCxB2K4tQdITmn9hqHACt1AIqVFnD98Nq+YbPyv58y0=</HostId></Error>[\r][\n]"
> >  
> > Thanks,
> > Keerthika.
> > 
> > On Mon, Nov 19, 2018 at 7:56 PM Shakila Sasikaran <shakila@wso2.com>
> > wrote:
> > 
> > > Hi Keerthika,
> > > 
> > > I have checked the fix. As far as I understood, your intension is to
> > > send the DELETE request without the body and set the Content-Length. Please
> > > correct me if I'm wrong.
> > > This FORCE_POST_PUT_NOBODY is for sending POST and PUT requests without
> > > body and this property will not be considered in the DELETE request path.
> > > AFAIK the delete request from EI will not contain body and content length.
> > > 
> > > Thanks
> > > 
> > > On Mon, Nov 19, 2018 at 4:47 PM Keerthika Mahendralingam <
> > > keerthika@wso2.com> wrote:
> > > 
> > > > Hi Biruntha,
> > > > 
> > > > I have added the fix to the connector in the following pr [1]. Could
> > > > you please check now.
> > > > 
> > > > [1]. https://github.com/wso2-extensions/esb-connector-amazons3/pull/25
> > > > <https://github.com/wso2-extensions/esb-connector-amazons3/pull/25>
> > > > 
> > > > Thanks,
> > > > Keerthika.
> > > > 
> > > > On Tue, Nov 13, 2018 at 12:35 PM Keerthika Mahendralingam <
> > > > keerthika@wso2.com> wrote:
> > > > 
> > > > > Hi Biruntha,
> > > > > 
> > > > > This method is working fine with EI 6.1.1. But getting the same error
> > > > > as yours with EI 6.4.0. Need to check.
> > > > > 
> > > > > Thanks,
> > > > > Keerthika.
> > > > > 
> > > > > On Tue, Nov 13, 2018 at 11:45 AM Keerthika Mahendralingam <
> > > > > keerthika@wso2.com> wrote:
> > > > > 
> > > > > > Hi Biruntha,
> > > > > > 
> > > > > > I have tried the deleteBucketReplication with the following request.
> > > > > > It worked for me.
> > > > > > 
> > > > > > <deleteBucketReplication>
> > > > > > <accessKeyId>XXXXXXX</accessKeyId>
> > > > > > <secretAccessKey>XXXXXXXX</secretAccessKey>
> > > > > > <methodType>DELETE</methodType>
> > > > > > <contentType>application/xml</contentType>
> > > > > > <isXAmzDate>true</isXAmzDate>
> > > > > > <bucketName>signv4test</bucketName>
> > > > > > <host>s3.us-east-2.amazonaws.com</host>
> > > > > > <bucketUrl>http://s3.us-east-2.amazonaws.com/signv4test
> > > > > > </bucketUrl>
> > > > > > <contentLength></contentLength>
> > > > > > <contentMD5></contentMD5>
> > > > > > <region>us-east-2</region>
> > > > > > <expect></expect>
> > > > > > <xAmzSecurityToken></xAmzSecurityToken>
> > > > > > <xAmzAcl>public-read</xAmzAcl>
> > > > > > </deleteBucketReplication>
> > > > > > 
> > > > > > Thanks,
> > > > > > Keerthika.
> > > > > > 
> > > > > > On Thu, Nov 8, 2018 at 9:23 AM Biruntha Gnaneswaran <
> > > > > > biruntha@wso2.com> wrote:
> > > > > > 
> > > > > > > Hi Keerthika,
> > > > > > > 
> > > > > > > I have tried with the above mentioned two configs. But for both
> > > > > > > configs I'm getting RequestTimeout error as in [1]. Please find the \
> > > > > > > wire log for this two request and response [2] & [3].
> > > > > > > 
> > > > > > > [1]
> > > > > > > <Error>
> > > > > > > <Code>RequestTimeout</Code>
> > > > > > > <Message>Your socket connection to the server was not read from
> > > > > > > or written to within the timeout period. Idle connections will be
> > > > > > > closed.</Message>
> > > > > > > <RequestId>9D3D185B485D9BD9</RequestId>
> > > > > > > 
> > > > > > > <HostId>RhLOUIb8SMBZCLTddE0oKFF4OxZ5qQOOIDjikeB66xQgIHshsdsk0fHUdPd1TTgEelN8WZT4XWE=</HostId>
> > > > > > >  </Error>
> > > > > > > 
> > > > > > > [2]
> > > > > > > 
> > > > > > > [2018-11-08 09:13:21,966] [EI-Core] DEBUG - wire HTTP-Listener I/O
> > > > > > > dispatcher-2 >> "POST /services/amazons3_deleteBucketReplication
> > > > > > > HTTP/1.1[\r][\n]"
> > > > > > > [2018-11-08 09:13:21,967] [EI-Core] DEBUG - wire HTTP-Listener I/O
> > > > > > > dispatcher-2 >> "Content-Type: application/xml[\r][\n]"
> > > > > > > [2018-11-08 09:13:21,967] [EI-Core] DEBUG - wire HTTP-Listener I/O
> > > > > > > dispatcher-2 >> "cache-control: no-cache[\r][\n]"
> > > > > > > [2018-11-08 09:13:21,967] [EI-Core] DEBUG - wire HTTP-Listener I/O
> > > > > > > dispatcher-2 >> "Postman-Token:
> > > > > > > 96535872-a3e1-4702-ad2d-f87b5a8a93cd[\r][\n]"
> > > > > > > [2018-11-08 09:13:21,967] [EI-Core] DEBUG - wire HTTP-Listener I/O
> > > > > > > dispatcher-2 >> "User-Agent: PostmanRuntime/7.3.0[\r][\n]"
> > > > > > > [2018-11-08 09:13:21,967] [EI-Core] DEBUG - wire HTTP-Listener I/O
> > > > > > > dispatcher-2 >> "Accept: */*[\r][\n]"
> > > > > > > [2018-11-08 09:13:21,967] [EI-Core] DEBUG - wire HTTP-Listener I/O
> > > > > > > dispatcher-2 >> "Host: biruntha:8280[\r][\n]"
> > > > > > > [2018-11-08 09:13:21,967] [EI-Core] DEBUG - wire HTTP-Listener I/O
> > > > > > > dispatcher-2 >> "accept-encoding: gzip, deflate[\r][\n]"
> > > > > > > [2018-11-08 09:13:21,967] [EI-Core] DEBUG - wire HTTP-Listener I/O
> > > > > > > dispatcher-2 >> "content-length: 827[\r][\n]"
> > > > > > > [2018-11-08 09:13:21,967] [EI-Core] DEBUG - wire HTTP-Listener I/O
> > > > > > > dispatcher-2 >> "Connection: keep-alive[\r][\n]"
> > > > > > > [2018-11-08 09:13:21,967] [EI-Core] DEBUG - wire HTTP-Listener I/O
> > > > > > > dispatcher-2 >> "[\r][\n]"
> > > > > > > [2018-11-08 09:13:21,967] [EI-Core] DEBUG - wire HTTP-Listener I/O
> > > > > > > dispatcher-2 >> "<deleteBucketReplication>[\n]"
> > > > > > > [2018-11-08 09:13:21,968] [EI-Core] DEBUG - wire HTTP-Listener I/O
> > > > > > > dispatcher-2 >> "    <accessKeyId>xxxxxxxxxxxxxxxxx</accessKeyId>[\n]"
> > > > > > > [2018-11-08 09:13:21,968] [EI-Core] DEBUG - wire HTTP-Listener I/O
> > > > > > > dispatcher-2 >> "
> > > > > > > <secretAccessKey>xxxxxxxxxxxxxxxxx</secretAccessKey>[\n]"
> > > > > > > [2018-11-08 09:13:21,968] [EI-Core] DEBUG - wire HTTP-Listener I/O
> > > > > > > dispatcher-2 >> "    <methodType>DELETE</methodType>[\n]"
> > > > > > > [2018-11-08 09:13:21,968] [EI-Core] DEBUG - wire HTTP-Listener I/O
> > > > > > > dispatcher-2 >> "    <isXAmzDate>true</isXAmzDate>[\n]"
> > > > > > > [2018-11-08 09:13:21,968] [EI-Core] DEBUG - wire HTTP-Listener I/O
> > > > > > > dispatcher-2 >> "    <contentLength>0</contentLength>[\n]"
> > > > > > > [2018-11-08 09:13:21,968] [EI-Core] DEBUG - wire HTTP-Listener I/O
> > > > > > > dispatcher-2 >> "    <contentMD5></contentMD5>[\n]"
> > > > > > > [2018-11-08 09:13:21,968] [EI-Core] DEBUG - wire HTTP-Listener I/O
> > > > > > > dispatcher-2 >> "    <region>us-east-2</region>[\n]"
> > > > > > > [2018-11-08 09:13:21,968] [EI-Core] DEBUG - wire HTTP-Listener I/O
> > > > > > > dispatcher-2 >> "    <bucketName>testbuckkkbiru</bucketName>[\n]"
> > > > > > > [2018-11-08 09:13:21,968] [EI-Core] DEBUG - wire HTTP-Listener I/O
> > > > > > > dispatcher-2 >> "    <host>s3.us-east-2.amazonaws.com</host>[\n]"
> > > > > > > [2018-11-08 09:13:21,968] [EI-Core] DEBUG - wire HTTP-Listener I/O
> > > > > > > dispatcher-2 >> "    <bucketUrl>
> > > > > > > http://s3.us-east-2.amazonaws.com/testbuckkkbiru</bucketUrl>[\n]"
> > > > > > > [2018-11-08 09:13:21,968] [EI-Core] DEBUG - wire HTTP-Listener I/O
> > > > > > > dispatcher-2 >> "    <expect></expect>[\n]"
> > > > > > > [2018-11-08 09:13:21,968] [EI-Core] DEBUG - wire HTTP-Listener I/O
> > > > > > > dispatcher-2 >> "    <xAmzSecurityToken></xAmzSecurityToken>[\n]"
> > > > > > > [2018-11-08 09:13:21,968] [EI-Core] DEBUG - wire HTTP-Listener I/O
> > > > > > > dispatcher-2 >> "    <xAmzAcl>public-read</xAmzAcl>[\n]"
> > > > > > > [2018-11-08 09:13:21,968] [EI-Core] DEBUG - wire HTTP-Listener I/O
> > > > > > > dispatcher-2 >> "    <xAmzGrantRead></xAmzGrantRead>[\n]"
> > > > > > > [2018-11-08 09:13:21,968] [EI-Core] DEBUG - wire HTTP-Listener I/O
> > > > > > > dispatcher-2 >> "    <xAmzGrantWrite></xAmzGrantWrite>[\n]"
> > > > > > > [2018-11-08 09:13:21,968] [EI-Core] DEBUG - wire HTTP-Listener I/O
> > > > > > > dispatcher-2 >> "    <xAmzGrantReadAcp></xAmzGrantReadAcp>[\n]"
> > > > > > > [2018-11-08 09:13:21,968] [EI-Core] DEBUG - wire HTTP-Listener I/O
> > > > > > > dispatcher-2 >> "    <xAmzGrantWriteAcp></xAmzGrantWriteAcp>[\n]"
> > > > > > > [2018-11-08 09:13:21,969] [EI-Core] DEBUG - wire HTTP-Listener I/O
> > > > > > > dispatcher-2 >> "    <xAmzGrantFullControl></xAmzGrantFullControl>[\n]"
> > > > > > > [2018-11-08 09:13:21,969] [EI-Core] DEBUG - wire HTTP-Listener I/O
> > > > > > > dispatcher-2 >> "</deleteBucketReplication>"
> > > > > > > [2018-11-08 09:13:21,969] [EI-Core] DEBUG - headers http-incoming-2
> > > > > > > > > POST /services/amazons3_deleteBucketReplication HTTP/1.1
> > > > > > > [2018-11-08 09:13:21,969] [EI-Core] DEBUG - headers http-incoming-2
> > > > > > > > > Content-Type: application/xml
> > > > > > > [2018-11-08 09:13:21,969] [EI-Core] DEBUG - headers http-incoming-2
> > > > > > > > > cache-control: no-cache
> > > > > > > [2018-11-08 09:13:21,969] [EI-Core] DEBUG - headers http-incoming-2
> > > > > > > > > Postman-Token: 96535872-a3e1-4702-ad2d-f87b5a8a93cd
> > > > > > > [2018-11-08 09:13:21,969] [EI-Core] DEBUG - headers http-incoming-2
> > > > > > > > > User-Agent: PostmanRuntime/7.3.0
> > > > > > > [2018-11-08 09:13:21,969] [EI-Core] DEBUG - headers http-incoming-2
> > > > > > > > > Accept: */*
> > > > > > > [2018-11-08 09:13:21,969] [EI-Core] DEBUG - headers http-incoming-2
> > > > > > > > > Host: biruntha:8280
> > > > > > > [2018-11-08 09:13:21,969] [EI-Core] DEBUG - headers http-incoming-2
> > > > > > > > > accept-encoding: gzip, deflate
> > > > > > > [2018-11-08 09:13:21,969] [EI-Core] DEBUG - headers http-incoming-2
> > > > > > > > > content-length: 827
> > > > > > > [2018-11-08 09:13:21,969] [EI-Core] DEBUG - headers http-incoming-2
> > > > > > > > > Connection: keep-alive
> > > > > > > [2018-11-08 09:13:22,070] [EI-Core]  WARN - SequenceMediator onError
> > > > > > > handler : faultHandlerSeq for sequence : null cannot be found
> > > > > > > [2018-11-08 09:13:22,435] [EI-Core] DEBUG - headers http-outgoing-2
> > > > > > > > > DELETE /testbuckkkbiru/?replication HTTP/1.1
> > > > > > > [2018-11-08 09:13:22,436] [EI-Core] DEBUG - headers http-outgoing-2
> > > > > > > > > Authorization: AWS4-HMAC-SHA256
> > > > > > > Credential=xxxxxxxxxxxxxxxx/20181108/us-east-2/s3/aws4_request,SignedHea \
> > > > > > > ders=host;x-amz-content-sha256;x-amz-date,Signature=7841691c4d2ff9aa2cf26a74fb71b19ae0312993f8d7209d3e6140ce21e23c9a
> > > > > > >  [2018-11-08 09:13:22,436] [EI-Core] DEBUG - headers http-outgoing-2
> > > > > > > > > x-amz-content-sha256: UNSIGNED-PAYLOAD
> > > > > > > [2018-11-08 09:13:22,436] [EI-Core] DEBUG - headers http-outgoing-2
> > > > > > > > > Accept: */*
> > > > > > > [2018-11-08 09:13:22,436] [EI-Core] DEBUG - headers http-outgoing-2
> > > > > > > > > x-amz-date: Thu, 08 Nov 2018 03:43:22 GMT
> > > > > > > [2018-11-08 09:13:22,436] [EI-Core] DEBUG - headers http-outgoing-2
> > > > > > > > > Postman-Token: 96535872-a3e1-4702-ad2d-f87b5a8a93cd
> > > > > > > [2018-11-08 09:13:22,438] [EI-Core] DEBUG - headers http-outgoing-2
> > > > > > > > > cache-control: no-cache
> > > > > > > [2018-11-08 09:13:22,439] [EI-Core] DEBUG - headers http-outgoing-2
> > > > > > > > > accept-encoding: gzip, deflate
> > > > > > > [2018-11-08 09:13:22,440] [EI-Core] DEBUG - headers http-outgoing-2
> > > > > > > > > Content-Type:
> > > > > > > [2018-11-08 09:13:22,440] [EI-Core] DEBUG - headers http-outgoing-2
> > > > > > > > > Transfer-Encoding: chunked
> > > > > > > [2018-11-08 09:13:22,440] [EI-Core] DEBUG - headers http-outgoing-2
> > > > > > > > > Host: s3.us-east-2.amazonaws.com
> > > > > > > [2018-11-08 09:13:22,441] [EI-Core] DEBUG - headers http-outgoing-2
> > > > > > > > > Connection: Keep-Alive
> > > > > > > [2018-11-08 09:13:22,441] [EI-Core] DEBUG - headers http-outgoing-2
> > > > > > > > > User-Agent: Synapse-PT-HttpComponents-NIO
> > > > > > > [2018-11-08 09:13:22,442] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > > > > > > dispatcher-2 << "DELETE /testbuckkkbiru/?replication HTTP/1.1[\r][\n]"
> > > > > > > [2018-11-08 09:13:22,443] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > > > > > > dispatcher-2 << "Authorization: AWS4-HMAC-SHA256
> > > > > > > Credential=xxxxxxxxxxxx/20181108/us-east-2/s3/aws4_request,SignedHeaders \
> > > > > > > =host;x-amz-content-sha256;x-amz-date,Signature=7841691c4d2ff9aa2cf26a74fb71b19ae0312993f8d7209d3e6140ce21e23c9a[\r][\n]"
> > > > > > >  [2018-11-08 09:13:22,443] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > > > > > > dispatcher-2 << "x-amz-content-sha256: UNSIGNED-PAYLOAD[\r][\n]"
> > > > > > > [2018-11-08 09:13:22,443] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > > > > > > dispatcher-2 << "Accept: */*[\r][\n]"
> > > > > > > [2018-11-08 09:13:22,443] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > > > > > > dispatcher-2 << "x-amz-date: Thu, 08 Nov 2018 03:43:22 GMT[\r][\n]"
> > > > > > > [2018-11-08 09:13:22,443] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > > > > > > dispatcher-2 << "Postman-Token:
> > > > > > > 96535872-a3e1-4702-ad2d-f87b5a8a93cd[\r][\n]"
> > > > > > > [2018-11-08 09:13:22,443] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > > > > > > dispatcher-2 << "cache-control: no-cache[\r][\n]"
> > > > > > > [2018-11-08 09:13:22,444] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > > > > > > dispatcher-2 << "accept-encoding: gzip, deflate[\r][\n]"
> > > > > > > [2018-11-08 09:13:22,445] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > > > > > > dispatcher-2 << "Content-Type: [\r][\n]"
> > > > > > > [2018-11-08 09:13:22,445] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > > > > > > dispatcher-2 << "Transfer-Encoding: chunked[\r][\n]"
> > > > > > > [2018-11-08 09:13:22,445] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > > > > > > dispatcher-2 << "Host: s3.us-east-2.amazonaws.com[\r][\n]"
> > > > > > > [2018-11-08 09:13:22,445] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > > > > > > dispatcher-2 << "Connection: Keep-Alive[\r][\n]"
> > > > > > > [2018-11-08 09:13:22,445] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > > > > > > dispatcher-2 << "User-Agent: Synapse-PT-HttpComponents-NIO[\r][\n]"
> > > > > > > [2018-11-08 09:13:22,445] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > > > > > > dispatcher-2 << "[\r][\n]"
> > > > > > > [2018-11-08 09:13:22,446] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > > > > > > dispatcher-2 << "1ae[\r][\n]"
> > > > > > > [2018-11-08 09:13:22,446] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > > > > > > dispatcher-2 <<
> > > > > > > "accessKeyId=xxxxxxxxxxxxxx&secretAccessKey=xxxxxxxxxxxxxxxxxxx&methodTy \
> > > > > > > pe=DELETE&isXAmzDate=true&contentLength=0&contentMD5=&region=us-east-2&bucketName=testbuckkkbiru&host=
> > > > > > >  s3.us-east-2.amazonaws.com&bucketUrl=http%3A%2F%
> > > > > > > 2Fs3.us-east-2.amazonaws.com
> > > > > > > %2Ftestbuckkkbiru&expect=&xAmzSecurityToken=&xAmzAcl=public-read&xAmzGra \
> > > > > > > ntRead=&xAmzGrantWrite=&xAmzGrantReadAcp=&xAmzGrantWriteAcp=&xAmzGrantFullControl=[\r][\n]"
> > > > > > >  [2018-11-08 09:13:22,446] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > > > > > > dispatcher-2 << "0[\r][\n]"
> > > > > > > [2018-11-08 09:13:22,446] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > > > > > > dispatcher-2 << "[\r][\n]"
> > > > > > > [2018-11-08 09:13:42,778] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > > > > > > dispatcher-2 >> "HTTP/1.1 400 Bad Request[\r][\n]"
> > > > > > > [2018-11-08 09:13:42,779] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > > > > > > dispatcher-2 >> "x-amz-request-id: 9D3D185B485D9BD9[\r][\n]"
> > > > > > > [2018-11-08 09:13:42,779] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > > > > > > dispatcher-2 >> "x-amz-id-2:
> > > > > > > RhLOUIb8SMBZCLTddE0oKFF4OxZ5qQOOIDjikeB66xQgIHshsdsk0fHUdPd1TTgEelN8WZT4XWE=[\r][\n]"
> > > > > > >  [2018-11-08 09:13:42,780] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > > > > > > dispatcher-2 >> "Content-Type: application/xml[\r][\n]"
> > > > > > > [2018-11-08 09:13:42,780] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > > > > > > dispatcher-2 >> "Transfer-Encoding: chunked[\r][\n]"
> > > > > > > [2018-11-08 09:13:42,780] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > > > > > > dispatcher-2 >> "Date: Thu, 08 Nov 2018 03:43:43 GMT[\r][\n]"
> > > > > > > [2018-11-08 09:13:42,781] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > > > > > > dispatcher-2 >> "Connection: close[\r][\n]"
> > > > > > > [2018-11-08 09:13:42,781] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > > > > > > dispatcher-2 >> "Server: AmazonS3[\r][\n]"
> > > > > > > [2018-11-08 09:13:42,782] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > > > > > > dispatcher-2 >> "[\r][\n]"
> > > > > > > [2018-11-08 09:13:42,782] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > > > > > > dispatcher-2 >> "168[\r][\n]"
> > > > > > > [2018-11-08 09:13:42,782] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > > > > > > dispatcher-2 >> "<?xml version="1.0" encoding="UTF-8"?>[\n]"
> > > > > > > [2018-11-08 09:13:42,782] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > > > > > > dispatcher-2 >> "<Error><Code>RequestTimeout</Code><Message>Your socket
> > > > > > > connection to the server was not read from or written to within the \
> > > > > > > timeout period. Idle connections will be
> > > > > > > closed.</Message><RequestId>9D3D185B485D9BD9</RequestId><HostId>RhLOUIb8 \
> > > > > > > SMBZCLTddE0oKFF4OxZ5qQOOIDjikeB66xQgIHshsdsk0fHUdPd1TTgEelN8WZT4XWE=</HostId></Error>[\r][\n]"
> > > > > > >  [2018-11-08 09:13:42,783] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > > > > > > dispatcher-2 >> "0[\r][\n]"
> > > > > > > [2018-11-08 09:13:42,783] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > > > > > > dispatcher-2 >> "[\r][\n]"
> > > > > > > [2018-11-08 09:13:42,784] [EI-Core] DEBUG - headers http-outgoing-2
> > > > > > > << HTTP/1.1 400 Bad Request
> > > > > > > [2018-11-08 09:13:42,784] [EI-Core] DEBUG - headers http-outgoing-2
> > > > > > > << x-amz-request-id: 9D3D185B485D9BD9
> > > > > > > [2018-11-08 09:13:42,784] [EI-Core] DEBUG - headers http-outgoing-2
> > > > > > > << x-amz-id-2:
> > > > > > > RhLOUIb8SMBZCLTddE0oKFF4OxZ5qQOOIDjikeB66xQgIHshsdsk0fHUdPd1TTgEelN8WZT4XWE=
> > > > > > >  [2018-11-08 09:13:42,784] [EI-Core] DEBUG - headers http-outgoing-2
> > > > > > > << Content-Type: application/xml
> > > > > > > [2018-11-08 09:13:42,785] [EI-Core] DEBUG - headers http-outgoing-2
> > > > > > > << Transfer-Encoding: chunked
> > > > > > > [2018-11-08 09:13:42,785] [EI-Core] DEBUG - headers http-outgoing-2
> > > > > > > << Date: Thu, 08 Nov 2018 03:43:43 GMT
> > > > > > > [2018-11-08 09:13:42,785] [EI-Core] DEBUG - headers http-outgoing-2
> > > > > > > << Connection: close
> > > > > > > [2018-11-08 09:13:42,785] [EI-Core] DEBUG - headers http-outgoing-2
> > > > > > > << Server: AmazonS3
> > > > > > > [2018-11-08 09:13:42,801] [EI-Core]  WARN - SequenceMediator onError
> > > > > > > handler : faultHandlerSeq for sequence : null cannot be found
> > > > > > > [2018-11-08 09:13:42,823] [EI-Core] DEBUG - headers http-incoming-2
> > > > > > > << HTTP/1.1 400 Bad Request
> > > > > > > [2018-11-08 09:13:42,824] [EI-Core] DEBUG - headers http-incoming-2
> > > > > > > << Content-Type: application/xml
> > > > > > > [2018-11-08 09:13:42,824] [EI-Core] DEBUG - headers http-incoming-2
> > > > > > > << Date: Thu, 08 Nov 2018 03:43:42 GMT
> > > > > > > [2018-11-08 09:13:42,824] [EI-Core] DEBUG - headers http-incoming-2
> > > > > > > << Transfer-Encoding: chunked
> > > > > > > [2018-11-08 09:13:42,825] [EI-Core] DEBUG - headers http-incoming-2
> > > > > > > << Connection: Close
> > > > > > > [2018-11-08 09:13:42,825] [EI-Core] DEBUG - wire HTTP-Listener I/O
> > > > > > > dispatcher-2 << "HTTP/1.1 400 Bad Request[\r][\n]"
> > > > > > > [2018-11-08 09:13:42,825] [EI-Core] DEBUG - wire HTTP-Listener I/O
> > > > > > > dispatcher-2 << "Content-Type: application/xml[\r][\n]"
> > > > > > > [2018-11-08 09:13:42,826] [EI-Core] DEBUG - wire HTTP-Listener I/O
> > > > > > > dispatcher-2 << "Date: Thu, 08 Nov 2018 03:43:42 GMT[\r][\n]"
> > > > > > > [2018-11-08 09:13:42,826] [EI-Core] DEBUG - wire HTTP-Listener I/O
> > > > > > > dispatcher-2 << "Transfer-Encoding: chunked[\r][\n]"
> > > > > > > [2018-11-08 09:13:42,826] [EI-Core] DEBUG - wire HTTP-Listener I/O
> > > > > > > dispatcher-2 << "Connection: Close[\r][\n]"
> > > > > > > [2018-11-08 09:13:42,826] [EI-Core] DEBUG - wire HTTP-Listener I/O
> > > > > > > dispatcher-2 << "[\r][\n]"
> > > > > > > [2018-11-08 09:13:42,826] [EI-Core] DEBUG - wire HTTP-Listener I/O
> > > > > > > dispatcher-2 << "168[\r][\n]"
> > > > > > > [2018-11-08 09:13:42,826] [EI-Core] DEBUG - wire HTTP-Listener I/O
> > > > > > > dispatcher-2 << "<?xml version="1.0" encoding="UTF-8"?>[\n]"
> > > > > > > [2018-11-08 09:13:42,826] [EI-Core] DEBUG - wire HTTP-Listener I/O
> > > > > > > dispatcher-2 << "<Error><Code>RequestTimeout</Code><Message>Your socket
> > > > > > > connection to the server was not read from or written to within the \
> > > > > > > timeout period. Idle connections will be
> > > > > > > closed.</Message><RequestId>9D3D185B485D9BD9</RequestId><HostId>RhLOUIb8 \
> > > > > > > SMBZCLTddE0oKFF4OxZ5qQOOIDjikeB66xQgIHshsdsk0fHUdPd1TTgEelN8WZT4XWE=</HostId></Error>[\r][\n]"
> > > > > > >  [2018-11-08 09:13:42,827] [EI-Core] DEBUG - wire HTTP-Listener I/O
> > > > > > > dispatcher-2 << "0[\r][\n]"
> > > > > > > [2018-11-08 09:13:42,827] [EI-Core] DEBUG - wire HTTP-Listener I/O
> > > > > > > dispatcher-2 << "[\r][\n]"
> > > > > > > 
> > > > > > > [3]
> > > > > > > 
> > > > > > > [2018-11-08 09:11:50,913] [EI-Core] DEBUG - wire HTTP-Listener I/O
> > > > > > > dispatcher-1 >> "POST /services/amazons3_deleteBucketReplication
> > > > > > > HTTP/1.1[\r][\n]"
> > > > > > > [2018-11-08 09:11:50,915] [EI-Core] DEBUG - wire HTTP-Listener I/O
> > > > > > > dispatcher-1 >> "Content-Type: application/xml[\r][\n]"
> > > > > > > [2018-11-08 09:11:50,915] [EI-Core] DEBUG - wire HTTP-Listener I/O
> > > > > > > dispatcher-1 >> "cache-control: no-cache[\r][\n]"
> > > > > > > [2018-11-08 09:11:50,917] [EI-Core] DEBUG - wire HTTP-Listener I/O
> > > > > > > dispatcher-1 >> "Postman-Token:
> > > > > > > e888f860-7d44-462b-93e6-b7bb6a17a1ec[\r][\n]"
> > > > > > > [2018-11-08 09:11:50,918] [EI-Core] DEBUG - wire HTTP-Listener I/O
> > > > > > > dispatcher-1 >> "User-Agent: PostmanRuntime/7.3.0[\r][\n]"
> > > > > > > [2018-11-08 09:11:50,918] [EI-Core] DEBUG - wire HTTP-Listener I/O
> > > > > > > dispatcher-1 >> "Accept: */*[\r][\n]"
> > > > > > > [2018-11-08 09:11:50,918] [EI-Core] DEBUG - wire HTTP-Listener I/O
> > > > > > > dispatcher-1 >> "Host: biruntha:8280[\r][\n]"
> > > > > > > [2018-11-08 09:11:50,918] [EI-Core] DEBUG - wire HTTP-Listener I/O
> > > > > > > dispatcher-1 >> "accept-encoding: gzip, deflate[\r][\n]"
> > > > > > > [2018-11-08 09:11:50,918] [EI-Core] DEBUG - wire HTTP-Listener I/O
> > > > > > > dispatcher-1 >> "content-length: 799[\r][\n]"
> > > > > > > [2018-11-08 09:11:50,918] [EI-Core] DEBUG - wire HTTP-Listener I/O
> > > > > > > dispatcher-1 >> "Connection: keep-alive[\r][\n]"
> > > > > > > [2018-11-08 09:11:50,918] [EI-Core] DEBUG - wire HTTP-Listener I/O
> > > > > > > dispatcher-1 >> "[\r][\n]"
> > > > > > > [2018-11-08 09:11:50,918] [EI-Core] DEBUG - wire HTTP-Listener I/O
> > > > > > > dispatcher-1 >> "<deleteBucketReplication>[\n]"
> > > > > > > [2018-11-08 09:11:50,918] [EI-Core] DEBUG - wire HTTP-Listener I/O
> > > > > > > dispatcher-1 >> "    <accessKeyId>xxxxxxxxxxxxxxx</accessKeyId>[\n]"
> > > > > > > [2018-11-08 09:11:50,919] [EI-Core] DEBUG - wire HTTP-Listener I/O
> > > > > > > dispatcher-1 >> "    \
> > > > > > > <secretAccessKey>xxxxxxxxxxxxxxx</secretAccessKey>[\n]" [2018-11-08 \
> > > > > > > 09:11:50,919] [EI-Core] DEBUG - wire HTTP-Listener I/O dispatcher-1 >> \
> > > > > > > "    <methodType>DELETE</methodType>[\n]" [2018-11-08 09:11:50,919] \
> > > > > > > [EI-Core] DEBUG - wire HTTP-Listener I/O dispatcher-1 >> "    \
> > > > > > > <isXAmzDate>true</isXAmzDate>[\n]" [2018-11-08 09:11:50,921] [EI-Core] \
> > > > > > > DEBUG - wire HTTP-Listener I/O dispatcher-1 >> "    \
> > > > > > > <contentLength>0</contentLength>[\n]" [2018-11-08 09:11:50,921] \
> > > > > > > [EI-Core] DEBUG - wire HTTP-Listener I/O dispatcher-1 >> "    \
> > > > > > > <contentMD5></contentMD5>[\n]" [2018-11-08 09:11:50,921] [EI-Core] \
> > > > > > > DEBUG - wire HTTP-Listener I/O dispatcher-1 >> "    \
> > > > > > > <region>us-east-2</region>[\n]" [2018-11-08 09:11:50,921] [EI-Core] \
> > > > > > > DEBUG - wire HTTP-Listener I/O dispatcher-1 >> "     <host>
> > > > > > > testbuckkkbiru.s3.us-east-2.amazonaws.com</host>[\n]"
> > > > > > > [2018-11-08 09:11:50,921] [EI-Core] DEBUG - wire HTTP-Listener I/O
> > > > > > > dispatcher-1 >> "    <bucketUrl>
> > > > > > > http://testbuckkkbiru.s3.us-east-2.amazonaws.com</bucketUrl>[\n]"
> > > > > > > [2018-11-08 09:11:50,921] [EI-Core] DEBUG - wire HTTP-Listener I/O
> > > > > > > dispatcher-1 >> "    <expect></expect>[\n]"
> > > > > > > [2018-11-08 09:11:50,921] [EI-Core] DEBUG - wire HTTP-Listener I/O
> > > > > > > dispatcher-1 >> "    <xAmzSecurityToken></xAmzSecurityToken>[\n]"
> > > > > > > [2018-11-08 09:11:50,921] [EI-Core] DEBUG - wire HTTP-Listener I/O
> > > > > > > dispatcher-1 >> "    <xAmzAcl>public-read</xAmzAcl>[\n]"
> > > > > > > [2018-11-08 09:11:50,921] [EI-Core] DEBUG - wire HTTP-Listener I/O
> > > > > > > dispatcher-1 >> "    <xAmzGrantRead></xAmzGrantRead>[\n]"
> > > > > > > [2018-11-08 09:11:50,922] [EI-Core] DEBUG - wire HTTP-Listener I/O
> > > > > > > dispatcher-1 >> "    <xAmzGrantWrite></xAmzGrantWrite>[\n]"
> > > > > > > [2018-11-08 09:11:50,922] [EI-Core] DEBUG - wire HTTP-Listener I/O
> > > > > > > dispatcher-1 >> "    <xAmzGrantReadAcp></xAmzGrantReadAcp>[\n]"
> > > > > > > [2018-11-08 09:11:50,922] [EI-Core] DEBUG - wire HTTP-Listener I/O
> > > > > > > dispatcher-1 >> "    <xAmzGrantWriteAcp></xAmzGrantWriteAcp>[\n]"
> > > > > > > [2018-11-08 09:11:50,922] [EI-Core] DEBUG - wire HTTP-Listener I/O
> > > > > > > dispatcher-1 >> "    <xAmzGrantFullControl></xAmzGrantFullControl>[\n]"
> > > > > > > [2018-11-08 09:11:50,922] [EI-Core] DEBUG - wire HTTP-Listener I/O
> > > > > > > dispatcher-1 >> "</deleteBucketReplication>"
> > > > > > > [2018-11-08 09:11:50,927] [EI-Core] DEBUG - headers http-incoming-1
> > > > > > > > > POST /services/amazons3_deleteBucketReplication HTTP/1.1
> > > > > > > [2018-11-08 09:11:50,930] [EI-Core] DEBUG - headers http-incoming-1
> > > > > > > > > Content-Type: application/xml
> > > > > > > [2018-11-08 09:11:50,930] [EI-Core] DEBUG - headers http-incoming-1
> > > > > > > > > cache-control: no-cache
> > > > > > > [2018-11-08 09:11:50,930] [EI-Core] DEBUG - headers http-incoming-1
> > > > > > > > > Postman-Token: e888f860-7d44-462b-93e6-b7bb6a17a1ec
> > > > > > > [2018-11-08 09:11:50,930] [EI-Core] DEBUG - headers http-incoming-1
> > > > > > > > > User-Agent: PostmanRuntime/7.3.0
> > > > > > > [2018-11-08 09:11:50,934] [EI-Core] DEBUG - headers http-incoming-1
> > > > > > > > > Accept: */*
> > > > > > > [2018-11-08 09:11:50,934] [EI-Core] DEBUG - headers http-incoming-1
> > > > > > > > > Host: biruntha:8280
> > > > > > > [2018-11-08 09:11:50,934] [EI-Core] DEBUG - headers http-incoming-1
> > > > > > > > > accept-encoding: gzip, deflate
> > > > > > > [2018-11-08 09:11:50,934] [EI-Core] DEBUG - headers http-incoming-1
> > > > > > > > > content-length: 799
> > > > > > > [2018-11-08 09:11:50,934] [EI-Core] DEBUG - headers http-incoming-1
> > > > > > > > > Connection: keep-alive
> > > > > > > [2018-11-08 09:11:51,162] [EI-Core]  WARN - SequenceMediator onError
> > > > > > > handler : faultHandlerSeq for sequence : null cannot be found
> > > > > > > [2018-11-08 09:11:51,250] [EI-Core]  INFO - TimeoutHandler This
> > > > > > > engine will expire all callbacks after GLOBAL_TIMEOUT: 120 seconds,
> > > > > > > irrespective of the timeout action, after the specified or optional \
> > > > > > > timeout [2018-11-08 09:11:52,313] [EI-Core] DEBUG - headers \
> > > > > > > http-outgoing-1
> > > > > > > > > DELETE /?replication HTTP/1.1
> > > > > > > [2018-11-08 09:11:52,314] [EI-Core] DEBUG - headers http-outgoing-1
> > > > > > > > > Authorization: AWS4-HMAC-SHA256
> > > > > > > Credential=xxxxxxxxxxxxxxxx/20181108/us-east-2/s3/aws4_request,SignedHea \
> > > > > > > ders=host;x-amz-content-sha256;x-amz-date,Signature=0f8885fde904882efc96a5c8c4627e9ad79bbefa1a308443af4256b2ad4c25ca
> > > > > > >  [2018-11-08 09:11:52,314] [EI-Core] DEBUG - headers http-outgoing-1
> > > > > > > > > x-amz-content-sha256: UNSIGNED-PAYLOAD
> > > > > > > [2018-11-08 09:11:52,314] [EI-Core] DEBUG - headers http-outgoing-1
> > > > > > > > > Accept: */*
> > > > > > > [2018-11-08 09:11:52,315] [EI-Core] DEBUG - headers http-outgoing-1
> > > > > > > > > x-amz-date: Thu, 08 Nov 2018 03:41:51 GMT
> > > > > > > [2018-11-08 09:11:52,315] [EI-Core] DEBUG - headers http-outgoing-1
> > > > > > > > > Postman-Token: e888f860-7d44-462b-93e6-b7bb6a17a1ec
> > > > > > > [2018-11-08 09:11:52,315] [EI-Core] DEBUG - headers http-outgoing-1
> > > > > > > > > cache-control: no-cache
> > > > > > > [2018-11-08 09:11:52,315] [EI-Core] DEBUG - headers http-outgoing-1
> > > > > > > > > accept-encoding: gzip, deflate
> > > > > > > [2018-11-08 09:11:52,315] [EI-Core] DEBUG - headers http-outgoing-1
> > > > > > > > > Content-Type:
> > > > > > > [2018-11-08 09:11:52,315] [EI-Core] DEBUG - headers http-outgoing-1
> > > > > > > > > Transfer-Encoding: chunked
> > > > > > > [2018-11-08 09:11:52,315] [EI-Core] DEBUG - headers http-outgoing-1
> > > > > > > > > Host: testbuckkkbiru.s3.us-east-2.amazonaws.com
> > > > > > > [2018-11-08 09:11:52,315] [EI-Core] DEBUG - headers http-outgoing-1
> > > > > > > > > Connection: Keep-Alive
> > > > > > > [2018-11-08 09:11:52,315] [EI-Core] DEBUG - headers http-outgoing-1
> > > > > > > > > User-Agent: Synapse-PT-HttpComponents-NIO
> > > > > > > [2018-11-08 09:11:52,319] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > > > > > > dispatcher-1 << "DELETE /?replication HTTP/1.1[\r][\n]"
> > > > > > > [2018-11-08 09:11:52,319] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > > > > > > dispatcher-1 << "Authorization: AWS4-HMAC-SHA256
> > > > > > > Credential=xxxxxxxxxxx/20181108/us-east-2/s3/aws4_request,SignedHeaders= \
> > > > > > > host;x-amz-content-sha256;x-amz-date,Signature=0f8885fde904882efc96a5c8c4627e9ad79bbefa1a308443af4256b2ad4c25ca[\r][\n]"
> > > > > > >  [2018-11-08 09:11:52,319] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > > > > > > dispatcher-1 << "x-amz-content-sha256: UNSIGNED-PAYLOAD[\r][\n]"
> > > > > > > [2018-11-08 09:11:52,319] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > > > > > > dispatcher-1 << "Accept: */*[\r][\n]"
> > > > > > > [2018-11-08 09:11:52,319] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > > > > > > dispatcher-1 << "x-amz-date: Thu, 08 Nov 2018 03:41:51 GMT[\r][\n]"
> > > > > > > [2018-11-08 09:11:52,319] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > > > > > > dispatcher-1 << "Postman-Token:
> > > > > > > e888f860-7d44-462b-93e6-b7bb6a17a1ec[\r][\n]"
> > > > > > > [2018-11-08 09:11:52,319] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > > > > > > dispatcher-1 << "cache-control: no-cache[\r][\n]"
> > > > > > > [2018-11-08 09:11:52,319] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > > > > > > dispatcher-1 << "accept-encoding: gzip, deflate[\r][\n]"
> > > > > > > [2018-11-08 09:11:52,320] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > > > > > > dispatcher-1 << "Content-Type: [\r][\n]"
> > > > > > > [2018-11-08 09:11:52,320] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > > > > > > dispatcher-1 << "Transfer-Encoding: chunked[\r][\n]"
> > > > > > > [2018-11-08 09:11:52,320] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > > > > > > dispatcher-1 << "Host: testbuckkkbiru.s3.us-east-2.amazonaws.com
> > > > > > > [\r][\n]"
> > > > > > > [2018-11-08 09:11:52,320] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > > > > > > dispatcher-1 << "Connection: Keep-Alive[\r][\n]"
> > > > > > > [2018-11-08 09:11:52,320] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > > > > > > dispatcher-1 << "User-Agent: Synapse-PT-HttpComponents-NIO[\r][\n]"
> > > > > > > [2018-11-08 09:11:52,320] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > > > > > > dispatcher-1 << "[\r][\n]"
> > > > > > > [2018-11-08 09:11:52,320] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > > > > > > dispatcher-1 << "1a1[\r][\n]"
> > > > > > > [2018-11-08 09:11:52,320] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > > > > > > dispatcher-1 <<
> > > > > > > "accessKeyId=xxxxxxxxxxxxxxxxxxx&secretAccessKey=xxxxxxxxxxxxxxxxxxxxxxx \
> > > > > > > xx&methodType=DELETE&isXAmzDate=true&contentLength=0&contentMD5=&region=us-east-2&host=
> > > > > > >  testbuckkkbiru.s3.us-east-2.amazonaws.com&bucketUrl=http%3A%2F%
> > > > > > > 2Ftestbuckkkbiru.s3.us-east-2.amazonaws.com
> > > > > > > &expect=&xAmzSecurityToken=&xAmzAcl=public-read&xAmzGrantRead=&xAmzGrantWrite=&xAmzGrantReadAcp=&xAmzGrantWriteAcp=&xAmzGrantFullControl=[\r][\n]"
> > > > > > >  [2018-11-08 09:11:52,320] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > > > > > > dispatcher-1 << "0[\r][\n]"
> > > > > > > [2018-11-08 09:11:52,320] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > > > > > > dispatcher-1 << "[\r][\n]"
> > > > > > > [2018-11-08 09:12:12,744] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > > > > > > dispatcher-1 >> "HTTP/1.1 400 Bad Request[\r][\n]"
> > > > > > > [2018-11-08 09:12:12,745] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > > > > > > dispatcher-1 >> "x-amz-request-id: B6F5E938580BA667[\r][\n]"
> > > > > > > [2018-11-08 09:12:12,746] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > > > > > > dispatcher-1 >> "x-amz-id-2:
> > > > > > > r6uXD7k9kVwqCAPd44EnDB6xm80XtQjBQpGW1NY+ozg/UIgajRw2ZZmD/u+gGJy5e3ypGBli1U0=[\r][\n]"
> > > > > > >  [2018-11-08 09:12:12,746] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > > > > > > dispatcher-1 >> "Content-Type: application/xml[\r][\n]"
> > > > > > > [2018-11-08 09:12:12,746] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > > > > > > dispatcher-1 >> "Transfer-Encoding: chunked[\r][\n]"
> > > > > > > [2018-11-08 09:12:12,747] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > > > > > > dispatcher-1 >> "Date: Thu, 08 Nov 2018 03:42:13 GMT[\r][\n]"
> > > > > > > [2018-11-08 09:12:12,747] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > > > > > > dispatcher-1 >> "Connection: close[\r][\n]"
> > > > > > > [2018-11-08 09:12:12,748] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > > > > > > dispatcher-1 >> "Server: AmazonS3[\r][\n]"
> > > > > > > [2018-11-08 09:12:12,748] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > > > > > > dispatcher-1 >> "[\r][\n]"
> > > > > > > [2018-11-08 09:12:12,748] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > > > > > > dispatcher-1 >> "168[\r][\n]"
> > > > > > > [2018-11-08 09:12:12,748] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > > > > > > dispatcher-1 >> "<?xml version="1.0" encoding="UTF-8"?>[\n]"
> > > > > > > [2018-11-08 09:12:12,749] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > > > > > > dispatcher-1 >> "<Error><Code>RequestTimeout</Code><Message>Your socket
> > > > > > > connection to the server was not read from or written to within the \
> > > > > > > timeout period. Idle connections will be
> > > > > > > closed.</Message><RequestId>B6F5E938580BA667</RequestId><HostId>r6uXD7k9 \
> > > > > > > kVwqCAPd44EnDB6xm80XtQjBQpGW1NY+ozg/UIgajRw2ZZmD/u+gGJy5e3ypGBli1U0=</HostId></Error>[\r][\n]"
> > > > > > >  [2018-11-08 09:12:12,749] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > > > > > > dispatcher-1 >> "0[\r][\n]"
> > > > > > > [2018-11-08 09:12:12,749] [EI-Core] DEBUG - wire HTTP-Sender I/O
> > > > > > > dispatcher-1 >> "[\r][\n]"
> > > > > > > [2018-11-08 09:12:12,755] [EI-Core] DEBUG - headers http-outgoing-1
> > > > > > > << HTTP/1.1 400 Bad Request
> > > > > > > [2018-11-08 09:12:12,755] [EI-Core] DEBUG - headers http-outgoing-1
> > > > > > > << x-amz-request-id: B6F5E938580BA667
> > > > > > > [2018-11-08 09:12:12,756] [EI-Core] DEBUG - headers http-outgoing-1
> > > > > > > << x-amz-id-2:
> > > > > > > r6uXD7k9kVwqCAPd44EnDB6xm80XtQjBQpGW1NY+ozg/UIgajRw2ZZmD/u+gGJy5e3ypGBli1U0=
> > > > > > >  [2018-11-08 09:12:12,756] [EI-Core] DEBUG - headers http-outgoing-1
> > > > > > > << Content-Type: application/xml
> > > > > > > [2018-11-08 09:12:12,757] [EI-Core] DEBUG - headers http-outgoing-1
> > > > > > > << Transfer-Encoding: chunked
> > > > > > > [2018-11-08 09:12:12,758] [EI-Core] DEBUG - headers http-outgoing-1
> > > > > > > << Date: Thu, 08 Nov 2018 03:42:13 GMT
> > > > > > > [2018-11-08 09:12:12,758] [EI-Core] DEBUG - headers http-outgoing-1
> > > > > > > << Connection: close
> > > > > > > [2018-11-08 09:12:12,758] [EI-Core] DEBUG - headers http-outgoing-1
> > > > > > > << Server: AmazonS3
> > > > > > > [2018-11-08 09:12:12,794] [EI-Core]  WARN - SequenceMediator onError
> > > > > > > handler : faultHandlerSeq for sequence : null cannot be found
> > > > > > > [2018-11-08 09:12:12,802] [EI-Core] DEBUG - headers http-incoming-1
> > > > > > > << HTTP/1.1 400 Bad Request
> > > > > > > [2018-11-08 09:12:12,802] [EI-Core] DEBUG - headers http-incoming-1
> > > > > > > << Content-Type: application/xml
> > > > > > > [2018-11-08 09:12:12,802] [EI-Core] DEBUG - headers http-incoming-1
> > > > > > > << Date: Thu, 08 Nov 2018 03:42:12 GMT
> > > > > > > [2018-11-08 09:12:12,802] [EI-Core] DEBUG - headers http-incoming-1
> > > > > > > << Transfer-Encoding: chunked
> > > > > > > [2018-11-08 09:12:12,802] [EI-Core] DEBUG - headers http-incoming-1
> > > > > > > << Connection: Close
> > > > > > > [2018-11-08 09:12:12,803] [EI-Core] DEBUG - wire HTTP-Listener I/O
> > > > > > > dispatcher-1 << "HTTP/1.1 400 Bad Request[\r][\n]"
> > > > > > > [2018-11-08 09:12:12,804] [EI-Core] DEBUG - wire HTTP-Listener I/O
> > > > > > > dispatcher-1 << "Content-Type: application/xml[\r][\n]"
> > > > > > > [2018-11-08 09:12:12,804] [EI-Core] DEBUG - wire HTTP-Listener I/O
> > > > > > > dispatcher-1 << "Date: Thu, 08 Nov 2018 03:42:12 GMT[\r][\n]"
> > > > > > > [2018-11-08 09:12:12,804] [EI-Core] DEBUG - wire HTTP-Listener I/O
> > > > > > > dispatcher-1 << "Transfer-Encoding: chunked[\r][\n]"
> > > > > > > [2018-11-08 09:12:12,804] [EI-Core] DEBUG - wire HTTP-Listener I/O
> > > > > > > dispatcher-1 << "Connection: Close[\r][\n]"
> > > > > > > [2018-11-08 09:12:12,804] [EI-Core] DEBUG - wire HTTP-Listener I/O
> > > > > > > dispatcher-1 << "[\r][\n]"
> > > > > > > [2018-11-08 09:12:12,804] [EI-Core] DEBUG - wire HTTP-Listener I/O
> > > > > > > dispatcher-1 << "168[\r][\n]"
> > > > > > > [2018-11-08 09:12:12,804] [EI-Core] DEBUG - wire HTTP-Listener I/O
> > > > > > > dispatcher-1 << "<?xml version="1.0" encoding="UTF-8"?>[\n]"
> > > > > > > [2018-11-08 09:12:12,804] [EI-Core] DEBUG - wire HTTP-Listener I/O
> > > > > > > dispatcher-1 << "<Error><Code>RequestTimeout</Code><Message>Your socket
> > > > > > > connection to the server was not read from or written to within the \
> > > > > > > timeout period. Idle connections will be
> > > > > > > closed.</Message><RequestId>B6F5E938580BA667</RequestId><HostId>r6uXD7k9 \
> > > > > > > kVwqCAPd44EnDB6xm80XtQjBQpGW1NY+ozg/UIgajRw2ZZmD/u+gGJy5e3ypGBli1U0=</HostId></Error>[\r][\n]"
> > > > > > >  [2018-11-08 09:12:12,804] [EI-Core] DEBUG - wire HTTP-Listener I/O
> > > > > > > dispatcher-1 << "0[\r][\n]"
> > > > > > > [2018-11-08 09:12:12,804] [EI-Core] DEBUG - wire HTTP-Listener I/O
> > > > > > > dispatcher-1 << "[\r][\n]
> > > > > > > 
> > > > > > > Thanks,
> > > > > > > 
> > > > > > > 
> > > > > > > On Wed, Nov 7, 2018 at 5:54 PM, Keerthika Mahendralingam <
> > > > > > > keerthika@wso2.com> wrote:
> > > > > > > 
> > > > > > > > Hi Biruntha,
> > > > > > > > 
> > > > > > > > If you are using virtual-hosted–style bucket url(
> > > > > > > > http://testbuckkkbiru.s3.amazonaws.com) then the host should be
> > > > > > > > testbuckkkbiru.s3.amazonaws.com and you should not provide the
> > > > > > > > bucketName in your init configuration. And also, since you are trying \
> > > > > > > > to access the bucket from us-east-2 your bucket url should be
> > > > > > > > http://testbuckkkbiru.s3.us-east-2.amazonaws.com. Could you please
> > > > > > > > try with the following config:
> > > > > > > > 
> > > > > > > > <deleteBucketReplication>
> > > > > > > > <accessKeyId>xxxxxx</accessKeyId>
> > > > > > > > <secretAccessKey>xxxxxxxxxx</secretAccessKey>
> > > > > > > > <methodType>DELETE</methodType>
> > > > > > > > <contentType>application/xml</contentType>
> > > > > > > > <isXAmzDate>true</isXAmzDate>
> > > > > > > > <bucketName>testbuckkkbiru</bucketName>
> > > > > > > > <host>s3.us-east-2.amazonaws.com</host>
> > > > > > > > <bucketUrl>http://s3.us-east-2.amazonaws.com/testbuckkkbiru
> > > > > > > > </bucketUrl>
> > > > > > > > <contentLength></contentLength>
> > > > > > > > <contentMD5></contentMD5>
> > > > > > > > <region>us-east-2</region>
> > > > > > > > <expect></expect>
> > > > > > > > <xAmzSecurityToken></xAmzSecurityToken>
> > > > > > > > <xAmzAcl>public-read</xAmzAcl>
> > > > > > > > </deleteBucketReplication>
> > > > > > > > 
> > > > > > > > or
> > > > > > > > 
> > > > > > > > <deleteBucketReplication>
> > > > > > > > <accessKeyId>xxxxxx</accessKeyId>
> > > > > > > > <secretAccessKey>xxxxxxxxxx</secretAccessKey>
> > > > > > > > <methodType>DELETE</methodType>
> > > > > > > > <contentType>application/xml</contentType>
> > > > > > > > <isXAmzDate>true</isXAmzDate>
> > > > > > > > <host>testbuckkkbiru.s3.us-east-2.amazonaws.com</host>
> > > > > > > > <bucketUrl>http://testbuckkkbiru.s3.us-east-2.amazonaws.com
> > > > > > > > </bucketUrl>
> > > > > > > > <contentLength></contentLength>
> > > > > > > > <contentMD5></contentMD5>
> > > > > > > > <region>us-east-2</region>
> > > > > > > > <expect></expect>
> > > > > > > > <xAmzSecurityToken></xAmzSecurityToken>
> > > > > > > > <xAmzAcl>public-read</xAmzAcl>
> > > > > > > > </deleteBucketReplication>
> > > > > > > > 
> > > > > > > > [1].
> > > > > > > > https://docs.aws.amazon.com/general/latest/gr/rande.html#s3_region
> > > > > > > > 
> > > > > > > > Thanks,
> > > > > > > > Keerthika.
> > > > > > > > 
> > > > > > > > On Tue, Oct 9, 2018 at 11:52 AM Biruntha Gnaneswaran <
> > > > > > > > biruntha@wso2.com> wrote:
> > > > > > > > 
> > > > > > > > > Hi Shakila,
> > > > > > > > > 
> > > > > > > > > I have tried as you mentioned but still I'm getting
> > > > > > > > > "SignatureDoesNotMatch" error. So, I have posted stackoverflow \
> > > > > > > > > question regarding this [1].
> > > > > > > > > 
> > > > > > > > > [1]
> > > > > > > > > https://stackoverflow.com/questions/52714250/getting-signaturedoesnotmatch-error-with-delete-bucket-replication-operation-i
> > > > > > > > >  
> > > > > > > > > Thanks,
> > > > > > > > > 
> > > > > > > > > On Mon, Oct 8, 2018 at 1:56 PM, Shakila Sasikaran <
> > > > > > > > > shakila@wso2.com> wrote:
> > > > > > > > > 
> > > > > > > > > > Hi Biruntha,
> > > > > > > > > > 
> > > > > > > > > > As per the API documentation [1], I think the bucket URL should
> > > > > > > > > > be like <BUCKET_NAME>/<HOST>. Could you please try with \
> > > > > > > > > > *http://testbuckkkbiru.s3-us-east-2.amazonaws.com \
> > > > > > > > > > <http://testbuckkkbiru.s3-us-east-2.amazonaws.com>*? 
> > > > > > > > > > [1]
> > > > > > > > > > https://docs.aws.amazon.com/AmazonS3/latest/API/RESTBucketDELETEreplication.html
> > > > > > > > > >  
> > > > > > > > > > Thanks
> > > > > > > > > > 
> > > > > > > > > > On Fri, Oct 5, 2018 at 3:00 PM Biruntha Gnaneswaran <
> > > > > > > > > > biruntha@wso2.com> wrote:
> > > > > > > > > > 
> > > > > > > > > > > Hi All,
> > > > > > > > > > > 
> > > > > > > > > > > I'm trying to use deleteBucketReplication operation in amazon \
> > > > > > > > > > > s3 connector [1] & [2]. But I'm getting "SignatureDoesNotMatch" \
> > > > > > > > > > > error with the sample request [3] & [4].  When I try this \
> > > > > > > > > > > method with host and bucketUrl as in [5], I'm getting error as \
> > > > > > > > > > > in [6]. Am I missed anything? Appreciate your input on this.
> > > > > > > > > > > 
> > > > > > > > > > > 
> > > > > > > > > > > [1]
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > [2]
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > [3]
> > > > > > > > > > > <deleteBucketReplication>
> > > > > > > > > > > <accessKeyId>xxxxxx</accessKeyId>
> > > > > > > > > > > <secretAccessKey>xxxxxxxxxx</secretAccessKey>
> > > > > > > > > > > <methodType>DELETE</methodType>
> > > > > > > > > > > <contentType>application/xml</contentType>
> > > > > > > > > > > <isXAmzDate>true</isXAmzDate>
> > > > > > > > > > > <bucketUrl>http://testbuckkkbiru.s3.amazonaws.com
> > > > > > > > > > > </bucketUrl>
> > > > > > > > > > > <contentLength></contentLength>
> > > > > > > > > > > <contentMD5></contentMD5>
> > > > > > > > > > > <region>us-east-2</region>
> > > > > > > > > > > <bucketName>testbuckkkbiru</bucketName>
> > > > > > > > > > > <host>s3.amazonaws.com</host>
> > > > > > > > > > > <expect></expect>
> > > > > > > > > > > <xAmzSecurityToken></xAmzSecurityToken>
> > > > > > > > > > > <xAmzAcl>public-read</xAmzAcl>
> > > > > > > > > > > </deleteBucketReplication>
> > > > > > > > > > > [4]
> > > > > > > > > > > <?xml version="1.0" encoding="UTF-8"?>
> > > > > > > > > > > <proxy xmlns="http://ws.apache.org/ns/synapse"
> > > > > > > > > > > name="amazons3_deleteBucketReplication"
> > > > > > > > > > > startOnLoad="true"
> > > > > > > > > > > statistics="disable"
> > > > > > > > > > > trace="disable"
> > > > > > > > > > > transports="http,https">
> > > > > > > > > > > <target>
> > > > > > > > > > > <inSequence onError="faultHandlerSeq">
> > > > > > > > > > > <property expression="//accessKeyId/text()"
> > > > > > > > > > > name="accessKeyId"/>
> > > > > > > > > > > <property expression="//secretAccessKey/text()"
> > > > > > > > > > > name="secretAccessKey"/>
> > > > > > > > > > > <property expression="//methodType/text()"
> > > > > > > > > > > name="methodType"/>
> > > > > > > > > > > <property expression="//contentType/text()"
> > > > > > > > > > > name="contentType"/>
> > > > > > > > > > > <property expression="//bucketName/text()"
> > > > > > > > > > > name="bucketName"/>
> > > > > > > > > > > <property expression="//region/text()" name="region"/>
> > > > > > > > > > > <property expression="//isXAmzDate/text()"
> > > > > > > > > > > name="isXAmzDate"/>
> > > > > > > > > > > <property expression="//contentMD5/text()"
> > > > > > > > > > > name="contentMD5"/>
> > > > > > > > > > > <property expression="//xAmzSecurityToken/text()"
> > > > > > > > > > > name="xAmzSecurityToken"/>
> > > > > > > > > > > <property expression="//host/text()" name="host"/>
> > > > > > > > > > > <property expression="//expect/text()" name="expect"/>
> > > > > > > > > > > <property expression="//contentLength/text()"
> > > > > > > > > > > name="contentLength"/>
> > > > > > > > > > > <property expression="//xAmzMfa/text()" name="xAmzMfa"/>
> > > > > > > > > > > <property expression="//bucketUrl/text()"
> > > > > > > > > > > name="bucketUrl"/>
> > > > > > > > > > > <amazons3.init>
> > > > > > > > > > > <accessKeyId>{$ctx:accessKeyId}</accessKeyId>
> > > > > > > > > > > 
> > > > > > > > > > > <secretAccessKey>{$ctx:secretAccessKey}</secretAccessKey>
> > > > > > > > > > > <methodType>{$ctx:methodType}</methodType>
> > > > > > > > > > > <contentType>{$ctx:contentType}</contentType>
> > > > > > > > > > > <bucketName>{$ctx:bucketName}</bucketName>
> > > > > > > > > > > <isXAmzDate>{$ctx:isXAmzDate}</isXAmzDate>
> > > > > > > > > > > <contentMD5>{$ctx:contentMD5}</contentMD5>
> > > > > > > > > > > 
> > > > > > > > > > > <xAmzSecurityToken>{$ctx:xAmzSecurityToken}</xAmzSecurityToken>
> > > > > > > > > > > <region>{$ctx:region}</region>
> > > > > > > > > > > <host>{$ctx:host}</host>
> > > > > > > > > > > <expect>{$ctx:expect}</expect>
> > > > > > > > > > > <contentLength>{$ctx:contentLength}</contentLength>
> > > > > > > > > > > <xAmzMfa>{$ctx:xAmzMfa}</xAmzMfa>
> > > > > > > > > > > </amazons3.init>
> > > > > > > > > > > <amazons3.deleteBucketReplication>
> > > > > > > > > > > <bucketUrl>{$ctx:bucketUrl}</bucketUrl>
> > > > > > > > > > > </amazons3.deleteBucketReplication>
> > > > > > > > > > > <respond/>
> > > > > > > > > > > </inSequence>
> > > > > > > > > > > <outSequence>
> > > > > > > > > > > <respond/>
> > > > > > > > > > > </outSequence>
> > > > > > > > > > > </target>
> > > > > > > > > > > <description/>
> > > > > > > > > > > </proxy>
> > > > > > > > > > > 
> > > > > > > > > > > [5]
> > > > > > > > > > > <host>s3-us-east-2.amazonaws.com</host>
> > > > > > > > > > > <bucketUrl>http://s3-us-east-2.amazonaws.com/testbuckkkbiru
> > > > > > > > > > > </bucketUrl>
> > > > > > > > > > > 
> > > > > > > > > > > [6]
> > > > > > > > > > > <Error><Code>RequestTimeout</Code><Message>Your socket
> > > > > > > > > > > connection to the server was not read from or written to within \
> > > > > > > > > > > the timeout period. Idle connections will be
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > 
> > > > > > > > > > > Thanks,
> > > > > > > > > > > --
> > > > > > > > > > > Biruntha
> > > > > > > > > > > 
> > > > > > > > > > > Software Engineer
> > > > > > > > > > > WSO2
> > > > > > > > > > > Email: biruntha@wso2.com
> > > > > > > > > > > LinkedIn: https://lk.linkedin.com/in/biruntha
> > > > > > > > > > > Mobile : +94773718986
> > > > > > > > > > > 
> > > > > > > > > > 
> > > > > > > > > > 
> > > > > > > > > > --
> > > > > > > > > > Shakila Sasikaran
> > > > > > > > > > Software Engineer
> > > > > > > > > > Mobile :+94 (0) 77 526 6848
> > > > > > > > > > shakila@wso2.com
> > > > > > > > > > WSO2, Inc.
> > > > > > > > > > lean . enterprise . middleware
> > > > > > > > > > http://www.wso2.com/
> > > > > > > > > > 
> > > > > > > > > 
> > > > > > > > > 
> > > > > > > > > 
> > > > > > > > > --
> > > > > > > > > Biruntha
> > > > > > > > > 
> > > > > > > > > Software Engineer
> > > > > > > > > WSO2
> > > > > > > > > Email: biruntha@wso2.com
> > > > > > > > > LinkedIn: https://lk.linkedin.com/in/biruntha
> > > > > > > > > Mobile : +94773718986
> > > > > > > > > 
> > > > > > > > 
> > > > > > > > 
> > > > > > > > --
> > > > > > > > <dev-request@wso2.org>
> > > > > > > > Keerthika Mahendralingam
> > > > > > > > Senior Software Engineer
> > > > > > > > Mobile :+94 (0) 776 121144
> > > > > > > > keerthika@wso2.com
> > > > > > > > WSO2, Inc.
> > > > > > > > lean . enterprise . middleware
> > > > > > > > 
> > > > > > > 
> > > > > > > 
> > > > > > > 
> > > > > > > --
> > > > > > > Biruntha
> > > > > > > 
> > > > > > > Software Engineer
> > > > > > > WSO2
> > > > > > > Email: biruntha@wso2.com
> > > > > > > LinkedIn: https://lk.linkedin.com/in/biruntha
> > > > > > > Mobile : +94773718986
> > > > > > > 
> > > > > > 
> > > > > > 
> > > > > > --
> > > > > > <dev-request@wso2.org>
> > > > > > Keerthika Mahendralingam
> > > > > > Senior Software Engineer
> > > > > > Mobile :+94 (0) 776 121144
> > > > > > keerthika@wso2.com
> > > > > > WSO2, Inc.
> > > > > > lean . enterprise . middleware
> > > > > > 
> > > > > 
> > > > > 
> > > > > --
> > > > > <dev-request@wso2.org>
> > > > > Keerthika Mahendralingam
> > > > > Senior Software Engineer
> > > > > Mobile :+94 (0) 776 121144
> > > > > keerthika@wso2.com
> > > > > WSO2, Inc.
> > > > > lean . enterprise . middleware
> > > > > 
> > > > 
> > > > 
> > > > --
> > > > <dev-request@wso2.org>
> > > > Keerthika Mahendralingam
> > > > Senior Software Engineer
> > > > Mobile :+94 (0) 776 121144
> > > > keerthika@wso2.com
> > > > WSO2, Inc.
> > > > lean . enterprise . middleware
> > > > 
> > > 
> > > 
> > > --
> > > Shakila Sasikaran
> > > Software Engineer
> > > Mobile :+94 (0) 77 526 6848
> > > shakila@wso2.com
> > > WSO2, Inc.
> > > lean . enterprise . middleware
> > > http://www.wso2.com/
> > > 
> > 
> > 
> > --
> > <dev-request@wso2.org>
> > Keerthika Mahendralingam
> > Senior Software Engineer
> > Mobile :+94 (0) 776 121144
> > keerthika@wso2.com
> > WSO2, Inc.
> > lean . enterprise . middleware
> > 
> 
> 
> --
> Shakila Sasikaran
> Software Engineer
> Mobile :+94 (0) 77 526 6848
> shakila@wso2.com
> WSO2, Inc.
> lean . enterprise . middleware
> http://www.wso2.com/
> 


-- 
Shakila Sasikaran
Software Engineer
Mobile :+94 (0) 77 526 6848
shakila@wso2.com
WSO2, Inc.
lean . enterprise . middleware
http://www.wso2.com/


[Attachment #5 (text/html)]

<div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr">Hi Keerthika,  \
<div><br></div><div>This is reproducible in EI 6.4.0 WUM updated pack. According to \
[1] and [2] we are checking whether the DELETE request contains payload with the \
NO_ENTITY_BODY property. And if this NO_ENTITY_BODY is not set or set to false, we \
send the request with body. Hence, shall we add NO_ENTITY_BODY in your template \
before the call mediator and try? I also verified this. If this works, we can modify \
the PR accordingly.</div><div><br></div><div><div><b>  &lt;property \
name=&quot;NO_ENTITY_BODY&quot; value=&quot;true&quot; scope=&quot;axis2&quot; \
type=&quot;BOOLEAN&quot;/&gt;</b></div></div><div><br></div><div>[1] <a \
href="https://github.com/wso2-support/wso2-synapse/blob/support-2.1.7-wso2v80/modules/ \
transports/core/nhttp/src/main/java/org/apache/synapse/transport/passthru/PassThroughHttpSender.java#L388" \
target="_blank">https://github.com/wso2-support/wso2-synapse/blob/support-2.1.7-wso2v8 \
0/modules/transports/core/nhttp/src/main/java/org/apache/synapse/transport/passthru/PassThroughHttpSender.java#L388</a></div><div>[2] \
<a href="https://github.com/wso2/wso2-synapse/blob/master/modules/transports/core/nhttp/src/main/java/org/apache/synapse/transport/passthru/util/RelayUtils.java#L227" \
target="_blank">https://github.com/wso2/wso2-synapse/blob/master/modules/transports/co \
re/nhttp/src/main/java/org/apache/synapse/transport/passthru/util/RelayUtils.java#L227</a><br></div><div><br></div><div>Thanks</div></div></div></div></div><br><div \
class="gmail_quote"><div dir="ltr">On Wed, Nov 21, 2018 at 9:32 AM Shakila Sasikaran \
&lt;<a href="mailto:shakila@wso2.com" target="_blank">shakila@wso2.com</a>&gt; \
wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 \
.8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div dir="ltr"><div \
dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div \
dir="ltr"><div dir="ltr"><div dir="ltr">Hi Keerthika,</div><div \
dir="ltr"><br></div><div dir="ltr">I tried with a DELETE request in proxy service and \
template mediator directly and the DELETE request doesn&#39;t contain the body even \
if I call the service with a request body and define the payload before the call \
mediator. Then, just edited one template as [1] inside the connector to make sure \
whether this behavior is reproducible in connector.  </div><div dir="ltr">When I \
invoke this particular method also I don&#39;t see the request body in the delete \
request [2]. Please note that I tried this on both EI 6.1.1 and EI 6.4.0. Therefore, \
I feel it would be better if we check the root cause of this issue?</div><div \
dir="ltr"><br></div><div dir="ltr">[1]  </div><div dir="ltr"><pre><pre><font \
color="#000000" face="Menlo">&lt;template name=&quot;deleteObject&quot; \
xmlns=&quot;<a href="http://ws.apache.org/ns/synapse" \
target="_blank">http://ws.apache.org/ns/synapse</a>&quot;&gt;  &lt;sequence&gt;
        &lt;class name=&quot;org.wso2.carbon.connector.amazons3.auth.RemoveAmazonS3Context&quot;/&gt;
                
        &lt;class name=&quot;org.wso2.carbon.connector.amazons3.auth.AmazonS3AuthConnector&quot;/&gt;
  &lt;payloadFactory media-type=&quot;xml&quot;&gt;
            &lt;format&gt;
                &lt;soapenv:Envelope xmlns:soapenv=&quot;<a \
href="http://schemas.xmlsoap.org/soap/envelope/" \
target="_blank">http://schemas.xmlsoap.org/soap/envelope/</a>&quot;&gt;  \
&lt;soapenv:Header/&gt;  &lt;soapenv:Body&gt;
                        &lt;a&gt;test&lt;/a&gt;
                    &lt;/soapenv:Body&gt;
                &lt;/soapenv:Envelope&gt;
            &lt;/format&gt;
            &lt;args/&gt;
        &lt;/payloadFactory&gt;
        &lt;filter xpath=&quot;string($ctx:authenticationCode) and \
$ctx:authenticationCode != &#39;&#39;&quot;&gt;  &lt;then&gt;
                &lt;property name=&quot;Authorization&quot; \
expression=&quot;$ctx:authenticationCode&quot; scope=&quot;transport&quot; \
type=&quot;STRING&quot;/&gt;  &lt;/then&gt;
        &lt;/filter&gt;
        &lt;property name=&quot;uri.var.mockURL&quot; value=&quot;<a \
                href="http://www.mocky.io" \
                target="_blank">http://www.mocky.io</a>&quot;/&gt;
        &lt;property name=&quot;uri.var.path&quot; \
                value=&quot;v2/56c4048611000006232824a9&quot;/&gt;
        &lt;property name=&quot;uri.var.query&quot; value=&quot;&quot;/&gt;
        &lt;call&gt;
            &lt;endpoint&gt;
                &lt;http method=&quot;delete&quot; \
uri-template=&quot;{uri.var.mockURL}/{+uri.var.path}/{+uri.var.query}&quot;/&gt;  \
&lt;/endpoint&gt;  &lt;/call&gt;
    &lt;/sequence&gt;
&lt;/template&gt;<span style="font-size:9pt"><br></span></font></pre></pre></div><div \
dir="ltr"><br></div><div dir="ltr">[2]</div><div \
dir="ltr"><br><div><div><div>[2018-11-21 09:29:58,644] [EI-Core] DEBUG - wire \
HTTP-Listener I/O dispatcher-1 &gt;&gt; &quot;POST /services/Test \
HTTP/1.1[\r][\n]&quot;</div><div>[2018-11-21 09:29:58,644] [EI-Core] DEBUG - wire \
HTTP-Listener I/O dispatcher-1 &gt;&gt; &quot;Content-Type: \
application/xml[\r][\n]&quot;</div><div>[2018-11-21 09:29:58,644] [EI-Core] DEBUG - \
wire HTTP-Listener I/O dispatcher-1 &gt;&gt; &quot;cache-control: \
no-cache[\r][\n]&quot;</div><div>[2018-11-21 09:29:58,644] [EI-Core] DEBUG - wire \
HTTP-Listener I/O dispatcher-1 &gt;&gt; &quot;Postman-Token: \
5a1272a8-4d46-48d0-8abc-61d0eaadd1cc[\r][\n]&quot;</div><div>[2018-11-21 \
09:29:58,645] [EI-Core] DEBUG - wire HTTP-Listener I/O dispatcher-1 &gt;&gt; \
&quot;User-Agent: PostmanRuntime/7.3.0[\r][\n]&quot;</div><div>[2018-11-21 \
09:29:58,646] [EI-Core] DEBUG - wire HTTP-Listener I/O dispatcher-1 &gt;&gt; \
&quot;Accept: */*[\r][\n]&quot;</div><div>[2018-11-21 09:29:58,647] [EI-Core] DEBUG - \
wire HTTP-Listener I/O dispatcher-1 &gt;&gt; &quot;Host: \
localhost:8280[\r][\n]&quot;</div><div>[2018-11-21 09:29:58,647] [EI-Core] DEBUG - \
wire HTTP-Listener I/O dispatcher-1 &gt;&gt; &quot;accept-encoding: gzip, \
deflate[\r][\n]&quot;</div><div>[2018-11-21 09:29:58,648] [EI-Core] DEBUG - wire \
HTTP-Listener I/O dispatcher-1 &gt;&gt; &quot;content-length: \
520[\r][\n]&quot;</div><div>[2018-11-21 09:29:58,669] [EI-Core] DEBUG - wire \
HTTP-Listener I/O dispatcher-1 &gt;&gt; &quot;Connection: \
keep-alive[\r][\n]&quot;</div><div>[2018-11-21 09:29:58,670] [EI-Core] DEBUG - wire \
HTTP-Listener I/O dispatcher-1 &gt;&gt; &quot;[\r][\n]&quot;</div><div>[2018-11-21 \
09:29:58,670] [EI-Core] DEBUG - wire HTTP-Listener I/O dispatcher-1 &gt;&gt; \
&quot;&lt;deleteObject&gt;[\n]&quot;</div><div>[2018-11-21 09:29:58,670] [EI-Core] \
DEBUG - wire HTTP-Listener I/O dispatcher-1 &gt;&gt; \
&quot;&lt;accessKeyId&gt;key123&lt;/accessKeyId&gt;[\n]&quot;</div><div>[2018-11-21 \
09:29:58,670] [EI-Core] DEBUG - wire HTTP-Listener I/O dispatcher-1 &gt;&gt; \
&quot;&lt;secretAccessKey&gt;1234&lt;/secretAccessKey&gt;[\n]&quot;</div><div>[2018-11-21 \
09:29:58,671] [EI-Core] DEBUG - wire HTTP-Listener I/O dispatcher-1 &gt;&gt; \
&quot;&lt;methodType&gt;DELETE&lt;/methodType&gt;[\n]&quot;</div><div>[2018-11-21 \
09:29:58,671] [EI-Core] DEBUG - wire HTTP-Listener I/O dispatcher-1 &gt;&gt; \
&quot;&lt;contentType&gt;application/xml&lt;/contentType&gt;[\n]&quot;</div><div>[2018-11-21 \
09:29:58,671] [EI-Core] DEBUG - wire HTTP-Listener I/O dispatcher-1 &gt;&gt; \
&quot;&lt;isXAmzDate&gt;true&lt;/isXAmzDate&gt;[\n]&quot;</div><div>[2018-11-21 \
09:29:58,671] [EI-Core] DEBUG - wire HTTP-Listener I/O dispatcher-1 &gt;&gt; \
&quot;&lt;contentLength&gt;0&lt;/contentLength&gt;[\n]&quot;</div><div>[2018-11-21 \
09:29:58,671] [EI-Core] DEBUG - wire HTTP-Listener I/O dispatcher-1 &gt;&gt; \
&quot;&lt;bucketName&gt;testbuck&lt;/bucketName&gt;[\n]&quot;</div><div>[2018-11-21 \
09:29:58,671] [EI-Core] DEBUG - wire HTTP-Listener I/O dispatcher-1 &gt;&gt; \
&quot;&lt;host&gt;<a href="http://s3.us-east-2.amazonaws.com" \
target="_blank">s3.us-east-2.amazonaws.com</a>&lt;/host&gt;[\n]&quot;</div><div>[2018-11-21 \
09:29:58,671] [EI-Core] DEBUG - wire HTTP-Listener I/O dispatcher-1 &gt;&gt; \
&quot;&lt;bucketUrl&gt;<a href="http://s3.us-east-2.amazonaws.com/testbuck" \
target="_blank">http://s3.us-east-2.amazonaws.com/testbuck</a>&lt;/bucketUrl&gt;[\n]&quot;</div><div>[2018-11-21 \
09:29:58,671] [EI-Core] DEBUG - wire HTTP-Listener I/O dispatcher-1 &gt;&gt; \
&quot;&lt;contentMD5/&gt;[\n]&quot;</div><div>[2018-11-21 09:29:58,671] [EI-Core] \
DEBUG - wire HTTP-Listener I/O dispatcher-1 &gt;&gt; \
&quot;&lt;region&gt;us-east-2&lt;/region&gt;[\n]&quot;</div><div>[2018-11-21 \
09:29:58,672] [EI-Core] DEBUG - wire HTTP-Listener I/O dispatcher-1 &gt;&gt; \
&quot;&lt;expect/&gt;[\n]&quot;</div><div>[2018-11-21 09:29:58,672] [EI-Core] DEBUG - \
wire HTTP-Listener I/O dispatcher-1 &gt;&gt; \
&quot;&lt;xAmzSecurityToken/&gt;[\n]&quot;</div><div>[2018-11-21 09:29:58,672] \
[EI-Core] DEBUG - wire HTTP-Listener I/O dispatcher-1 &gt;&gt; \
&quot;&lt;xAmzAcl&gt;public-read&lt;/xAmzAcl&gt;[\n]&quot;</div><div>[2018-11-21 \
09:29:58,672] [EI-Core] DEBUG - wire HTTP-Listener I/O dispatcher-1 &gt;&gt; \
&quot;&lt;shortDate&gt;public-read&lt;/shortDate&gt;[\n]&quot;</div><div>[2018-11-21 \
09:29:58,672] [EI-Core] DEBUG - wire HTTP-Listener I/O dispatcher-1 &gt;&gt; \
&quot;&lt;/deleteObject&gt;&quot;</div><div>[2018-11-21 09:29:58,689] [EI-Core] ERROR \
- SynapseJsonPath #stringValueOf. Error evaluating JSON Path &lt;$.bucketPolicy&gt;. \
Returning empty result. Error&gt;&gt;&gt; invalid path</div><div>[2018-11-21 \
09:29:59,288] [EI-Core] DEBUG - wire HTTP-Sender I/O dispatcher-2 &lt;&lt; \
&quot;DELETE /v2/56c4048611000006232824a9/ \
HTTP/1.1[\r][\n]&quot;</div><div>[2018-11-21 09:29:59,289] [EI-Core] DEBUG - wire \
HTTP-Sender I/O dispatcher-2 &lt;&lt; &quot;Authorization: AWS4-HMAC-SHA256 \
Credential=key123/20181121/us-east-2/s3/aws4_request,SignedHeaders=content-type;host;x \
-amz-acl;x-amz-content-sha256;x-amz-date,Signature=75620927fb3382c5d53ec98f6c561beb4c8ade73acc3c6494565b68148861cb3[\r][\n]&quot;</div><div>[2018-11-21 \
09:29:59,289] [EI-Core] DEBUG - wire HTTP-Sender I/O dispatcher-2 &lt;&lt; \
&quot;Accept: */*[\r][\n]&quot;</div><div>[2018-11-21 09:29:59,289] [EI-Core] DEBUG - \
wire HTTP-Sender I/O dispatcher-2 &lt;&lt; &quot;x-amz-acl: \
public-read[\r][\n]&quot;</div><div>[2018-11-21 09:29:59,289] [EI-Core] DEBUG - wire \
HTTP-Sender I/O dispatcher-2 &lt;&lt; &quot;Postman-Token: \
5a1272a8-4d46-48d0-8abc-61d0eaadd1cc[\r][\n]&quot;</div><div>[2018-11-21 \
09:29:59,289] [EI-Core] DEBUG - wire HTTP-Sender I/O dispatcher-2 &lt;&lt; \
&quot;cache-control: no-cache[\r][\n]&quot;</div><div>[2018-11-21 09:29:59,289] \
[EI-Core] DEBUG - wire HTTP-Sender I/O dispatcher-2 &lt;&lt; &quot;accept-encoding: \
gzip, deflate[\r][\n]&quot;</div><div>[2018-11-21 09:29:59,289] [EI-Core] DEBUG - \
wire HTTP-Sender I/O dispatcher-2 &lt;&lt; &quot;Content-Type: \
application/xml[\r][\n]&quot;</div><div>[2018-11-21 09:29:59,289] [EI-Core] DEBUG - \
wire HTTP-Sender I/O dispatcher-2 &lt;&lt; &quot;Host: <a href="http://www.mocky.io" \
target="_blank">www.mocky.io</a>[\r][\n]&quot;</div><div>[2018-11-21 09:29:59,289] \
[EI-Core] DEBUG - wire HTTP-Sender I/O dispatcher-2 &lt;&lt; &quot;Connection: \
Keep-Alive[\r][\n]&quot;</div><div>[2018-11-21 09:29:59,289] [EI-Core] DEBUG - wire \
HTTP-Sender I/O dispatcher-2 &lt;&lt; &quot;User-Agent: \
Synapse-PT-HttpComponents-NIO[\r][\n]&quot;</div><div>[2018-11-21 09:29:59,290] \
[EI-Core] DEBUG - wire HTTP-Sender I/O dispatcher-2 &lt;&lt; \
&quot;[\r][\n]&quot;</div><div>[2018-11-21 09:29:59,501] [EI-Core] DEBUG - wire \
HTTP-Sender I/O dispatcher-2 &gt;&gt; &quot;HTTP/1.1 200 \
OK[\r][\n]&quot;</div></div></div><div><br></div><div>Thanks</div></div></div></div></div></div></div></div></div></div></div><br><div \
class="gmail_quote"><div dir="ltr">On Mon, Nov 19, 2018 at 9:23 PM Keerthika \
Mahendralingam &lt;<a href="mailto:keerthika@wso2.com" \
target="_blank">keerthika@wso2.com</a>&gt; wrote:<br></div><blockquote \
class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc \
solid;padding-left:1ex"><div dir="ltr"><div dir="ltr">Hi \
Shaki,<div><br></div><div>Yes, my intension is to send a delete request without the \
body. But EI is passing the existing payload in the context with the delete request \
as well. Please find the wire log [1]. But as you said EI should not pass the body \
with the delete request. Do you think I am missing anything or is this needs to fixed \
from the EI side?</div><br><div style="font-family:monospace,monospace">[2018-11-13 \
12:16:47,526] [EI-Core] DEBUG - wire HTTP-Sender I/O dispatcher-1 &lt;&lt; \
&quot;DELETE /testbuckkkbiru/?replication HTTP/1.1[\r][\n]&quot;</div><div \
style="font-family:monospace,monospace">[2018-11-13 12:16:47,526] [EI-Core] DEBUG - \
wire HTTP-Sender I/O dispatcher-1 &lt;&lt; &quot;Authorization: AWS4-HMAC-SHA256 \
Credential=XXXXXX/20181113/us-east-2/s3/aws4_request,SignedHeaders=content-type;host;x \
-amz-content-sha256;x-amz-date,Signature=a276ba88791386bfbce8650839a880e7e[\r][\n]&quot;</div><div \
style="font-family:monospace,monospace">[2018-11-13 12:16:47,526] [EI-Core] DEBUG - \
wire HTTP-Sender I/O dispatcher-1 &lt;&lt; &quot;Origin: \
chrome-extension://fhbjgbiflinjbdggehcddcbncdddomop[\r][\n]&quot;</div><div \
style="font-family:monospace,monospace">[2018-11-13 12:16:47,527] [EI-Core] DEBUG - \
wire HTTP-Sender I/O dispatcher-1 &lt;&lt; &quot;x-amz-content-sha256: \
UNSIGNED-PAYLOAD[\r][\n]&quot;</div><div \
style="font-family:monospace,monospace">[2018-11-13 12:16:47,527] [EI-Core] DEBUG - \
wire HTTP-Sender I/O dispatcher-1 &lt;&lt; &quot;Accept: */*[\r][\n]&quot;</div><div \
style="font-family:monospace,monospace">[2018-11-13 12:16:47,527] [EI-Core] DEBUG - \
wire HTTP-Sender I/O dispatcher-1 &lt;&lt; &quot;Cache-Control: \
no-cache[\r][\n]&quot;</div><div style="font-family:monospace,monospace">[2018-11-13 \
12:16:47,527] [EI-Core] DEBUG - wire HTTP-Sender I/O dispatcher-1 &lt;&lt; \
&quot;x-amz-date: Tue, 13 Nov 2018 06:46:47 GMT[\r][\n]&quot;</div><div \
style="font-family:monospace,monospace">[2018-11-13 12:16:47,527] [EI-Core] DEBUG - \
wire HTTP-Sender I/O dispatcher-1 &lt;&lt; &quot;Postman-Token: \
c82f33f9-2c85-68d9-67f4-5a43a5d98049[\r][\n]&quot;</div><div \
style="font-family:monospace,monospace">[2018-11-13 12:16:47,527] [EI-Core] DEBUG - \
wire HTTP-Sender I/O dispatcher-1 &lt;&lt; &quot;Accept-Encoding: gzip, \
deflate[\r][\n]&quot;</div><div style="font-family:monospace,monospace">[2018-11-13 \
12:16:47,527] [EI-Core] DEBUG - wire HTTP-Sender I/O dispatcher-1 &lt;&lt; \
&quot;Accept-Language: en-US,en;q=0.9[\r][\n]&quot;</div><div \
style="font-family:monospace,monospace">[2018-11-13 12:16:47,527] [EI-Core] DEBUG - \
wire HTTP-Sender I/O dispatcher-1 &lt;&lt; &quot;Content-Type: \
application/xml[\r][\n]&quot;</div><div \
style="font-family:monospace,monospace">[2018-11-13 12:16:47,527] [EI-Core] DEBUG - \
wire HTTP-Sender I/O dispatcher-1 &lt;&lt; &quot;Transfer-Encoding: \
chunked[\r][\n]&quot;</div><div style="font-family:monospace,monospace">[2018-11-13 \
12:16:47,527] [EI-Core] DEBUG - wire HTTP-Sender I/O dispatcher-1 &lt;&lt; \
&quot;Host: <a href="http://s3.us-east-2.amazonaws.com" \
target="_blank">s3.us-east-2.amazonaws.com</a>[\r][\n]&quot;</div><div \
style="font-family:monospace,monospace">[2018-11-13 12:16:47,527] [EI-Core] DEBUG - \
wire HTTP-Sender I/O dispatcher-1 &lt;&lt; &quot;Connection: \
Keep-Alive[\r][\n]&quot;</div><div \
style="font-family:monospace,monospace">[2018-11-13 12:16:47,528] [EI-Core] DEBUG - \
wire HTTP-Sender I/O dispatcher-1 &lt;&lt; &quot;User-Agent: \
Synapse-PT-HttpComponents-NIO[\r][\n]&quot;</div><div \
style="font-family:monospace,monospace">[2018-11-13 12:16:47,528] [EI-Core] DEBUG - \
wire HTTP-Sender I/O dispatcher-1 &lt;&lt; &quot;[\r][\n]&quot;</div><div \
style="font-family:monospace,monospace">[2018-11-13 12:16:47,528] [EI-Core] DEBUG - \
wire HTTP-Sender I/O dispatcher-1 &lt;&lt; &quot;271[\r][\n]&quot;</div><div \
style="font-family:monospace,monospace">[2018-11-13 12:16:47,528] [EI-Core] DEBUG - \
wire HTTP-Sender I/O dispatcher-1 &lt;&lt; &quot;<span \
style="background-color:rgb(249,203,156)">&lt;deleteBucketReplication&gt;[\n]&quot;</span></div><div \
style="font-family:monospace,monospace"><span \
style="background-color:rgb(249,203,156)">[2018-11-13 12:16:47,528] [EI-Core] DEBUG - \
wire HTTP-Sender I/O dispatcher-1 &lt;&lt; &quot;      \
&lt;accessKeyId&gt;XXXXXXXX&lt;/accessKeyId&gt;[\n]&quot;</span></div><div \
style="font-family:monospace,monospace"><span \
style="background-color:rgb(249,203,156)">[2018-11-13 12:16:47,528] [EI-Core] DEBUG - \
wire HTTP-Sender I/O dispatcher-1 &lt;&lt; &quot;      \
&lt;secretAccessKey&gt;XXXXXXXX&lt;/secretAccessKey&gt;[\n]&quot;</span></div><div \
style="font-family:monospace,monospace"><span \
style="background-color:rgb(249,203,156)">[2018-11-13 12:16:47,528] [EI-Core] DEBUG - \
wire HTTP-Sender I/O dispatcher-1 &lt;&lt; &quot;      \
&lt;methodType&gt;DELETE&lt;/methodType&gt;[\n]&quot;</span></div><div \
style="font-family:monospace,monospace"><span \
style="background-color:rgb(249,203,156)">[2018-11-13 12:16:47,528] [EI-Core] DEBUG - \
wire HTTP-Sender I/O dispatcher-1 &lt;&lt; &quot;      \
&lt;contentType&gt;application/xml&lt;/contentType&gt;[\n]&quot;</span></div><div \
style="font-family:monospace,monospace"><span \
style="background-color:rgb(249,203,156)">[2018-11-13 12:16:47,528] [EI-Core] DEBUG - \
wire HTTP-Sender I/O dispatcher-1 &lt;&lt; &quot;      \
&lt;isXAmzDate&gt;true&lt;/isXAmzDate&gt;[\n]&quot;</span></div><div \
style="font-family:monospace,monospace"><span \
style="background-color:rgb(249,203,156)">[2018-11-13 12:16:47,528] [EI-Core] DEBUG - \
wire HTTP-Sender I/O dispatcher-1 &lt;&lt; &quot;      \
&lt;contentLength&gt;0&lt;/contentLength&gt;[\n]&quot;</span></div><div \
style="font-family:monospace,monospace"><span \
style="background-color:rgb(249,203,156)">[2018-11-13 12:16:47,528] [EI-Core] DEBUG - \
wire HTTP-Sender I/O dispatcher-1 &lt;&lt; &quot;      \
&lt;bucketName&gt;testbuck&lt;/bucketName&gt;[\n]&quot;</span></div><div \
style="font-family:monospace,monospace"><span \
style="background-color:rgb(249,203,156)">[2018-11-13 12:16:47,528] [EI-Core] DEBUG - \
wire HTTP-Sender I/O dispatcher-1 &lt;&lt; &quot;      &lt;host&gt;<a \
href="http://s3.us-east-2.amazonaws.com" \
target="_blank">s3.us-east-2.amazonaws.com</a>&lt;/host&gt;[\n]&quot;</span></div><div \
style="font-family:monospace,monospace"><span \
style="background-color:rgb(249,203,156)">[2018-11-13 12:16:47,528] [EI-Core] DEBUG - \
wire HTTP-Sender I/O dispatcher-1 &lt;&lt; &quot;      &lt;bucketUrl&gt;<a \
href="http://s3.us-east-2.amazonaws.com/testbuck" \
target="_blank">http://s3.us-east-2.amazonaws.com/testbuck</a>&lt;/bucketUrl&gt;[\n]&quot;</span></div><div \
style="font-family:monospace,monospace"><span \
style="background-color:rgb(249,203,156)">[2018-11-13 12:16:47,528] [EI-Core] DEBUG - \
wire HTTP-Sender I/O dispatcher-1 &lt;&lt; &quot;      \
&lt;contentMD5/&gt;[\n]&quot;</span></div><div \
style="font-family:monospace,monospace"><span \
style="background-color:rgb(249,203,156)">[2018-11-13 12:16:47,529] [EI-Core] DEBUG - \
wire HTTP-Sender I/O dispatcher-1 &lt;&lt; &quot;      \
&lt;region&gt;us-east-2&lt;/region&gt;[\n]&quot;</span></div><div \
style="font-family:monospace,monospace"><span \
style="background-color:rgb(249,203,156)">[2018-11-13 12:16:47,529] [EI-Core] DEBUG - \
wire HTTP-Sender I/O dispatcher-1 &lt;&lt; &quot;      \
&lt;expect/&gt;[\n]&quot;</span></div><div \
style="font-family:monospace,monospace"><span \
style="background-color:rgb(249,203,156)">[2018-11-13 12:16:47,529] [EI-Core] DEBUG - \
wire HTTP-Sender I/O dispatcher-1 &lt;&lt; &quot;      \























</div></div><div><div><br><div class="gmail_quote"><div dir="ltr">On Tue, Oct 9, 2018 \
at 11:52 AM Biruntha Gnaneswaran &lt;<a href="mailto:biruntha@wso2.com" \
target="_blank">biruntha@wso2.com</a>&gt; wrote:<br></div><blockquote \
class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc \
solid;padding-left:1ex"><div dir="ltr"><div dir="ltr"><div>Hi \
Shakila,</div><div><br></div><div>I have tried as you mentioned but still I&#39;m \
getting &quot;SignatureDoesNotMatch&quot; error. So, I have posted stackoverflow \
question regarding this [1].<br></div><div><br></div><div>[1] <a \
href="https://stackoverflow.com/questions/52714250/getting-signaturedoesnotmatch-error-with-delete-bucket-replication-operation-i" \
target="_blank">https://stackoverflow.com/questions/52714250/getting-signaturedoesnotm \
atch-error-with-delete-bucket-replication-operation-i</a></div><div><br></div><div>Thanks,<br></div></div></div><div \
class="gmail_extra"><br><div class="gmail_quote">On Mon, Oct 8, 2018 at 1:56 PM, \
Shakila Sasikaran <span dir="ltr">&lt;<a href="mailto:shakila@wso2.com" \
target="_blank">shakila@wso2.com</a>&gt;</span> wrote:<br><blockquote \
class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc \
solid;padding-left:1ex"><div dir="ltr"><div dir="ltr">Hi \
Biruntha,<div><br></div><div>As per the API documentation [1], I think the bucket URL \
should be like &lt;BUCKET_NAME&gt;/&lt;HOST&gt;. Could you please try with  <b><a \
href="http://testbuckkkbiru.s3-us-east-2.amazonaws.com" \
target="_blank">http://testbuckkkbiru.s3-us-east-2.amazonaws.com</a></b>?</div><div><br><div>[1] \
<a href="https://docs.aws.amazon.com/AmazonS3/latest/API/RESTBucketDELETEreplication.html" \
target="_blank">https://docs.aws.amazon.com/AmazonS3/latest/API/RESTBucketDELETEreplic \
ation.html</a></div><div><br></div><div>Thanks</div></div></div></div><div><div><br><div \
class="gmail_quote"><div dir="ltr">On Fri, Oct 5, 2018 at 3:00 PM Biruntha \
Gnaneswaran &lt;<a href="mailto:biruntha@wso2.com" \
target="_blank">biruntha@wso2.com</a>&gt; wrote:<br></div><blockquote \
class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc \
solid;padding-left:1ex"><div dir="ltr"><div dir="ltr">Hi All,<br><br>I&#39;m trying \
to use deleteBucketReplication operation in amazon s3 connector [1] &amp; [2]. But \
I&#39;m getting &quot;SignatureDoesNotMatch&quot; error with the sample request [3] \
&amp; [4].   When I try this method with host and bucketUrl as in [5], I&#39;m \
getting error as in [6]. Am I missed anything? Appreciate your input on \
this.<br><br><br>[1] <a \
href="https://docs.aws.amazon.com/AmazonS3/latest/API/RESTBucketDELETEreplication.html" \
target="_blank">https://docs.aws.amazon.com/AmazonS3/latest/API/RESTBucketDELETEreplication.html</a><br>[2] \
<a href="https://docs.wso2.com/display/ESBCONNECTORS/Working+with+Buckets+in+Amazon+S3#WorkingwithBucketsinAmazonS3-deleteBucketReplication" \
target="_blank">https://docs.wso2.com/display/ESBCONNECTORS/Working+with+Buckets+in+Am \
azon+S3#WorkingwithBucketsinAmazonS3-deleteBucketReplication</a><br>[3]<br>&lt;deleteBucketReplication&gt;<br> \
&lt;accessKeyId&gt;xxxxxx&lt;/accessKeyId&gt;<br>       \
&lt;secretAccessKey&gt;xxxxxxxxxx&lt;/secretAccessKey&gt;<br>       \
&lt;methodType&gt;DELETE&lt;/methodType&gt;<br>       \
&lt;contentType&gt;application/xml&lt;/contentType&gt;<br>       \
&lt;isXAmzDate&gt;true&lt;/isXAmzDate&gt;<br>       &lt;bucketUrl&gt;<a \
href="http://testbuckkkbiru.s3.amazonaws.com" \
target="_blank">http://testbuckkkbiru.s3.amazonaws.com</a>&lt;/bucketUrl&gt;<br>      \
&lt;contentLength&gt;&lt;/contentLength&gt;<br>       \
&lt;contentMD5&gt;&lt;/contentMD5&gt;<br>       \
&lt;region&gt;us-east-2&lt;/region&gt;<br>       \
&lt;bucketName&gt;testbuckkkbiru&lt;/bucketName&gt;<br>       &lt;host&gt;<a \
href="http://s3.amazonaws.com" target="_blank">s3.amazonaws.com</a>&lt;/host&gt;<br>  \
&lt;expect&gt;&lt;/expect&gt;<br>       \
&lt;xAmzSecurityToken&gt;&lt;/xAmzSecurityToken&gt;<br>       \
&lt;xAmzAcl&gt;public-read&lt;/xAmzAcl&gt;<br>&lt;/deleteBucketReplication&gt;<br>[4]<br>&lt;?xml \
version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;<br>&lt;proxy xmlns=&quot;<a \
href="http://ws.apache.org/ns/synapse" \
target="_blank">http://ws.apache.org/ns/synapse</a>&quot;<br>             \
name=&quot;amazons3_deleteBucketReplication&quot;<br>             \
startOnLoad=&quot;true&quot;<br>             statistics=&quot;disable&quot;<br>       \
trace=&quot;disable&quot;<br>             transports=&quot;http,https&quot;&gt;<br>   \
&lt;target&gt;<br>           &lt;inSequence \
onError=&quot;faultHandlerSeq&quot;&gt;<br>                 &lt;property \
expression=&quot;//accessKeyId/text()&quot; name=&quot;accessKeyId&quot;/&gt;<br>     \
&lt;property expression=&quot;//secretAccessKey/text()&quot; \
name=&quot;secretAccessKey&quot;/&gt;<br>                 &lt;property \
expression=&quot;//methodType/text()&quot; name=&quot;methodType&quot;/&gt;<br>       \
&lt;property expression=&quot;//contentType/text()&quot; \
name=&quot;contentType&quot;/&gt;<br>                 &lt;property \
expression=&quot;//bucketName/text()&quot; name=&quot;bucketName&quot;/&gt;<br>       \
&lt;property expression=&quot;//region/text()&quot; name=&quot;region&quot;/&gt;<br>  \
&lt;property expression=&quot;//isXAmzDate/text()&quot; \
name=&quot;isXAmzDate&quot;/&gt;<br>                 &lt;property \
expression=&quot;//contentMD5/text()&quot; name=&quot;contentMD5&quot;/&gt;<br>       \
&lt;property expression=&quot;//xAmzSecurityToken/text()&quot; \
name=&quot;xAmzSecurityToken&quot;/&gt;<br>                 &lt;property \
expression=&quot;//host/text()&quot; name=&quot;host&quot;/&gt;<br>                 \
&lt;property expression=&quot;//expect/text()&quot; name=&quot;expect&quot;/&gt;<br>  \
&lt;property expression=&quot;//contentLength/text()&quot; \
name=&quot;contentLength&quot;/&gt;<br>                 &lt;property \
expression=&quot;//xAmzMfa/text()&quot; name=&quot;xAmzMfa&quot;/&gt;<br>             \
&lt;property expression=&quot;//bucketUrl/text()&quot; \
name=&quot;bucketUrl&quot;/&gt;<br>                 &lt;amazons3.init&gt;<br>         \
&lt;accessKeyId&gt;{$ctx:accessKeyId}&lt;/accessKeyId&gt;<br>                       \
&lt;secretAccessKey&gt;{$ctx:secretAccessKey}&lt;/secretAccessKey&gt;<br>             \
&lt;methodType&gt;{$ctx:methodType}&lt;/methodType&gt;<br>                       \
&lt;contentType&gt;{$ctx:contentType}&lt;/contentType&gt;<br>                       \
&lt;bucketName&gt;{$ctx:bucketName}&lt;/bucketName&gt;<br>                       \
&lt;isXAmzDate&gt;{$ctx:isXAmzDate}&lt;/isXAmzDate&gt;<br>                       \
&lt;contentMD5&gt;{$ctx:contentMD5}&lt;/contentMD5&gt;<br>                       \
&lt;xAmzSecurityToken&gt;{$ctx:xAmzSecurityToken}&lt;/xAmzSecurityToken&gt;<br>       \
&lt;region&gt;{$ctx:region}&lt;/region&gt;<br>                       \
&lt;host&gt;{$ctx:host}&lt;/host&gt;<br>                       \
&lt;expect&gt;{$ctx:expect}&lt;/expect&gt;<br>                       \
&lt;contentLength&gt;{$ctx:contentLength}&lt;/contentLength&gt;<br>                   \
&lt;xAmzMfa&gt;{$ctx:xAmzMfa}&lt;/xAmzMfa&gt;<br>                 \
&lt;/amazons3.init&gt;<br>                 \
&lt;amazons3.deleteBucketReplication&gt;<br>                       \
&lt;bucketUrl&gt;{$ctx:bucketUrl}&lt;/bucketUrl&gt;<br>                 \
&lt;/amazons3.deleteBucketReplication&gt;<br>                 &lt;respond/&gt;<br>    \
&lt;/inSequence&gt;<br>           &lt;outSequence&gt;<br>                 \
&lt;respond/&gt;<br>           &lt;/outSequence&gt;<br>     &lt;/target&gt;<br>     \
&lt;description/&gt;<br>&lt;/proxy&gt;<br><br>[5]<br>&lt;host&gt;<a \
href="http://s3-us-east-2.amazonaws.com" \
target="_blank">s3-us-east-2.amazonaws.com</a>&lt;/host&gt; <br>&lt;bucketUrl&gt;<a \
href="http://s3-us-east-2.amazonaws.com/testbuckkkbiru" \
target="_blank">http://s3-us-east-2.amazonaws.com/testbuckkkbiru</a>&lt;/bucketUrl&gt;<br><br>[6] \
<br>&lt;Error&gt;&lt;Code&gt;RequestTimeout&lt;/Code&gt;&lt;Message&gt;Your socket \
connection to the server was not read from or written to within the timeout period. \
Idle connections will be \
closed.&lt;/Message&gt;&lt;RequestId&gt;DEEACD868FB28742&lt;/RequestId&gt;&lt;HostId&g \
t;zVKD6i4XzrWD7Dh8htoqPrlDypGClgB4SjdCD+4IQz7IkrqP1D7Xt4l+R9DhfsUSEefqZzlZoXo=&lt;/HostId&gt;&lt;/Error&gt;</div><div \
dir="ltr"><br></div><div>Thanks,<br></div><div dir="ltr">-- <br><div><div \
dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><div><div \
dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><div><div \
dir="ltr"><div><div dir="ltr"><div><div><span \
style="font-family:georgia,serif">Biruntha<br></span><br><div><div>Software \
Engineer<br></div>WSO2<br></div>Email:<span><span style="font-family:georgia,serif"> \
<a href="mailto:biruntha@wso2.com" \
target="_blank">biruntha@wso2.com</a></span></span><font \
color="#666666"><br></font></div><div><font color="#666666"><span \
style="color:rgb(0,0,0)">LinkedIn: </span></font><a \
href="https://lk.linkedin.com/in/biruntha" \
target="_blank"><span>https://lk.linkedin.com/in/biruntha</span></a></div><div><span><span \
style="font-family:georgia,serif">Mobile : \
+94773718986<br></span></span></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div>
 </div></div>
</blockquote></div><br clear="all"><div><br></div></div></div><span><font \
color="#888888">-- <br><div dir="ltr" data-smartmail="gmail_signature"><div \
dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><div><div \
dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><span><font color="#888888">Shakila \
Sasikaran</font><br><font color="#888888">Software Engineer</font><br><font \
color="#888888">Mobile :+94 (0) 77 526 6848</font><div \
style="color:rgb(136,136,136)"><a href="mailto:shakila@wso2.com" \
target="_blank">shakila@wso2.com</a></div><div style="color:rgb(136,136,136)"><span \
style="color:rgb(102,102,102);font-size:small">WSO2, Inc.  </span><br \
style="color:rgb(102,102,102);font-size:small"><span \
style="color:rgb(102,102,102);font-size:small">lean . enterprise . \
middleware</span><br></div><div><font size="2" color="#666666"><a \
href="http://www.wso2.com/" \
target="_blank">http://www.wso2.com/</a></font><br></div></span></div></div></div></div></div></div></div></div></div></div></div></div></div></div>
 </font></span></blockquote></div><br><br clear="all"><br>-- <br><div \
data-smartmail="gmail_signature"><div dir="ltr"><div><div dir="ltr"><div><div \
dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><div><div \
dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><div><div><span \
style="font-family:georgia,serif">Biruntha<br></span><br><div><div>Software \
Engineer<br></div>WSO2<br></div>Email:<span><span style="font-family:georgia,serif"> \
<a href="mailto:biruntha@wso2.com" \
target="_blank">biruntha@wso2.com</a></span></span><font \
color="#666666"><br></font></div><div><font color="#666666"><span \
style="color:rgb(0,0,0)">LinkedIn: </span></font><a \
href="https://lk.linkedin.com/in/biruntha" \
target="_blank"><span>https://lk.linkedin.com/in/biruntha</span></a></div><div><span><span \
style="font-family:georgia,serif">Mobile : \
+94773718986<br></span></span></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div>
 </div>
</blockquote></div><br clear="all"><div><br></div></div></div><span><font \
color="#888888">-- <br></font></span><div dir="ltr" \
data-smartmail="gmail_signature"><div dir="ltr"><div><div dir="ltr"><div><div \
dir="ltr"><div><div dir="ltr"><span><font color="#888888"><a \
href="mailto:dev-request@wso2.org" target="_blank"></a></font></span><span><font \
color="#888888"><span><font color="#888888"><div dir="ltr"><span><font \
color="#888888">Keerthika Mahendralingam<br>Senior Software \
Engineer</font></span></div></font></span><div dir="ltr"><span><font \
color="#888888"><span><font color="#888888">Mobile :</font></span>+94 (0) 776 \
121144</font></span><span><font color="#888888"><span><font color="#888888"><a \
value="+94770760240"><br></a><div><a href="mailto:keerthika@wso2.com" \
target="_blank">keerthika@wso2.com</a></div></font></span><span><div><div \
style="color:rgb(34,34,34)"><font color="#666666">WSO2, Inc.  </font></div><div \
style="color:rgb(34,34,34)"><font color="#666666">lean . enterprise . middleware  \
</font></div></div> </span></font></span></div></font></span></div></div></div></div></div></div></div></div>
 </blockquote></div><br><br clear="all"><br>-- <br><div \
data-smartmail="gmail_signature"><div dir="ltr"><div><div dir="ltr"><div><div \
dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><div><div \
dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><div><div><span \
style="font-family:georgia,serif">Biruntha<br></span><br><div><div>Software \
Engineer<br></div>WSO2<br></div>Email:<span><span style="font-family:georgia,serif"> \
<a href="mailto:biruntha@wso2.com" \
target="_blank">biruntha@wso2.com</a></span></span><font \
color="#666666"><br></font></div><div><font color="#666666"><span \
style="color:rgb(0,0,0)">LinkedIn: </span></font><a \
href="https://lk.linkedin.com/in/biruntha" \
target="_blank"><span>https://lk.linkedin.com/in/biruntha</span></a></div><div><span><span \
style="font-family:georgia,serif">Mobile : \
+94773718986<br></span></span></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div>
 </div></div>
</blockquote></div><br clear="all"><div><br></div>-- <br><div dir="ltr" \
class="m_-4226698386013739484m_5406287684561744251m_645478679884654141m_61631276250345 \
5434m_-4756229528744882048m_-6947152785700465334m_4210505127568630361gmail_signature" \
data-smartmail="gmail_signature"><div dir="ltr"><div><div dir="ltr"><div><div \
dir="ltr"><div><div dir="ltr"><a href="mailto:dev-request@wso2.org" \
target="_blank"></a><span><font color="#888888"><div dir="ltr"><span><font \
color="#888888">Keerthika Mahendralingam<br>Senior Software \
Engineer</font></span></div><div dir="ltr"><span><font color="#888888">Mobile \
:</font></span>+94 (0) 776 121144<span><font color="#888888"><a \
value="+94770760240"><br></a><div><a href="mailto:keerthika@wso2.com" \
target="_blank">keerthika@wso2.com</a></div><div><div \
style="color:rgb(34,34,34)"><font color="#666666">WSO2, Inc.  </font></div><div \
style="color:rgb(34,34,34)"><font color="#666666">lean . enterprise . middleware  \
</font></div></div> </font></span></div></font></span></div></div></div></div></div></div></div></div>
 </blockquote></div><br clear="all"><div><br></div>-- <br><div dir="ltr" \
class="m_-4226698386013739484m_5406287684561744251m_645478679884654141m_616312762503455434m_-4756229528744882048m_-6947152785700465334gmail_signature" \
data-smartmail="gmail_signature"><div dir="ltr"><div><div dir="ltr"><div><div \
dir="ltr"><div><div dir="ltr"><a href="mailto:dev-request@wso2.org" \
target="_blank"></a><span><font color="#888888"><div dir="ltr"><span><font \
color="#888888">Keerthika Mahendralingam<br>Senior Software \
Engineer</font></span></div><div dir="ltr"><span><font color="#888888">Mobile \
:</font></span>+94 (0) 776 121144<span><font color="#888888"><a \
value="+94770760240"><br></a><div><a href="mailto:keerthika@wso2.com" \
target="_blank">keerthika@wso2.com</a></div><div><div \
style="color:rgb(34,34,34)"><font color="#666666">WSO2, Inc.  </font></div><div \
style="color:rgb(34,34,34)"><font color="#666666">lean . enterprise . middleware  \
</font></div></div> </font></span></div></font></span></div></div></div></div></div></div></div></div>
 </blockquote></div><br clear="all"><div><br></div>-- <br><div dir="ltr" \
class="m_-4226698386013739484m_5406287684561744251m_645478679884654141m_616312762503455434m_-4756229528744882048gmail_signature" \
data-smartmail="gmail_signature"><div dir="ltr"><div><div dir="ltr"><div><div \
dir="ltr"><div><div dir="ltr"><a href="mailto:dev-request@wso2.org" \
target="_blank"></a><span><font color="#888888"><div dir="ltr"><span><font \
color="#888888">Keerthika Mahendralingam<br>Senior Software \
Engineer</font></span></div><div dir="ltr"><span><font color="#888888">Mobile \
:</font></span>+94 (0) 776 121144<span><font color="#888888"><a \
value="+94770760240"><br></a><div><a href="mailto:keerthika@wso2.com" \
target="_blank">keerthika@wso2.com</a></div><div><div \
style="color:rgb(34,34,34)"><font color="#666666">WSO2, Inc.  </font></div><div \
style="color:rgb(34,34,34)"><font color="#666666">lean . enterprise . middleware  \
</font></div></div> </font></span></div></font></span></div></div></div></div></div></div></div></div>
 </blockquote></div><br clear="all"><div><br></div>-- <br><div dir="ltr" \
class="m_-4226698386013739484m_5406287684561744251m_645478679884654141m_616312762503455434gmail_signature" \
data-smartmail="gmail_signature"><div dir="ltr"><div><div dir="ltr"><div><div \
dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><div><div \
dir="ltr"><span><font color="#888888">Shakila Sasikaran</font><br><font \
color="#888888">Software Engineer</font><br><font color="#888888">Mobile :+94 (0) 77 \
526 6848</font><div style="color:rgb(136,136,136)"><a href="mailto:shakila@wso2.com" \
target="_blank">shakila@wso2.com</a></div><div style="color:rgb(136,136,136)"><span \
style="color:rgb(102,102,102);font-size:small">WSO2, Inc.  </span><br \
style="color:rgb(102,102,102);font-size:small"><span \
style="color:rgb(102,102,102);font-size:small">lean . enterprise . \
middleware</span><br></div><div><font color="#666666" size="2"><a \
href="http://www.wso2.com/" \
target="_blank">http://www.wso2.com/</a></font><br></div></span></div></div></div></div></div></div></div></div></div></div></div></div></div></div>
 </blockquote></div><br clear="all"><div><br></div>-- <br><div dir="ltr" \
class="m_-4226698386013739484m_5406287684561744251m_645478679884654141gmail_signature" \
data-smartmail="gmail_signature"><div dir="ltr"><div><div dir="ltr"><div><div \
dir="ltr"><div><div dir="ltr"><a href="mailto:dev-request@wso2.org" \
target="_blank"></a><span><font color="#888888"><div dir="ltr"><span><font \
color="#888888">Keerthika Mahendralingam<br>Senior Software \
Engineer</font></span></div><div dir="ltr"><span><font color="#888888">Mobile \
:</font></span>+94 (0) 776 121144<span><font color="#888888"><a \
value="+94770760240"><br></a><div><a href="mailto:keerthika@wso2.com" \
target="_blank">keerthika@wso2.com</a></div><div><div \
style="color:rgb(34,34,34)"><font color="#666666">WSO2, Inc.  </font></div><div \
style="color:rgb(34,34,34)"><font color="#666666">lean . enterprise . middleware  \
</font></div></div> </font></span></div></font></span></div></div></div></div></div></div></div></div>
 </blockquote></div><br clear="all"><div><br></div>-- <br><div dir="ltr" \
class="m_-4226698386013739484m_5406287684561744251gmail_signature" \
data-smartmail="gmail_signature"><div dir="ltr"><div><div dir="ltr"><div><div \
dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><div><div \
dir="ltr"><span><font color="#888888">Shakila Sasikaran</font><br><font \
color="#888888">Software Engineer</font><br><font color="#888888">Mobile :+94 (0) 77 \
526 6848</font><div style="color:rgb(136,136,136)"><a href="mailto:shakila@wso2.com" \
target="_blank">shakila@wso2.com</a></div><div style="color:rgb(136,136,136)"><span \
style="color:rgb(102,102,102);font-size:small">WSO2, Inc.  </span><br \
style="color:rgb(102,102,102);font-size:small"><span \
style="color:rgb(102,102,102);font-size:small">lean . enterprise . \
middleware</span><br></div><div><font color="#666666" size="2"><a \
href="http://www.wso2.com/" \
target="_blank">http://www.wso2.com/</a></font><br></div></span></div></div></div></div></div></div></div></div></div></div></div></div></div></div>
 </blockquote></div><br clear="all"><div><br></div>-- <br><div dir="ltr" \
class="m_-4226698386013739484gmail_signature" data-smartmail="gmail_signature"><div \
dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><div><div \
dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><span><font color="#888888">Shakila \
Sasikaran</font><br><font color="#888888">Software Engineer</font><br><font \
color="#888888">Mobile :+94 (0) 77 526 6848</font><div \
style="color:rgb(136,136,136)"><a href="mailto:shakila@wso2.com" \
target="_blank">shakila@wso2.com</a></div><div style="color:rgb(136,136,136)"><span \
style="color:rgb(102,102,102);font-size:small">WSO2, Inc.  </span><br \
style="color:rgb(102,102,102);font-size:small"><span \
style="color:rgb(102,102,102);font-size:small">lean . enterprise . \
middleware</span><br></div><div><font color="#666666" size="2"><a \
href="http://www.wso2.com/" \
target="_blank">http://www.wso2.com/</a></font><br></div></span></div></div></div></div></div></div></div></div></div></div></div></div></div></div>




_______________________________________________
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic