Re: [Architecture] [Dev] [ESB] Deprecated features in ESB 4.10

2015-12-09 Thread Yumani Ranaweera
Is it possible to provide sufficient documentation to help the customers who would be migrating in future. Thanks, Yumani On Wed, Dec 9, 2015 at 1:45 PM, Chanaka Fernando wrote: > *- Callout mediator :* > All the callout functionality is supported with 'call' mediator with

Re: [Architecture] [ESB] Deprecated features in ESB 4.10

2015-12-09 Thread Chanaka Fernando
*- Callout mediator :* All the callout functionality is supported with 'call' mediator with blocking=true. Having two similar mediators will be create a bit of a confusion. It will make a lot of confusion when we have more than one mediators to do the same thing. Therefore, better to deprecate

Re: [Architecture] [ESB] Deprecated features in ESB 4.10

2015-12-09 Thread Harshana Eranga Martin
Hi Kasun, Please see the comments inline. Thanks and Regards, Harshana -- Harshana Eranga Martin Committer - Eclipse ECF: http://www.eclipse.org/ecf/ Blog: http://harshana05.blogspot.com Profile: https://www.google.com/profiles/harshana05 On 9 December 2015 at 17:41, Kasun Indrasiri

Re: [Architecture] [Dev] [ESB] Deprecated features in ESB 4.10

2015-12-09 Thread Kasun Indrasiri
On Wed, Dec 9, 2015 at 3:32 PM, Malaka Silva wrote: > +1 except DBReport/DBLookup mediators > > DBReport and DBLookup only offer a very limited set of capabilities. IMO, for any real integration scenario, we can't use them. :). > On Wed, Dec 9, 2015 at 2:00 PM, Yumani

Re: [Architecture] [Dev] [ESB] Deprecated features in ESB 4.10

2015-12-09 Thread Malaka Silva
In my experience using ​DB mediator we can cover some of the use cases using ESB out of the box, which I find very handy. Also use case of integrating with stored procs can easily covered with this. However there are limits like batch update or getting multiple rows. ​I guess we can argue both

Re: [Architecture] [ESB] Deprecated features in ESB 4.10

2015-12-09 Thread Vanjikumaran Sivajothy
Is it going to be complete functional Deprecate? If yes, there will be not forward compatibility during the upgrades. On Wed, Dec 9, 2015 at 10:23 AM, Isuru Udana wrote: > Hi Harshana, > > On Wed, Dec 9, 2015 at 6:46 PM, Harshana Eranga Martin < > harshan...@gmail.com> wrote: >

Re: [Architecture] [ESB] Deprecated features in ESB 4.10

2015-12-09 Thread Isuru Udana
Hi Harshana, On Wed, Dec 9, 2015 at 6:46 PM, Harshana Eranga Martin wrote: > Hi Kasun, > > Please see the comments inline. > > Thanks and Regards, > Harshana > -- > Harshana Eranga Martin > > Committer - Eclipse ECF: http://www.eclipse.org/ecf/ > Blog:

Re: [Architecture] [Dev] [BPS][BPMN] New REST API for BPMN statistics

2015-12-09 Thread Dinithi De Silva
Hi Natasha, How are you going to ensure the security of the APIs? Have you thought of using any security models? You can use permission/role based model in order to achieve this. Just make sure which APIs need the administrative privileges. Thanks. On Wed, Dec 9, 2015 at 9:30 PM, Nuwan

Re: [Architecture] [ESB] Deprecated features in ESB 4.10

2015-12-09 Thread Viraj Senevirathne
Hi, I think we will have to test call mediator in blocking mode for some different use cases. Then we will have to update Documentation about blocking capability of call mediator. For example the Call Mediator Documentation for ESB 4.9.0 [1] does not contain any information about blocking

Re: [Architecture] We no longer need $CARBON_HOME/repository/deployment/server

2015-12-09 Thread Sameera Jayasoma
+1. We need to do this change in C5 :) Thanks, Sameera On Thu, Dec 10, 2015 at 11:37 AM, Afkham Azeez wrote: > For example, the MSS deployment dir is > $CARBON_HOME/repository/deployment/server/mss > > We no longer need the server part because this was a concept to do with >

Re: [Architecture] [ESB] Deprecated features in ESB 4.10

2015-12-09 Thread Vidura Gamini Abhaya
Hi Isuru, I've used it in a mediation sequence where I use a POJO to generate a unique customer id given a couple of parameters and there's a checksum added to the end. I already had written this code and it was quite simple and straightforward to reuse it with a POJOCommand mediator. I feel the

[Architecture] We no longer need $CARBON_HOME/repository/deployment/server

2015-12-09 Thread Afkham Azeez
For example, the MSS deployment dir is $CARBON_HOME/repository/deployment/server/mss We no longer need the server part because this was a concept to do with Axis2 server & client ConfigContext creation, which we no longer have in Carbon 5. So the MSS deployment directory should be;

Re: [Architecture] [Dev] [BPS][BPMN] New REST API for BPMN statistics

2015-12-09 Thread Vinod Kavinda
Hi Natasha, You can use the format used in Activiti rest api documentations [1] for this also. It includes response codes and sample success responses. @Dinithi, we are doing basic authentication using the security handler [2] AFAIK. [1] - http://www.activiti.org/userguide/#_get_a_deployment [2]

Re: [Architecture] [ESB] Deprecated features in ESB 4.10

2015-12-09 Thread Isuru Udana
Hi Kathees, I think we should do a comparison once more to make sure that we have covered everything before removing Callout. NTLM one which Harshana pointed out may be due to absence of initClientOptions configuration option. Hi Vidura, Point you raised on the POJOCommand mediator is really

Re: [Architecture] [Dev] [ESB] Deprecated features in ESB 4.10

2015-12-09 Thread Malaka Silva
IMO best option in that case is have connectors supporting different spring versions, similar to what we are doing for EJBs. Having a mediator will only limit for single version. On Thu, Dec 10, 2015 at 11:35 AM, Maheeka Jayasuriya wrote: > Hi, > > I've observed spring

Re: [Architecture] [ESB] Deprecated features in ESB 4.10

2015-12-09 Thread Kathees Rajendram
+1 to deprecate Callout mediator since we have the Callout mediator functionalities in Call mediator. On Thu, Dec 10, 2015 at 1:18 AM, Vidura Gamini Abhaya wrote: > I've found DBReport / DBLookup to be quite useful for simple DB operations > as they are easy to do OOTB. While

Re: [Architecture] [Dev] [ESB] Deprecated features in ESB 4.10

2015-12-09 Thread Maheeka Jayasuriya
Hi, I've observed spring mediator being used extensively in situations where maintaining the domain model useful (class mediators are the alternative with a POJO domain model). This allows maintainability and is easily extensible. However, Spring mediator right now does not explore best of Spring

Re: [Architecture] We no longer need $CARBON_HOME/repository/deployment/server

2015-12-09 Thread Aruna Karunarathna
On Thu, Dec 10, 2015 at 11:57 AM, Sameera Jayasoma wrote: > +1. We need to do this change in C5 :) > Noted. Created a jira to track this [1] [1]. https://wso2.org/jira/browse/CARBON-15723 > > Thanks, > Sameera > > On Thu, Dec 10, 2015 at 11:37 AM, Afkham Azeez

Re: [Architecture] [ESB] Deprecated features in ESB 4.10

2015-12-09 Thread Vidura Gamini Abhaya
I've found DBReport / DBLookup to be quite useful for simple DB operations as they are easy to do OOTB. While DB Lookup mediator maybe limited in it's ability to only being able to return a single row of data, DB Report mediator is still quite useful in writing to a database, especially when we