Re: [Dev] [MSF4J] Issue in resolving @Context annotation.

2016-05-04 Thread Hasitha Aravinda
Thanks Samiyuru, On Wed, May 4, 2016 at 1:12 PM, Samiyuru Senarathne wrote: > Hi Hasitha, > > With the migration to the carbon-transports 2.0.x we have removed all > netty dependencies from MSF4J. Therefore it is no longer possible to > receive netty types using @Context as was possible in MSF

Re: [Dev] [MSF4J] Issue in resolving @Context annotation.

2016-05-04 Thread Samiyuru Senarathne
Hi Hasitha, With the migration to the carbon-transports 2.0.x we have removed all netty dependencies from MSF4J. Therefore it is no longer possible to receive netty types using @Context as was possible in MSF4J 1.0.0. Instead of the netty HttpRequest, MSF4J provides org.wso2.msf4j.Request object.

Re: [Dev] [MSF4J] Issue in resolving @Context annotation.

2016-05-04 Thread Hasitha Aravinda
It seems like we have done some refactoring after MSF4J 1.0.0 release. [1]. I think code is correct, we are no longer supporting HttpRequest, but org.wso2.msf4j.Request. [1] - https://github.com/wso2/msf4j/commit/a5428eeb26c2164f52f73b110afc0607e43cc0e0?diff=split Thanks, Hasitha. On Wed, May 4

[Dev] [MSF4J] Issue in resolving @Context annotation.

2016-05-04 Thread Hasitha Aravinda
Hi ​team , We are using @Context annotation with io.netty.handler.codec.http. HttpRequest implementation [1] ​ in BPMN rest api​ . According to [2] it is supported by MSF4J. But actually, we are not handling ​ HttpRequest instead we handle org.wso2.msf4j.Request [3]. ​ Is this correct ? [1] -