Re: [Dev] Recommended value for the taskServerCount in task-config.xml on a two node EI

2018-09-10 Thread Vijitha Ekanayake
Hi Shazni,

 To my knowledge, if we have 10 nodes in the cluster and the
taskServerCount in the task-config.xml is 5, the initial task scheduling
will happen only if the minimum of 5 nodes are up. A task could not be
duplicated in multiple servers if the configuration registry correctly
shared among the cluster nodes. It is better if we can configure
taskServerCount exactly matching nodes count in the cluster. However, I
don't think it's a must.

Further, there can be task duplications in Hazelcast split-brain
situations. To overcome that, we might need to optimize
hazelcast configurations by placing hazelcast.properties in
the /conf/ directory. Document [1] has some details on
Hazelcast related configurations.

[1]. https://docs.wso2.com/display/CLUSTER44x/Overview

Thanks,
Vijitha


On Mon, Sep 10, 2018 at 3:16 PM Shazni Nazeer  wrote:

> Thank Vijitha.Few more clarifications.
>
> Does this mean if we have 10 nodes in the cluster and if we specify 5 for
> the *taskServerCount*, then task scheduling only works only if minimum 5
> nodes are up?
> And in this case, does it make sure the scheduled task runs only in 1 node
> of 10?
> Or do you say that since 10 nodes are there in the cluster we need to
> configure this property to 10 make it execute in only one node at a t9ime?
>
> On Mon, Sep 10, 2018 at 1:18 PM Vijitha Ekanayake 
> wrote:
>
>> Hi Shazni,
>>
>> AFAIK, the taskServerCount value specifies the number of nodes in the
>> cluster, which basically represents the number of server instances that
>> will share the task scheduling. Task scheduling will only begin after the
>> given number of servers are activated. Task framework ensures to execute
>> any given task only in a single node in the cluster.
>>
>> Since EI doesn't have worker/manager deployment, The value for the 
>> *taskServerCount
>> *on two node EI cluster should be 2. I think we require documentation
>> update here.
>>
>> Thanks,
>> Vijitha.
>>
>> On Mon, Sep 10, 2018 at 11:57 AM Shazni Nazeer  wrote:
>>
>>> Hi,
>>>
>>> I would like to know the recommendation on taskServerCount in the
>>> task-config.xml as outlined in the document [1]. In a two-node EI, for
>>> a scheduled task to not duplicate we need axis2 (hazelcast) clustering
>>> enabled right?
>>>
>>> And what's the recommended value on this scenario for the
>>> taskServerCount? Does keeping it 1 cause the teaks to duplicate?
>>>
>>> [1]
>>> https://docs.wso2.com/display/ADMIN44x/Configuring+the+Task+Scheduling+Component
>>>
>>> --
>>> Shazni Nazeer
>>>
>>> Mob : +94 37331
>>> LinkedIn : http://lk.linkedin.com/in/shazninazeer
>>>
>>> Blogs :
>>>
>>> https://medium.com/@mshazninazeer
>>> http://shazninazeer.blogspot.com
>>>
>>> <http://wso2.com/signature>
>>>
>>
>>
>> --
>> Vijitha Ekanayake
>> Senior Software Engineer*, *WSO2, Inc.; http://wso2.com/
>> Mobile : +94 777 24 73 39 | +94 718 74 44 08
>> lean.enterprise.middleware
>>
>
>
> --
> Shazni Nazeer
>
> Mob : +94 37331
> LinkedIn : http://lk.linkedin.com/in/shazninazeer
>
> Blogs :
>
> https://medium.com/@mshazninazeer
> http://shazninazeer.blogspot.com
>
> <http://wso2.com/signature>
>


-- 
Vijitha Ekanayake
Senior Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] Recommended value for the taskServerCount in task-config.xml on a two node EI

2018-09-10 Thread Vijitha Ekanayake
Hi Shazni,

AFAIK, the taskServerCount value specifies the number of nodes in the
cluster, which basically represents the number of server instances that
will share the task scheduling. Task scheduling will only begin after the
given number of servers are activated. Task framework ensures to execute
any given task only in a single node in the cluster.

Since EI doesn't have worker/manager deployment, The value for the
*taskServerCount
*on two node EI cluster should be 2. I think we require documentation
update here.

Thanks,
Vijitha.

On Mon, Sep 10, 2018 at 11:57 AM Shazni Nazeer  wrote:

> Hi,
>
> I would like to know the recommendation on taskServerCount in the
> task-config.xml as outlined in the document [1]. In a two-node EI, for a
> scheduled task to not duplicate we need axis2 (hazelcast) clustering
> enabled right?
>
> And what's the recommended value on this scenario for the taskServerCount?
> Does keeping it 1 cause the teaks to duplicate?
>
> [1]
> https://docs.wso2.com/display/ADMIN44x/Configuring+the+Task+Scheduling+Component
>
> --
> Shazni Nazeer
>
> Mob : +94 37331
> LinkedIn : http://lk.linkedin.com/in/shazninazeer
>
> Blogs :
>
> https://medium.com/@mshazninazeer
> http://shazninazeer.blogspot.com
>
> <http://wso2.com/signature>
>


-- 
Vijitha Ekanayake
Senior Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] Getting Error "ServerWorker Error while building message for REST_URL request" for all API requests

2018-03-03 Thread Vijitha Ekanayake
Hi Chamila,

The reason that error doesn't print prior to the fix seems to be that the
default content-type set as the application/x-www-form-urlencoded and
product distribution ships with the axis2.xml enabling the
relevant builder/formatter for that content-type. Could you try adding
following builder/formatter to axis2.xml and check whether it resolves the
issue?




Thanks.


On Sun, Mar 4, 2018 at 11:13 AM, Chamila Adhikarinayake <chami...@wso2.com>
wrote:

> Hi Vijitha,
>
> Seems like the PR[1] is causing the issue. It sets content-type to
> application/octet-stream for requests without a content-type header.
> Seems like the logic is ok for POST request but not sure why that
> validation related method is called for all other HTTP methods in [2].
>
> [1] https://github.com/wso2/wso2-synapse/pull/1015/files
> [2] https://github.com/wso2/wso2-synapse/blob/master/
> modules/transports/core/nhttp/src/main/java/org/apache/
> synapse/transport/passthru/ServerWorker.java#L155
>
> On Fri, Mar 2, 2018 at 9:14 PM, Vijitha Ekanayake <vijit...@wso2.com>
> wrote:
>
>> ++Chanika
>>
>> On Fri, Mar 2, 2018 at 6:30 PM, Nuwan Dias <nuw...@wso2.com> wrote:
>>
>>> Is there a release of EI happening in Q1? Don't you notice this error on
>>> latest versions of EI?
>>>
>>> On Fri, Feb 23, 2018 at 3:46 PM, Vijitha Ekanayake <vijit...@wso2.com>
>>> wrote:
>>>
>>>> This error is generated within the handleRESTUrlPost(...) method in
>>>> ServerWorker class. So I think we need to investigate the reason why these
>>>> GET requests are landed in that method and fix if there is an issue in the
>>>> logic.
>>>>
>>>> Thanks.
>>>>
>>>> On Fri, Feb 23, 2018 at 3:20 PM, Chaminda Jayawardena <
>>>> chami...@wso2.com> wrote:
>>>>
>>>>> True, But I am trying with Jmeter and just tried since suggested above
>>>>> and error is not appeared when it sends with Content-Type :)
>>>>> Yes, have to fix it.
>>>>>
>>>>> Thanks,
>>>>> Chaminda
>>>>>
>>>>> On Fri, Feb 23, 2018 at 3:12 PM, Nuwan Dias <nuw...@wso2.com> wrote:
>>>>>
>>>>>> Well, for GET requests you aren't supposed to have a Content-Type
>>>>>> header.
>>>>>>
>>>>>> On Fri, Feb 23, 2018 at 3:11 PM, Chaminda Jayawardena <
>>>>>> chami...@wso2.com> wrote:
>>>>>>
>>>>>>> Getting this continuously even for the GET requests in
>>>>>>> wso2apim-2.1.0-update12. Disappeared once put Content-Type(value as any
>>>>>>> format) on the header.
>>>>>>>
>>>>>>> Thanks,
>>>>>>> Chaminda
>>>>>>>
>>>>>>> On Fri, Feb 23, 2018 at 1:38 PM, Nuwan Dias <nuw...@wso2.com> wrote:
>>>>>>>
>>>>>>>> I'm just doing a GET. I also checked with a POST with the correct
>>>>>>>> Content-Type header as well.
>>>>>>>>
>>>>>>>> On Fri, Feb 23, 2018 at 1:17 PM, Vijitha Ekanayake <
>>>>>>>> vijit...@wso2.com> wrote:
>>>>>>>>
>>>>>>>>> Hi Nuwan,
>>>>>>>>>
>>>>>>>>> According to below code segment, it seems like this happens when
>>>>>>>>> request Content-Type doesn't match with the payload.
>>>>>>>>>
>>>>>>>>> try {
>>>>>>>>>
>>>>>>>>>   soapEnvelope = TransportUtils.createSOAPMessage(msgContext, null, 
>>>>>>>>> contentType);
>>>>>>>>>} catch (Exception e) {
>>>>>>>>>   log.error("Error while building message for REST_URL request");
>>>>>>>>> }
>>>>>>>>>
>>>>>>>>> Also It might be a case that POST requests received without a 
>>>>>>>>> Content-Type header. Is there any possibility to isolate one such 
>>>>>>>>> request causes this error. So that we could identify extract root 
>>>>>>>>> cause for this.
>>>>>>>>>
>>>>>>>>> Thanks.
>>>>>>>>>
>>>>>>>>>
>>>>>>>>> On Thu,

Re: [Dev] Getting Error "ServerWorker Error while building message for REST_URL request" for all API requests

2018-03-02 Thread Vijitha Ekanayake
++Chanika

On Fri, Mar 2, 2018 at 6:30 PM, Nuwan Dias <nuw...@wso2.com> wrote:

> Is there a release of EI happening in Q1? Don't you notice this error on
> latest versions of EI?
>
> On Fri, Feb 23, 2018 at 3:46 PM, Vijitha Ekanayake <vijit...@wso2.com>
> wrote:
>
>> This error is generated within the handleRESTUrlPost(...) method in
>> ServerWorker class. So I think we need to investigate the reason why these
>> GET requests are landed in that method and fix if there is an issue in the
>> logic.
>>
>> Thanks.
>>
>> On Fri, Feb 23, 2018 at 3:20 PM, Chaminda Jayawardena <chami...@wso2.com>
>> wrote:
>>
>>> True, But I am trying with Jmeter and just tried since suggested above
>>> and error is not appeared when it sends with Content-Type :)
>>> Yes, have to fix it.
>>>
>>> Thanks,
>>> Chaminda
>>>
>>> On Fri, Feb 23, 2018 at 3:12 PM, Nuwan Dias <nuw...@wso2.com> wrote:
>>>
>>>> Well, for GET requests you aren't supposed to have a Content-Type
>>>> header.
>>>>
>>>> On Fri, Feb 23, 2018 at 3:11 PM, Chaminda Jayawardena <
>>>> chami...@wso2.com> wrote:
>>>>
>>>>> Getting this continuously even for the GET requests in
>>>>> wso2apim-2.1.0-update12. Disappeared once put Content-Type(value as any
>>>>> format) on the header.
>>>>>
>>>>> Thanks,
>>>>> Chaminda
>>>>>
>>>>> On Fri, Feb 23, 2018 at 1:38 PM, Nuwan Dias <nuw...@wso2.com> wrote:
>>>>>
>>>>>> I'm just doing a GET. I also checked with a POST with the correct
>>>>>> Content-Type header as well.
>>>>>>
>>>>>> On Fri, Feb 23, 2018 at 1:17 PM, Vijitha Ekanayake <vijit...@wso2.com
>>>>>> > wrote:
>>>>>>
>>>>>>> Hi Nuwan,
>>>>>>>
>>>>>>> According to below code segment, it seems like this happens when
>>>>>>> request Content-Type doesn't match with the payload.
>>>>>>>
>>>>>>> try {
>>>>>>>
>>>>>>>   soapEnvelope = TransportUtils.createSOAPMessage(msgContext, null, 
>>>>>>> contentType);
>>>>>>>} catch (Exception e) {
>>>>>>>   log.error("Error while building message for REST_URL request");
>>>>>>> }
>>>>>>>
>>>>>>> Also It might be a case that POST requests received without a 
>>>>>>> Content-Type header. Is there any possibility to isolate one such 
>>>>>>> request causes this error. So that we could identify extract root cause 
>>>>>>> for this.
>>>>>>>
>>>>>>> Thanks.
>>>>>>>
>>>>>>>
>>>>>>> On Thu, Feb 22, 2018 at 2:38 PM, Nuwan Dias <nuw...@wso2.com> wrote:
>>>>>>>
>>>>>>>> Hi,
>>>>>>>>
>>>>>>>> I'm seeing the error "*ServerWorker Error while building message
>>>>>>>> for REST_URL request*" on the logs for all API requests on Synapse
>>>>>>>> version 2.1.7.wso2v40. Any idea what could be causing this? AFAIR this
>>>>>>>> wasn't there on earlier versions.
>>>>>>>>
>>>>>>>> Thanks,
>>>>>>>> NuwanD.
>>>>>>>>
>>>>>>>> --
>>>>>>>> Nuwan Dias
>>>>>>>>
>>>>>>>> Software Architect - WSO2, Inc. http://wso2.com
>>>>>>>> email : nuw...@wso2.com
>>>>>>>> Phone : +94 777 775 729 <+94%2077%20777%205729>
>>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>> --
>>>>>>> Vijitha Ekanayake
>>>>>>> Senior Software Engineer*, *WSO2, Inc.; http://wso2.com/
>>>>>>> Mobile : +94 777 24 73 39 | +94 718 74 44 08
>>>>>>> lean.enterprise.middleware
>>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>> --
>>>>>> Nuwan Dias
>>>>>>
>>>>>> Software Architect - WSO2, Inc. http://wso2.com
>>>>>> email : nuw...@wso2.com
>>>>>> Phone : +94 777 775 729 <+94%2077%20777%205729>
>>>>>>
>>>>>> ___
>>>>>> Dev mailing list
>>>>>> Dev@wso2.org
>>>>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>>>>
>>>>>>
>>>>>
>>>>>
>>>>> --
>>>>> Thanks & Regards
>>>>>
>>>>> *Chaminda Jayawardena*
>>>>> Associate Technical Lead - QA
>>>>> WSO2 Inc. - http://wso2.com
>>>>> +94-77-7725234 <+94%2077%20772%205234>
>>>>>
>>>>
>>>>
>>>>
>>>> --
>>>> Nuwan Dias
>>>>
>>>> Software Architect - WSO2, Inc. http://wso2.com
>>>> email : nuw...@wso2.com
>>>> Phone : +94 777 775 729 <+94%2077%20777%205729>
>>>>
>>>
>>>
>>>
>>> --
>>> Thanks & Regards
>>>
>>> *Chaminda Jayawardena*
>>> Associate Technical Lead - QA
>>> WSO2 Inc. - http://wso2.com
>>> +94-77-7725234 <+94%2077%20772%205234>
>>>
>>
>>
>>
>> --
>> Vijitha Ekanayake
>> Senior Software Engineer*, *WSO2, Inc.; http://wso2.com/
>> Mobile : +94 777 24 73 39 | +94 718 74 44 08
>> lean.enterprise.middleware
>>
>
>
>
> --
> Nuwan Dias
>
> Software Architect - WSO2, Inc. http://wso2.com
> email : nuw...@wso2.com
> Phone : +94 777 775 729 <+94%2077%20777%205729>
>



-- 
Vijitha Ekanayake
Senior Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] Getting Error "ServerWorker Error while building message for REST_URL request" for all API requests

2018-02-23 Thread Vijitha Ekanayake
This error is generated within the handleRESTUrlPost(...) method in
ServerWorker class. So I think we need to investigate the reason why these
GET requests are landed in that method and fix if there is an issue in the
logic.

Thanks.

On Fri, Feb 23, 2018 at 3:20 PM, Chaminda Jayawardena <chami...@wso2.com>
wrote:

> True, But I am trying with Jmeter and just tried since suggested above and
> error is not appeared when it sends with Content-Type :)
> Yes, have to fix it.
>
> Thanks,
> Chaminda
>
> On Fri, Feb 23, 2018 at 3:12 PM, Nuwan Dias <nuw...@wso2.com> wrote:
>
>> Well, for GET requests you aren't supposed to have a Content-Type header.
>>
>> On Fri, Feb 23, 2018 at 3:11 PM, Chaminda Jayawardena <chami...@wso2.com>
>> wrote:
>>
>>> Getting this continuously even for the GET requests in
>>> wso2apim-2.1.0-update12. Disappeared once put Content-Type(value as any
>>> format) on the header.
>>>
>>> Thanks,
>>> Chaminda
>>>
>>> On Fri, Feb 23, 2018 at 1:38 PM, Nuwan Dias <nuw...@wso2.com> wrote:
>>>
>>>> I'm just doing a GET. I also checked with a POST with the correct
>>>> Content-Type header as well.
>>>>
>>>> On Fri, Feb 23, 2018 at 1:17 PM, Vijitha Ekanayake <vijit...@wso2.com>
>>>> wrote:
>>>>
>>>>> Hi Nuwan,
>>>>>
>>>>> According to below code segment, it seems like this happens when
>>>>> request Content-Type doesn't match with the payload.
>>>>>
>>>>> try {
>>>>>
>>>>>   soapEnvelope = TransportUtils.createSOAPMessage(msgContext, null, 
>>>>> contentType);
>>>>>} catch (Exception e) {
>>>>>   log.error("Error while building message for REST_URL request");
>>>>> }
>>>>>
>>>>> Also It might be a case that POST requests received without a 
>>>>> Content-Type header. Is there any possibility to isolate one such request 
>>>>> causes this error. So that we could identify extract root cause for this.
>>>>>
>>>>> Thanks.
>>>>>
>>>>>
>>>>> On Thu, Feb 22, 2018 at 2:38 PM, Nuwan Dias <nuw...@wso2.com> wrote:
>>>>>
>>>>>> Hi,
>>>>>>
>>>>>> I'm seeing the error "*ServerWorker Error while building message for
>>>>>> REST_URL request*" on the logs for all API requests on Synapse
>>>>>> version 2.1.7.wso2v40. Any idea what could be causing this? AFAIR this
>>>>>> wasn't there on earlier versions.
>>>>>>
>>>>>> Thanks,
>>>>>> NuwanD.
>>>>>>
>>>>>> --
>>>>>> Nuwan Dias
>>>>>>
>>>>>> Software Architect - WSO2, Inc. http://wso2.com
>>>>>> email : nuw...@wso2.com
>>>>>> Phone : +94 777 775 729 <+94%2077%20777%205729>
>>>>>>
>>>>>
>>>>>
>>>>>
>>>>> --
>>>>> Vijitha Ekanayake
>>>>> Senior Software Engineer*, *WSO2, Inc.; http://wso2.com/
>>>>> Mobile : +94 777 24 73 39 | +94 718 74 44 08
>>>>> lean.enterprise.middleware
>>>>>
>>>>
>>>>
>>>>
>>>> --
>>>> Nuwan Dias
>>>>
>>>> Software Architect - WSO2, Inc. http://wso2.com
>>>> email : nuw...@wso2.com
>>>> Phone : +94 777 775 729 <+94%2077%20777%205729>
>>>>
>>>> ___
>>>> Dev mailing list
>>>> Dev@wso2.org
>>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>>
>>>>
>>>
>>>
>>> --
>>> Thanks & Regards
>>>
>>> *Chaminda Jayawardena*
>>> Associate Technical Lead - QA
>>> WSO2 Inc. - http://wso2.com
>>> +94-77-7725234 <+94%2077%20772%205234>
>>>
>>
>>
>>
>> --
>> Nuwan Dias
>>
>> Software Architect - WSO2, Inc. http://wso2.com
>> email : nuw...@wso2.com
>> Phone : +94 777 775 729 <+94%2077%20777%205729>
>>
>
>
>
> --
> Thanks & Regards
>
> *Chaminda Jayawardena*
> Associate Technical Lead - QA
> WSO2 Inc. - http://wso2.com
> +94-77-7725234 <+94%2077%20772%205234>
>



-- 
Vijitha Ekanayake
Senior Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] Getting Error "ServerWorker Error while building message for REST_URL request" for all API requests

2018-02-22 Thread Vijitha Ekanayake
Hi Nuwan,

According to below code segment, it seems like this happens when request
Content-Type doesn't match with the payload.

try {

  soapEnvelope = TransportUtils.createSOAPMessage(msgContext, null,
contentType);
   } catch (Exception e) {
  log.error("Error while building message for REST_URL request");
}

Also It might be a case that POST requests received without a
Content-Type header. Is there any possibility to isolate one such
request causes this error. So that we could identify extract root
cause for this.

Thanks.


On Thu, Feb 22, 2018 at 2:38 PM, Nuwan Dias <nuw...@wso2.com> wrote:

> Hi,
>
> I'm seeing the error "*ServerWorker Error while building message for
> REST_URL request*" on the logs for all API requests on Synapse version
> 2.1.7.wso2v40. Any idea what could be causing this? AFAIR this wasn't there
> on earlier versions.
>
> Thanks,
> NuwanD.
>
> --
> Nuwan Dias
>
> Software Architect - WSO2, Inc. http://wso2.com
> email : nuw...@wso2.com
> Phone : +94 777 775 729 <+94%2077%20777%205729>
>



-- 
Vijitha Ekanayake
Senior Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] [EI] Handlers not showing in source view of API

2018-01-25 Thread Vijitha Ekanayake
Hi Godwin,

This is a known issue and already reported in [1]. However, you should be
able to create and deploy APIs with API handlers using EI tooling without
any issue. We'll include the fix for this issue in an upcoming release.

[1]. https://wso2.org/jira/browse/ESBJAVA-3395

Thanks.

On Tue, Jan 23, 2018 at 1:52 PM, Godwin Shrimal <god...@wso2.com> wrote:

> Hi Devs,
>
> Why handlers are not showing in the source view of the Rest API? Is it bug
> or purposely done?
>
>
> Thanks
> Godwin
>
> --
> *Godwin Amila Shrimal*
> Associate Technical Lead
> WSO2 Inc.; http://wso2.com
> lean.enterprise.middleware
>
> mobile: *+94772264165*
> linkedin: *https://www.linkedin.com/in/godwin-amila-2ba26844/
> <https://www.linkedin.com/in/godwin-amila-2ba26844/>*
> twitter: https://twitter.com/godwinamila
> <http://wso2.com/signature>
>



-- 
Vijitha Ekanayake
Senior Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Oxygen Tank > Message Forwarding Processor > Use of propeties tag inside a Scheduled Message Forwarding Processor

2018-01-11 Thread Vijitha Ekanayake
Hi Marcos,

Likewise, Another option is to use Message Sampling Processor[1] rather
than Scheduled Message Forwarding Processor and define the required
properties inside the pointing sequence and call the endpoint from that
sequence.

[1]. https://docs.wso2.com/display/EI611/Message+Sampling+Processor

Thanks.

On Thu, Jan 11, 2018 at 11:37 PM, Juan Pablo Vadell <jpvad...@vatrox.com>
wrote:

> Hi Marcos,
>
> Maybe you can set an endpoint at the Scheduled Message Forwarding
> Processor, that calls a local Proxy Service that inside this new Proxy, set
> the the properties that you need and then call the real  endpoint.
>
> JP
>
> Juan Pablo Vadell | *VATROX*
> *CTO*
>
> Cel: +54 9 351 678-1414 <+54%209%20351%20678-1414>
> Work: +54 351 485-6602 <+54%20351%20485-6602>
> skype: jpvadell
>
> On Thu, Jan 11, 2018 at 2:55 PM, Marcos Tarín Esteve <
> mta...@alfatecsistemas.es> wrote:
>
>> Hello
>>
>> How can i add tags (or similar functionality) to a Scheduled Message
>> Forwarding Processor?
>>
>>> value="true"/>
>>
>> > value="true"/>
>>
>>
>>
>> I explain the case: I’m sending a message from a proxy service to an
>> endpoint adding last mentioned properties without problem. In case of
>> endpoint is fallen, I save the message in a queue. Then I would like to use
>> a Scheduled Message Forwarding Processor for resend this message to the
>> endpoint. The question is if it’s possible from a Scheduled Message
>> Forwarding Processor to use last mentioned properties somehow.
>>
>> Thanks in advance
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


-- 
Vijitha Ekanayake
Senior Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] [EI-Enalytics] Search messages by status

2018-01-10 Thread Vijitha Ekanayake
gt;> mobile: *+94772264165*
>>>>>>> linkedin: *https://www.linkedin.com/in/godwin-amila-2ba26844/
>>>>>>> <https://www.linkedin.com/in/godwin-amila-2ba26844/>*
>>>>>>> twitter: https://twitter.com/godwinamila
>>>>>>> <http://wso2.com/signature>
>>>>>>>
>>>>>>> ___
>>>>>>> Dev mailing list
>>>>>>> Dev@wso2.org
>>>>>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>>>>>
>>>>>>>
>>>>>>
>>>>>>
>>>>>> --
>>>>>> *Pubudu Gunatilaka*
>>>>>> Committer and PMC Member - Apache Stratos
>>>>>> Senior Software Engineer
>>>>>> WSO2, Inc.: http://wso2.com
>>>>>> mobile : +94774078049 <%2B94772207163>
>>>>>>
>>>>>>
>>>>>
>>>>>
>>>>> --
>>>>> *Godwin Amila Shrimal*
>>>>> Associate Technical Lead
>>>>> WSO2 Inc.; http://wso2.com
>>>>> lean.enterprise.middleware
>>>>>
>>>>> mobile: *+94772264165*
>>>>> linkedin: *https://www.linkedin.com/in/godwin-amila-2ba26844/
>>>>> <https://www.linkedin.com/in/godwin-amila-2ba26844/>*
>>>>> twitter: https://twitter.com/godwinamila
>>>>> <http://wso2.com/signature>
>>>>>
>>>>
>>>>
>>>>
>>>> --
>>>> W.G. Gihan Anuruddha
>>>> Associate Technical Lead | WSO2, Inc.
>>>> M: +94772272595
>>>>
>>>
>>>
>>>
>>> --
>>> *Godwin Amila Shrimal*
>>> Associate Technical Lead
>>> WSO2 Inc.; http://wso2.com
>>> lean.enterprise.middleware
>>>
>>> mobile: *+94772264165*
>>> linkedin: *https://www.linkedin.com/in/godwin-amila-2ba26844/
>>> <https://www.linkedin.com/in/godwin-amila-2ba26844/>*
>>> twitter: https://twitter.com/godwinamila
>>> <http://wso2.com/signature>
>>>
>>
>>
>>
>> --
>> W.G. Gihan Anuruddha
>> Associate Technical Lead | WSO2, Inc.
>> M: +94772272595
>>
>
>
>
> --
> *Godwin Amila Shrimal*
> Associate Technical Lead
> WSO2 Inc.; http://wso2.com
> lean.enterprise.middleware
>
> mobile: *+94772264165*
> linkedin: *https://www.linkedin.com/in/godwin-amila-2ba26844/
> <https://www.linkedin.com/in/godwin-amila-2ba26844/>*
> twitter: https://twitter.com/godwinamila
> <http://wso2.com/signature>
>



-- 
Vijitha Ekanayake
Senior Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] [EI][Test] Mocking malformed response from BE

2018-01-08 Thread Vijitha Ekanayake
Hi Milinda,

AFAIK, there is no inbuilt capability to mocking such BEs within test
framework itself. But you should be able to use HttpServer class to start a
new server instance with a malformed payload within the test case itself.

Can you try programmatically start simple HTTPServer within test case
itself with malformed payload as done in[1]?

[1].
https://github.com/wso2/product-ei/blob/master/integration/mediation-tests/tests-service/src/test/java/org/wso2/carbon/esb/rest/test/header/HTTPResponseCodeTestCase.java


Thanks.

On Tue, Jan 9, 2018 at 11:02 AM, Milinda Perera <milin...@wso2.com> wrote:

> Hi,
>
> I'm writing a test case for product-ei, testing fault sequence execution
> while building the message when BE returns malformed payload.
>
> I tried mocking BE with EI API but failed to return malformed payload.
>
> Do we have the ability to mock BE server within our test framework or EI
> integration test common?
>
> Thanks,
> Milinda
>
> --
> Milinda Perera
> Senior Software Engineer;
> WSO2 Inc. http://wso2.com ,
> Mobile: (+94) 714 115 032 <+94%2071%20411%205032>
>
>


-- 
Vijitha Ekanayake
Senior Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] [EI] Correct Xpath expression to read database response.

2018-01-06 Thread Vijitha Ekanayake
Hi Senuwan,

I tried this in EI WUM updated pack with below API configurations and was
able to get CUSTOMER_EMAIL and RECORD_ID by defining data service namespace
inside property mediator.

*API configurations*

http://ws.apache.org/ns/synapse; name="ContextServiceAPI-2.0.0"
context="/context-2.0.0">
   
  
 

   http://www.mocky.io/v2/5a50c0d32ffc128d52ee
">
  
 3
 discard
  
  
 0
 1.0
 0
  
   

 
 
http://ws.wso2.org/dataservice;
name="EmailID" expression="//m0:CUSTOMER_EMAIL"/>
http://ws.wso2.org/dataservice;
name="Record_ID" expression="//m0:RECORD_ID"/>
 
 
  
   


*Request*

curl -v http://localhost:8280/context-2.0.0/abc

*Output in the console*

[2018-01-06 18:15:15,206] [EI-Core]  INFO - LogMediator EmailID =
senu...@wso2.com, Record_ID = 138

Could you try your scenario with suggested Xpath configurations as above?

Thanks,
Vijitha.


On Sat, Jan 6, 2018 at 3:34 PM, Senuwan Withana <senu...@wso2.com> wrote:

> Hi Team,
>
> In my Scenario, I want to get Email_ID and Record_ID from the database
> response.
> Response is correctly come to the wire-log. But I could not able to log
> the Email_ID and Record_ID.
>
> I have tried out following Xpath expressions but non  of those give me the
> correct result.
>
>
> [1]. $body/m0:Entries/m0:Entry/m0:CUSTOMER_EMAIL/text() - Not work
> [2]. "//*[local-name()='CUSTOMER_EMAIL']"- Not work
> [3].$body /Entries/Entry/CUSTOMER_EMAIL/text()- Not work
> [4].//body/Entries/Entry/CUSTOMER_EMAIL/text()- Not work
> [5].$body  - Works, but all the data log.
>
>
>
> [2018-01-06 15:08:24,160] [EI-Core] DEBUG - content << "?xm"
> [2018-01-06 15:08:24,160] [EI-Core] DEBUG - content << "l version='1.0'
> encoding='UTF-8'?>http://schemas.
> xmlsoap.org/soap/envelope/">http://ws.wso2.org/dataservice;> ID>138senu...@wso2.com CUSTOMER_EMAIL>Alto
> blue800
> Yes ROOF>Yes<
> NAVIGATION>NoNo AUTOMATIC_TAILGATE>Approved COLOR>Pink5T Entry>"
> [2018-01-06 15:08:24,161] [EI-Core] DEBUG - content << "[\r]"
> [2018-01-06 15:08:24,161] [EI-Core] DEBUG - content << "[\n]"
> [2018-01-06 15:08:24,161] [EI-Core] DEBUG - content << "0"
> [2018-01-06 15:08:24,161] [EI-Core] DEBUG - content << "[\r]"
> [2018-01-06 15:08:24,161] [EI-Core] DEBUG - content << "[\n]"
> [2018-01-06 15:08:24,161] [EI-Core] DEBUG - content << "[\r]"
> [2018-01-06 15:08:24,161] [EI-Core] DEBUG - content << "[\n]"
> [2018-01-06 15:08:24,161] [EI-Core] DEBUG - header << "[\r][\n]"
> [2018-01-06 15:08:24,163] [EI-Core]  INFO - LogMediator Body =
>  xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/;> xmlns="http://ws.wso2.org/dataservice;> ID>138senu...@wso2.com CUSTOMER_EMAIL>Alto
> blue800
> Yes SEATS>YesNo TAILGATE>NoApproved STATUS>Pink5T TIRE_SIZE>
> [2018-01-06 15:08:24,164] [EI-Core]  INFO - LogMediator Email
> =
> [2018-01-06 15:08:24,186] [EI-Core] DEBUG - wire HTTP-Listener I/O
> dispatcher-3 << "HTTP/1.1 202 Accepted[\r][\n]"
> [2018-01-06 15:08:24,189] [EI-Core] DEBUG - wire HTTP-Listener I/O
> dispatcher-3 << "Content-Type: text/xml; charset=UTF-8[\r][\n]"
>
>
>
>
> Any suggestion to for the correct Xpath Expression.
>
> Thanks.
>
> *Senuwan Withana*
> Software Engineer - Support Team | WSO2
>
> Email : senu...@wso2.com
> Mobile: 94773212853
> Web: http://www.wso2.com
>
>
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


-- 
Vijitha Ekanayake
Senior Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] [EI-DSS] Check backend latency when use local transport

2018-01-04 Thread Vijitha Ekanayake
Hi Godwin,

In the EI-Analytics dashboard, we do have an endpoint latency time graph
which provides the maximum, average and minimum latencies for a given
endpoint(Backend) for a given period of time. But you need to specify names
for endpoints in the EI configurations to select it from the graph.

First, from your synapse configuration you need to specify the names
for Endpoints. If you already have named endpoints you should be able to
get latencies via EI Analytics.

Example EP with the name:


 http://localhost:8280/services/echo?wsdl"/>
 

Thanks.

On Thu, Jan 4, 2018 at 12:53 PM, Godwin Shrimal <god...@wso2.com> wrote:

> Thanks for the response Madhaawa. I guess this is something useful if we
> can get this via analytics or JMX.
>
> Thanks
> Godwin
>
> On Thu, Jan 4, 2018 at 12:58 PM, Madhawa Gunasekara <madha...@wso2.com>
> wrote:
>
>> Hi Godwin,
>>
>> We can use log4jdbc to check the backend latency of DB Calls. [1]
>>
>> What you have to do is
>>
>> 1) download the log4jdbc jar and paste into the lib folder.
>> 2) modify the log4j.properties file with your preferences :
>>
>> log4j.logger.jdbc.sqltiming=INFO
>>
>> 3) change the integrator.sh file to pass the system properties, you have
>> to specify the driver class in that property
>> *-Dlog4jdbc.drivers=[,...] *
>> 4) change the datasource configurations as mentioned in the documentation.
>>
>>- JDBC Driver from* com.mysql.jdbc.Driver *to
>>*net.sf.log4jdbc.DriverSpy *
>>- MySQL JDBC Connection string changed from
>>*jdbc:mysql://localhost:3306/test* to
>>*jdbc:log4jdbc:mysql://localhost:3306/test*
>>
>> [1] http://kveeresham.blogspot.com/2015/03/logging-jdbc-activiti
>> es-using-log4jdbc.html
>>
>> Thanks,
>> Madhawa
>>
>> On Wed, Dec 27, 2017 at 11:30 AM, Godwin Shrimal <god...@wso2.com> wrote:
>>
>>> Hi Devs,
>>>
>>> I have a proxy service which calls the DSS over local transport, I want
>>> to check the backend latency of DB calls. Since this is local transport we
>>> cannot use JMX (AFAIK Its anyway not giving endpoint wise stats). What is
>>> the best way to get this?
>>>
>>> Thanks
>>> Godwin
>>>
>>> --
>>> *Godwin Amila Shrimal*
>>> Associate Technical Lead
>>> WSO2 Inc.; http://wso2.com
>>> lean.enterprise.middleware
>>>
>>> mobile: *+94772264165*
>>> linkedin: *https://www.linkedin.com/in/godwin-amila-2ba26844/
>>> <https://www.linkedin.com/in/godwin-amila-2ba26844/>*
>>> twitter: https://twitter.com/godwinamila
>>> <http://wso2.com/signature>
>>>
>>
>>
>>
>> --
>> *Madhawa Gunasekara*
>> Senior Software Engineer
>> WSO2 Inc.; http://wso2.com
>> lean.enterprise.middleware
>>
>> mobile: +94 719411002 <+94+719411002>
>> blog: *http://madhawa-gunasekara.blogspot.com
>> <http://madhawa-gunasekara.blogspot.com>*
>> linkedin: *http://lk.linkedin.com/in/mgunasekara
>> <http://lk.linkedin.com/in/mgunasekara>*
>>
>
>
>
> --
> *Godwin Amila Shrimal*
> Associate Technical Lead
> WSO2 Inc.; http://wso2.com
> lean.enterprise.middleware
>
> mobile: *+94772264165*
> linkedin: *https://www.linkedin.com/in/godwin-amila-2ba26844/
> <https://www.linkedin.com/in/godwin-amila-2ba26844/>*
> twitter: https://twitter.com/godwinamila
> <http://wso2.com/signature>
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


-- 
Vijitha Ekanayake
Senior Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] Correct formats of x-www-form-urlencoded

2018-01-03 Thread Vijitha Ekanayake
Hi Senduran,

AFAIK, There is no standard documentation on how to convert JSON to
x-www-form-urlencoded format as key-value pairs. As mentioned by Thusitha,
When the JSON is getting complicated converting it to the
x-www-form-urlencoded will also become complicated and may lead to
inconsistencies over different payloads. Therefore I too think, we should
use multipart/form-data in such situations.


Thanks.

On Thu, Jan 4, 2018 at 11:02 AM, Thusitha Thilina Dayaratne <
thusithathil...@gmail.com> wrote:

> Hi Senduran,
>
> IMHO x-www-form-urlencodedis for simple key value pairs. When the payload
> is complicated, we should use multipart/form-data instead of
> x-www-form-urlencoded content type. It can handle any complex complex
> scenarios that you mentioned.
>
> Thanks
> Thusitha
>
> On Wed, Jan 3, 2018 at 4:50 PM, Senduran Balasubramaniyam <
> sendu...@wso2.com> wrote:
>
>> Hi all,
>>
>> When an XML or a JSON is converted to  x-www-form-urlencoded format the
>> key value pair is created.
>> i.e
>>
>> 
>>   value1
>>   value2
>> 
>>
>> will be converted to key1=value=value2
>>
>> similarly
>>
>> {"key1" : "value1", "key2" : "value2"} also get converted to
>> key1=value=value2
>>
>> But what if the XML or JSON is not only having simple key value i.e
>> having an array or a child element
>>
>> for example,
>> 
>>   value1
>>   
>> subvalue1
>> subvalue2
>>   
>> 
>>
>> similarly for JSON like
>> {"key1" : "value1", "key2" : {"subkey1" : "subvalue1"}} or
>>
>> JSON with array
>> {"key1" : "value1", "key2" : ["arrayvalue1", "arrayvalue2"]}
>>
>>
>> Kindly let me know the available correct formats for
>> application/x-www-form-urlencoded content type.
>> Further it will be really helpful if you could point to a specification
>> or a standard document
>>
>> Thanks
>> Senduran
>>
>>
>> --
>> *Senduran *
>> Senior Software Engineer,
>> WSO2, Inc.;  http://wso2.com/ <http://wso2.com/>
>> Mobile: +94 77 952 6548 <077%20952%206548>
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
>
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


-- 
Vijitha Ekanayake
Senior Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


[Dev] WSO2 Enterprise Integrator 6.1.1-update13 Released !

2017-12-14 Thread Vijitha Ekanayake
Hi all,

The WSO2 Integration team is pleased to announce the release of Enterprise
Integrator 6.1.1-update13. It is available for download from here
<https://github.com/wso2/product-ei/releases/download/v6.1.1-update13/wso2ei-6.1.1-update13.zip>
.


*Tasks/Bug Fixes and Improvements*

<http://goog_1240012035/>
https://wso2.org/jira/browse/ESBJAVA-4681?filter=14490

<http://goog_1317519288>
https://github.com/wso2/product-ei/issues?q=is%
3Aissue+is%3Aclosed+milestone%3A6.1.1-update-13


*​​List of Open Issues*

https://wso2.org/jira/issues/?filter=13994

https://github.com/wso2/product-ei/issues?q=is%3Aopen+is%3Aissue


*Documentation*

https://docs.wso2.com/display/EI611/WSO2+Enterprise+Integrator+Documentation


*Mailing Lists*

Join our mailing lists and correspond with the developers directly.

Developer List : dev@wso2.org | Subscribe | Mail Archive

WSO2 Architecture List: architect...@wso2.org

User Forum : StackOverflow <https://stackoverflow.com/tags/wso2/info>


*How To Contribute*

Your feedback is most welcome!


*Reporting Issues​*

We encourage you to report issues, improvements and feature requests
regarding WSO2 Integrator through WSO2 EI GIT Issues
<https://github.com/wso2/product-ei/issues>.

~ The WSO2 Integration Team ~

-- 
Vijitha Ekanayake
Senior Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


[Dev] [Architecture] WSO2 Enterprise Integrator 6.1.1-update11 Released !

2017-12-02 Thread Vijitha Ekanayake
Hi all,

The WSO2 Integration team is pleased to announce the release of Enterprise
Integrator 6.1.1-update11. It is available for download from here
<https://github.com/wso2/product-ei/releases/download/v6.1.1-update11/wso2ei-6.1.1-update11.zip>
.

*Tasks/Bug Fixes and Improvements*

https://wso2.org/jira/browse/ESBJAVA-5214?filter=14455

https://github.com/wso2/product-ei/issues?q=is%
3Aissue+is%3Aclosed+milestone%3A6.1.1-update-11

*​​List of Open Issues*

https://wso2.org/jira/issues/?filter=13994

https://github.com/wso2/product-ei/issues?q=is%3Aopen+is%3Aissue


*Mailing Lists*

Join our mailing lists and correspond with the developers directly.

Developer List : dev@wso2.org | Subscribe | Mail Archive

WSO2 Architecture List: architect...@wso2.org

User Forum : StackOverflow <https://stackoverflow.com/tags/wso2/info>

*How To Contribute*

Your feedback is most welcome!

*Reporting Issues​*

We encourage you to report issues, improvements and feature requests
regarding WSO2 Integrator through WSO2 EI GIT Issues
<https://github.com/wso2/product-ei/issues>.

~ The WSO2 Integration Team ~

-- 
Vijitha Ekanayake
Senior Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] [Architecture] WSO2 Enterprise Integrator 6.1.1-update10 Released !

2017-11-23 Thread Vijitha Ekanayake
Hi Samisa,

We are continuously working on fixing the bugs reported under JIRA and
GitHub along with the EI 6 weekly updates. The plan is to pick a set up
issues by filtering the priority and label those for the upcoming update
release.

Thanks,
Vijitha.

On Fri, Nov 24, 2017 at 3:14 AM, Samisa Abeysinghe <sam...@wso2.com> wrote:

> We have 803 Jira and 265 Git open issues, what is the plan to flush them?
>
> Thanks,
> Samisa...
>
>
> Samisa Abeysinghe
>
> Chief Engineering and Delivery Officer
>
> WSO2 Inc.
> http://wso2.com
>
>
> On Fri, Nov 24, 2017 at 12:08 AM, Vijitha Ekanayake <vijit...@wso2.com>
> wrote:
>
>>
>> Please find the correct link for the distribution: https://github.c
>> om/wso2/product-ei/releases/download/v6.1.1-update10/wso2ei-
>> 6.1.1-update10.zip
>>
>>
>> On Fri, Nov 24, 2017 at 12:01 AM, Vijitha Ekanayake <vijit...@wso2.com>
>> wrote:
>>
>>> Hi all,
>>>
>>> The WSO2 Integration team is pleased to announce the release of
>>> Enterprise Integrator 6.1.1-update10. It is available for download from
>>> here
>>> <https://github.com/wso2/product-ei/releases/download/untagged-0e9cb7d3bca7b3cac0e8/wso2-developer-studio-kernel-ei-composite-p2-6.1.1-update10.zip>
>>> .
>>>
>>
>>> *Tasks/Bug Fixes and Improvements*
>>>
>>> https://github.com/wso2/product-ei/issues?q=is%3Aissue+miles
>>> tone%3A6.1.1-update-10+is%3Aclosed
>>>
>>> *​​List of Open Issues*
>>>
>>> https://wso2.org/jira/issues/?filter=13994
>>>
>>> https://github.com/wso2/product-ei/issues?q=is%3Aopen+is%3Aissue
>>>
>>>
>>> *Mailing Lists*
>>>
>>> Join our mailing lists and correspond with the developers directly.
>>>
>>> Developer List : dev@wso2.org | Subscribe | Mail Archive
>>>
>>> WSO2 Architecture List: architect...@wso2.org
>>>
>>> User Forum : StackOverflow <https://stackoverflow.com/tags/wso2/info>
>>>
>>> *How To Contribute*
>>>
>>> Your feedback is most welcome!
>>>
>>> *Reporting Issues​*
>>>
>>> We encourage you to report issues, improvements and feature requests
>>> regarding WSO2 Integrator through WSO2 EI GIT Issues
>>> <https://github.com/wso2/product-ei/issues>.
>>>
>>> ~ The WSO2 Integration Team ~
>>>
>>
>>>
>>
>>
>> --
>> Vijitha Ekanayake
>> Senior Software Engineer*, *WSO2, Inc.; http://wso2.com/
>> Mobile : +94 777 24 73 39 | +94 718 74 44 08
>> lean.enterprise.middleware
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>


-- 
Vijitha Ekanayake
Senior Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


[Dev] [Architecture] WSO2 Enterprise Integrator 6.1.1-update10 Released !

2017-11-23 Thread Vijitha Ekanayake
Hi all,

The WSO2 Integration team is pleased to announce the release of Enterprise
Integrator 6.1.1-update10. It is available for download from here
<https://github.com/wso2/product-ei/releases/download/untagged-0e9cb7d3bca7b3cac0e8/wso2-developer-studio-kernel-ei-composite-p2-6.1.1-update10.zip>
.

*Tasks/Bug Fixes and Improvements*

https://github.com/wso2/product-ei/issues?q=is%3Aissue+milestone%3A6.1.1-update-10+is%3Aclosed

*​​List of Open Issues*

https://wso2.org/jira/issues/?filter=13994

https://github.com/wso2/product-ei/issues?q=is%3Aopen+is%3Aissue


*Mailing Lists*

Join our mailing lists and correspond with the developers directly.

Developer List : dev@wso2.org | Subscribe | Mail Archive

WSO2 Architecture List: architect...@wso2.org

User Forum : StackOverflow <https://stackoverflow.com/tags/wso2/info>

*How To Contribute*

Your feedback is most welcome!

*Reporting Issues​*

We encourage you to report issues, improvements and feature requests
regarding WSO2 Integrator through WSO2 EI GIT Issues
<https://github.com/wso2/product-ei/issues>.

~ The WSO2 Integration Team ~

-- 
Vijitha Ekanayake
Senior Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] [Architecture] WSO2 Enterprise Integrator 6.1.1-update10 Released !

2017-11-23 Thread Vijitha Ekanayake
Please find the correct link for the distribution:
https://github.com/wso2/product-ei/releases/download/v6.1.1-update10/wso2ei-6.1.1-update10.zip


On Fri, Nov 24, 2017 at 12:01 AM, Vijitha Ekanayake <vijit...@wso2.com>
wrote:

> Hi all,
>
> The WSO2 Integration team is pleased to announce the release of Enterprise
> Integrator 6.1.1-update10. It is available for download from here
> <https://github.com/wso2/product-ei/releases/download/untagged-0e9cb7d3bca7b3cac0e8/wso2-developer-studio-kernel-ei-composite-p2-6.1.1-update10.zip>
> .
>

> *Tasks/Bug Fixes and Improvements*
>
> https://github.com/wso2/product-ei/issues?q=is%3Aissue+milestone%3A6.1.1-
> update-10+is%3Aclosed
>
> *​​List of Open Issues*
>
> https://wso2.org/jira/issues/?filter=13994
>
> https://github.com/wso2/product-ei/issues?q=is%3Aopen+is%3Aissue
>
>
> *Mailing Lists*
>
> Join our mailing lists and correspond with the developers directly.
>
> Developer List : dev@wso2.org | Subscribe | Mail Archive
>
> WSO2 Architecture List: architect...@wso2.org
>
> User Forum : StackOverflow <https://stackoverflow.com/tags/wso2/info>
>
> *How To Contribute*
>
> Your feedback is most welcome!
>
> *Reporting Issues​*
>
> We encourage you to report issues, improvements and feature requests
> regarding WSO2 Integrator through WSO2 EI GIT Issues
> <https://github.com/wso2/product-ei/issues>.
>
> ~ The WSO2 Integration Team ~
>

>


-- 
Vijitha Ekanayake
Senior Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] please review and merge

2017-11-22 Thread Vijitha Ekanayake
Hi Kim,

Thanks a lot for your contribution. We'll do the needful.

Thanks.

On Wed, Nov 22, 2017 at 7:15 PM, 김대경 <dkg@gmail.com> wrote:

> Can you please review and merge PR[1] .
>
> [1] https://github.com/wso2/carbon-mediation/pull/906
>
> Best Regards.
> Daekyung Kim.
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


-- 
Vijitha Ekanayake
Senior Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] [EI Analytics] Change port offset

2017-11-20 Thread Vijitha Ekanayake
Hi Godwin,

You can change the portOffset of the EI analytics distribution by changing
the carbon.xml file resides in (EI_HOME)/wso2/analytics/conf directory.
Once you change the port of the EI analytics, please make sure to change
the MessageFlowConfigurationPublisher and MessageFlowStatisticsPublisher to
point to the correct EI analytics server. you can find relevant files
inside (EI_HOME)/repository/deployment/server/eventpublishers/ directory.
Further, refer[1] for more details.


[1]. https://docs.wso2.com/display/EI611/Prerequisites+to+Publish+Statistics

Thanks.

On Tue, Nov 21, 2017 at 9:39 AM, Godwin Shrimal <god...@wso2.com> wrote:

> Hi All,
>
> Can't we change the port offset of the EI analytics? By default, it's 1
> and I set it to 0 and run and got below error in EI nodes. IS there any
> place to configure 7712 port complaining below? I couldn't find any
> configs.
>
> TID: [-1] [] [2017-11-21 11:05:32,476] ERROR {org.wso2.carbon.databridge.
> agent.endpoint.DataEndpointConnectionWorker} -  Error while trying to
> connect to the endpoint. Cannot borrow client for ssl://10.50.139.12:7712
> {org.wso2.carbon.databridge.agent.endpoint.DataEndpointConnectionWorker}
> org.wso2.carbon.databridge.agent.exception.DataEndpointAuthenticationException:
> Cannot borrow client for ssl://10.50.139.12:7712
> at org.wso2.carbon.databridge.agent.endpoint.
> DataEndpointConnectionWorker.connect(DataEndpointConnectionWorker.java:99)
> at org.wso2.carbon.databridge.agent.endpoint.
> DataEndpointConnectionWorker.run(DataEndpointConnectionWorker.java:42)
> at java.util.concurrent.Executors$RunnableAdapter.
> call(Executors.java:511)
> at java.util.concurrent.FutureTask.run(FutureTask.java:266)
> at java.util.concurrent.ThreadPoolExecutor.runWorker(
> ThreadPoolExecutor.java:1142)
> at java.util.concurrent.ThreadPoolExecutor$Worker.run(
> ThreadPoolExecutor.java:617)
> at java.lang.Thread.run(Thread.java:745)
> Caused by: 
> org.wso2.carbon.databridge.agent.exception.DataEndpointSecurityException:
> Error while trying to connect to ssl://10.50.139.12:7712
> at org.wso2.carbon.databridge.agent.endpoint.thrift.
> ThriftSecureClientPoolFactory.createClient(ThriftSecureClientPoolFactory.
> java:81)
> at org.wso2.carbon.databridge.agent.client.
> AbstractClientPoolFactory.makeObject(AbstractClientPoolFactory.java:39)
> at org.apache.commons.pool.impl.GenericKeyedObjectPool.
> borrowObject(GenericKeyedObjectPool.java:1212)
> at org.wso2.carbon.databridge.agent.endpoint.
> DataEndpointConnectionWorker.connect(DataEndpointConnectionWorker.java:91)
> ... 6 more
> Caused by: org.apache.thrift.transport.TTransportException: Could not
> connect to 10.50.139.12 on port 7712
> at org.apache.thrift.transport.TSSLTransportFactory.createClient(
> TSSLTransportFactory.java:237)
> at org.apache.thrift.transport.TSSLTransportFactory.
> getClientSocket(TSSLTransportFactory.java:169)
> at org.wso2.carbon.databridge.agent.endpoint.thrift.
> ThriftSecureClientPoolFactory.createClient(ThriftSecureClientPoolFactory.
> java:63)
> ... 9 more
> Caused by: java.net.ConnectException: Connection refused
> at java.net.PlainSocketImpl.socketConnect(Native Method)
> at java.net.AbstractPlainSocketImpl.doConnect(
> AbstractPlainSocketImpl.java:350)
> at java.net.AbstractPlainSocketImpl.connectToAddress(
> AbstractPlainSocketImpl.java:206)
> at java.net.AbstractPlainSocketImpl.connect(
> AbstractPlainSocketImpl.java:188)
> at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392)
> at java.net.Socket.connect(Socket.java:589)
> at sun.security.ssl.SSLSocketImpl.connect(SSLSocketImpl.java:668)
> at sun.security.ssl.SSLSocketImpl.(SSLSocketImpl.java:427)
> at sun.security.ssl.SSLSocketFactoryImpl.createSocket(
> SSLSocketFactoryImpl.java:88)
> at org.apache.thrift.transport.TSSLTransportFactory.createClient(
> TSSLTransportFactory.java:233)
> ... 11 more
>
>
> Thanks
> Godwin
>
> --
> *Godwin Amila Shrimal*
> Associate Technical Lead
> WSO2 Inc.; http://wso2.com
> lean.enterprise.middleware
>
> mobile: *+94772264165*
> linkedin: *https://www.linkedin.com/in/godwin-amila-2ba26844/
> <https://www.linkedin.com/in/godwin-amila-2ba26844/>*
> twitter: https://twitter.com/godwinamila
> <http://wso2.com/signature>
>



-- 
Vijitha Ekanayake
Senior Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] [EI] Pass argument to profile creator

2017-11-20 Thread Vijitha Ekanayake
Hi Godwin,

Agree with you. At the moment we don't have an option of passing a command
line argument to create the required profile. We need to change existing
profile creator script to take command line arguments and generate the
distribution accordingly. I've reported an issue[1] to introduce system
argument to the profile creator script. We'll include the changes in an
upcoming release. Thanks a lot for raising the concern.

[1]. https://github.com/wso2/product-ei/issues/1361

Thanks.

On Mon, Nov 20, 2017 at 3:49 PM, Godwin Shrimal <god...@wso2.com> wrote:

> Hi Integration Team,
>
> Can we pass required profile as command line argument and run
> *profile-creator.sh* ?  If not its something necessary feature when we
> are automating deployment. We can't ask users input.
>
> Thanks
> Godwin
>
> --
> *Godwin Amila Shrimal*
> Associate Technical Lead
> WSO2 Inc.; http://wso2.com
> lean.enterprise.middleware
>
> mobile: *+94772264165*
> linkedin: *https://www.linkedin.com/in/godwin-amila-2ba26844/
> <https://www.linkedin.com/in/godwin-amila-2ba26844/>*
> twitter: https://twitter.com/godwinamila
> <http://wso2.com/signature>
>



-- 
Vijitha Ekanayake
Senior Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] Not able to access xslt from inside wso2 xslt mediator. Please guide.

2017-11-20 Thread Vijitha Ekanayake
Hi Aditya,

It seems that the reason for xsl file not picking up from the registry is,
you are not referring the registry entry in the correct way inside XSLT
mediator configurations. You need to point the relevant registry entry with
XSLT mediator as below.




Also make sure to provide correct registry (whether config or
govanance registry) as key to XSLT mediator.


Thanks.

On Mon, Nov 20, 2017 at 9:55 PM, aditya shivankar <
shivankar.adit...@gmail.com> wrote:

> Respected Sir,
>
> Now I tried  putting xsl file  under registry, still not able to use it.
> Please check  the screenshot attached.
> Could you please send the screenshot of your workspace in eclipse (similar
> to the attached screenshot), showing where to keep the xslt in project
> structure and also project xml file showing how you access it.
>
> With Regards,
> Aditya
>
>
> On Mon, Nov 20, 2017 at 11:42 AM, aditya shivankar <
> shivankar.adit...@gmail.com> wrote:
>
>> Respected Sir/Madam,
>>
>> Now I tried  putting xsl file  under registry, still not able to use it.
>> Please check  the screenshot attached.
>> Could you please send the screenshot of your workspace in eclipse
>> (similar to the attached screenshot), showing where to keep the xslt in
>> project structure and also project xml file showing how you access it.
>>
>> With Regards,
>> Aditya
>>
>> On Wed, Nov 15, 2017 at 7:41 PM, Saneth Dharmakeerthi <sane...@wso2.com>
>> wrote:
>>
>>> Hi Aditya,
>>>
>>> It seems you have put the XSLT in API folder and try to access it in
>>> incorrect way.
>>>
>>> You can do this by either one of following ways and the first one is the
>>> recommended.
>>>
>>>
>>>1.  Put the XSLT to the registry. you can find more information
>>>in[1][3]. If you change the xslt in registry it will effect imidiatly.
>>>2. Put it as local entry[1][2], XSLT change exffect only after next
>>>API or peoxy deployment.
>>>   - 
>>>
>>> 
>>>
>>>
>>> [1]https://docs.wso2.com/display/ESB500/Sample+8%3A+Introduc
>>> tion+to+Static+and+Dynamic+Registry+Resources+and+Using+XSLT
>>> +Transformations
>>> [2] http://mytecheye.blogspot.com/2013/12/wso2-esb-xslt-medi
>>> ator-xslt-imports.html
>>> [3] https://www.linkedin.com/pulse/wso2-esb-message-transfor
>>> mation-mapping-using-xslt-isuru-jayakantha
>>>
>>>
>>>
>>> Thanks and Best Regards,
>>>
>>> Saneth Dharmakeerthi
>>> *Associate Technical Lead*
>>> WSO2, Inc.
>>> Mobile: +94772325511 <+94%2077%20232%205511>
>>>
>>> <http://wso2.com/signature>
>>>
>>> On Wed, Nov 15, 2017 at 6:40 PM, aditya shivankar <
>>> shivankar.adit...@gmail.com> wrote:
>>>
>>>> Respected Sir,
>>>>
>>>> I have one xslt .
>>>> I have saved it inside api(src/main/synapse-config/api) folder in my
>>>> project.
>>>> I am trying to access it using xslt mediator like below.
>>>>
>>>> 
>>>>
>>>> But getting below error.Full logs can be found in attachment .
>>>>
>>>> [2017-11-15 18:11:39,128] [EI-Core]  INFO - DependencyTracker Local
>>>> entry : api/test.xsl was added to the Synapse configuration successfully
>>>> [2017-11-15 18:11:39,129] [EI-Core]  WARN - SynapseConfigUtils Cannot
>>>> convert null to a StreamSource
>>>> [2017-11-15 18:11:39,131] [EI-Core] ERROR - XSLTMediator Error creating
>>>> XSLT transformer using : Value {name ='null', keyValue ='api/test.xsl'}
>>>> org.apache.synapse.SynapseException: Cannot convert null to a
>>>> StreamSource
>>>> at org.apache.synapse.config.SynapseConfigUtils.handleException
>>>> (SynapseConfigUtils.java:580)
>>>> at org.apache.synapse.config.SynapseConfigUtils.getStreamSource
>>>> (SynapseConfigUtils.java:81)
>>>> at org.apache.synapse.mediators.transform.XSLTMediator.createTe
>>>> mplate(XSLTMediator.java:420)
>>>> at org.apache.synapse.mediators.transform.XSLTMediator.performX
>>>> SLT(XSLTMediator.java:268)
>>>> at org.apache.synapse.mediators.transform.XSLTMediator.mediate(
>>>> XSLTMediator.java:227)
>>>> ---
>>>> I tried printing body/jsonObject just one line before call to xslt. And
>>>> it printed full payload, somewhat like below. So the payload is not empty.
>>>>
>>>> .
>>>>
>>>> 
>>>> 
>>>> 
>>>>
>>>> Please Guide.
>>>>
>>>> With Regards,
>>>> Aditya
>>>>
>>>>
>>>> ___
>>>> Dev mailing list
>>>> Dev@wso2.org
>>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>>
>>>>
>>>
>>
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


-- 
Vijitha Ekanayake
Senior Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] Please review and merge PR

2017-11-13 Thread Vijitha Ekanayake
Hi Kim,

Thanks a lot for your contribution. We'll do the needful.

Thanks.

On Mon, Nov 13, 2017 at 8:53 AM, Harsha Kumara <hars...@wso2.com> wrote:

>
>
> On Sun, Nov 12, 2017 at 7:28 PM, 김대경 <dkg@gmail.com> wrote:
>
>> Can you please review and merge PR[1] and PR[2].
>>
>> [1] https://github.com/wso2/wso2-synapse/pull/952
>> [2] https://github.com/wso2/carbon-mediation/pull/906
>>
>> Best Regards.
>> Daekyung Kim.
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
> Harsha Kumara
> Software Engineer, WSO2 Inc.
> Mobile: +94775505618 <+94%2077%20550%205618>
> Blog:harshcreationz.blogspot.com
>



-- 
Vijitha Ekanayake
Senior Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] Enabling REST to SOAP sample gives an error

2017-11-11 Thread Vijitha Ekanayake
[+ dev@wso2.org]

On Fri, Nov 10, 2017 at 5:04 PM, Vijitha Ekanayake <vijit...@wso2.com>
wrote:

> Hi Buddhimala,
>
> The reason for the issue seems to be, ESB is preserving the Content-Type
> header as the default behavior. Since GET request doesn't have a
> Content-Type, ESB sends application/x-www-form-urlencoded as the
> Content-Type to the backend which is the reason for this failure. To
> overcome this issue you can comment out the following parameter in the
> passthru-http.properties.
>
> http.headers.preserve=Content-Type
>
> Thanks,
> Vijitha.
>
>
> On Fri, Nov 10, 2017 at 4:29 PM, Buddhimala Ranasinghe <
> buddhim...@wso2.com> wrote:
>
>> Hi All,
>>
>> Today I tried out "Enabling REST to SOAP" sample in ESB as per the
>> following wso2 document.
>>
>> https://docs.wso2.com/display/ESB500/Configuring+Specific+Us
>> e+Cases#ConfiguringSpecificUseCases-EnablingRESTtoSOAP
>>
>> But when I tried to invoke the API using the curl command, I got
>> following error.
>>
>> The endpoint reference (EPR) for the Operation not found is
>> /services/SimpleStockQuoteService and the WSA Action = null. If this EPR
>> was previously reachable, please contact the server
>> administrator.
>>
>> And the axis2 server side it gave the following error.
>>
>> [2017-11-10 16:25:33,268] ERROR {org.apache.axis2.engine.AxisEngine} -
>> The endpoint reference (EPR) for the Operation not found is
>> /services/SimpleStockQuoteService and the WSA Action = null. If this EPR
>> was previously reachable, please contact the server administrator.
>> org.apache.axis2.AxisFault: The endpoint reference (EPR) for the
>> Operation not found is /services/SimpleStockQuoteService and the WSA
>> Action = null. If this EPR was previously reachable, please contact the
>> server administrator.
>> at org.apache.axis2.engine.DispatchPhase.checkPostConditions(Di
>> spatchPhase.java:102)
>> at org.apache.axis2.engine.Phase.invoke(Phase.java:329)
>> at org.apache.axis2.engine.AxisEngine.invoke(AxisEngine.java:261)
>> at org.apache.axis2.engine.AxisEngine.receive(AxisEngine.java:167)
>> at org.apache.axis2.transport.http.util.RESTUtil.invokeAxisEngi
>> ne(RESTUtil.java:144)
>> at org.apache.axis2.transport.http.util.RESTUtil.processXMLRequ
>> est(RESTUtil.java:89)
>> at org.apache.synapse.transport.nhttp.util.RESTUtil.processPOST
>> Request(RESTUtil.java:213)
>> at org.apache.synapse.transport.nhttp.ServerWorker.processEntit
>> yEnclosingMethod(ServerWorker.java:468)
>> at org.apache.synapse.transport.nhttp.ServerWorker.run(ServerWo
>> rker.java:291)
>> at org.apache.axis2.transport.base.threads.NativeWorkerPool$1.
>> run(NativeWorkerPool.java:172)
>> at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPool
>> Executor.java:1142)
>> at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoo
>> lExecutor.java:617)
>> at java.lang.Thread.run(Thread.java:748)
>> [2017-11-10 16:25:33,270] ERROR 
>> {org.apache.synapse.transport.nhttp.ServerWorker}
>> -  Error processing POST request
>> org.apache.axis2.AxisFault: The endpoint reference (EPR) for the
>> Operation not found is /services/SimpleStockQuoteService and the WSA
>> Action = null. If this EPR was previously reachable, please contact the
>> server administrator.
>> at org.apache.axis2.engine.DispatchPhase.checkPostConditions(Di
>> spatchPhase.java:102)
>> at org.apache.axis2.engine.Phase.invoke(Phase.java:329)
>> at org.apache.axis2.engine.AxisEngine.invoke(AxisEngine.java:261)
>> at org.apache.axis2.engine.AxisEngine.receive(AxisEngine.java:167)
>> at org.apache.axis2.transport.http.util.RESTUtil.invokeAxisEngi
>> ne(RESTUtil.java:144)
>> at org.apache.axis2.transport.http.util.RESTUtil.processXMLRequ
>> est(RESTUtil.java:89)
>> at org.apache.synapse.transport.nhttp.util.RESTUtil.processPOST
>> Request(RESTUtil.java:213)
>> at org.apache.synapse.transport.nhttp.ServerWorker.processEntit
>> yEnclosingMethod(ServerWorker.java:468)
>> at org.apache.synapse.transport.nhttp.ServerWorker.run(ServerWo
>> rker.java:291)
>> at org.apache.axis2.transport.base.threads.NativeWorkerPool$1.
>> run(NativeWorkerPool.java:172)
>> at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPool
>> Executor.java:1142)
>> at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoo
>> lExecutor.java:617)
>> at java.lang.Thread.run(Thread.java:748)
>>
>> Please he

Re: [Dev] Exception while invoking proxy service in ESB 5.0.0

2017-11-10 Thread Vijitha Ekanayake
Hi Dilusha,

Can you provide more context about the scenario and share the complete
configurations to provide you a solution.

Thanks.

On Fri, Nov 10, 2017 at 5:29 PM, Dilusha Alphonso <dilu...@wso2.com> wrote:

> Hi All,
>
> I am working on the scenario. where I have to create a proxy service in
> ESB 5.0.0 using a WSDL of a SOAP backend service. When I invoke the proxy
> service using SOAPUI I am getting some error.
>
>  When I invoke the service with the GET method I get the proper response,
> but for POST method I could get 202 Accepted response with some exception
> in the log.
>
> java.lang.UnsupportedOperationException: An access occurred that
> is not valid.
> at org.apache.axis2.description.InOnlyAxisOperation.getMessage(
> InOnlyAxisOperation.java:117)
> at org.apache.synapse.core.axis2.SynapseCallbackReceiver.handle
> Message(SynapseCallbackReceiver.java:324)
> at org.apache.synapse.core.axis2.SynapseCallbackReceiver.receiv
> e(SynapseCallbackReceiver.java:188)
> at org.apache.axis2.engine.AxisEngine.receive(AxisEngine.java:180)
> at org.apache.synapse.transport.passthru.ClientWorker.run(Clien
> tWorker.java:261)
> at org.apache.axis2.transport.base.threads.NativeWorkerPool$1.
> run(NativeWorkerPool.java:172)
> at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPool
> Executor.java:1142)
> at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoo
> lExecutor.java:617)
> at java.lang.Thread.run(Thread.java:748)
>
> Could you please advice on this?
>
> Thanks
> Dilusha
> --
>
>
> *Best Regards,Dilusha Alphonso*
>
> *Software Engineer - Support Team*
>
>
> *WSO2*
> *Mobile : *
>
> *+94766837098 <+94%2076%20683%207098>[image: http://wso2.com/signature]
> <http://wso2.com/signature>*
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


-- 
Vijitha Ekanayake
Senior Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] {ESB} - Working with CRUD Operations - Issue on Sample Proxy

2017-11-10 Thread Vijitha Ekanayake
Registration.java:61)
> at org.eclipse.equinox.http.servlet.internal.ProxyServlet.
> processAlias(ProxyServlet.java:128)
> at org.eclipse.equinox.http.servlet.internal.ProxyServlet.
> service(ProxyServlet.java:68)
> at javax.servlet.http.HttpServlet.service(HttpServlet.java:731)
> at org.wso2.carbon.tomcat.ext.servlet.DelegationServlet.
> service(DelegationServlet.java:68)
> at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(
> ApplicationFilterChain.java:303)
> at org.apache.catalina.core.ApplicationFilterChain.doFilter(
> ApplicationFilterChain.java:208)
> at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52)
> at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(
> ApplicationFilterChain.java:241)
> at org.apache.catalina.core.ApplicationFilterChain.doFilter(
> ApplicationFilterChain.java:208)
> at org.owasp.csrfguard.CsrfGuardFilter.doFilter(CsrfGuardFilter.java:88)
> at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(
> ApplicationFilterChain.java:241)
> at org.apache.catalina.core.ApplicationFilterChain.doFilter(
> ApplicationFilterChain.java:208)
> at org.wso2.carbon.ui.filters.CSRFPreventionFilter.doFilter(
> CSRFPreventionFilter.java:88)
> at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(
> ApplicationFilterChain.java:241)
> at org.apache.catalina.core.ApplicationFilterChain.doFilter(
> ApplicationFilterChain.java:208)
> at org.wso2.carbon.ui.filters.CRLFPreventionFilter.doFilter(
> CRLFPreventionFilter.java:59)
> at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(
> ApplicationFilterChain.java:241)
> at org.apache.catalina.core.ApplicationFilterChain.doFilter(
> ApplicationFilterChain.java:208)
> at org.wso2.carbon.tomcat.ext.filter.CharacterSetFilter.
> doFilter(CharacterSetFilter.java:61)
> at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(
> ApplicationFilterChain.java:241)
> at org.apache.catalina.core.ApplicationFilterChain.doFilter(
> ApplicationFilterChain.java:208)
> at org.apache.catalina.filters.HttpHeaderSecurityFilter.doFilter(
> HttpHeaderSecurityFilter.java:120)
> at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(
> ApplicationFilterChain.java:241)
> at org.apache.catalina.core.ApplicationFilterChain.doFilter(
> ApplicationFilterChain.java:208)
> at org.apache.catalina.core.StandardWrapperValve.invoke(
> StandardWrapperValve.java:220)
> at org.apache.catalina.core.StandardContextValve.invoke(
> StandardContextValve.java:122)
> at org.apache.catalina.authenticator.AuthenticatorBase.invoke(
> AuthenticatorBase.java:505)
> at org.apache.catalina.core.StandardHostValve.invoke(
> StandardHostValve.java:169)
> at org.apache.catalina.valves.ErrorReportValve.invoke(
> ErrorReportValve.java:103)
> at org.wso2.carbon.tomcat.ext.valves.CompositeValve.continueInvocation(
> CompositeValve.java:99)
> at org.wso2.carbon.tomcat.ext.valves.TomcatValveContainer.invokeValves(
> TomcatValveContainer.java:49)
> at org.wso2.carbon.tomcat.ext.valves.CompositeValve.invoke(
> CompositeValve.java:62)
> at org.wso2.carbon.tomcat.ext.valves.CarbonStuckThreadDetectionValv
> e.invoke(CarbonStuckThreadDetectionValve.java:159)
> at org.apache.catalina.valves.AccessLogValve.invoke(
> AccessLogValve.java:956)
> at org.wso2.carbon.tomcat.ext.valves.CarbonContextCreatorValve.invoke(
> CarbonContextCreatorValve.java:57)
> at org.apache.catalina.core.StandardEngineValve.invoke(
> StandardEngineValve.java:116)
> at org.apache.catalina.connector.CoyoteAdapter.service(
> CoyoteAdapter.java:436)
> at org.apache.coyote.http11.AbstractHttp11Processor.process(
> AbstractHttp11Processor.java:1078)
> at org.apache.coyote.AbstractProtocol$AbstractConnectionHandler.
> process(AbstractProtocol.java:625)
> at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.
> doRun(NioEndpoint.java:1749)
> at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.
> run(NioEndpoint.java:1708)
> at java.util.concurrent.ThreadPoolExecutor.runWorker(
> ThreadPoolExecutor.java:1142)
> at java.util.concurrent.ThreadPoolExecutor$Worker.run(
> ThreadPoolExecutor.java:617)
> at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(
> TaskThread.java:61)
> at java.lang.Thread.run(Thread.java:748)
> Caused by: org.apache.synapse.SynapseException: Unknown mediator
> referenced by configuration element : {http://ws.apache.org/ns/
> synapse}ldap
> at org.apache.synapse.config.xml.MediatorFactoryFinder.getMediator(
> MediatorFactoryFinder.java:219)
> at org.apache.synapse.config.xml.AbstractListMediatorFactory.addChildren(
> AbstractListMediatorFactory.java:46)
> at org.apache.synapse.config.xml.SequenceMediatorFactory.
> createA

Re: [Dev] Enabling REST to SOAP sample gives an error

2017-11-10 Thread Vijitha Ekanayake
[++ documentation]

The reason for the issue seems to be, ESB is preserving the Content-Type
header as the default behavior. Since GET request doesn't have a
Content-Type, ESB sends application/x-www-form-urlencoded as the
Content-Type to the backend which is the reason for this failure. To
overcome this issue you can comment out the following parameter in the
passthru-http.properties.

http.headers.preserve=Content-Type

Thanks,
Vijitha.

On Fri, Nov 10, 2017 at 5:04 PM, Vijitha Ekanayake <vijit...@wso2.com>
wrote:

> Hi Buddhimala,
>
> The reason for the issue seems to be, ESB is preserving the Content-Type
> header as the default behavior. Since GET request doesn't have a
> Content-Type, ESB sends application/x-www-form-urlencoded as the
> Content-Type to the backend which is the reason for this failure. To
> overcome this issue you can comment out the following parameter in the
> passthru-http.properties.
>
> http.headers.preserve=Content-Type
>
> Thanks,
> Vijitha.
>
>
> On Fri, Nov 10, 2017 at 4:29 PM, Buddhimala Ranasinghe <
> buddhim...@wso2.com> wrote:
>
>> Hi All,
>>
>> Today I tried out "Enabling REST to SOAP" sample in ESB as per the
>> following wso2 document.
>>
>> https://docs.wso2.com/display/ESB500/Configuring+Specific+Us
>> e+Cases#ConfiguringSpecificUseCases-EnablingRESTtoSOAP
>>
>> But when I tried to invoke the API using the curl command, I got
>> following error.
>>
>> The endpoint reference (EPR) for the Operation not found is
>> /services/SimpleStockQuoteService and the WSA Action = null. If this EPR
>> was previously reachable, please contact the server
>> administrator.
>>
>> And the axis2 server side it gave the following error.
>>
>> [2017-11-10 16:25:33,268] ERROR {org.apache.axis2.engine.AxisEngine} -
>> The endpoint reference (EPR) for the Operation not found is
>> /services/SimpleStockQuoteService and the WSA Action = null. If this EPR
>> was previously reachable, please contact the server administrator.
>> org.apache.axis2.AxisFault: The endpoint reference (EPR) for the
>> Operation not found is /services/SimpleStockQuoteService and the WSA
>> Action = null. If this EPR was previously reachable, please contact the
>> server administrator.
>> at org.apache.axis2.engine.DispatchPhase.checkPostConditions(Di
>> spatchPhase.java:102)
>> at org.apache.axis2.engine.Phase.invoke(Phase.java:329)
>> at org.apache.axis2.engine.AxisEngine.invoke(AxisEngine.java:261)
>> at org.apache.axis2.engine.AxisEngine.receive(AxisEngine.java:167)
>> at org.apache.axis2.transport.http.util.RESTUtil.invokeAxisEngi
>> ne(RESTUtil.java:144)
>> at org.apache.axis2.transport.http.util.RESTUtil.processXMLRequ
>> est(RESTUtil.java:89)
>> at org.apache.synapse.transport.nhttp.util.RESTUtil.processPOST
>> Request(RESTUtil.java:213)
>> at org.apache.synapse.transport.nhttp.ServerWorker.processEntit
>> yEnclosingMethod(ServerWorker.java:468)
>> at org.apache.synapse.transport.nhttp.ServerWorker.run(ServerWo
>> rker.java:291)
>> at org.apache.axis2.transport.base.threads.NativeWorkerPool$1.
>> run(NativeWorkerPool.java:172)
>> at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPool
>> Executor.java:1142)
>> at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoo
>> lExecutor.java:617)
>> at java.lang.Thread.run(Thread.java:748)
>> [2017-11-10 16:25:33,270] ERROR 
>> {org.apache.synapse.transport.nhttp.ServerWorker}
>> -  Error processing POST request
>> org.apache.axis2.AxisFault: The endpoint reference (EPR) for the
>> Operation not found is /services/SimpleStockQuoteService and the WSA
>> Action = null. If this EPR was previously reachable, please contact the
>> server administrator.
>> at org.apache.axis2.engine.DispatchPhase.checkPostConditions(Di
>> spatchPhase.java:102)
>> at org.apache.axis2.engine.Phase.invoke(Phase.java:329)
>> at org.apache.axis2.engine.AxisEngine.invoke(AxisEngine.java:261)
>> at org.apache.axis2.engine.AxisEngine.receive(AxisEngine.java:167)
>> at org.apache.axis2.transport.http.util.RESTUtil.invokeAxisEngi
>> ne(RESTUtil.java:144)
>> at org.apache.axis2.transport.http.util.RESTUtil.processXMLRequ
>> est(RESTUtil.java:89)
>> at org.apache.synapse.transport.nhttp.util.RESTUtil.processPOST
>> Request(RESTUtil.java:213)
>> at org.apache.synapse.transport.nhttp.ServerWorker.processEntit
>> yEnclosingMethod(ServerWorker.java:468)
>> at org.apache.synapse.transport.nhttp.ServerWorker.run(ServerWo
>&g

Re: [Dev] Enabling REST to SOAP sample gives an error

2017-11-10 Thread Vijitha Ekanayake
Hi Buddhimala,

The reason for the issue seems to be, ESB is preserving the Content-Type
header as the default behavior. Since GET request doesn't have a
Content-Type, ESB sends application/x-www-form-urlencoded as the
Content-Type to the backend which is the reason for this failure. To
overcome this issue you can comment out the following parameter in the
passthru-http.properties.

http.headers.preserve=Content-Type

Thanks,
Vijitha.


On Fri, Nov 10, 2017 at 4:29 PM, Buddhimala Ranasinghe <buddhim...@wso2.com>
wrote:

> Hi All,
>
> Today I tried out "Enabling REST to SOAP" sample in ESB as per the
> following wso2 document.
>
> https://docs.wso2.com/display/ESB500/Configuring+Specific+Use+Cases#
> ConfiguringSpecificUseCases-EnablingRESTtoSOAP
>
> But when I tried to invoke the API using the curl command, I got following
> error.
>
> The endpoint reference (EPR) for the Operation not found is
> /services/SimpleStockQuoteService and the WSA Action = null. If this EPR
> was previously reachable, please contact the server
> administrator.
>
> And the axis2 server side it gave the following error.
>
> [2017-11-10 16:25:33,268] ERROR {org.apache.axis2.engine.AxisEngine} -
> The endpoint reference (EPR) for the Operation not found is 
> /services/SimpleStockQuoteService
> and the WSA Action = null. If this EPR was previously reachable, please
> contact the server administrator.
> org.apache.axis2.AxisFault: The endpoint reference (EPR) for the Operation
> not found is /services/SimpleStockQuoteService and the WSA Action = null.
> If this EPR was previously reachable, please contact the server
> administrator.
> at org.apache.axis2.engine.DispatchPhase.checkPostConditions(
> DispatchPhase.java:102)
> at org.apache.axis2.engine.Phase.invoke(Phase.java:329)
> at org.apache.axis2.engine.AxisEngine.invoke(AxisEngine.java:261)
> at org.apache.axis2.engine.AxisEngine.receive(AxisEngine.java:167)
> at org.apache.axis2.transport.http.util.RESTUtil.
> invokeAxisEngine(RESTUtil.java:144)
> at org.apache.axis2.transport.http.util.RESTUtil.
> processXMLRequest(RESTUtil.java:89)
> at org.apache.synapse.transport.nhttp.util.RESTUtil.
> processPOSTRequest(RESTUtil.java:213)
> at org.apache.synapse.transport.nhttp.ServerWorker.
> processEntityEnclosingMethod(ServerWorker.java:468)
> at org.apache.synapse.transport.nhttp.ServerWorker.run(
> ServerWorker.java:291)
> at org.apache.axis2.transport.base.threads.NativeWorkerPool$
> 1.run(NativeWorkerPool.java:172)
> at java.util.concurrent.ThreadPoolExecutor.runWorker(
> ThreadPoolExecutor.java:1142)
> at java.util.concurrent.ThreadPoolExecutor$Worker.run(
> ThreadPoolExecutor.java:617)
> at java.lang.Thread.run(Thread.java:748)
> [2017-11-10 16:25:33,270] ERROR 
> {org.apache.synapse.transport.nhttp.ServerWorker}
> -  Error processing POST request
> org.apache.axis2.AxisFault: The endpoint reference (EPR) for the Operation
> not found is /services/SimpleStockQuoteService and the WSA Action = null.
> If this EPR was previously reachable, please contact the server
> administrator.
> at org.apache.axis2.engine.DispatchPhase.checkPostConditions(
> DispatchPhase.java:102)
> at org.apache.axis2.engine.Phase.invoke(Phase.java:329)
> at org.apache.axis2.engine.AxisEngine.invoke(AxisEngine.java:261)
> at org.apache.axis2.engine.AxisEngine.receive(AxisEngine.java:167)
> at org.apache.axis2.transport.http.util.RESTUtil.
> invokeAxisEngine(RESTUtil.java:144)
> at org.apache.axis2.transport.http.util.RESTUtil.
> processXMLRequest(RESTUtil.java:89)
> at org.apache.synapse.transport.nhttp.util.RESTUtil.
> processPOSTRequest(RESTUtil.java:213)
> at org.apache.synapse.transport.nhttp.ServerWorker.
> processEntityEnclosingMethod(ServerWorker.java:468)
> at org.apache.synapse.transport.nhttp.ServerWorker.run(
> ServerWorker.java:291)
> at org.apache.axis2.transport.base.threads.NativeWorkerPool$
> 1.run(NativeWorkerPool.java:172)
> at java.util.concurrent.ThreadPoolExecutor.runWorker(
> ThreadPoolExecutor.java:1142)
> at java.util.concurrent.ThreadPoolExecutor$Worker.run(
> ThreadPoolExecutor.java:617)
> at java.lang.Thread.run(Thread.java:748)
>
> Please help to resolve.
>
> Regards,
> Buddhimala
> --
>
>
> *Buddhimala Ranasinghe*
> Software Engineer-Support Team | WSO2
> Emil: buddhim...@wso2.com
> Mobile:+94771563138 <+94%2077%20156%203138>
> Web:http://wso2.com
> [image: https://wso2.com/signature] <https://wso2.com/signature>
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


-- 
Vijitha Ekanayake
Senior Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] [Integration Cloud] Swagger Support for ESB REST APIs

2017-09-14 Thread Vijitha Ekanayake
ll require further
>>>>>>> digging and analyzing on the configuration.
>>>>>>>
>>>>>>
>>>>>> Have you consider adding additional information as annotations/notes
>>>>>> in the config. AFAIK we do not have a config to add annotations so
>>>>>> currently we can define them as properties but going forward may be we 
>>>>>> can
>>>>>> add some way to annotate synapse.
>>>>>>
>>>>>> In the longer run mostly synapse APIs will be generated out of
>>>>>> swagger definitions thus having the ability to contain all the API
>>>>>> definition information in the synapse file would be important.
>>>>>>
>>>>>> Thanks
>>>>>> Jo
>>>>>>
>>>>>>
>>>>>>>
>>>>>>> Find the diff of these changes done to the Swagger definition at [4]
>>>>>>>
>>>>>>> To get the required information from the Rest API configuration we
>>>>>>> can invoke RestApiAdminServices's getApiByName operation which returns 
>>>>>>> the
>>>>>>> following response [5] for an API created that has the PetStore 
>>>>>>> resources.
>>>>>>> We can identify the methods and uri-template and mappings from this
>>>>>>> response.
>>>>>>>
>>>>>>> Please let know your thoughts.
>>>>>>>
>>>>>>> Thanks,
>>>>>>> Maheeka
>>>>>>>
>>>>>>> [1] http://petstore.swagger.io/#/pet
>>>>>>> [2] https://gist.github.com/maheeka/4eaedd2e2e0765959a4166865bf9adf9
>>>>>>> [3] https://gist.github.com/maheeka/ec23751f21d8d7d5abaa4f9130f233f2
>>>>>>> [4] https://www.diffchecker.com/xEu0NSNz
>>>>>>> [5] http://schemas.
>>>>>>> xmlsoap.org/soap/envelope/">
>>>>>>>
>>>>>>>   http://org.apache.axis2/xsd
>>>>>>> ">
>>>>>>>  http://api.rest.carbon.wso2.org/xsd; xmlns:xsi="http://www.w3.org/2
>>>>>>> 001/XMLSchema-instance">
>>>>>>> 
>>>>>>> /pet
>>>>>>> PetstoreAPI.xml
>>>>>>> 
>>>>>>> false
>>>>>>> PetstoreAPI
>>>>>>> -1
>>>>>>> 
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>>POST
>>>>>>>PUT
>>>>>>>
>>>>>>>
>>>>>>>0
>>>>>>>
>>>>>>>/
>>>>>>>
>>>>>>> 
>>>>>>> 
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>>POST
>>>>>>>DELETE
>>>>>>>GET
>>>>>>>
>>>>>>>
>>>>>>>0
>>>>>>>/{petId}
>>>>>>>
>>>>>>>
>>>>>>> 
>>>>>>> false
>>>>>>> false
>>>>>>>  
>>>>>>>   
>>>>>>>
>>>>>>> 
>>>>>>>
>>>>>>>
>>>>>>> Thanks,
>>>>>>>
>>>>>>> Maheeka Jayasuriya
>>>>>>> Senior Software Engineer
>>>>>>> Mobile : +9450661
>>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>> --
>>>>>>
>>>>>> --
>>>>>> *Joseph Fonseka*
>>>>>> WSO2 Inc.; http://wso2.com
>>>>>> lean.enterprise.middleware
>>>>>>
>>>>>> mobile: +94 772 512 430
>>>>>> skype: jpfonseka
>>>>>>
>>>>>> * <http://lk.linkedin.com/in/rumeshbandara>*
>>>>>>
>>>>>>
>>>>>
>>>>>
>>>>> --
>>>>> Jagath Ariyarathne
>>>>> Technical Lead
>>>>> WSO2 Inc.  http://wso2.com/
>>>>> Email: jaga...@wso2.com
>>>>> Mob  : +94 77 386 7048
>>>>> <http://wso2.com/signature>
>>>>>
>>>>
>>>>
>>>>
>>>> --
>>>> Jagath Ariyarathne
>>>> Technical Lead
>>>> WSO2 Inc.  http://wso2.com/
>>>> Email: jaga...@wso2.com
>>>> Mob  : +94 77 386 7048
>>>> <http://wso2.com/signature>
>>>>
>>>
>>>
>>>
>>> --
>>> Jagath Ariyarathne
>>> Technical Lead
>>> WSO2 Inc.  http://wso2.com/
>>> Email: jaga...@wso2.com
>>> Mob  : +94 77 386 7048
>>> <http://wso2.com/signature>
>>>
>>
>>
>>
>> --
>>
>> --
>> *Joseph Fonseka*
>> WSO2 Inc.; http://wso2.com
>> lean.enterprise.middleware
>>
>> mobile: +94 772 512 430
>> skype: jpfonseka
>>
>> * <http://lk.linkedin.com/in/rumeshbandara>*
>>
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
> Thanks & Regards,
>
> *Chamalee De Silva*
> Software Engineer
> *WS**O2* Inc. :http://wso2.com/
>
> Office   :- *+94 11 2145345 <%2B94%2011%202145345>*
> mobile  :- *+94 7 <%2B94%2077%202782039>1 4315942*
>
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


-- 
Vijitha Ekanayake
Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] Enrich Json with new elements not working for me .Please guide.

2017-07-18 Thread Vijitha Ekanayake
Hi Aditya,

I could try with the following configurations which worked for me.


http://ws.apache.org/ns/synapse;
 name="EnrichAPI"
 context="/test">
   
  
 
 
 
 


 
 


 
 
  
  
   



Thanks.

On Tue, Jul 18, 2017 at 12:41 PM, aditya shivankar <
shivankar.adit...@gmail.com> wrote:

> Hi,
>
> Forgot to mention .
> I cannot use payload factory here because this is just an example I
> created. and my actual data to be enriched is a huge json response from a
> backend service.
>
> With Regards,
> Aditya
>
>
>
>
> -- Forwarded message --
> From: aditya shivankar <shivankar.adit...@gmail.com>
> Date: Tue, Jul 18, 2017 at 12:35 PM
> Subject: Enrich Json with new elements not working for me .Please guide.
> To: dev@wso2.org
>
>
> Hi,
>
> Enrich Json with new elements not working for me .Please guide.
>
> Input request :
>
> {
> "id" : "1",
> "make" : "NAHB"
> }
> I the wso2 flow named eg1.xml . I am trying to enrich the incoming json
> request with new element "name"
>
> processing xml: (eg1.xml)
>
> 
> http://ws.apache.org/ns/synapse;>
> 
> 
> 
> 
> 
> 
> 
> 
> Home
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
>
>
> current output :
> {
> "id" : "1",
> "make" : "NAHB"
> }
>
> Desired output :
>
> {
> "id" : "1",
> "make" : "NAHB"
> "name" : "Home"
> }
>
> logger output :
>
> Logger1 output(log level full) :
> LogMediator To: /eg1/hi, MessageID: 
> urn:uuid:2f627daf-ac9c-4492-84ea-2736670724e8,
> Direction: request, Payload:
> {
> "id": "1",
> "make": "NAHB"
> }
>
> Logger2 output :
> LogMediator msg1 =
> 
> 1
> NAHB
> 
>
> Logger3 output :
> LogMediator msg2 =
> 
> 1
> NAHB
> Home
> 
>
> Logger4 output(log level full) :
> LogMediator To: /eg1/hi, MessageID: 
> urn:uuid:2f627daf-ac9c-4492-84ea-2736670724e8,
> Direction: request, Payload:
> {
> "id": "1",
> "make": "NAHB"
> }
>
> Postman output :
> {
> "id": "1",
> "make": "NAHB"
> }
>
> Regards,
> Aditya
>
>
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


-- 
Vijitha Ekanayake
Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] Fixing the cache mediator

2017-07-04 Thread Vijitha Ekanayake
Hi Riyafa,

Apart from the issues that you have mentioned, we may need to consider
following points while refactoring the cache mediator implementation.

1). Verify the cache mediator functionality with different configuration
parameters and fix if there is anything broken.
2). Implement a mechanism to support caching when using the call mediator.
3). Feasibility to introduce native JSON caching support to cache mediator.
4). Feasibility to introduce service level caching which isn't support at
the moment.


Thanks.


On Tue, Jul 4, 2017 at 12:06 PM, Riyafa Abdul Hameed <riy...@wso2.com>
wrote:

> Dear all,
>
> By going through the issues faced by the customers in the past I
> discovered the following issues:
>
>1. Continue the execution on cache hit. Reported as an issue in
>github[1]
>2. Issue in processing JSON array (payload) with a single element when
>response caching is enabled where expected response is:
>
> [
>{
>   "msg":"Hello",
>   "services":[
>  "elec",
>  "patrol"
>   ],
>   "test":"World."
>},
>{
>   "msg":"Hi",
>   "services":[
>  "water"
>   ],
>   "test":"Sri Lanka."
>}
> ]
>
> but received response is:
>
> [
> { "msg": "Hello", "services": [ "elec", "patrol" ], "test": "World." }
>
> ,
> { "msg": "Hi", "services": "water", "test": "Sri Lanka." }
>
> ]
>
> This issue has been fixed in the carbon mediation[2].
>
>3.  When a xml body with processing instructions is stored in
> cache and sent back as json it fails with an exception. Issue was reported
> in 2015 and already has a fix in current EI.
>
> Since the last two issues have been already fixed, I would like to know
> what other issues if any needs to be addressed and if a complete rewrite of
> the cache mediator would be required.
>
> [1] https://github.com/wso2/product-ei/issues/695
>
> [2]https://github.com/riyafa/carbon-mediation/commit/
> 7aaf597988a333e1cad36dc0b5057e24fb779a5c
>
>
> Thank you.
>
> Riyafa
>
> --
> Riyafa Abdul Hameed
> Software Engineer, WSO2 Lanka (Pvt) Ltd <http://wso2.com/>
>
> Email: riy...@wso2.com <riyafa...@cse.mrt.ac.lk>
> Website: https://riyafa.wordpress.com/ <http://riyafa.wordpress.com/>
> <http://facebook.com/riyafa.ahf>  <http://lk.linkedin.com/in/riyafa>
> <http://twitter.com/Riyafa1>
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


-- 
Vijitha Ekanayake
Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


[Dev] WSO2 Enterprise Integrator 6.1.1 Released

2017-05-04 Thread Vijitha Ekanayake
*WSO2 Enterprise Integrator 6.1.1 Released*


WSO2 Enterprise Integrator team is pleased to announce the release of WSO2
Enterprise Integrator 6.1.1.

*Release Note*

May 2017

WSO2 EI is a unified distribution of WSO2 Enterprise Service Bus and Data
Services Server, which works as a single runtime (Integrator) along with
optional runtimes for WSO2 Analytics, Business Processor, Message Broker
and MSF4J. This product distribution includes a shared component directory,
with profile-based management capabilities for each runtime.

WSO2 EI simplifies integration by allowing users to easily configure
message routing, intermediation, transformation, logging, task scheduling,
load balancing, failover routing, event brokering etc. Data services and
various applications can also be hosted and exposed using WSO2 EI. These
integration capabilities are further powered by the capabilities of the
WSO2 Analytics, Business Processor and Message Broker runtimes.


For more information on WSO2 Enterprise Integrator 6.1.1 and to download
the product and tooling please visit http://wso2.com/integration/


For WSO2 EI 6.1.1 Documentation, please visit https://docs.wso2.com/display/
EI611/WSO2+Enterprise+Integrator+Documentation

Source can be found in

EI 6.1.1 Runtime <https://github.com/wso2/product-ei/releases/tag/v6.1.1>

Issues Fixed for this release

https://github.com/wso2/product-ei/issues?q=is%
3Aissue+is%3Aclosed+milestone%3A6.1.1


*Known Issues*

For a complete list of features to be implemented please refer the list of
known issues:

https://github.com/wso2/product-ei/issues
Contact us

WSO2 developers can be contacted via the mailing list: dev@wso2.org

For details on subscriptions see http://wso2.org/mail
Support

We are committed to ensuring that your enterprise middleware deployment is
completely supported from evaluation to production. Our unique approach
ensures that all support leverages our open development methodology and is
provided by the very same engineers who build the technology.

For more details and to take advantage of this unique opportunity please
visit http://wso2.com/support/

Thank you for your interest in WSO2 Enterprise Integrator 6.1.1.


- The WSO2 EI Team -

-- 
Vijitha Ekanayake
Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] [Vote] Release WSO2 Enterprise Integrator 6.1.1 RC1

2017-05-03 Thread Vijitha Ekanayake
Hi All,

Thanks for testing and verifying the WSO2 Enterprise Integrator 6.1.1 RC1.
We are closing the vote now. This vote has passed with 8 +1s and 0 -1s.
Therefore we are proceeding with the WSO2 Enterprise Integrator 6.1.1
release.

8 +1
0 -1

Thanks.

On Wed, May 3, 2017 at 3:14 PM, Madhawa Gunasekara <madha...@wso2.com>
wrote:

> Hi All,
>
> I have tested simple CRUD operations with data services.
>   tested request box, nested queries for MySQL.
>
> I found an edge case issue with JSON with nested queries in data services,
> which was reported in [1] JIRA. This is reproducible in 6.1.1. Since the
> fix has merged to the axis2 repo. We can do this release with this known
> issue. because We are going to do another patch release soon.
>
> [1] https://wso2.org/jira/browse/DS-1272
>
> [+] Stable - go ahead and release
>
> Thanks,
> Madhawa
>
> On Tue, May 2, 2017 at 4:31 PM, Sasikala Kottegoda <sasik...@wso2.com>
> wrote:
>
>> Hi all,
>>
>> I have tested distributed transactions for the broker profile of WSO2
>> Enterprise Integrator 6.1.1 for the following scenarios:
>> - dtx commit - Publish message to queue. Transactionally receive and
>> publish to another queue
>> - dtx rollback - Publish message to the same queue. Rollback the message
>> continuously and and verify that it ends up in DLC.
>> - dtx recover - Recover before and after preparing
>> - Session joining
>>
>> [+] Stable - go ahead and release
>>
>> Thank you,
>> Sasikala
>>
>> On Fri, Apr 28, 2017 at 5:50 PM, Milinda Perera <milin...@wso2.com>
>> wrote:
>>
>>> Hi Devs,
>>>
>>> This is the first release candidate of WSO2 Enterprise Integrator 6.1.1.
>>>
>>> The vote will be open for 24 hours or as needed. Please download, test
>>> the product and vote.
>>>
>>> Source & binary distribution files:
>>>
>>> *Product-EI:*
>>>
>>> https://svn.wso2.org/repos/wso2/scratch/EI/Votes/6.1.1-RC1/w
>>> so2ei-6.1.1-rc1.zip
>>>
>>> *Tooling pack to be used for EI runtime testing:*
>>>
>>> https://svn.wso2.org/repos/wso2/people/erandac/ei_610_tooling/
>>>
>>>
>>>
>>> *The tag to be voted upon:*https://github.com/wso2/produc
>>> t-ei/releases/tag/v6.1.1-rc1
>>>
>>> [-] Broken - do not release (explain why)
>>> [+] Stable - go ahead and release
>>>
>>> Thanks,
>>> Integration Team
>>>
>>> --
>>> Milinda Perera
>>> Senior Software Engineer;
>>> WSO2 Inc. http://wso2.com ,
>>> Mobile: (+94) 714 115 032 <+94%2071%20411%205032>
>>>
>>>
>>> ___
>>> Dev mailing list
>>> Dev@wso2.org
>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>
>>>
>>
>>
>> --
>> Sasikala Kottegoda
>> *Senior Software Engineer*
>> WSO2 Inc., http://wso2.com/
>> lean. enterprise. middleware
>> Mobile: +94 774835928 <+94%2077%20483%205928>
>>
>> [image: https://wso2.com/signature] <https://wso2.com/signature>
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
> *Madhawa Gunasekara*
> Software Engineer
> WSO2 Inc.; http://wso2.com
> lean.enterprise.middleware
>
> mobile: +94 719411002 <+94+719411002>
> blog: *http://madhawa-gunasekara.blogspot.com
> <http://madhawa-gunasekara.blogspot.com>*
> linkedin: *http://lk.linkedin.com/in/mgunasekara
> <http://lk.linkedin.com/in/mgunasekara>*
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


-- 
Vijitha Ekanayake
Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] [Vote] Release WSO2 Enterprise Integrator 6.1.1 RC1

2017-05-03 Thread Vijitha Ekanayake
Tested and verified the following:

Proxy services, APIs
JMS (Message Store/Processor) with WSO2 MB
Data Mapper scenarios
CAR file deployment through management console
MSF4J service deployment
BPMN processors (Mail Task, Rest Task, User Task)
Mail Connector integration
Data Services Sample scenarios (Soap, Rest)


No issues found.
[x] Stable - go ahead and release

On Wed, May 3, 2017 at 12:55 PM, Isuru Wijesinghe <isur...@wso2.com> wrote:

> Hi All,
>
> Tested and verified following
>
> Proxy services, APIs
> CAR file deployment through management console
> JMS (Message Store/Processor, JMS Consumerand Producer scenarios)
> BPMN basic functionality
> BPMN Explorer
> BPMN samples
>
> No issues found.
> [x] Stable - go ahead and release
>
> Thanks,
> Isuru.
>
> On Wed, May 3, 2017 at 12:08 PM, Vinod Kavinda <vi...@wso2.com> wrote:
>
>> Hi All,
>> Tested the BPEL and BPMN functionality including BPMN explorer in BPS
>> profile.
>>
>> [+] Stable - go ahead and release
>>
>> Regards,
>> Vinod
>>
>> On Tue, May 2, 2017 at 4:31 PM, Sasikala Kottegoda <sasik...@wso2.com>
>> wrote:
>>
>>> Hi all,
>>>
>>> I have tested distributed transactions for the broker profile of WSO2
>>> Enterprise Integrator 6.1.1 for the following scenarios:
>>> - dtx commit - Publish message to queue. Transactionally receive and
>>> publish to another queue
>>> - dtx rollback - Publish message to the same queue. Rollback the
>>> message continuously and and verify that it ends up in DLC.
>>> - dtx recover - Recover before and after preparing
>>> - Session joining
>>>
>>> [+] Stable - go ahead and release
>>>
>>> Thank you,
>>> Sasikala
>>>
>>> On Fri, Apr 28, 2017 at 5:50 PM, Milinda Perera <milin...@wso2.com>
>>> wrote:
>>>
>>>> Hi Devs,
>>>>
>>>> This is the first release candidate of WSO2 Enterprise Integrator 6.1.1.
>>>>
>>>> The vote will be open for 24 hours or as needed. Please download, test
>>>> the product and vote.
>>>>
>>>> Source & binary distribution files:
>>>>
>>>> *Product-EI:*
>>>>
>>>> https://svn.wso2.org/repos/wso2/scratch/EI/Votes/6.1.1-RC1/w
>>>> so2ei-6.1.1-rc1.zip
>>>>
>>>> *Tooling pack to be used for EI runtime testing:*
>>>>
>>>> https://svn.wso2.org/repos/wso2/people/erandac/ei_610_tooling/
>>>>
>>>>
>>>>
>>>> *The tag to be voted upon:*https://github.com/wso2/produc
>>>> t-ei/releases/tag/v6.1.1-rc1
>>>>
>>>> [-] Broken - do not release (explain why)
>>>> [+] Stable - go ahead and release
>>>>
>>>> Thanks,
>>>> Integration Team
>>>>
>>>> --
>>>> Milinda Perera
>>>> Senior Software Engineer;
>>>> WSO2 Inc. http://wso2.com ,
>>>> Mobile: (+94) 714 115 032 <+94%2071%20411%205032>
>>>>
>>>>
>>>> ___
>>>> Dev mailing list
>>>> Dev@wso2.org
>>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>>
>>>>
>>>
>>>
>>> --
>>> Sasikala Kottegoda
>>> *Senior Software Engineer*
>>> WSO2 Inc., http://wso2.com/
>>> lean. enterprise. middleware
>>> Mobile: +94 774835928 <+94%2077%20483%205928>
>>>
>>> [image: https://wso2.com/signature] <https://wso2.com/signature>
>>>
>>> ___
>>> Dev mailing list
>>> Dev@wso2.org
>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>
>>>
>>
>>
>> --
>> Vinod Kavinda
>> Senior Software Engineer
>> *WSO2 Inc. - lean . enterprise . middleware <http://www.wso2.com>.*
>> Mobile : +94 (0) 712 415544
>> Blog : http://soatechflicks.blogspot.com/
>> [image: http://wso2.com/signature]
>> <http://wso2.com/signature>
>>
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
> Isuru Wijesinghe
> *Software Engineer*
> WSO2 inc : http://wso2.com
> lean.enterprise.middleware
> Mobile: 0710933706
> isur...@wso2.com
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


-- 
Vijitha Ekanayake
Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] [Architecture] [Vote] Release WSO2 Enterprise Integrator 6.1.0 RC1

2017-04-08 Thread Vijitha Ekanayake
Tested and verified the following:

Proxy services, APIs
JMS (Message Store/Processor, JMS Inbound, JMS Consumer/Producer scenarios)
with WSO2 MB
Data Mapper scenarios
CAR file deployment through management console
MSF4J service deployment
BPMN processors (Mail Task, Rest Task, User Task)
Mail Connector integration
Data Services Sample scenarios (Soap, Rest)


No issues found.
[x] Stable - go ahead and release

Thanks.

On Sat, Apr 8, 2017 at 9:48 PM, Nandika Jayawardana <nand...@wso2.com>
wrote:

> Tested data services, microservice deployment, ciphertool, bpel processes,
> bpmn processes, proxy services and  samples deployment.
>
> No issues found.
> [x] Stable - go ahead and release
>
>
> Nandika
>
> On Sat, Apr 8, 2017 at 6:52 PM, Prabushi Samarakoon <prabus...@wso2.com>
> wrote:
>
>> Tested the following.
>>
>>- Using mysql as a data service with INSERT, UPDATE, DELETE queries.
>>- Deploying microservices and invoking them.
>>- Feature installation using a pom file.
>>- Using VFS transport as a transport medium and for file procesing.
>>- Management console footer update.
>>- Namespace editor UI update.
>>- Data source test connection pop up UI update.
>>
>>
>> No issues found.
>> [x] Stable - go ahead and release
>>
>> Thanks,
>> Prabushi
>>
>> On Sat, Apr 8, 2017 at 5:26 AM, Eranda Rajapakshe <eran...@wso2.com>
>> wrote:
>>
>>> Hi Devs, This is the first release candidate of WSO2 Enterprise
>>> Integrator 6.1.0.
>>>
>>> The vote will be open for 24 hours or as needed. Please download, test
>>> the product and vote. ​​This release fixes the following issues: 
>>> *https://github.com/wso2/product-ei/issues?q=is%3Aissue+is%3Aclosed+milestone%3A6.1.0
>>> <https://github.com/wso2/product-ei/issues?q=is%3Aissue+is%3Aclosed+milestone%3A6.1.0>*
>>> ​​*Source & binary distribution files*:
>>> Product-EI
>>>
>>> https://svn.wso2.org/repos/wso2/scratch/EI/6.1.0-RC1/wso2ei-
>>> 6.1.0-rc1.zip
>>> https://github.com/wso2/product-ei/releases/tag/v6.1.0-rc1 Tooling pack
>>>
>>> https://svn.wso2.org/repos/wso2/people/erandac/ei_610_tooling/
>>>
>>> *​​*
>>>
>>> *The tag to be voted upon*: https://github.com/wso2/produc
>>> t-ei/releases/tag/v6.1.0-rc1 [ ] Broken - do not release (explain why)
>>> [ ] Stable - go ahead and release Thanks, Integration Team
>>>
>>> ___
>>> Architecture mailing list
>>> architect...@wso2.org
>>> https://mail.wso2.org/cgi-bin/mailman/listinfo/architecture
>>>
>>>
>>
>>
>> --
>> *Prabushi Samarakoon*
>> Software Engineer
>> Mobile: +94715434580 <071%20543%204580>
>> Email: prabus...@wso2.com
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
> Nandika Jayawardana
> WSO2 Inc ; http://wso2.com
> lean.enterprise.middleware
>
> ___
> Architecture mailing list
> architect...@wso2.org
> https://mail.wso2.org/cgi-bin/mailman/listinfo/architecture
>
>


-- 
Vijitha Ekanayake
Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] Please review and merge the pull request

2017-04-06 Thread Vijitha Ekanayake
Thanks Thusitha !!!

On Thu, Apr 6, 2017 at 11:58 AM, Thusitha Thilina Dayaratne <
thusit...@wso2.com> wrote:

> Merged.
>
> On Thu, Apr 6, 2017 at 11:54 AM, Vinod Kavinda <vi...@wso2.com> wrote:
>
>> Hi Kishanthan,
>> Please review and merge PR[1] for preparing 4.4.16 release.
>>
>> [1] - https://github.com/wso2/carbon-kernel/pull/1350
>>
>> Thanks
>>
>> On Thu, Apr 6, 2017 at 10:37 AM, Vijitha Ekanayake <vijit...@wso2.com>
>> wrote:
>>
>>> Hi Kishanthan,
>>>
>>> I've updated the PR[1] with the issue[2] and a proper description. Could
>>> you review and merge the pull request?
>>>
>>>
>>> [1]. https://github.com/wso2/carbon-kernel/pull/1349
>>> [2]. https://github.com/wso2/product-ei/issues/322
>>>
>>>
>>> Thanks
>>>
>>> On Thu, Apr 6, 2017 at 9:59 AM, Kishanthan Thangarajah <
>>> kishant...@wso2.com> wrote:
>>>
>>>> Can you also create a github issue with the proper description for this
>>>> and link it with the PR?
>>>>
>>>> On Wed, Apr 5, 2017 at 9:44 PM, Vijitha Ekanayake <vijit...@wso2.com>
>>>> wrote:
>>>>
>>>>> Hi Carbon team,
>>>>>
>>>>> Please merge the pull request [1] which contains critical fixes to
>>>>> support DSS multitenancy over passthru transport.
>>>>>
>>>>> [1]. https://github.com/wso2/carbon-kernel/pull/1349
>>>>>
>>>>> Thanks.
>>>>>
>>>>> --
>>>>> Vijitha Ekanayake
>>>>> Software Engineer*, *WSO2, Inc.; http://wso2.com/
>>>>> Mobile : +94 777 24 73 39 | +94 718 74 44 08
>>>>> lean.enterprise.middleware
>>>>>
>>>>
>>>>
>>>>
>>>> --
>>>> *Kishanthan Thangarajah*
>>>> Technical Lead,
>>>> Platform Technologies Team,
>>>> WSO2, Inc.
>>>> lean.enterprise.middleware
>>>>
>>>> Mobile - +94773426635 <+94%2077%20342%206635>
>>>> Blog - *http://kishanthan.wordpress.com
>>>> <http://kishanthan.wordpress.com>*
>>>> Twitter - *http://twitter.com/kishanthan
>>>> <http://twitter.com/kishanthan>*
>>>>
>>>
>>>
>>>
>>> --
>>> Vijitha Ekanayake
>>> Software Engineer*, *WSO2, Inc.; http://wso2.com/
>>> Mobile : +94 777 24 73 39 | +94 718 74 44 08
>>> lean.enterprise.middleware
>>>
>>
>>
>>
>> --
>> Vinod Kavinda
>> Software Engineer
>> *WSO2 Inc. - lean . enterprise . middleware <http://www.wso2.com>.*
>> Mobile : +94 (0) 712 415544
>> Blog : http://soatechflicks.blogspot.com/
>> [image: http://wso2.com/signature]
>> <http://wso2.com/signature>
>>
>>
>
>
> --
> Thusitha Dayaratne
> WSO2 Inc. - lean . enterprise . middleware |  wso2.com
>
> Mobile  +94712756809 <+94%2071%20275%206809>
> Blog  alokayasoya.blogspot.com
> Abouthttp://about.me/thusithathilina
> <http://wso2.com/signature>
>
>


-- 
Vijitha Ekanayake
Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] Please review and merge the pull request

2017-04-05 Thread Vijitha Ekanayake
Hi Kishanthan,

I've updated the PR[1] with the issue[2] and a proper description. Could
you review and merge the pull request?


[1]. https://github.com/wso2/carbon-kernel/pull/1349
[2]. https://github.com/wso2/product-ei/issues/322


Thanks

On Thu, Apr 6, 2017 at 9:59 AM, Kishanthan Thangarajah <kishant...@wso2.com>
wrote:

> Can you also create a github issue with the proper description for this
> and link it with the PR?
>
> On Wed, Apr 5, 2017 at 9:44 PM, Vijitha Ekanayake <vijit...@wso2.com>
> wrote:
>
>> Hi Carbon team,
>>
>> Please merge the pull request [1] which contains critical fixes to
>> support DSS multitenancy over passthru transport.
>>
>> [1]. https://github.com/wso2/carbon-kernel/pull/1349
>>
>> Thanks.
>>
>> --
>> Vijitha Ekanayake
>> Software Engineer*, *WSO2, Inc.; http://wso2.com/
>> Mobile : +94 777 24 73 39 | +94 718 74 44 08
>> lean.enterprise.middleware
>>
>
>
>
> --
> *Kishanthan Thangarajah*
> Technical Lead,
> Platform Technologies Team,
> WSO2, Inc.
> lean.enterprise.middleware
>
> Mobile - +94773426635 <+94%2077%20342%206635>
> Blog - *http://kishanthan.wordpress.com <http://kishanthan.wordpress.com>*
> Twitter - *http://twitter.com/kishanthan <http://twitter.com/kishanthan>*
>



-- 
Vijitha Ekanayake
Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] [VOTE] Release WSO2 Enterprise Service Bus 5.0.0 RC4

2016-08-19 Thread Vijitha Ekanayake
 Mobile: +94 77 952 6548
>>>>>>
>>>>>
>>>>>
>>>>> ___
>>>>> Dev mailing list
>>>>> Dev@wso2.org
>>>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>>>
>>>>>
>>>>
>>>>
>>>> --
>>>>
>>>> *Prabath Ariyarathna*
>>>>
>>>> *Associate Technical Lead*
>>>>
>>>> *WSO2, Inc. *
>>>>
>>>> *lean . enterprise . middleware *
>>>>
>>>>
>>>> *Email: prabat...@wso2.com <prabat...@wso2.com>*
>>>>
>>>> *Blog: http://prabu-lk.blogspot.com <http://prabu-lk.blogspot.com>*
>>>>
>>>> *Flicker : https://www.flickr.com/photos/47759189@N08
>>>> <https://www.flickr.com/photos/47759189@N08>*
>>>>
>>>> *Mobile: +94 77 699 4730 *
>>>>
>>>>
>>>>
>>>>
>>>>
>>>>
>>>> ___
>>>> Dev mailing list
>>>> Dev@wso2.org
>>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>>
>>>>
>>>
>>>
>>> --
>>> Nuwan Wimalasekara
>>> Associate Technical Lead
>>> WSO2, Inc.: http://wso2.com
>>> lean. enterprise. middleware
>>>
>>> phone: +94 71 668 4620
>>>
>>>
>>>
>>>
>>> ___
>>> Dev mailing list
>>> Dev@wso2.org
>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>
>>>
>>
>>
>> --
>> Rajith Vitharana
>>
>> Senior Software Engineer,
>> WSO2 Inc. : wso2.com
>> Mobile : +94715883223
>> Blog : http://lankavitharana.blogspot.com/
>> <http://wso2.com/signature>
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
> *Kevin Ratnaskera*
> Software Engineer
> WSO2 Inc. - http://wso2.com
> lean . enterprise . middleware
> Mobile - +94774696950
> Linkedin - https://www.linkedin.com/in/djkevincr
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


-- 
Vijitha Ekanayake
Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] When to use NO_ENTITY_BODY

2016-07-28 Thread Vijitha Ekanayake
[adding commit revision]
https://github.com/VijithaEkanayake/wso2-synapse-1/commit/ba2ba967079de74971454064f126360a38a9c878

On Thu, Jul 28, 2016 at 3:02 PM, Vijitha Ekanayake <vijit...@wso2.com>
wrote:

> Hi Udara,
>
> We need to remove NO_ENTITY_BODY property if we want to generate a
> response from the ESB itself to a request without an entity body, for
> example, GET request. According to commit[1], NO_ENTITY_BODY property
> programmatically removed from the code as an improvement in PayloadFactory
> mediator. Therefore no need to add property[1] if we are using payload
> factory mediator in synapse configurations.
>
> [1]. 
>
> Thanks.
>
> On Thu, Jul 28, 2016 at 2:29 PM, Udara Liyanage <ud...@wso2.com> wrote:
>
>> Hi,
>>
>> According to [1], NO_ENTITY_BODY property is set if the client want to
>> get response with entities for requests which does not have an entity body
>> such as GET and DELETE.
>>
>> 1) My first question according to [1] by default ESB will not send a
>> response for requests without body. That is OK for DELETE, but how about
>> GET. GET are supposed to get a response.
>>
>> 2) I have below api definition. with a simple GET which generates a
>> simple response.
>> I get a response for GET even I do or don't remove NO_ENTITY_BODY
>> property. Behavior is same for DELETE too.
>>
>> http://ws.apache.org/ns/synapse; name="GetTickets"
>> context="/tickets">
>>
>>   
>>  
>> {"fname":"udara","lname":liyanage""}
>> 
>>  
>>  
>>   
>>
>> 
>>
>> *Request and response*
>> curl -X GET -H "Authorization: Token" "http://localhost:8280/tickets/;
>> {"name":"udara","age":"10"}
>>
>> [1]
>> https://docs.wso2.com/display/ESB403/HTTP+Transport+Specific+Properties
>> --
>>
>> Udara Liyanage
>> Software Engineer
>> WSO2, Inc.: http://wso2.com
>> lean. enterprise. middleware
>>
>> Blog: http://udaraliyanage.wordpress.com
>>
>
>
>
> --
> Vijitha Ekanayake
> Software Engineer*, *WSO2, Inc.; http://wso2.com/
> Mobile : +94 777 24 73 39 | +94 718 74 44 08
> lean.enterprise.middleware
>



-- 
Vijitha Ekanayake
Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] When to use NO_ENTITY_BODY

2016-07-28 Thread Vijitha Ekanayake
Hi Udara,

We need to remove NO_ENTITY_BODY property if we want to generate a response
from the ESB itself to a request without an entity body, for example, GET
request. According to commit[1], NO_ENTITY_BODY property programmatically
removed from the code as an improvement in PayloadFactory mediator.
Therefore no need to add property[1] if we are using payload factory
mediator in synapse configurations.

[1]. 

Thanks.

On Thu, Jul 28, 2016 at 2:29 PM, Udara Liyanage <ud...@wso2.com> wrote:

> Hi,
>
> According to [1], NO_ENTITY_BODY property is set if the client want to get
> response with entities for requests which does not have an entity body such
> as GET and DELETE.
>
> 1) My first question according to [1] by default ESB will not send a
> response for requests without body. That is OK for DELETE, but how about
> GET. GET are supposed to get a response.
>
> 2) I have below api definition. with a simple GET which generates a simple
> response.
> I get a response for GET even I do or don't remove NO_ENTITY_BODY
> property. Behavior is same for DELETE too.
>
> http://ws.apache.org/ns/synapse; name="GetTickets"
> context="/tickets">
>
>   
>  
> {"fname":"udara","lname":liyanage""}
> 
>  
>  
>   
>
> 
>
> *Request and response*
> curl -X GET -H "Authorization: Token" "http://localhost:8280/tickets/;
> {"name":"udara","age":"10"}
>
> [1]
> https://docs.wso2.com/display/ESB403/HTTP+Transport+Specific+Properties
> --
>
> Udara Liyanage
> Software Engineer
> WSO2, Inc.: http://wso2.com
> lean. enterprise. middleware
>
> Blog: http://udaraliyanage.wordpress.com
>



-- 
Vijitha Ekanayake
Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] Setting JMS Version gloably

2016-06-07 Thread Vijitha Ekanayake
Hi Manu/Dilshani,

According to the current implementation It seems, we haven't done any
changes in JMSTransportListener side. JMS 2.0 listener implementation is
supported as JMS inbound endpoint and sender implementation support on JMS
transport sender. You can refer mail thread[1] for more details.

[1]. [Architecture] [GSoC] JMS 2.0 support for WSO2 ESB JMS Inbound
Endpoint and JMS Transport

Thanks.

On Wed, Jun 8, 2016 at 8:58 AM, Dilshani Subasinghe <dilsh...@wso2.com>
wrote:

> Hi Manuranga,
>
> According to documentation, Yes we can set that. But I notice that, it
> doesn't validate through the value given globally. For example, even I set
> up JMS Version as 2.0 globally, it doesn't take that value.
>
> Within the source (ServiceTaskManager.java) it seem to hard coded.
>
>
> */** Should this service use JMS 1.1 ? (when false, defaults to 1.0.2b)
> */private boolean jmsSpec11 = true;*
>
> @Vijitha - Hope you may explain the actual scenario ?
>
> Regards,
> Dilshani
>
>
> On Wed, Jun 8, 2016 at 1:25 AM, Manuranga Perera <m...@wso2.com> wrote:
>
>> Hi Ravindra/Dilshani,
>> Can we set transport.jms.JMSSpecVersion globally (ie: via axis2.xml)?
>>
>> --
>> With regards,
>> *Manu*ranga Perera.
>>
>> phone : 071 7 70 20 50
>> mail : m...@wso2.com
>>
>
>
>
> --
> Best Regards,
>
> Dilshani Subasinghe
> Software Engineer - QA
> WSO2, Inc.;http://wso2.com/
> <http://www.google.com/url?q=http%3A%2F%2Fwso2.com%2F=D=1=AFQjCNGJuLRux6KkJwXKVUCYOtEsNCmIAQ>
> lean.enterprise.middleware
> Mobile: +94773375185
> Blog: dilshanilive.blogspot.com
>



-- 
Vijitha Ekanayake
Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] {ESB] Script Mediator JavaScript String Concatenation not working

2016-04-19 Thread Vijitha Ekanayake
Hi Abimaran,

I've tried concatenation using below API configurations[1] and was able to
get the expected results as shown in console log[2]. Can you further
explain your use case to check is there any issue with script mediator.

[1].

http://ws.apache.org/ns/synapse; name="Test" context="/test">
   
  
 

 
 var result = 'result';var test =
"test"; var i = Math.floor((Math.random() * 10) + 1);
result = result + i;  mc.setProperty("MESSAGE_ID", result);
 mc.setProperty("TEST", test);
 

 
 
  
   


[2]. [2016-04-19 18:15:08,865]  INFO - LogMediator # =
result45916

Thanks.


On Tue, Apr 19, 2016 at 6:00 PM, Abimaran Kugathasan <abima...@wso2.com>
wrote:

> Hi Devs,
>
> Concatenation of String and number doesn't work in script mediator.
>
>
> var result = 'result';
> var test = "test";
> var i = Math.floor((Math.random() * 10) + 1);
> result = result + i;
> mc.setProperty("MESSAGE_ID", result);
> mc.setProperty("TEST", test);
>
>
> Is this a known issues in ESB 4.8.1?
>
> --
> Thanks
> Abimaran Kugathasan
>
> Software Engineer | WSO2 Inc
> Data & APIs Technologies Team
> Mobile : +94 773922820
>
> <http://stackoverflow.com/users/515034>
> <http://lk.linkedin.com/in/abimaran>
> <http://www.lkabimaran.blogspot.com/>  <https://github.com/abimarank>
> <https://twitter.com/abimaran>
>
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


-- 
Vijitha Ekanayake
Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] [VOTE] Release WSO2 Dockerfiles 1.0.0 RC3

2016-04-05 Thread Vijitha Ekanayake
[x] Stable - Go ahead and release

Verified wso2esb-4.9.0 docker image, followed the README and was
successfully able to build the image and access the management console.
Further tested different scenarios using proxy services and no issues
encountered.

Thanks,
Vijitha.

On Tue, Apr 5, 2016 at 11:39 AM, Isuru Haththotuwa <isu...@wso2.com> wrote:

> Thank you for testing and verifying WSO2 Dockerfiles 1.0.0 RC3.
>
> We are closing this vote now. The vote passes with 6 +1 votes and no -1
> votes. We will proceed with the release of WSO2 Dockerfiles 1.0.0.
>
> On Mon, Apr 4, 2016 at 2:05 PM, Imesh Gunaratne <im...@wso2.com> wrote:
>
>> [x ] Stable - Go ahead and release
>>
>>- Verified API-M, AS, BPS, BRS, CEP, DAS, DSS, ES, ESB, G-Reg, IS and
>>MB with the default provisioning method.
>>- Verified ESB and AS using puppet provisioning.
>>- Verified README.md files on product level, found a minor issue in
>>the root README.md and reported an issue [1]. Will fix this in the next
>>minor release.
>>
>> [1] https://github.com/wso2/dockerfiles/issues/31
>>
>> Thanks
>>
>> On Fri, Apr 1, 2016 at 3:54 PM, Isuru Haththotuwa <isu...@wso2.com>
>> wrote:
>>
>>> This is the third release candidate (RC3) of WSO2 Dockerfiles 1.0.0
>>> release.
>>>
>>> *Tag to be voted upon:*
>>> https://github.com/wso2/dockerfiles/tree/v1.0.0-rc3
>>>
>>> *Source and distribution packages:*
>>> https://github.com/wso2/dockerfiles/releases/tag/v1.0.0-rc3
>>>
>>> Please download, test, and vote. The README file under each product
>>> directory contains instructions on how to try it out locally.
>>>
>>> [ ] Broken - Do not release (explain why)
>>> [ ] Stable - Go ahead and release
>>>
>>> This vote will be open for 72 hours or as needed.
>>>
>>> --
>>> Thanks and Regards,
>>>
>>> Isuru H.
>>> +94 716 358 048* <http://wso2.com/>*
>>>
>>>
>>>
>>> ___
>>> Dev mailing list
>>> Dev@wso2.org
>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>
>>>
>>
>>
>> --
>> *Imesh Gunaratne*
>> Senior Technical Lead
>> WSO2 Inc: http://wso2.com
>> T: +94 11 214 5345 M: +94 77 374 2057
>> W: http://imesh.io
>> Lean . Enterprise . Middleware
>>
>>
>
>
> --
> Thanks and Regards,
>
> Isuru H.
> +94 716 358 048* <http://wso2.com/>*
>
>
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


-- 
Vijitha Ekanayake
Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


[Dev] carbon-mediation 4.4.12 Released !

2016-03-03 Thread Vijitha Ekanayake
Hi All,

Carbon-mediation version 4.4.12 released.

org.wso2.carbon.mediation
carbon-mediation
4.4.12

Thanks.

-- 
Vijitha Ekanayake
Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


[Dev] JMS distributed XA transactions with ActiveMQ

2016-02-25 Thread Vijitha Ekanayake
Hi all,

I’m trying to achieve following scenario using JMS distributed transactions
with ActiveMQ.

Scenario.
There's are multiple queues and a message needs to be sent to each of these
queue. If at least one of the queues is not reachable, none of the queues
should commit the message.

I found out that we need to add the following parameter axis2.xml to enable
XA Transaction in JMS Transport.

jta

But when I do, I get the following exception in the console.

[2016-02-26 09:26:51,697] ERROR - ServiceTaskManager Error looking up
UserTransaction : java:comp/UserTransaction using JNDI properties :
{java.naming.factory.initial=org.apache.activemq.jndi.ActiveMQInitialContextFactory,
java.naming.provider.url=tcp://localhost:61616,
interface=SimpleStockQuoteServicePortType,
transport.jms.ConnectionFactoryType=queue, serviceType=proxy}
javax.naming.NamingException: scheme java not recognized
at org.apache.activemq.jndi.ReadOnlyContext.lookup(ReadOnlyContext.java:221)
at javax.naming.InitialContext.lookup(InitialContext.java:411)
at org.apache.axis2.transport.jms.JMSUtils.lookup(JMSUtils.java:643)
at
org.apache.axis2.transport.jms.ServiceTaskManager.getUserTransaction(ServiceTaskManager.java:1025)
at
org.apache.axis2.transport.jms.ServiceTaskManager.access$600(ServiceTaskManager.java:50)
at
org.apache.axis2.transport.jms.ServiceTaskManager$MessageListenerTask.run(ServiceTaskManager.java:434)
at
org.apache.axis2.transport.base.threads.NativeWorkerPool$1.run(NativeWorkerPool.java:172)
at
java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)
at
java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)
at java.lang.Thread.run(Thread.java:745)

I debug the axis2 transport code and found out UserTransaction was
evaluated to null. According to mail thread[1] that is because
"UserTransaction" was not available in the JNDI context axis2 transport was
looking at.

Can some help me to figure out how can I change axis2-transport-jms to make
the "UserTransaction" available for XA transactions?


[1]. ESB Distributed XA Transactions with JMS

Thanks.

-- 
Vijitha Ekanayake
Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


[Dev] WSO2 ESB 5.0.0 - Milestone 2 Released!

2016-02-15 Thread Vijitha Ekanayake
*WSO2 ESB 5.0.0-Milestone 2 Released*

ESB Team is pleased to announce the WSO2 ESB 5.0.0 - Milestone 2 Release.
It contains following improvement and bug fixes.

Bug

   - [ESBJAVA-4416 <https://wso2.org/jira/browse/ESBJAVA-4416>] - ESB
   Management console shows Invalid product version.
   - [ESBJAVA-4417 <https://wso2.org/jira/browse/ESBJAVA-4415>] - ESB
   server terminal shows Invalid product version.

Improvement

   - [ESBJAVA-4415 <https://wso2.org/jira/browse/ESBJAVA-4415>] - SSL
   support for MQTT inbound.



The distribution is available to download at [1].

[1]
https://svn.wso2.org/repos/wso2/scratch/ESB/packs/5.0.0-Releases/5.0.0-M2/

- WSO2 ESB Team -

-- 
Vijitha Ekanayake
Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


[Dev] Synapse-2.1.7-wso2v1 Released

2016-02-11 Thread Vijitha Ekanayake
Hi,

Please note $subject.

org.apache.synapse
Apache-Synapse
2.1.7-wso2v1

Thanks.

-- 
Vijitha Ekanayake
Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] Fault sequence with different behaviour in wso2 4.8.1 and 4.9.0

2016-02-11 Thread Vijitha Ekanayake
Hi John,

Can you try replacing entire SOAPEnvelope at the PayloadFactory format as
[1] inside the fault sequence.


[1].

  
 http://schemas.xmlsoap.org/soap/envelope/;>

   
  Custom message
   

 
  
  
   


Thanks.

On Thu, Feb 11, 2016 at 7:53 PM, Jorge <isildur...@gmail.com> wrote:

> Hi all.
> In WSO2 ESB 4.8.1 in a fault sequence the use of payloadmediator   not
> working, but If you move the same proxy to ESB 4.9.0,  work. Why?
>
> How can we create a custom response message inside fault sequence?
>
>
> Can you check this:
> http://stackoverflow.com/questions/35297380/different-behaviors-between-esb-4-9-0-and-4-8-1
>
> Regards,
>  Jorge.
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


-- 
Vijitha Ekanayake
Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


[Dev] Orbit bundle for smooks

2016-01-28 Thread Vijitha Ekanayake
Hi Kernel team,

I have sent a PR [1] for $Subject. Could you please review and merge. ?

[1] - https://github.com/wso2/orbit/pull/169

Thanks,
Vijitha.

-- 
Vijitha Ekanayake
Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] Orbit bundle for smooks

2016-01-28 Thread Vijitha Ekanayake
Please Ignore this PR. Will update the thread with different PR.


Thanks.

On Fri, Jan 29, 2016 at 12:04 PM, Vijitha Ekanayake <vijit...@wso2.com>
wrote:

> Hi Kernel team,
>
> I have sent a PR [1] for $Subject. Could you please review and merge. ?
>
> [1] - https://github.com/wso2/orbit/pull/169
>
> Thanks,
> Vijitha.
>
> --
> Vijitha Ekanayake
> Software Engineer*, *WSO2, Inc.; http://wso2.com/
> Mobile : +94 777 24 73 39 | +94 718 74 44 08
> lean.enterprise.middleware
>



-- 
Vijitha Ekanayake
Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] [ESB] What is usage of OAuth Mediator

2016-01-25 Thread Vijitha Ekanayake
Hi Abimaran,

AFAIK, OAuth mediator or OAuth Handler is used in similar
purposes(authenticate clients to secured services). One difference could be
the request intercepting points are different in a mediator and a handler.
Oauth mediator can be used authenticate to proxy service and normal Oauth
API handler only used authenticate requests comes to API which cannot use
to authenticate proxy services.

Following blog posts may be helpful to you:
[1] -
http://pathberiya.blogspot.com/2011/02/2-legged-oauth-to-secure-restful.html
[2] -
http://blog.facilelogin.com/2011/07/integrating-3-legged-oauth-with-xacml.html


Thanks.

On Tue, Jan 26, 2016 at 5:59 AM, Abimaran Kugathasan <abima...@wso2.com>
wrote:

> Hi,
>
> What is the usage of OAuth Mediator [1]? What we can achive with this
> mediator than with a custom OAuth Handler with Identity Server?
>
> [1] : https://docs.wso2.com/display/ESB490/OAuth+Mediator
>
> --
> Thanks
> Abimaran Kugathasan
>
> Software Engineer | WSO2 Inc
> Data & APIs Technologies Team
> Mobile : +94 773922820
>
> <http://stackoverflow.com/users/515034>
> <http://lk.linkedin.com/in/abimaran>
> <http://www.lkabimaran.blogspot.com/>  <https://github.com/abimarank>
> <https://twitter.com/abimaran>
>
>
> _______
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


-- 
Vijitha Ekanayake
Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] [Architecture] VFS and SFTP

2016-01-13 Thread Vijitha Ekanayake
Hi John,

Can you try this by providing IP address of the SFTP server instead of SFTP
server’s hostname in parameters.

In your proxy we specified the VFS endpoint by giving the host name
(instead of the IP address). Then, you might come across the exception (Could
not connect to SFTP ) as you mentioned in your mail.

Apache Commons-VFS [2] uses JSCH [5] for its underlying SSH layer. JSCH
uses the location $HOME/.ssh for the known_hosts file by default.
Eg. location is $HOMEPATH/.ssh

Therefore, since the host that you are trying to connect with is not in the
known_hosts file, Synapse has no idea whether the SFTP hosts can be
trusted. Therefore, we need to add the host to the known_hosts file.

Solution has been suggested in article[1] to overcome this issue.

[1]. http://wso2.com/library/tutorials/2011/01/sftp-file-transfer-wso2-esb/

Thanks,
Vijitha.

On Thu, Jan 14, 2016 at 11:17 AM, John Q <johnq3...@gmail.com> wrote:

> Hello,
> I have a proxy service, I have configured transport VFS and it works fine
> reading files from local filesystem, but know I'm trying with a sftp and
> nothing happens, I mean the service doesn't pick up the file from the esb
> it remains just as the file would have never been copied into the sftp. my
> esb version is 4.9.0, after a long time, this msg is shown in the console,
> Could not connect to SFTP server at ...
>
> this is my configuration...
>
> 
>
> 
> transports="vfs" xmlns="http://ws.apache.org/ns/synapse;>
>
> 
>
> 
>
> 
> type="STRING" value="true" />
>
> 
>
> 
>
> 
>
> 
>
> 
>
> 
>
> 
>
> 
>
> 
>
> 
>
> 
>
> 5
>
> vfs:sftp://user:password@
> sftp.mycomp.com/incoming
>
> 
>
> application/xml
>
> MOVE
>
> vfs:sftp://user:password@
> sftp.mycomp.com/incoming
>
> 
>
> MOVE
>
> MOVE
>
> .*.xml
>
> vfs:sftp://user:password@
> sftp.mycomp.com/incoming
>
> 
>
> 
>
> ___
> Architecture mailing list
> architect...@wso2.org
> https://mail.wso2.org/cgi-bin/mailman/listinfo/architecture
>
>


-- 
Vijitha Ekanayake
Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] Clarification on OUT_ONLY ESB proxy service scenario

2015-12-18 Thread Vijitha Ekanayake
Hi Anupama,

We set *OUT_ONLY *property to "true" on a message to indicate that no
response message is expected for it once it is forwarded from the ESB. This
prevents  the ESB from registering unnecessary callbacks for response
handling.

One possible option to get sample working for client modes, We can check
the header value and change synapse configuration accordingly. We can
support for both types of operations by using config[1].


[1].

http://ws.apache.org/ns/synapse; name="StockQuoteProxy"
transports="https,http" statistics="disable" trace="disable"
startOnLoad="true">
   
  
 http://www.w3.org/2005/08/addressing;
source="$header/wsa:Action" regex="urn:placeOrder">

   

 
  
  
 
  
  
 http://localhost:9000/services/SimpleStockQuoteService; />
  
   
   
   


Thanks,

Vijitha.


On Fri, Dec 18, 2015 at 6:00 PM, Anupama Pathirage <anup...@wso2.com> wrote:

>
> Hi team,
>
> I get the following exception when I run the Sample 150 (Introduction to
> Proxy Services) in the WSO2 ESB 4.9.0 as mentioned in the [1
> <https://docs.wso2.com/display/ESB490/Sample+150%3A+Introduction+to+Proxy+Services>]
> with the client mode "placeorder" even though the order is placed correctly
> in the back end service.
>
> *Client Command used:*
> ant stockquote -Daddurl=http://localhost:8280/services/StockQuoteProxy
> -Dmode=placeorder -Dsymbol=MSFT
>
> *ESB Exception:*
> [2015-12-18 17:00:04,072] ERROR - NativeWorkerPool Uncaught exception
> java.lang.UnsupportedOperationException: An access occurred that is not
> valid.
> at
> org.apache.axis2.description.InOnlyAxisOperation.getMessage(InOnlyAxisOperation.java:117)
> at
> org.apache.synapse.core.axis2.SynapseCallbackReceiver.handleMessage(SynapseCallbackReceiver.java:299)
> at
> org.apache.synapse.core.axis2.SynapseCallbackReceiver.receive(SynapseCallbackReceiver.java:172)
> at org.apache.axis2.engine.AxisEngine.receive(AxisEngine.java:180)
> at
> org.apache.synapse.transport.passthru.ClientWorker.run(ClientWorker.java:247)
> at
> org.apache.axis2.transport.base.threads.NativeWorkerPool$1.run(NativeWorkerPool.java:172)
> at
> java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
> at
> java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
> at java.lang.Thread.run(Thread.java:745)
>
> Since “PlaceOrder” is a method which does not return anything as a
> response for a request, it was possible to avoid this exception by setting
> the property OUT_ONLY for the in sequence as follows [2
> <https://docs.wso2.com/display/ESB403/Generic+Properties>].
>
> 
> 
> 
>
> But this make the other client modes such as "quote" not working because
> it is trying to send a request which expects a response through an OUT_ONLY
> proxy which must be wrong in theoretically. So can you please let me know
> the proper way of handling above ESB exception while providing the support
> for both types of operations.
>
>
> [1]
> https://docs.wso2.com/display/ESB490/Sample+150%3A+Introduction+to+Proxy+Services
> [2] https://docs.wso2.com/display/ESB403/Generic+Properties
>
> Thanks and Regards,
> --
> Anupama Pathirage
> Associate Technical Lead
> WSO2, Inc.  http://wso2.com/
> Email: anup...@wso2.com
> Mobile:+94 71 8273 979
>
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


-- 
Vijitha Ekanayake
Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


[Dev] Please review and merged the PR

2015-06-23 Thread Vijitha Ekanayake
Hi,

Please review and merge PR[1] - Fixing automation test failures in
tests-mediator-2 module in ESB.

[1] https://github.com/wso2/product-esb/pull/196/

-- 
Vijitha Ekanayake
Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] Please review and merged the PR

2015-06-23 Thread Vijitha Ekanayake
Thanks IsuruR.

On Wed, Jun 24, 2015 at 10:55 AM, Isuru Ranawaka isu...@wso2.com wrote:

 merged.

 On Wed, Jun 24, 2015 at 10:49 AM, Vijitha Ekanayake vijit...@wso2.com
 wrote:

 Hi,

 Please review and merge PR[1] - Fixing automation test failures in
 tests-mediator-2 module in ESB.

 [1] https://github.com/wso2/product-esb/pull/196/

 --
 Vijitha Ekanayake
 Software Engineer*, *WSO2, Inc.; http://wso2.com/
 Mobile : +94 777 24 73 39 | +94 718 74 44 08
 lean.enterprise.middleware




 --
 Best Regards
 Isuru Ranawaka
 M: +94714629880
 Blog : http://isurur.blogspot.com/




-- 
Vijitha Ekanayake
Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Shiva Balachandran

2015-06-16 Thread Vijitha Ekanayake
Congratulations Shiva !!

On Tue, Jun 16, 2015 at 1:26 PM, Amal Gunatilake am...@wso2.com wrote:

 Congratulations Shiva !!

 On Tue, Jun 16, 2015 at 9:52 AM, Nandika Jayawardana nand...@wso2.com
 wrote:

 Hi All,

 It's my pleasure to announce Shiva Balachandran as a WSO2 committer. He
 has been a contributor to Business Process Server product and Process
 Center Product and in recognition of his contributions, he has been voted
 as a WSO2 Committer.

 Shiva, congratulations and keep up the good work.

 Regards
 Nandika

 --
 Nandika Jayawardana
 WSO2 Inc ; http://wso2.com
 lean.enterprise.middleware

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




 --
 *Amal Gunatilake*
  Software Engineer
 WSO2 Inc.; http://wso2.com
 lean.enterprise.middleware

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




-- 
Vijitha Ekanayake
Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


[Dev] Please review and merge PR

2015-06-11 Thread Vijitha Ekanayake
Hi,

Please review and merge PR[1] for JIRA issue[2].

[1] - *https://github.com/wso2/wso2-synapse/pull/226
https://github.com/wso2/wso2-synapse/pull/226*
[2] - https://wso2.org/jira/browse/ESBJAVA-3774

-- 
Vijitha Ekanayake
Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Saneth Dharmakeerthi

2015-06-09 Thread Vijitha Ekanayake
Congratulations Saneth...!!!

On Tue, Jun 9, 2015 at 11:59 AM, Dilan Udara Ariyaratne dil...@wso2.com
wrote:

 Congratulations, Saneth !!!


 *Dilan U. Ariyaratne*
 Software Engineer
 WSO2 Inc. http://wso2.com/
 Mobile: +94775149066
 lean . enterprise . middleware

 On Tue, Jun 9, 2015 at 11:51 AM, Chathura Priyankara chathu...@wso2.com
 wrote:

 Congratulations Saneth.

 On Tue, Jun 9, 2015 at 11:45 AM, Dharshana Warusavitharana 
 dharsha...@wso2.com wrote:

 Congratulations Saneth

 On Tue, Jun 9, 2015 at 11:41 AM, Malith Munasinghe mali...@wso2.com
 wrote:

 Congratulations Saneth!!

 On Tue, Jun 9, 2015 at 11:38 AM, Madhuranga Bandara 
 madhura...@wso2.com wrote:

 Congratulations Saneth !!!

 *Madhuranga Sampath Bandara*
 Software Engineer

 WSO2, Inc.;http://wso2.com/
 http://www.google.com/url?q=http%3A%2F%2Fwso2.com%2Fsa=Dsntz=1usg=AFQjCNGJuLRux6KkJwXKVUCYOtEsNCmIAQ
 lean.enterprise.middleware
 Mobile: +94722241065

 On Tue, Jun 9, 2015 at 11:31 AM, Thusitha Thilina Dayaratne 
 thusit...@wso2.com wrote:

 Congratulation...!!

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



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




 --
 Malith Munasinghe | Software Engineer
 M: +94 (071) 9401122
 E: mali...@wso2.com
 W: http://wso2.com

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




 --

 Dharshana Warusavitharana
 Senior Software Engineer , Test Automation
 WSO2 Inc. http://wso2.com
 email : dharsha...@wso2.com dharsha...@wso2.com
 Tel  : +94 11 214 5345
 Fax :+94 11 2145300
 cell : +94770342233
 blog : http://dharshanaw.blogspot.com

 lean . enterprise . middleware

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




 --
 Chathura Priyankara
 Software Engineer | WSO2 Inc.
 Mobile : +94718795340
 Blog : www.codeoncloud.blogspot.com

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



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




-- 
Vijitha Ekanayake
Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Himasha Guruge

2015-05-27 Thread Vijitha Ekanayake
Congratulations Himasha ...!!!

On Wed, May 27, 2015 at 2:07 PM, Anuruddha Liyanarachchi 
anurudd...@wso2.com wrote:

 Congratulations !!!

 On Wed, May 27, 2015 at 1:55 PM, Dilan Udara Ariyaratne dil...@wso2.com
 wrote:

 Congratz, Himasha !!!


 *Dilan U. Ariyaratne*
 Software Engineer
 WSO2 Inc. http://wso2.com/
 Mobile: +94775149066
 lean . enterprise . middleware

 On Wed, May 27, 2015 at 12:25 PM, Rajith Vitharana raji...@wso2.com
 wrote:

 Congrats . :)

 On Wed, May 27, 2015 at 12:15 PM, Thusitha Thilina Dayaratne 
 thusit...@wso2.com wrote:

 Congratulations ...!!

 On Wed, May 27, 2015 at 12:14 PM, Milan Perera mi...@wso2.com wrote:

 Congratz Himasha..!!!

 On Wed, May 27, 2015 at 12:11 PM, Dinithi De Silva dinit...@wso2.com
 wrote:

 Congratz Himasha :)

 On Wed, May 27, 2015 at 11:46 AM, Damith Wickramasinghe 
 dami...@wso2.com wrote:

 Congrats ... :) :)

 On Wed, May 27, 2015 at 11:43 AM, Shiva Balachandran sh...@wso2.com
  wrote:

 Congrats and Good Luck Himasha! :)

 On Wed, May 27, 2015 at 11:41 AM, Maheeka Jayasuriya 
 mahe...@wso2.com wrote:

 Congratulations Himasha !!!

 Maheeka Jayasuriya
 Software Engineer
 Mobile : +9450661

 On Wed, May 27, 2015 at 11:40 AM, Madhuranga Bandara 
 madhura...@wso2.com wrote:

 Congratulations !!!


 *Madhuranga Sampath Bandara*
 Software Engineer

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



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




 --
 Shiva Balachandran
 Software Engineer
 WSO2 Inc.

 Mobile - +94 774445788
 Blog - https://shivabalachandran.wordpress.com/

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




 --
 Software Engineer
 WSO2 Inc.; http://wso2.com
 http://www.google.com/url?q=http%3A%2F%2Fwso2.comsa=Dsntz=1usg=AFQjCNEZvyc0uMD1HhBaEGCBxs6e9fBObg
 lean.enterprise.middleware

 mobile: *+94728671315 %2B94728671315*


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




 --
 *Dinithi De Silva*
 Associate Software Engineer, WSO2 Inc.
 m:+94716667655 | e:dinit...@wso2.com | w: www.wso2.com
 | a: #20, Palm Grove, Colombo 03

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




 --
 Milan Harindu Perera
 Software Engineer
 *WSO2, Inc*
 (+94) 77 309 7088
 lean . enterprise . middleware
 http://lk.linkedin.com/in/milanharinduperera

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




 --
 Thusitha Dayaratne
 Software Engineer
 WSO2 Inc. - lean . enterprise . middleware |  wso2.com

 Mobile  +94712756809
 Blog  alokayasoya.blogspot.com
 Abouthttp://about.me/thusithathilina


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




 --
 Rajith Vitharana

 Software Engineer,
 WSO2 Inc. : wso2.com
 Mobile : +94715883223
 Blog : http://lankavitharana.blogspot.com/

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



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




 --
 *Thanks and Regards,*
 Anuruddha Lanka Liyanarachchi
 Software Engineer - WSO2
 Mobile : +94 (0) 712762611
 Tel  : +94 112 145 345
 a thili...@wso2.comnurudd...@wso2.com

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




-- 
Vijitha Ekanayake
Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Vishanth Balasubramaniam

2015-05-17 Thread Vijitha Ekanayake
/listinfo/dev




-- 
Vijitha Ekanayake
Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Mahesh Chinthaka

2015-04-29 Thread Vijitha Ekanayake
Congratulations Mahesh ...!!!

On Wed, Apr 29, 2015 at 9:21 AM, Madhawa Gunasekara madha...@wso2.com
wrote:

 Congratulations Mahesh

 On Wed, Apr 29, 2015 at 8:57 AM, Madhuranga Bandara madhura...@wso2.com
 wrote:

 Congratulations Mahesh... !!!

 *Madhuranga Sampath Bandara*
 Software Engineer

 WSO2, Inc.;http://wso2.com/
 http://www.google.com/url?q=http%3A%2F%2Fwso2.com%2Fsa=Dsntz=1usg=AFQjCNGJuLRux6KkJwXKVUCYOtEsNCmIAQ
 lean.enterprise.middleware
 Mobile: +94722241065

 On Tue, Apr 28, 2015 at 9:27 AM, Dimuthu Leelarathne dimut...@wso2.com
 wrote:

 Hi all,

 It is with great pleasure that WSO2 welcomes Mahesh Chinthaka as WSO2
 committer!

 Thank you for your hard work. Congratulation!

 thanks,
 dimuthu

 --
 Dimuthu Leelarathne
 Architect  Product Lead of App Factory

 WSO2, Inc. (http://wso2.com)
 email: dimut...@wso2.com
 Mobile : 0773661935

 Lean . Enterprise . Middleware

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



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




 --
 *Madhawa Gunasekara*
 Software Engineer
 WSO2 Inc.; http://wso2.com
 lean.enterprise.middleware

 mobile: +94 719411002 +94+719411002
 blog: *http://madhawa-gunasekara.blogspot.com
 http://madhawa-gunasekara.blogspot.com*
 linkedin: *http://lk.linkedin.com/in/mgunasekara
 http://lk.linkedin.com/in/mgunasekara*

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




-- 
Vijitha Ekanayake
Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Vinuri Perera

2015-04-29 Thread Vijitha Ekanayake
Congratulations Vinuri !!!

On Wed, Apr 29, 2015 at 8:40 AM, Samith Dassanayake sam...@wso2.com wrote:

 Congratz Vinuri

 On Tue, Apr 28, 2015 at 4:23 PM, Malithi Edirisinghe malit...@wso2.com
 wrote:

 Congratz ... :)

 On Tue, Apr 28, 2015 at 11:33 AM, Kasun Gunasekara kas...@wso2.com
 wrote:

 Congratz Vinuri :)


 Kasun Gunasekara
 Software Engineering Intern - WSO2
 Mobile : +94 77 6986482
 Twitter https://twitter.com/KaluMallii | Google+
 https://plus.google.com/+KaZGunasekara/ | LinkedIn
 http://www.linkedin.com/in/kasun32

 On Mon, Apr 27, 2015 at 2:19 PM, Amila Maha Arachchi ami...@wso2.com
 wrote:

 Hi all,

 Its my pleasure to welcome Vinuri Perera as a WSO2 Committer. Vinuri is
 a member of WSO2 Cloud team and she has done a great contribution to WSO2
 Cloud and has shown great enthusiasm in her work both in development and
 other cloud related work. In recognition of her contribution, she has been
 voted as a WSO2 Committer.

 Vinuri, welcome aboard and keep up the good work..

 Regards,
 Amila.

 --
 *Amila Maharachchi*
 Senior Technical Lead
 WSO2, Inc.; http://wso2.com

 Blog: http://maharachchi.blogspot.com
 Mobile: +94719371446


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



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




 --

 *Malithi Edirisinghe*
 Senior Software Engineer
 WSO2 Inc.

 Mobile : +94 (0) 718176807
 malit...@wso2.com

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




 --
 Best Regards

 Samith Dassanayake
 Software Engineer | Cloud TG
 WSO2, Inc. | http://wso2.com
 lean. enterprise. middleware

 Mobile : +947 76207351

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




-- 
Vijitha Ekanayake
Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


[Dev] Please review and merge the pull request

2015-04-17 Thread Vijitha Ekanayake
Hi,

Please merge the pull request [1] for
https://wso2.org/jira/browse/ESBJAVA-3006

[1]. https://github.com/wso2/wso2-synapse/pull/142


Thanks,
Vijitha.

-- 
Vijitha Ekanayake
Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Prasanna Dangalla

2015-04-08 Thread Vijitha Ekanayake
Congratulations Prasanna !!!

On Thu, Apr 9, 2015 at 9:47 AM, Milan Perera mi...@wso2.com wrote:

 Congratz Prasanna..!!!

 On Thu, Apr 9, 2015 at 9:45 AM, Vinod Kavinda vi...@wso2.com wrote:

 Congrats Prasanna !!

 On Thu, Apr 9, 2015 at 9:34 AM, Ashan Manathunga as...@wso2.com wrote:

 Congrats Prasanna...!!


 On Thu, Apr 9, 2015 at 9:25 AM, Danesh Kuruppu dan...@wso2.com wrote:

 Congratulations Prasanna.. !!!

 On Thu, Apr 9, 2015 at 9:19 AM, Tharindu Dharmarathna 
 tharin...@wso2.com wrote:

 Congrats Prasanna

 On Thu, Apr 9, 2015 at 9:15 AM, Shashika Karunatilaka 
 shashi...@wso2.com wrote:

 Congrats Prasanna

 On Thu, Apr 9, 2015 at 9:14 AM, Thilini Cooray thili...@wso2.com
 wrote:

 Congratulations, Prasanna !

 On Thu, Apr 9, 2015 at 9:02 AM, Aruna Karunarathna ar...@wso2.com
 wrote:

 Congratulations Prasa...!!!

 On Wed, Apr 8, 2015 at 7:37 PM, Dinesh J Weerakkody 
 dine...@wso2.com wrote:

 Congratulations Prasanna...

 Thanks

 *Dinesh J. Weerakkody*
 Software Engineer
 WSO2 Inc.
 lean | enterprise | middleware
 M : +94 727 361788 | E : dine...@wso2.com | W : www.wso2.com

 On Thu, Apr 9, 2015 at 8:06 AM, Sagara Gunathunga sag...@wso2.com
  wrote:

 It's my pleasure to welcome Prasanna Dangalla as a WSO2 committer
 .  Prasanna, welcome aboard and keep up the good work.


 Thanks !
 --
 Sagara Gunathunga

 Senior Technical Lead; WSO2, Inc.;  http://wso2.com
 V.P Apache Web Services;http://ws.apache.org/
 Linkedin; http://www.linkedin.com/in/ssagara
 Blog ;  http://ssagara.blogspot.com


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



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




 --

 *Aruna Sujith Karunarathna* | Software Engineer
 WSO2, Inc | lean. enterprise. middleware.
 #20, Palm Grove, Colombo 03, Sri Lanka
 Mobile: +94 71 9040362 | Work: +94 112145345
 Email: ar...@wso2.com | Web: www.wso2.com


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




 --
 Best Regards,

 *Thilini Cooray*
 Software Engineer
 Mobile : +94 (0) 774 570 112 %2B94%20%280%29%20773%20451194
 E-mail : thili...@wso2.com

 WSO2 Inc. www.wso2.com
 lean.enterprise.middleware

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




 --
 Shashika Prabath Karunatilaka,
 Software Engineer,
 WSO2, Inc: http://wso2.com/
 mobile : +94 77 7487792

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




 --

 *Tharindu Dharmarathna*Associate Software Engineer
 WSO2 Inc.; http://wso2.com
 lean.enterprise.middleware

 mobile: *+94779109091 %2B94779109091*

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




 --

 Danesh Kuruppu
 Software Engineer
 WSO2 Inc,
 Mobile: +94 (77) 1690552

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




 --
 *Ashan Manathunga*
 Software Engineer
 WSO2, Inc. : wso2.com
 lean. enterprise. middleware.

 email: as...@wso2.com; mobile: +94 77 936 4892

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




 --
 Vinod Kavinda
 Software Engineer, *WSO2, Inc http://www.wso2.com.*
 Mobile : +94 (0) 712 415544
 vi...@wso2.com

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




 --
 Milan Harindu Perera
 Software Engineer
 *WSO2, Inc*
 (+94) 77 309 7088
 lean . enterprise . middleware
 http://lk.linkedin.com/in/milanharinduperera

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




-- 
Vijitha Ekanayake
Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Amila Godwin Shrimal

2015-03-20 Thread Vijitha Ekanayake
Congrats Godwin ..!!!

On Fri, Mar 20, 2015 at 3:30 PM, Damith Wickramasinghe dami...@wso2.com
wrote:

 Congratzzz ... :)

 On Fri, Mar 20, 2015 at 3:25 PM, Ashan Dhananjaya ash...@wso2.com wrote:

 Congrats Godwin!!

 Ashan Dhananjaya Kumara
 Trainee Software Engineer, WSO2 Inc.
 Inc: *WSO2 Inc. *
 Phone : +94715547461
 Blog : http://ashandhananjaya.blogspot.com/
 Twitter  : https://twitter.com/Dhananjaya92
 Say ello :https://ello.co/ashandk





 On Fri, Mar 20, 2015 at 3:23 PM, Anuja Herath an...@wso2.com wrote:

 Congrats Amila!!

 On Fri, Mar 20, 2015 at 3:04 PM, Johann Nallathamby joh...@wso2.com
 wrote:

 Hi All,

 It's my pleasure to announce Amila Godwin Shrimal as a WSO2 Committer.
 Godwin has been a valuable contributor for WSO2 Identity Server
 product, and in recognition of his contribution to WSO2, he has been voted
 as a WSO2 Committer.

 Godwin, congratulations and keep up the good work!

 Thanks  Regards.

 --

 *Johann Dilantha Nallathamby*
 Associate Technical Lead  Product Lead of WSO2 Identity Server
 Integration Technologies Team
 WSO2, Inc.
 lean.enterprise.middleware

 Mobile - *+9476950*
 Blog - *http://nallaa.wordpress.com http://nallaa.wordpress.com*

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




 --
 Anuja Herath
 *Software Engineer*
 *WSO2, Inc.*
 Mobile : +94 (0)71 429 8861

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



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




 --
 Software Engineer
 WSO2 Inc.; http://wso2.com
 http://www.google.com/url?q=http%3A%2F%2Fwso2.comsa=Dsntz=1usg=AFQjCNEZvyc0uMD1HhBaEGCBxs6e9fBObg
 lean.enterprise.middleware

 mobile: *+94728671315 %2B94728671315*


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




-- 
Vijitha Ekanayake
Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Malithi Edirisinghe

2015-03-20 Thread Vijitha Ekanayake
Congrats Malithi !!!

On Fri, Mar 20, 2015 at 3:34 PM, Chamin Dias cham...@wso2.com wrote:

 Congratulations Malithi !

 On Fri, Mar 20, 2015 at 3:31 PM, Damith Wickramasinghe dami...@wso2.com
 wrote:

 Congratzz... :)

 On Fri, Mar 20, 2015 at 3:29 PM, Kasun Bandara kas...@wso2.com wrote:

 Congratulations Malithi !!

 On Fri, Mar 20, 2015 at 3:24 PM, Ashan Dhananjaya ash...@wso2.com
 wrote:

 Congratulations Malithi :)

 Ashan Dhananjaya Kumara
 Trainee Software Engineer, WSO2 Inc.
 Inc: *WSO2 Inc. *
 Phone : +94715547461
 Blog : http://ashandhananjaya.blogspot.com/
 Twitter  : https://twitter.com/Dhananjaya92
 Say ello :https://ello.co/ashandk





 On Fri, Mar 20, 2015 at 3:23 PM, Anuja Herath an...@wso2.com wrote:

 Congratulations Malithi!!

 On Fri, Mar 20, 2015 at 3:04 PM, Johann Nallathamby joh...@wso2.com
 wrote:

 Hi All,

 It's my pleasure to announce Malithi Edirisinghe as a WSO2 Committer
 . Malithi has been a valuable contributor for WSO2 Identity Server
 product, and in recognition of her contribution to WSO2, she has been 
 voted
 as a WSO2 Committer.

 Malithi, congratulations and keep up the good work!

 Thanks  Regards.

 --

 *Johann Dilantha Nallathamby*
 Associate Technical Lead  Product Lead of WSO2 Identity Server
 Integration Technologies Team
 WSO2, Inc.
 lean.enterprise.middleware

 Mobile - *+9476950*
 Blog - *http://nallaa.wordpress.com http://nallaa.wordpress.com*

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




 --
 Anuja Herath
 *Software Engineer*
 *WSO2, Inc.*
 Mobile : +94 (0)71 429 8861

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



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




 --
 Kasun Bandara
 *Software Engineer*
 Mobile : +94 (0) 718 338 360
 %2B94%20%280%29%20773%20451194
 kas...@wso2.com thili...@wso2.com

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




 --
 Software Engineer
 WSO2 Inc.; http://wso2.com
 http://www.google.com/url?q=http%3A%2F%2Fwso2.comsa=Dsntz=1usg=AFQjCNEZvyc0uMD1HhBaEGCBxs6e9fBObg
 lean.enterprise.middleware

 mobile: *+94728671315 %2B94728671315*


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




 --
 Chamin Dias
 *Software Engineer*
 Mobile : +94 (0) 716 097455 %2B94%20%280%29%20773%20451194
 cham...@wso2.com

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




-- 
Vijitha Ekanayake
Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Hemika Kodikara

2015-03-17 Thread Vijitha Ekanayake
Congrats Hemika ...!!!

On Tue, Mar 17, 2015 at 1:43 PM, Rasika Perera rasi...@wso2.com wrote:

 Congrats Hemika!

 On Tue, Mar 17, 2015 at 1:41 PM, Ramith Jayasinghe ram...@wso2.com
 wrote:

 Hi Hemika,
 Congratulations!
 It is with great pleasure that we welcome you as a WSO2 committer. Keep
 up the good work!
 regards,

 --
 Ramith Jayasinghe
 Technical Lead
 WSO2 Inc., http://wso2.com
 lean.enterprise.middleware

 E: ram...@wso2.com


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




 --
 With Regards,

 *Rasika Perera*
 Software Engineer
 M: +94 71 680 9060 E: rasi...@wso2.com
 LinkedIn: http://lk.linkedin.com/in/rasika90

 WSO2 Inc. www.wso2.com
 lean.enterprise.middleware

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




-- 
Vijitha Ekanayake
Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Dinesh J Weerakkody

2015-03-11 Thread Vijitha Ekanayake
Congratulations Dinesh !!!

On Thu, Mar 12, 2015 at 8:41 AM, Tharik Kanaka tha...@wso2.com wrote:

 Congratulations Dinesh

 On Thu, Mar 12, 2015 at 8:33 AM, Ravindra Ranwala ravin...@wso2.com
 wrote:

 Congratulations Dinesh !

 On Thu, Mar 12, 2015 at 8:30 AM, Chamalee De Silva chama...@wso2.com
 wrote:

 congrats!

 On Thu, Mar 12, 2015 at 8:24 AM, Abimaran Kugathasan abima...@wso2.com
 wrote:

 Congrats!

 On Thu, Mar 12, 2015 at 8:17 AM, Nuwan Dias nuw...@wso2.com wrote:

 Hi,

 It is with great pleasure we welcome DineshW as a WSO2 Committer.
 @Dinesh, congratulations and keep up the good work!

 Thanks,
 NuwanD.

 --
 Nuwan Dias

 Associate Tech Lead - WSO2, Inc. http://wso2.com
 email : nuw...@wso2.com
 Phone : +94 777 775 729

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




 --
 Thanks
 Abimaran Kugathasan

 Software Engineer | WSO2 Inc
 Data  APIs Technologies Team
 Mobile : +94 773922820

 http://stackoverflow.com/users/515034
 http://lk.linkedin.com/in/abimaran
 http://www.lkabimaran.blogspot.com/  https://github.com/abimaran
 https://twitter.com/abimaran


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




 --

 Chamalee De Silva

 Software Engineer | WSO2

 E:chama...@wso2.com nirosh...@wso2.com
 M :0711540738| http://wso2.com http://wso2.com/

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




 --
 Ravindra Ranwala
 Software Engineer
 WSO2, Inc: http://wso2.com
 http://www.google.com/url?q=http%3A%2F%2Fwso2.comsa=Dsntz=1usg=AFQjCNEZvyc0uMD1HhBaEGCBxs6e9fBObg
 Mobile: +94714198770


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




 --

 *Tharik Kanaka* | Associate Software Engineer

 WSO2, Inc |#20, Palm Grove, Colombo 03, Sri Lanka

 Email: tha...@wso2.com | Web: www.wso2.com

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




-- 
Vijitha Ekanayake
Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Chamila de Alwis

2015-03-04 Thread Vijitha Ekanayake
Congratulations Chamila !!!

On Thu, Mar 5, 2015 at 11:12 AM, Aiyadurai Rajeevan rajeev...@wso2.com
wrote:

 Congrats Chamila :)

 Thanks  Regards,
 S.A.Rajeevan
 Software Engineer WSO2 Inc
 E-Mail: rajeev...@wso2.com | Mobile : +94776411636

 On Thu, Mar 5, 2015 at 11:10 AM, Jerad Rutnam je...@wso2.com wrote:

 Congratulations Chamila! :)

 On Thu, Mar 5, 2015 at 11:07 AM, Dakshika Jayathilaka daksh...@wso2.com
 wrote:

 Congratz Chamilad...!

 *Dakshika Jayathilaka*
 Software Engineer
 WSO2, Inc.
 lean.enterprise.middleware
 0771100911

 On Thu, Mar 5, 2015 at 10:22 AM, Shiva Balachandran sh...@wso2.com
 wrote:

 Congrats Chamila. :)

 Good job! ^_^

 On Thu, Mar 5, 2015 at 10:14 AM, Kasun De Silva kas...@wso2.com
 wrote:

 Congratz Chamila !!!

 *Kasun de Silva*
 Software Engineer | *WSO2 Inc.*; http://wso2.com
 lean.enterprise.middleware

 email   : kas...@wso2.com
 mobile : +94 77 794 4260


 On Thu, Mar 5, 2015 at 10:08 AM, Prasanna Dangalla prasa...@wso2.com
 wrote:

 Congratulations Chamilad

 On Thu, Mar 5, 2015 at 10:01 AM, Imesh Gunaratne im...@wso2.com
 wrote:

 Hi Devs,

 It's my pleasure to welcome Chamila de Alwis as a WSO2 Committer.
 Chamila, welcome aboard and keep up the good work!

 Thanks

 --
 *Imesh Gunaratne*
 Technical Lead
 WSO2 Inc: http://wso2.com
 T: +94 11 214 5345 M: +94 77 374 2057
 W: http://imesh.gunaratne.org
 Lean . Enterprise . Middleware


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




 --
 Prasanna Dangalla
 Software Engineer, WSO2, Inc.; http://wso2.com/
 lean.enterprise.middleware

 cell: +94 777 55 80 30 | +94 718 11 27 51
 twitter: @prasa77

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



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




 --
 Shiva Balachandran
 Software Engineer
 WSO2 Inc.

 Mobile - +94 774445788
 Blog - https://shivabalachandran.wordpress.com/

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



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




 --
 *Jerad Rutnam*
 *Software Engineer*

 WSO2 Inc.
 lean | enterprise | middleware
 M : +94 77 959 1609 | E : je...@wso2.com | W : www.wso2.com

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



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




-- 
Vijitha Ekanayake
Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


[Dev] Obtain JMX Mbean statistics using test automation framework

2015-03-01 Thread Vijitha Ekanayake
Hi all,

After creating an endpoint in the ESB, We should be able to view it's
statistics via JMX using a JMX client like JConsole. I'm trying to write a
test case for the above scenario. For that, Is the away to $Subject? If so,
are there any sample test cases which i can refer to?

Thank you.

-- 
Vijitha Ekanayake
Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] Obtain JMX Mbean statistics using test automation framework

2015-03-01 Thread Vijitha Ekanayake
adding dev

On Sun, Mar 1, 2015 at 10:00 PM, Vijitha Ekanayake vijit...@wso2.com
wrote:

 Hi Krishantha,

 Thank you very much for the given sample test case. I was tried searching
 it in ESB integrations tests. I'll go through it and complete the test case.

 Thanks.

 On Sun, Mar 1, 2015 at 9:50 PM, Krishantha Samaraweera 
 krishan...@wso2.com wrote:

 Hi Vijitha,

 You can refer the test case at
 https://github.com/wso2/product-dss/blob/master/modules/integration/tests/src/test/java/org/wso2/carbon/dss/jmx/statistics/test/JMXStatisticsTestCase.java

 JMXClient is also available in the same package.

 Thanks,
 Krishantha.

 On Sun, Mar 1, 2015 at 5:45 PM, Vijitha Ekanayake vijit...@wso2.com
 wrote:

 Hi all,

 After creating an endpoint in the ESB, We should be able to view it's
 statistics via JMX using a JMX client like JConsole. I'm trying to write a
 test case for the above scenario. For that, Is the away to $Subject? If
 so, are there any sample test cases which i can refer to?

 Thank you.

 --
 Vijitha Ekanayake
 Software Engineer*, *WSO2, Inc.; http://wso2.com/
 Mobile : +94 777 24 73 39 | +94 718 74 44 08
 lean.enterprise.middleware




 --
 Krishantha Samaraweera
 Senior Technical Lead - Test Automation
 Mobile: +94 77 7759918
 WSO2, Inc.; http://wso2.com/
 lean . enterprise . middlewear.




 --
 Vijitha Ekanayake
 Software Engineer*, *WSO2, Inc.; http://wso2.com/
 Mobile : +94 777 24 73 39 | +94 718 74 44 08
 lean.enterprise.middleware




-- 
Vijitha Ekanayake
Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] Create data service inside ESB integration test

2015-02-19 Thread Vijitha Ekanayake
Hi Kishantha,

I'll try with your suggestions and give an update.

Thanks.

On Fri, Feb 20, 2015 at 12:32 PM, Krishantha Samaraweera 
krishan...@wso2.com wrote:

 Hi Vijitha,

 You can refer DSS integration tests to get an idea of creating data
 service [1].

 For feature installation please refer below code snippet. You need to
 define feature repo URL in automation.properties and refer it. And try to
 avoid hard coding feature version numbers. You might be able to use
 FeatureManagementAdminServiceClient to get the latest version of a
 feature.

 private static String featureRepoName = carbon 4.1.3 repo;
 private static String hl7Vesrion = 4.1.3;
 private static String hl7FeatureID = org.wso2.carbon.transports.hl7;


 @BeforeClass(alwaysRun = true)
 public void init() throws Exception {
 super.init();
 String featureRepoLocation = //need to read though
 automation.properties file.
 serverConfigurationManager = new
 ServerConfigurationManager(esbServer.getBackEndUrl());
 serverConfigurationManager.applyConfiguration(new
 File(getESBResourceLocation() + File.separator + hl7Transport +
 File.separator + axis2.xml));
 featureClient = new
 FeatureManagementAdminServiceClient(esbServer.getSessionCookie(),
 esbServer.getBackEndUrl());
 featureClient.addRepository(featureRepoLocation, featureRepoName);
 featureClient.installFeature(hl7FeatureID, hl7Vesrion);
 serverConfigurationManager.restartGracefully();
 super.init();
 }

 Thanks,
 Krishantha.

 [1]
 https://svn.wso2.org/repos/wso2/carbon/platform/branches/turing/products/dss/3.2.2/modules/integration/tests/src/test/java/org/wso2/carbon/dss/samples/test/

 On Wed, Feb 18, 2015 at 6:17 PM, Vijitha Ekanayake vijit...@wso2.com
 wrote:

 Hi Krishantha,

 Following are the steps that involves with the use.

 1. Install data services server feature in ESB.
 2. Create a new data service
 3. Invoke the created data service from callout mediator with local
 transport inside a RestAPI

 For the moment I've created a mock service which is similar to stockquote
 service and invoked using callout mediator with local transport to automate
 the local transport scenario with callout mediator.

 *Following is the RestAPI configuration used invoke data service.*

 ?xml version=1.0 encoding=UTF-8?
 api xmlns=http://ws.apache.org/ns/synapse;
  name=ProvaRestApiDecodifica
  context=/wso001/services/provarest
resource methods=GET url-mapping=/deploymentstatus
   inSequence
  property name=NO_ENTITY_BODY scope=axis2 action=remove/
  log level=full
 property name=step
 value=API_internal_readDeploymentStatusList BEGIN/
  /log
  property name=FORCE_ERROR_ON_SOAP_FAULT
value=true
scope=default
type=STRING/
  payloadFactory media-type=xml
 format
org:readDeploymentStatusList xmlns:org=
 http://org.csi.yucca/
 /format
 args/
  /payloadFactory
  log level=full
 property name=step
   value=API_internal_readDeploymentStatusList
 CALLOUT/
 property name=BODY expression=$body/child::*/
  /log
 * callout serviceURL=local:///services/MyDataService/*
 *  action=readDeploymentStatusList*
 *source
 xmlns:soapenv=http://schemas.xmlsoap.org/soap/envelope/
 http://schemas.xmlsoap.org/soap/envelope/*
 *xmlns:org=http://org.csi.yucca
 http://org.csi.yucca*
 *xpath=$body/child::*/*
 *target
 xmlns:soapenv=http://schemas.xmlsoap.org/soap/envelope/
 http://schemas.xmlsoap.org/soap/envelope/*
 *xmlns:org=http://org.csi.yucca
 http://org.csi.yucca*
 *xpath=$body/child::*/*
 * /callout*
  log level=full
 property name=step
 value=API_internal_readDeploymentStatusList DOPO CALLOUT/
  /log
  loopback description=end/
   /inSequence
   outSequence
  property name=messageType
value=application/json
scope=axis2
type=STRING/
  log level=full
 property name=step
 value=API_internal_readDeploymentStatusList END/
  /log
  send/
   /outSequence
   faultSequence
  log level=full
 property name=STEP
   value=ERROR
 $/
  /log
  property name=messageType
value=application/json
scope=axis2
type=STRING/
  property name=NO_ENTITY_BODY scope=axis2 action=remove/
  property name=HTTP_SC value=500 scope=axis2
 type=STRING/
  payloadFactory media-type=json
 format{   error_code: YuccaInternaApiException,
 error_message

Re: [Dev] WSO2 Committers += Senduran Balasubramaniyam

2015-02-18 Thread Vijitha Ekanayake
Congratulation Senduran !!!

On Wed, Feb 18, 2015 at 5:09 PM, Maheeka Jayasuriya mahe...@wso2.com
wrote:

 Congratulations Senduran !!


 Thanks,

 Maheeka Jayasuriya
 Software Engineer
 Mobile : +9450661

 On Wed, Feb 18, 2015 at 5:08 PM, Chanaka Fernando chana...@wso2.com
 wrote:

 Congratz Senduran !!!

 On Wed, Feb 18, 2015 at 5:06 PM, Kasun Indrasiri ka...@wso2.com wrote:

 Hi devs,

 Its my pleasure to welcome Senduran Balasubramaniyam as a WSO2
 Committer.

 Senduran, welcome aboard and keep up the good work!

 Thanks.

 --
 Kasun Indrasiri
 Software Architect
 WSO2, Inc.; http://wso2.com
 lean.enterprise.middleware

 cell: +94 77 556 5206
 Blog : http://kasunpanorama.blogspot.com/




 --
 --
 Chanaka Fernando
 Technical Lead
 WSO2, Inc.; http://wso2.com
 lean.enterprise.middleware

 mobile: +94 773337238
 Blog : http://soatutorials.blogspot.com
 LinkedIn:http://www.linkedin.com/pub/chanaka-fernando/19/a20/5b0
 Twitter:https://twitter.com/chanakaudaya
 Wordpress:http://chanakaudaya.wordpress.com




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



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




-- 
Vijitha Ekanayake
Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] Create data service inside ESB integration test

2015-02-18 Thread Vijitha Ekanayake
Hi Krishantha,

Following are the steps that involves with the use.

1. Install data services server feature in ESB.
2. Create a new data service
3. Invoke the created data service from callout mediator with local
transport inside a RestAPI

For the moment I've created a mock service which is similar to stockquote
service and invoked using callout mediator with local transport to automate
the local transport scenario with callout mediator.

*Following is the RestAPI configuration used invoke data service.*

?xml version=1.0 encoding=UTF-8?
api xmlns=http://ws.apache.org/ns/synapse;
 name=ProvaRestApiDecodifica
 context=/wso001/services/provarest
   resource methods=GET url-mapping=/deploymentstatus
  inSequence
 property name=NO_ENTITY_BODY scope=axis2 action=remove/
 log level=full
property name=step
value=API_internal_readDeploymentStatusList BEGIN/
 /log
 property name=FORCE_ERROR_ON_SOAP_FAULT
   value=true
   scope=default
   type=STRING/
 payloadFactory media-type=xml
format
   org:readDeploymentStatusList xmlns:org=http://org.csi.yucca
/
/format
args/
 /payloadFactory
 log level=full
property name=step
  value=API_internal_readDeploymentStatusList
CALLOUT/
property name=BODY expression=$body/child::*/
 /log
* callout serviceURL=local:///services/MyDataService/*
*  action=readDeploymentStatusList*
*source
xmlns:soapenv=http://schemas.xmlsoap.org/soap/envelope/
http://schemas.xmlsoap.org/soap/envelope/*
*xmlns:org=http://org.csi.yucca
http://org.csi.yucca*
*xpath=$body/child::*/*
*target
xmlns:soapenv=http://schemas.xmlsoap.org/soap/envelope/
http://schemas.xmlsoap.org/soap/envelope/*
*xmlns:org=http://org.csi.yucca
http://org.csi.yucca*
*xpath=$body/child::*/*
* /callout*
 log level=full
property name=step
value=API_internal_readDeploymentStatusList DOPO CALLOUT/
 /log
 loopback description=end/
  /inSequence
  outSequence
 property name=messageType
   value=application/json
   scope=axis2
   type=STRING/
 log level=full
property name=step
value=API_internal_readDeploymentStatusList END/
 /log
 send/
  /outSequence
  faultSequence
 log level=full
property name=STEP
  value=ERROR $/
 /log
 property name=messageType
   value=application/json
   scope=axis2
   type=STRING/
 property name=NO_ENTITY_BODY scope=axis2 action=remove/
 property name=HTTP_SC value=500 scope=axis2 type=STRING/
 payloadFactory media-type=json
format{   error_code: YuccaInternaApiException,
error_message: $1,   error_detail:   }/format
args
   arg evaluator=xml
expression=get-property('ERROR_MESSAGE')/
/args
 /payloadFactory
 log level=full separator=,
property name=message
expression=get-property('ERROR_MESSAGE')/
property name=code expression=get-property('ERROR_CODE')/
property name=detail
expression=get-property('ERROR_DETAIL')/
property name=exception
expression=get-property('ERROR_EXCEPTION')/
 /log
 respond/
  /faultSequence
   /resource
/api

Thank you!


On Wed, Feb 18, 2015 at 5:33 PM, Krishantha Samaraweera krishan...@wso2.com
 wrote:



 On Thu, Feb 12, 2015 at 2:58 PM, Vijitha Ekanayake vijit...@wso2.com
 wrote:

 Hi all,

 Is there a way to do the $subject? If so, can someone point me out some
 references or any sample test-case may helpful.


 Can you list manual steps involve with this use case ? based on the steps
 we might be able to propose you a solution.

 Thanks,
 Krishantha.



 Thanks !

 --
 Vijitha Ekanayake
 Software Engineer*, *WSO2, Inc.; http://wso2.com/
 Mobile : +94 777 24 73 39 | +94 718 74 44 08
 lean.enterprise.middleware

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




 --
 Krishantha Samaraweera
 Senior Technical Lead - Test Automation
 Mobile: +94 77 7759918
 WSO2, Inc.; http://wso2.com/
 lean . enterprise . middlewear.




-- 
Vijitha Ekanayake
Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] Create data service inside ESB integration test

2015-02-15 Thread Vijitha Ekanayake
Hi All,

Is there any solution on this?

On Thu, Feb 12, 2015 at 2:58 PM, Vijitha Ekanayake vijit...@wso2.com
wrote:

 Hi all,

 Is there a way to do the $subject? If so, can someone point me out some
 references or any sample test-case may helpful.

 Thanks !

 --
 Vijitha Ekanayake
 Software Engineer*, *WSO2, Inc.; http://wso2.com/
 Mobile : +94 777 24 73 39 | +94 718 74 44 08
 lean.enterprise.middleware




-- 
Vijitha Ekanayake
Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Pulasthi Mahawithana

2015-02-13 Thread Vijitha Ekanayake
Congratulations Pulasthi !!!

On Fri, Feb 13, 2015 at 3:36 PM, Thanuja Jayasinghe than...@wso2.com
wrote:

 Congratz pulasthi

 On Fri, Feb 13, 2015 at 3:13 PM, Dakshika Jayathilaka daksh...@wso2.com
 wrote:

 Congratulations Pulasthi!

 *Dakshika Jayathilaka*
 Software Engineer
 WSO2, Inc.
 lean.enterprise.middleware
 0771100911

 On Fri, Feb 13, 2015 at 3:03 PM, Prasanna Dangalla prasa...@wso2.com
 wrote:

 Congratulations Pulasthi!


 On Fri, Feb 13, 2015 at 2:03 PM, Kasun De Silva kas...@wso2.com wrote:

 Congratz Pulasthi!!!

 *Kasun de Silva*
 Software Engineer | *WSO2 Inc.*; http://wso2.com
 lean.enterprise.middleware

 email   : kas...@wso2.com
 mobile : +94 77 794 4260


 On Fri, Feb 13, 2015 at 1:54 PM, Supun Sethunga sup...@wso2.com
 wrote:

 Congratz Pulasthi !

 On Fri, Feb 13, 2015 at 1:09 PM, Darshana Gunawardana 
 darsh...@wso2.com wrote:

 Congratulations Pulasthi..!!

 On Fri, Feb 13, 2015 at 12:37 PM, Buddhima Wijeweera 
 buddh...@wso2.com wrote:

 Congratulations Pulasthi !!!

 On Fri, Feb 13, 2015 at 12:30 PM, Kalpa Welivitigoda 
 kal...@wso2.com wrote:

 Congratulations Pulasthi !

 On Fri, Feb 13, 2015 at 12:29 PM, Milinda Perera milin...@wso2.com
  wrote:

 Congratulations Pulasthi ... :)

 On Fri, Feb 13, 2015 at 12:27 PM, Firzhan Naqash firz...@wso2.com
  wrote:

 Congratulations Pulasthi

 Regards,
 Firzhan

 On Fri, Feb 13, 2015 at 12:23 PM, Jerad Rutnam je...@wso2.com
 wrote:

 Congratulations Pulasthi! :)

 On Fri, Feb 13, 2015 at 12:19 PM, Johann Nallathamby 
 joh...@wso2.com wrote:

 Hi All,

 It's my pleasure to announce Pulasthi Mahawithana as a WSO2
 Committer. Pulasthi has been a valuable contributor for WSO2
 Identity Server product, and in recognition of his contribution to 
 WSO2,
 he has been voted as a WSO2 Committer.

 Pulasthi, congratulations and keep up the good work!

 Thanks  Regards.

 --
 Thanks  Regards,

 *Johann Dilantha Nallathamby*
 Associate Technical Lead  Product Lead of WSO2 Identity Server
 Integration Technologies Team
 WSO2, Inc.
 lean.enterprise.middleware

 Mobile - *+9476950*
 Blog - *http://nallaa.wordpress.com
 http://nallaa.wordpress.com*

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




 --
 *Jerad Rutnam*
 *Software Engineer*

 WSO2 Inc.
 lean | enterprise | middleware
 M : +94 77 959 1609 | E : je...@wso2.com | W : www.wso2.com

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



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




 --
 Milinda Perera
 Software Engineer;
 WSO2 Inc. http://wso2.com ,
 Mobile: (+94) 714 115 032


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




 --
 Best Regards,

 Kalpa Welivitigoda
 Software Engineer, WSO2 Inc. http://wso2.com
 Email: kal...@wso2.com
 Mobile: +94776509215

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




 --
 Buddhima Wijeweera
 Software Engineer; WSO2 Inc.; http://wso2.com ,

 Mobile: +94 71 427 9966
 Email: buddh...@wso2.com
 Blog:   https://buddhimawijeweera.wordpress.com
 GitHub Profile: https://github.com/Buddhima

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




 --
 Regards,


 *Darshana Gunawardana*Software Engineer
 WSO2 Inc.; http://wso2.com

 *E-mail: darsh...@wso2.com darsh...@wso2.com*
 *Mobile: +94718566859 %2B94718566859*Lean . Enterprise . Middleware

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




 --
 *Supun Sethunga*
 Software Engineer
 WSO2, Inc.
 lean | enterprise | middleware
 Mobile : +94 716546324

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



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




 --
 Prasanna Dangalla
 Software Engineer, WSO2, Inc.; http://wso2.com/
 lean.enterprise.middleware

 cell: +94 777 55 80 30 | +94 718 11 27 51
 twitter: @prasa77

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



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




 --
 *Thanuja Lakmal*
 Software Engineer
 WSO2 Inc. http://wso2.com/
 *lean.enterprise.middleware*
 Mobile: +94715979891 +94758009992

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




-- 
Vijitha Ekanayake
Software Engineer*, *WSO2, Inc.; http

[Dev] Exception is thrown when log into ESB management console

2015-02-13 Thread Vijitha Ekanayake
(AbstractHttp11Processor.java:1040)

   at
org.apache.coyote.AbstractProtocol$AbstractConnectionHandler.process(AbstractProtocol.java:607)

   at
org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1721)

   at
org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.run(NioEndpoint.java:1679)

   at
java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:895)

   at
java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:918)

   at java.lang.Thread.run(Thread.java:662)

[1]. https://github.com/wso2/carbon4-kernel/pull/135
-- 
Vijitha Ekanayake
Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] Exception is thrown when log into ESB management console

2015-02-13 Thread Vijitha Ekanayake
Hi KasunG,

Thanks for the quick response. Setting carbonContext.setTenantId(tenantId,
true); seems to be much cleaner. Since ESB 4.9.0-M7-SNAPSHOT should rely on
already released versions of other products, what is the procedure for
fixing this issue?

Thanks.

On Fri, Feb 13, 2015 at 6:48 PM, KasunG Gajasinghe kas...@wso2.com wrote:

 You could simply change the setTenantId method call to 
 carbonContext.setTenantId(tenantId,
 true);

 On Fri, Feb 13, 2015 at 6:33 PM, Vijitha Ekanayake vijit...@wso2.com
 wrote:

 Hi all,

 Following exception is thrown when log into ESB management console and
 was able to overcome the issue by putting a null check
 in CarbonAuthenticationUtil class. following PR [1] fixes the issue.

 Code which fixes the issue

 public static void onFailedAdminLogin(HttpSession httpSess, String
 username, int tenantId,
 String tenantDomain, String remoteAddress, String reason)
 throws Exception {

 if (httpSess != null) {
 PrivilegedCarbonContext carbonContext =
 PrivilegedCarbonContext.getThreadLocalCarbonContext();
 carbonContext.setUsername(username);
 carbonContext.setTenantId(tenantId);
 if (tenantDomain == null) {
tenantDomain = carbonContext.getTenantDomain(true);
}
 carbonContext.setTenantDomain(tenantDomain);
 }



 [2015-02-13 09:25:08,061] ERROR - AuthenticationAdminClient Tenant domain
 has not been set in CarbonContext

 java.lang.NullPointerException: Tenant domain has not been set in
 CarbonContext

at
 org.wso2.carbon.caching.impl.CacheManagerFactoryImpl.getCacheManager(CacheManagerFactoryImpl.java:79)

at
 org.wso2.carbon.security.pox.POXSecurityHandler.getPOXCache(POXSecurityHandler.java:365)

at
 org.wso2.carbon.security.pox.POXSecurityHandler.invoke(POXSecurityHandler.java:123)

at org.apache.axis2.engine.Phase.invokeHandler(Phase.java:340)

at org.apache.axis2.engine.Phase.invoke(Phase.java:313)

at org.apache.axis2.engine.AxisEngine.invoke(AxisEngine.java:261)

at org.apache.axis2.engine.AxisEngine.receive(AxisEngine.java:167)

at
 org.apache.axis2.description.OutInAxisOperationClient.handleResponse(OutInAxisOperation.java:359)

at
 org.apache.axis2.description.OutInAxisOperationClient.send(OutInAxisOperation.java:445)

at
 org.apache.axis2.description.OutInAxisOperationClient.executeImpl(OutInAxisOperation.java:225)

at
 org.apache.axis2.client.OperationClient.execute(OperationClient.java:149)

at
 org.wso2.carbon.authenticator.stub.AuthenticationAdminStub.loginWithRememberMeCookie(AuthenticationAdminStub.java:1724)

at
 org.wso2.carbon.authenticator.proxy.AuthenticationAdminClient.loginWithRememberMeCookie(AuthenticationAdminClient.java:99)

at
 org.wso2.carbon.ui.DefaultCarbonAuthenticator.doAuthentication(DefaultCarbonAuthenticator.java:109)

at
 org.wso2.carbon.ui.AbstractCarbonUIAuthenticator.handleSecurity(AbstractCarbonUIAuthenticator.java:218)

at
 org.wso2.carbon.ui.BasicAuthUIAuthenticator.authenticateWithCookie(BasicAuthUIAuthenticator.java:96)

at
 org.wso2.carbon.ui.CarbonUILoginUtil.saveOriginalUrl(CarbonUILoginUtil.java:118)

at
 org.wso2.carbon.ui.CarbonSecuredHttpContext.handleSecurity(CarbonSecuredHttpContext.java:276)

at
 org.eclipse.equinox.http.servlet.internal.ServletRegistration.service(ServletRegistration.java:60)

at
 org.eclipse.equinox.http.servlet.internal.ProxyServlet.processAlias(ProxyServlet.java:128)

at
 org.eclipse.equinox.http.servlet.internal.ProxyServlet.service(ProxyServlet.java:68)

at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)

at
 org.wso2.carbon.tomcat.ext.servlet.DelegationServlet.service(DelegationServlet.java:68)

at
 org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:303)

at
 org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)

at
 org.wso2.carbon.tomcat.ext.filter.CharacterSetFilter.doFilter(CharacterSetFilter.java:61)

at
 org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:241)

at
 org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)

at
 org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:220)

at
 org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:122)

at
 org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:501)

at
 org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:170)

at
 org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:98)

at
 org.wso2.carbon.tomcat.ext.valves.CompositeValve.continueInvocation(CompositeValve.java:183)

at
 org.wso2.carbon.tomcat.ext.valves.TomcatValveContainer.invokeValves(TomcatValveContainer.java:49)

at
 org.wso2

[Dev] Create data service inside ESB integration test

2015-02-12 Thread Vijitha Ekanayake
Hi all,

Is there a way to do the $subject? If so, can someone point me out some
references or any sample test-case may helpful.

Thanks !

-- 
Vijitha Ekanayake
Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Tharindu Edirisinghe

2015-02-01 Thread Vijitha Ekanayake
Congratulations Tharindu !!!

On Sun, Feb 1, 2015 at 10:11 PM, Buddhima Wijeweera buddh...@wso2.com
wrote:

 Congratulations Tharindu !!!

 On Sun, Feb 1, 2015 at 10:10 PM, Firzhan Naqash firz...@wso2.com wrote:

 Congratz Tharindhu ...

 Regards,
 Firzhan

 On Sun, Feb 1, 2015 at 10:09 PM, Hasintha Indrajee hasin...@wso2.com
 wrote:

 Congratulations Tharindu ...!!

 On Sun, Feb 1, 2015 at 9:58 PM, Johann Nallathamby joh...@wso2.com
 wrote:

 Hi All,

 It's my pleasure to announce Tharindu Edirisinghe as a WSO2 Committer.
 Tharindu has been a valuable contributor for WSO2 Identity Server
 product, and in recognition of his contribution to WSO2, he has been voted
 as a WSO2 Committer.

 Tharindu, congratulations and keep up the good work!

 Thanks  Regards.

 --

 *Johann Dilantha Nallathamby*
 Associate Technical Lead  Product Lead of WSO2 Identity Server
 Integration Technologies Team
 WSO2, Inc.
 lean.enterprise.middleware

 Mobile - *+9476950*
 Blog - *http://nallaa.wordpress.com http://nallaa.wordpress.com*

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



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



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




 --
 Buddhima Wijeweera
 Software Engineer; WSO2 Inc.; http://wso2.com ,

 Mobile: +94 71 427 9966
 Email: buddh...@wso2.com
 Blog:   https://buddhimawijeweera.wordpress.com
 GitHub Profile: https://github.com/Buddhima

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




-- 
Vijitha Ekanayake
Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


[Dev] Please review and merge the pull request

2015-01-23 Thread Vijitha Ekanayake
Hi,

Please merge the pull request [1] to remove duplicated handler in
axis2_nhttp.xml
https://github.com/VijithaEkanayake/product-esb/commit/6c8416b784536462b24683ccf41043499a11

[1]. https://github.com/wso2-dev/product-esb/pull/151
-- 
Vijitha Ekanayake
Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


[Dev] Rule mediator component is missing in ESB 4.9.0 M4

2015-01-23 Thread Vijitha Ekanayake
Hi,

Currently released version of ESB 4.9.0 M4 doesn't contain the rule
mediator component. What is the location of the repository of rule mediator
and how can we proceed to integrate this component ESB?



-- 
Vijitha Ekanayake
Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


[Dev] Please review and merge the pull request

2015-01-23 Thread Vijitha Ekanayake
Hi,

Please merge the pull request [1] for
https://wso2.org/jira/browse/ESBJAVA-3440

[1]. https://github.com/wso2-dev/product-esb/pull/149


-- 
Vijitha Ekanayake
Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


[Dev] what is the correct way to restore ESB to default configuration After executing a test case

2015-01-21 Thread Vijitha Ekanayake
)*

* at org.testng.TestNG.runSuitesLocally(TestNG.java:1083)*

* at org.testng.TestNG.run(TestNG.java:999)*

* at
org.apache.maven.surefire.testng.TestNGExecutor.run(TestNGExecutor.java:178)*

* at
org.apache.maven.surefire.testng.TestNGXmlTestSuite.execute(TestNGXmlTestSuite.java:92)*

* at
org.apache.maven.surefire.testng.TestNGProvider.invoke(TestNGProvider.java:96)*

* at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)*

* at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)*

* at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)*

* at java.lang.reflect.Method.invoke(Method.java:606)*

* at
org.apache.maven.surefire.util.ReflectionUtils.invokeMethodWithArray(ReflectionUtils.java:189)*

* at
org.apache.maven.surefire.booter.ProviderFactory$ProviderProxy.invoke(ProviderFactory.java:165)*

* at
org.apache.maven.surefire.booter.ProviderFactory.invokeProvider(ProviderFactory.java:85)*

* at
org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:115)*

* at
org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:75)*

[1].
https://docs.wso2.com/display/ESB481/Sample+264%3A+Sending+Two-Way+Messages+Using+JMS+transport

-- 
Vijitha Ekanayake
Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] what is the correct way to restore ESB to default configuration After executing a test case

2015-01-21 Thread Vijitha Ekanayake
adding dev.

On Thu, Jan 22, 2015 at 10:02 AM, Vijitha Ekanayake vijit...@wso2.com
wrote:

 Hi Irham,

 Thanks for the response.

 I tried cleanup before restore to last configuration as well. Even
 replacing my AfterClass configuration as yours still ended up getting the
 same result.

 On Thu, Jan 22, 2015 at 9:33 AM, Irham Iqbal iq...@wso2.com wrote:

 Hi Vijitha,

 I have written a test case for mail transport .In that me too replacing
 axis2.xml. This is my AfterClass method which is working fine for me .
 I think you have to cleanup before restore to last configuration.

 @AfterClass(alwaysRun = true)
 public void deleteService() throws Exception {
 try {
 super.cleanup();
 }catch (Exception e){
 log.error(Error while cleaning up +e.getMessage(),e);
 throw new Exception(Error while cleaning up
 +e.getMessage(),e);
 }finally {
 if (serverConfigurationManager != null) {
 serverConfigurationManager.restoreToLastConfiguration();
 }
 }
 }

 Thanks,
 Iqbal

 On Thu, Jan 22, 2015 at 7:20 AM, Vijitha Ekanayake vijit...@wso2.com
 wrote:

 Hi,

 I'm writing a test case automate the WSO2 ESB sample 264 [1]. In the
 test I replaces the axis2.xml files of ESB and backend axis2 server enable
 JMS transport Sender and Receiver. test case works fine except following
 exception printed out in the console when when it executing the
 *super.cleanup()* method. Can anybody help help me to figure it out
 what i have missed in the test case?

 *Test case Implementation*

  private ServerConfigurationManager serverConfigurationManager;

 private ActiveMQServer activeMQServer = new ActiveMQServer();


  @BeforeClass(alwaysRun = true)

 public void init() throws Exception {

 activeMQServer.startJMSBrokerAndConfigureESB();

 super.init();

 context = new AutomationContext(ESB, TestUserMode.SUPER_TENANT_ADMIN);

 serverConfigurationManager = new ServerConfigurationManager(context);


 File sourceFile = location of source axis2.xml

 File targetFile = actual axis2.xml location of esb

 File sourceAxis2ServerFile =  location of source axis2.ml of axis2
 server

 File targetAxis2ServerFile = actual axis2.xml location of axis2 server


 serverConfigurationManager.applyConfigurationWithoutRestart(sourceFile,
 targetFile, true);

 serverConfigurationManager.applyConfigurationWithoutRestart(sourceAxis2ServerFile,
 targetAxis2ServerFile, true);

 loadSampleESBConfiguration(264);

 serverConfigurationManager.restartGracefully(getSessionCookie());

  }


 @SetEnvironment(executionEnvironments = {
 ExecutionEnvironment.STANDALONE})

 @Test(groups = {wso2.esb}, description = Test JMS two way transport
 , enabled = true)

 public void testJMSProxy() throws Exception {

 OMElement response =
 axis2Client.sendSimpleStockQuoteRequest(getProxyServiceURLHttp(StockQuoteProxy)

 ,
 getBackEndServiceUrl(ESBTestConstant.SIMPLE_STOCK_QUOTE_SERVICE),
 Sample264);

 Assert.assertTrue(response.toString().contains(Sample264), Invalid
 response message);

 }


  @AfterClass(alwaysRun = true)

 public void close() throws Exception {

 serverConfigurationManager.restoreToLastConfiguration();

 activeMQServer.stopJMSBrokerRevertESBConfiguration();

 super.cleanup();

 }


 *following exception printed out in the console.*


  *INFO
 [org.wso2.carbon.automation.extensions.servers.utils.ServerLogReader] -
 [2015-01-22 06:54:01,943]  WARN - AuthenticationHandler Illegal access
 attempt at [2015-01-22 06:54:01,0943] from IP address 127.0.0.1 while
 trying to authenticate access to service ServiceAdmin*

 *INFO  [org.apache.commons.httpclient.auth.AuthChallengeProcessor] -
 basic authentication scheme selected*

 *INFO  [org.apache.commons.httpclient.HttpMethodDirector] - No
 credentials available for BASIC 'WSO2 Enterprise Service
 Bus'@localhost:9443*

 *INFO  [org.apache.axis2.transport.http.HTTPSender] - Unable to
 sendViaPost to url[https://localhost:9443/services/ServiceAdmin
 https://localhost:9443/services/ServiceAdmin]*

 *org.apache.axis2.AxisFault: Transport error: 401 Error: Unauthorized*

 * at
 org.apache.axis2.transport.http.HTTPSender.handleResponse(HTTPSender.java:330)*

 * at
 org.apache.axis2.transport.http.HTTPSender.sendViaPost(HTTPSender.java:196)*

 * at org.apache.axis2.transport.http.HTTPSender.send(HTTPSender.java:77)*

 * at
 org.apache.axis2.transport.http.CommonsHTTPTransportSender.writeMessageWithCommons(CommonsHTTPTransportSender.java:451)*

 * at
 org.apache.axis2.transport.http.CommonsHTTPTransportSender.invoke(CommonsHTTPTransportSender.java:278)*

 * at org.apache.axis2.engine.AxisEngine.send(AxisEngine.java:442)*

 * at
 org.apache.axis2.description.OutInAxisOperationClient.send(OutInAxisOperation.java:430)*

 * at
 org.apache.axis2.description.OutInAxisOperationClient.executeImpl(OutInAxisOperation.java:225)*

 * at
 org.apache.axis2.client.OperationClient.execute(OperationClient.java:149

[Dev] carbon4-kernel build failure

2015-01-21 Thread Vijitha Ekanayake
Hi,

I was trying to build the carbon4-kernel cloned from wso2-dev repo and got
following error messages in the console. since carbon 4.3.0 is released why
still 4.3.0-SNAPSHOT entries in the
carbon4-kernel/distribution/integration/security-verifier/pom.xml? can
anybody help me to figure out what went wrong?


[WARNING] The POM for
org.apache.axis2:axis2-aar-maven-plugin:jar:1.6.1-wso2v11-SNAPSHOT is
missing, no dependency information available
[ERROR] The build could not read 1 project - [Help 1]
[ERROR]
[ERROR]   The project org.wso2.carbon:SecVerifier:4.3.0-SNAPSHOT
(/Users/vijithae/developments/esb_team/repos/carbon4-kernel/distribution/integration/security-verifier/pom.xml)
has 2 errors
[ERROR] Unresolveable build extension: Plugin
org.apache.axis2:axis2-aar-maven-plugin:1.6.1-wso2v11-SNAPSHOT or one of
its dependencies could not be resolved: Failure to find
org.apache.axis2:axis2-aar-maven-plugin:jar:1.6.1-wso2v11-SNAPSHOT in
http://maven.wso2.org/nexus/content/repositories/releases/ was cached in
the local repository, resolution will not be reattempted until the update
interval of wso2.releases has elapsed or updates are forced - [Help 2]
[ERROR] Unknown packaging: aar @ line 31, column 16
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e
switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions,
please read the following articles:
[ERROR] [Help 1]
http://cwiki.apache.org/confluence/display/MAVEN/ProjectBuildingException
[ERROR] [Help 2]
http://cwiki.apache.org/confluence/display/MAVEN/PluginResolutionException


-- 
Vijitha Ekanayake
Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


[Dev] Please review and merge the pull request : New Integration Test cases for ESB

2015-01-20 Thread Vijitha Ekanayake
Hi,

Please merge pull request [1] for JMS inbound endpoint test cases.

[1] *https://github.com/wso2-dev/product-esb/pull/148
https://github.com/wso2-dev/product-esb/pull/148*

-- 
Vijitha Ekanayake
Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


[Dev] Please review and merge the pull request : New Integration Test cases for ESB

2015-01-18 Thread Vijitha Ekanayake
Hi,

Please merge pull request for ESB Samples 61,62 and Indirect and Resolving
endpoints[1] test cases.

[1] https://github.com/wso2-dev/product-esb/pull/144

-- 
Vijitha Ekanayake
Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


[Dev] Clustering Agent Issue while running ESB 4.8.1 sample 57

2015-01-12 Thread Vijitha Ekanayake
I tried to run ESB Sample 57 [1] on ESB 4.8.1 and got an error as follows.

ERROR_EXCEPTION : org.apache.synapse.SynapseException: A
LoadBalanceEventHandler has not been specified in the axis2.xml file
for the domain apache.axis2.application.domain.

I went through following  mail threads [2] [3] [4] which already
discussed about the same error before. I tried suggestions provided by
[2] and [3] but still getting the same error.

To my knowledge, the reason for this is the incompatibility between
the clustering mechanisms used in ESB 4.8.1 (HazelCast) and the sample
Axis2 server (Apache Tribes).
*Can we cluster axis2 server with Hazalcast or Is there any solution
for this issue?*


[2015-01-12 16:00:09,464] DEBUG - DynamicLoadbalanceEndpoint Couldn't
find the Cookie header to find the session
[2015-01-12 16:00:09,464] ERROR - Axis2LoadBalanceMembershipHandler A
LoadBalanceEventHandler has not been specified in the axis2.xml file
for the domain apache.axis2.application.domain
[2015-01-12 16:00:09,465]  WARN - SynapseMessageReceiver Executing
fault handler due to exception encountered
[2015-01-12 16:00:09,466]  WARN - FaultHandler ERROR_CODE : 0
[2015-01-12 16:00:09,466]  WARN - FaultHandler ERROR_MESSAGE : A
LoadBalanceEventHandler has not been specified in the axis2.xml file
for the domain apache.axis2.application.domain
[2015-01-12 16:00:09,466]  WARN - FaultHandler ERROR_DETAIL :
org.apache.synapse.SynapseException: A LoadBalanceEventHandler has not
been specified in the axis2.xml file for the domain
apache.axis2.application.domain
at 
org.apache.synapse.core.axis2.Axis2LoadBalanceMembershipHandler.setConfigurationContext(Axis2LoadBalanceMembershipHandler.java:77)
at 
org.apache.synapse.endpoints.DynamicLoadbalanceEndpoint.send(DynamicLoadbalanceEndpoint.java:115)
at 
org.apache.synapse.mediators.builtin.SendMediator.mediate(SendMediator.java:97)
at 
org.apache.synapse.mediators.AbstractListMediator.mediate(AbstractListMediator.java:77)
at 
org.apache.synapse.mediators.AbstractListMediator.mediate(AbstractListMediator.java:47)
at 
org.apache.synapse.mediators.filters.InMediator.mediate(InMediator.java:61)
at 
org.apache.synapse.mediators.AbstractListMediator.mediate(AbstractListMediator.java:77)
at 
org.apache.synapse.mediators.AbstractListMediator.mediate(AbstractListMediator.java:47)
at 
org.apache.synapse.mediators.base.SequenceMediator.mediate(SequenceMediator.java:131)
at 
org.apache.synapse.core.axis2.Axis2SynapseEnvironment.injectMessage(Axis2SynapseEnvironment.java:228)
at 
org.apache.synapse.core.axis2.SynapseMessageReceiver.receive(SynapseMessageReceiver.java:83)
at org.apache.axis2.engine.AxisEngine.receive(AxisEngine.java:180)
at 
org.apache.synapse.transport.passthru.ServerWorker.processEntityEnclosingRequest(ServerWorker.java:411)
at 
org.apache.synapse.transport.passthru.ServerWorker.run(ServerWorker.java:183)
at 
org.apache.axis2.transport.base.threads.NativeWorkerPool$1.run(NativeWorkerPool.java:172)
at 
java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:895)
at 
java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:918)
at java.lang.Thread.run(Thread.java:695)

[2015-01-12 16:00:09,467]  WARN - FaultHandler ERROR_EXCEPTION :
org.apache.synapse.SynapseException: A LoadBalanceEventHandler has not
been specified in the axis2.xml file for the domain
apache.axis2.application.domain
[2015-01-12 16:00:09,467]  WARN - FaultHandler FaultHandler :
org.apache.synapse.mediators.MediatorFaultHandler@4d7d603e
[2015-01-12 16:00:09,467]  WARN - MediatorFaultHandler Executing fault
handler mediator : errorHandler
[2015-01-12 16:00:09,467] DEBUG - SequenceMediator Start : Sequence
errorHandler


[1].
https://docs.wso2.com/display/ESB481/Sample+57%3A+Dynamic+Load+Balancing+between+Three+Nodes
[2].
http://wso2-oxygen-tank.10903.n7.nabble.com/Dev-Running-ESB-sample-57-td89484.html
[3].
http://wso2-oxygen-tank.10903.n7.nabble.com/Dev-WSO2-WSB-Sample-57-Dynamic-load-balancing-between-3-nodes-Missing-LoadBalanceEventHandler-td89942.html
[4]. http://mail.wso2.org/mailarchive/dev/2014-April/029411.html

-- 
Vijitha Ekanayake
Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Pirinthapan Mahendran

2015-01-12 Thread Vijitha Ekanayake
Congratulations Pirinthapan !!!

On Mon, Jan 12, 2015 at 5:28 PM, Gayashan Amarasinghe gayas...@wso2.com
wrote:

 Congratulations Pirinthapan!!!

 On Fri, Jan 9, 2015 at 6:59 PM, Dimuthu Leelarathne dimut...@wso2.com
 wrote:

 Hi all,

 It is with great pleasure that WSO2 welcomes Pirinthapan Mahendran as
 WSO2 committer!

 Congratulations!

 thanks,
 Dimuthu

 --
 Dimuthu Leelarathne
 Architect  Product Lead of App Factory

 WSO2, Inc. (http://wso2.com)
 email: dimut...@wso2.com
 Mobile : 0773661935

 Lean . Enterprise . Middleware

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




 --
 *Gayashan Amarasinghe*
 Software Engineer | Platform TG
 WSO2, Inc. | http://wso2.com
 lean. enterprise. middleware

 Mobile : +94718314517
 Blog : gayashan-a.blogspot.com

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




-- 
Vijitha Ekanayake
Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Commiters += Sameera Jayaratna

2015-01-12 Thread Vijitha Ekanayake
Congratulations Sameera !!!

On Mon, Jan 12, 2015 at 5:29 PM, Gayashan Amarasinghe gayas...@wso2.com
wrote:

 Congratulations Sameera!!!

 On Mon, Jan 5, 2015 at 1:14 PM, Ruchira Wageesha ruch...@wso2.com wrote:

 Hi All,

 It's my pleasure to welcome Sameera Jayaratna as a WSO2 Committer.
 Sameera is a member of WSO2 UES/ES team and has done a great contribution
 to WSO2 ES product showing a great enthusiasm in her work. In recognition
 of her contribution, she has been voted as a WSO2 Committer.

 Sameera, welcome aboard and keep up the good work..

 /Ruchira

 --

 *Ruchira Wageesha**Associate Technical Lead*
 *WSO2 Inc. - lean . enterprise . middleware |  wso2.com http://wso2.com*

 *email: ruch...@wso2.com ruch...@wso2.com,   blog:
 ruchirawageesha.blogspot.com http://ruchirawageesha.blogspot.com,
 mobile: +94 77 5493444 %2B94%2077%205493444*

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




 --
 *Gayashan Amarasinghe*
 Software Engineer | Platform TG
 WSO2, Inc. | http://wso2.com
 lean. enterprise. middleware

 Mobile : +94718314517
 Blog : gayashan-a.blogspot.com

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




-- 
Vijitha Ekanayake
Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Commiters += Ayesha Dissanayaka

2015-01-12 Thread Vijitha Ekanayake
Congratulations Ayesha !!!

On Mon, Jan 12, 2015 at 5:29 PM, Gayashan Amarasinghe gayas...@wso2.com
wrote:

 Congratulations Ayesha!!!

 On Mon, Jan 5, 2015 at 1:13 PM, Ruchira Wageesha ruch...@wso2.com wrote:

 Hi All,

 It's my pleasure to welcome Ayesha Dissanayaka as a WSO2 Committer.
 Ayesha is a member of WSO2 UES/ES team and has done a great contribution to
 WSO2 ES product showing a great enthusiasm in her work. In recognition of
 her contribution, she has been voted as a WSO2 Committer.

 Ayesha, welcome aboard and keep up the good work..

 /Ruchira

 --

 *Ruchira Wageesha**Associate Technical Lead*
 *WSO2 Inc. - lean . enterprise . middleware |  wso2.com http://wso2.com*

 *email: ruch...@wso2.com ruch...@wso2.com,   blog:
 ruchirawageesha.blogspot.com http://ruchirawageesha.blogspot.com,
 mobile: +94 77 5493444 %2B94%2077%205493444*

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




 --
 *Gayashan Amarasinghe*
 Software Engineer | Platform TG
 WSO2, Inc. | http://wso2.com
 lean. enterprise. middleware

 Mobile : +94718314517
 Blog : gayashan-a.blogspot.com

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




-- 
Vijitha Ekanayake
Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Akalanka Darshana Pagoda Arachchi

2015-01-05 Thread Vijitha Ekanayake
Congratulations Akalanka !!!

On Mon, Jan 5, 2015 at 4:34 PM, Hasitha Hiranya hasit...@wso2.com wrote:

 Congratulations Akalanka !!

 On Mon, Jan 5, 2015 at 4:32 PM, Senduran Balasubramaniyam 
 sendu...@wso2.com wrote:

 Congratulations Akalanka !!

 On Mon, Jan 5, 2015 at 3:09 PM, Inshaf Mahath ins...@wso2.com wrote:

 Congrats Akalanka.. 

 On Mon, Jan 5, 2015 at 3:02 PM, Pumudu Ruhunage pum...@wso2.com wrote:

 Congrats Akalanka..!!!

 On Mon, Jan 5, 2015 at 2:58 PM, Hasitha Amal De Silva 
 hasit...@wso2.com wrote:

 Congrats Akalanka ! :)

 On Mon, Jan 5, 2015 at 2:51 PM, Harsha Kumara hars...@wso2.com
 wrote:

 Congratulations Akalanka!

 On Mon, Jan 5, 2015 at 2:47 PM, Abimaran Kugathasan 
 abima...@wso2.com wrote:

 Congrats!

 On Mon, Jan 5, 2015 at 2:39 PM, Kalpa Welivitigoda kal...@wso2.com
 wrote:

 Congratulations Akalanka !

 On Mon, Jan 5, 2015 at 2:38 PM, Pranavan Theivendram 
 pranav...@wso2.com wrote:

 Congratz Akalanka :)

 On Mon, Jan 5, 2015 at 2:34 PM, Lasitha Wattaladeniya 
 lasit...@wso2.com wrote:

 Congratulations Akalanka :)

 On Mon, Jan 5, 2015 at 2:32 PM, Ramith Jayasinghe 
 ram...@wso2.com wrote:

 Hi Akalanka,
 Congratulations!
 It is with great pleasure that we welcome you as a WSO2
 committer. Keep up the good work!
 regards
 --
 Ramith Jayasinghe
 Technical Lead
 WSO2 Inc., http://wso2.com
 lean.enterprise.middleware

 E: ram...@wso2.com



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




 --
 Lasitha Wattaladeniya
 Software Engineer
 WSO2, Inc. | http://wso2.com
 lean. enterprise. middleware

 Mobile : +94719397528
 Blog : techreadme.blogspot.com

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




 --

 *Regards,*

 *T.Pranavan*

 *Software Engineering intern, WSO2*
 *Mobile - +94775136836 %2B94775136836*

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




 --
 Best Regards,

 Kalpa Welivitigoda
 Software Engineer, WSO2 Inc. http://wso2.com
 Email: kal...@wso2.com
 Mobile: +94776509215

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




 --
 Thanks
 Abimaran Kugathasan

 Software Engineer | WSO2 Inc
 Data  APIs Technologies Team
 Mobile : +94 773922820

 http://stackoverflow.com/users/515034
 http://lk.linkedin.com/in/abimaran
 http://www.lkabimaran.blogspot.com/  https://github.com/abimaran
   https://twitter.com/abimaran


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




 --
 Harsha Kumara
 Software Engineer, WSO2 Inc.
 Mobile: +94775505618
 Blog:harshcreationz.blogspot.com

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




 --
 Cheers,

 Hasitha Amal De Silva
  Software Engineer
 Mobile : 0772037426
 Blog: http://devnutshell.tumblr.com/
 WSO2 Inc.: http://wso2.com ( lean.enterprise.middleware. )

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




 --
 Pumudu Ruhunage
 Associate Software Engineer | WSO2 Inc
 M: +94 779 664493  | http://wso2.com

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




 --
 Inshaf Mahath
 Associate Software Engineer
 Mobile: +94775907181
 WSO2 Inc.
 Lean . Enterprise . Middleware


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




 --
 *Senduran *
 Software Engineer,
 WSO2, Inc.;  http://wso2.com/ http://wso2.com/
 Mobile: +94 77 952 6548

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




 --
 *Hasitha Abeykoon*
 Senior Software Engineer; WSO2, Inc.; http://wso2.com
 *cell:* *+94 719363063*
 *blog: **abeykoon.blogspot.com* http://abeykoon.blogspot.com


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




-- 
Vijitha Ekanayake
Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Awanthika Senarath

2015-01-04 Thread Vijitha Ekanayake
Congratulations Awanthika ... !!!

On Mon, Jan 5, 2015 at 1:04 PM, Buddhima Wijeweera buddh...@wso2.com
wrote:

 Congratulations Awanthika!!!

 On Mon, Jan 5, 2015 at 12:59 PM, Thilini Anoratna thili...@wso2.com
 wrote:

 Congratz !! :)

 On Mon, Jan 5, 2015 at 12:55 PM, Rajeevan Vimalanathan 
 rajeev...@wso2.com wrote:

 Congratz Awanthika...!!!

 On Mon, Jan 5, 2015 at 12:48 PM, Jasintha Dasanayake jasin...@wso2.com
 wrote:

 Hi All,

 It's my distinct pleasure to welcome Awanthika Senarath as a WSO2
 Committer.

 Awanthika  has  been a valuable contributor for WSO2 Developer Studio
 since she joined WSO2. In recognition of her contributions to WSO2, She has
 been voted as a WSO2 Committer.

 Awanthika, Congratulations and Keep up the good work!

 Thanks and Regards,
 /Jasintha

 --

 *Jasintha Dasanayake*

 *Senior Software EngineerWSO2 Inc. | http://wso2.com
 http://wso2.com/lean . enterprise . middleware*


 *mobile :- 0711368118 0711368118*

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




 --
 Best Regards,
 V.Rajeevan
 Software Engineer,
 WSO2 Inc. :http://wso2.com

 Mobile : +94 773090875
 Email : rajeev...@wso2.com

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




 --
 Thilini Anoratna
 Software Engineering Intern
 WSO2 Inc.; http://wso2.com
 lean.enterprise.middleware

 Mobile : +94 (0) 778955654
 Email: thili...@wso2.com

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




 --
 Buddhima Wijeweera
 Software Engineer; WSO2 Inc.; http://wso2.com ,

 Mobile: +94 71 427 9966
 Email: buddh...@wso2.com
 Blog:   https://buddhimawijeweera.wordpress.com
 GitHub Profile: https://github.com/Buddhima

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




-- 
Vijitha Ekanayake
Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Hasintha Indrajee

2014-12-29 Thread Vijitha Ekanayake
Congratulations Hasintha !!!

On Mon, Dec 29, 2014 at 4:39 PM, Harsha Kumara hars...@wso2.com wrote:

 Congratulations Hasintha!

 On Mon, Dec 29, 2014 at 3:43 PM, Kalpa Welivitigoda kal...@wso2.com
 wrote:

 Congratulations Hasintha !

 On Mon, Dec 29, 2014 at 2:38 PM, Kasun De Silva kas...@wso2.com wrote:

 Congratz Hasintha...!!!

 *Kasun de Silva*
 Software Engineer | *WSO2 Inc.*; http://wso2.com
 lean.enterprise.middleware

 email   : kas...@wso2.com
 mobile : +94 77 794 4260


 On Mon, Dec 29, 2014 at 1:53 PM, Darshana Gunawardana darsh...@wso2.com
  wrote:

 Congratulations Hasintha..!!!

 On Mon, Dec 29, 2014 at 1:42 PM, Johann Nallathamby joh...@wso2.com
 wrote:

 Hi All,

 It's my pleasure to announce Hasintha Indrajee as a WSO2 Committer.
 Hasintha has been a valuable contributor for WSO2 Identity Server
 product, and in recognition of his contribution to WSO2, he has been voted
 as a WSO2 Committer.

 Hasintha, congratulations and keep up the good work!

 Thanks  Regards.

 --

 *Johann Dilantha Nallathamby*
 Associate Technical Lead  Product Lead of WSO2 Identity Server
 Integration Technologies Team
 WSO2, Inc.
 lean.enterprise.middleware

 Mobile - *+9476950*
 Blog - *http://nallaa.wordpress.com http://nallaa.wordpress.com*

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




 --
 Regards,


 *Darshana Gunawardana*Software Engineer
 WSO2 Inc.; http://wso2.com

 *E-mail: darsh...@wso2.com darsh...@wso2.com*
 *Mobile: +94718566859 %2B94718566859*Lean . Enterprise . Middleware

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



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




 --
 Best Regards,

 Kalpa Welivitigoda
 Software Engineer, WSO2 Inc. http://wso2.com
 Email: kal...@wso2.com
 Mobile: +94776509215

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




 --
 Harsha Kumara
 Software Engineer, WSO2 Inc.
 Mobile: +94775505618
 Blog:harshcreationz.blogspot.com

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




-- 
Vijitha Ekanayake
Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Buddhima Wijeweera

2014-12-28 Thread Vijitha Ekanayake
Congratulations Buddhima ..!!!

On Mon, Dec 29, 2014 at 8:58 AM, Tharindu Dharmarathna tharin...@wso2.com
wrote:

 Congrats!

 On Mon, Dec 29, 2014 at 8:56 AM, Abimaran Kugathasan abima...@wso2.com
 wrote:

 Congrats!

 On Mon, Dec 29, 2014 at 8:15 AM, Dakshika Jayathilaka daksh...@wso2.com
 wrote:

 Congratulations Buddhima !!!

 *Dakshika Jayathilaka*
 Software Engineer
 WSO2, Inc.
 lean.enterprise.middleware
 0771100911

 On Mon, Dec 29, 2014 at 7:55 AM, Kasun Indrasiri ka...@wso2.com wrote:

 Hi devs,

 Its my pleasure to welcome Buddhima Wijeweera as a WSO2 Committer.

 Buddhima, welcome aboard and keep up the good work.

 Thanks.

 --
 Kasun Indrasiri
 Software Architect
 WSO2, Inc.; http://wso2.com
 lean.enterprise.middleware

 cell: +94 77 556 5206
 Blog : http://kasunpanorama.blogspot.com/

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



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




 --
 Thanks
 Abimaran Kugathasan

 Software Engineer | WSO2 Inc
 Data  APIs Technologies Team
 Mobile : +94 773922820

 http://stackoverflow.com/users/515034
 http://lk.linkedin.com/in/abimaran
 http://www.lkabimaran.blogspot.com/  https://github.com/abimaran
 https://twitter.com/abimaran


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




 --

 *Tharindu Dharmarathna*Associate Software Engineer
 WSO2 Inc.; http://wso2.com
 lean.enterprise.middleware

 mobile: *+94779109091 %2B94779109091*

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




-- 
Vijitha Ekanayake
Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Isuru Ranawaka

2014-12-28 Thread Vijitha Ekanayake
Congratulations Isuru ...!!!

On Mon, Dec 29, 2014 at 8:56 AM, Abimaran Kugathasan abima...@wso2.com
wrote:

 Congrats!

 On Mon, Dec 29, 2014 at 8:15 AM, Dakshika Jayathilaka daksh...@wso2.com
 wrote:

 Congratulations Isuru !!!

 *Dakshika Jayathilaka*
 Software Engineer
 WSO2, Inc.
 lean.enterprise.middleware
 0771100911

 On Mon, Dec 29, 2014 at 7:53 AM, Kasun Indrasiri ka...@wso2.com wrote:

 Hi devs,

 Its my pleasure to welcome Isuru Ranawaka as a WSO2 Committer.

 IsuruR, welcome aboard and keep up the good work.

 Thanks.

 --
 Kasun Indrasiri
 Software Architect
 WSO2, Inc.; http://wso2.com
 lean.enterprise.middleware

 cell: +94 77 556 5206
 Blog : http://kasunpanorama.blogspot.com/

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



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




 --
 Thanks
 Abimaran Kugathasan

 Software Engineer | WSO2 Inc
 Data  APIs Technologies Team
 Mobile : +94 773922820

 http://stackoverflow.com/users/515034
 http://lk.linkedin.com/in/abimaran
 http://www.lkabimaran.blogspot.com/  https://github.com/abimaran
 https://twitter.com/abimaran


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




-- 
Vijitha Ekanayake
Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Sandamal Weerasinghe

2014-12-28 Thread Vijitha Ekanayake
Congratulations Sandamal ...!!!

On Mon, Dec 29, 2014 at 9:40 AM, Chamin Nalinda cha...@wso2.com wrote:

 Congratulations Sandamal :)

 On Sun, Dec 28, 2014 at 7:28 PM, Tharindu Dharmarathna tharin...@wso2.com
  wrote:

 Congrats Sandamal !.

 On Mon, Dec 29, 2014 at 8:57 AM, Abimaran Kugathasan abima...@wso2.com
 wrote:

 Congrats!

 On Mon, Dec 29, 2014 at 8:17 AM, Isuru Ranawaka isu...@wso2.com wrote:

 Congratulations ..

 On Mon, Dec 29, 2014 at 8:15 AM, Dakshika Jayathilaka 
 daksh...@wso2.com wrote:

 Congratulations sandamal !!!

 *Dakshika Jayathilaka*
 Software Engineer
 WSO2, Inc.
 lean.enterprise.middleware
 0771100911

 On Mon, Dec 29, 2014 at 7:54 AM, Kasun Indrasiri ka...@wso2.com
 wrote:

 Hi devs,

 Its my pleasure to welcome Sandamal Weerasinghe as a WSO2 Committer.

 Sandamal, welcome aboard and keep up the good work.

 Thanks.

 --
 Kasun Indrasiri
 Software Architect
 WSO2, Inc.; http://wso2.com
 lean.enterprise.middleware

 cell: +94 77 556 5206
 Blog : http://kasunpanorama.blogspot.com/

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



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




 --
 Best Regards
 Isuru Ranawaka
 M: +94714629880
 Blog : http://isurur.blogspot.com/

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




 --
 Thanks
 Abimaran Kugathasan

 Software Engineer | WSO2 Inc
 Data  APIs Technologies Team
 Mobile : +94 773922820

 http://stackoverflow.com/users/515034
 http://lk.linkedin.com/in/abimaran
 http://www.lkabimaran.blogspot.com/  https://github.com/abimaran
 https://twitter.com/abimaran


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




 --

 *Tharindu Dharmarathna*Associate Software Engineer
 WSO2 Inc.; http://wso2.com
 lean.enterprise.middleware

 mobile: *+94779109091 %2B94779109091*

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




 --
 *Chamin Nalinda*

 Intern - Engineering
 WSO2 Inc. http://www.wso2.com
 lean.enterprise.middleware

 Mobile: (+94) 77 241 66 04
 Linkedin: https://www.linkedin.com/in/chaminnalinda
 Web: http://www.ckreativity.com
 Blog: http://techspiro.blogspot.com/


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




-- 
Vijitha Ekanayake
Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Niranda Perera

2014-12-28 Thread Vijitha Ekanayake
://wso2.org/cgi-bin/mailman/listinfo/dev




 --
 Buddhima Wijeweera
 Software Engineer; WSO2 Inc.; http://wso2.com ,

 Mobile: +94 71 427 9966
 Email: buddh...@wso2.com
 Blog:   https://buddhimawijeweera.wordpress.com
 GitHub Profile: https://github.com/Buddhima

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




 --
 Regards,
 Manula Chathurika Thantriwatte
 Software Engineer
 WSO2 Inc. : http://wso2.com
 lean . enterprise . middleware

 email : manu...@wso2.com / man...@apache.org
 phone : +94 772492511
 blog : http://manulachathurika.blogspot.com/




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




 --
 *Jerad Rutnam*
 *Software Engineer - UI*

 WSO2 Inc.
 lean | enterprise | middleware
 M : +94 77 959 1609 | E : je...@wso2.com | W : www.wso2.com

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




-- 
Vijitha Ekanayake
Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Kasun De Silva

2014-12-27 Thread Vijitha Ekanayake
Congratulations Kasun !!!

On Sat, Dec 27, 2014 at 8:49 AM, Prasanna Dangalla prasa...@wso2.com
wrote:

 Congratulations Kasun !!!

 On Sat, Dec 27, 2014 at 10:18 PM, Dimuthu Leelarathne dimut...@wso2.com
 wrote:

 Hi all,

 WSO2 welcomes Kasun De Silva as WSO2 committer!

 Congratulations!

 thanks,
 dimuthu

 --
 Dimuthu Leelarathne
 Architect  Product Lead of App Factory

 WSO2, Inc. (http://wso2.com)
 email: dimut...@wso2.com
 Mobile : 0773661935

 Lean . Enterprise . Middleware

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




 --
 Prasanna Dangalla
 Software Engineer, WSO2, Inc.; http://wso2.com/
 lean.enterprise.middleware

 cell: +94 777 55 80 30 | +94 718 11 27 51
 twitter: @prasa77

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




-- 
Vijitha Ekanayake
Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


  1   2   >