Hi Dushan,
i will write an comprehensive sample and currently it will support for
below data types[1](EJB Mediator also support with this SimpleTypeMapper
class types). in case of third party artifacts it will server dependent so
user should aware to use client library for there own server.


[1]

java.lang.String
java.lang.Integer
java.lang.Double
java.lang.Long
java.lang.Byte
java.lang.Short
java.lang.Boolean
java.lang.Character
java.lang.Float
java.util.Calendar
java.util.Date
int
boolean
byte
double
short
long
float
char
java.math.BigDecimal
java.math.BigInteger
org.apache.axis2.databinding.types.Day
org.apache.axis2.databinding.types.Duration
org.apache.axis2.databinding.types.Month
org.apache.axis2.databinding.types.MonthDay
"org.apache.axis2.databinding.types.Time
org.apache.axis2.databinding.types.Year
org.apache.axis2.databinding.types.YearMonth


On Mon, Dec 21, 2015 at 5:00 AM, Dushan Abeyruwan <[email protected]> wrote:

> Hi
> How to deal with complex objects, it is not clear  Can we build
> comprehensive sample just like in ESB, EJB mediator (if you follow my
> documentation).
>  Also, connector documentation should have all the third party artifacts
> downloadable (services that you used to describe the scenario),
>  Meantime, just followed code segment for stateless and you have written
> code to handle complex objects "messageContext.setProperty(returnName,
> obj);"
>   The samples you have shared just focused when EJB returns literal
> values, but it's required a real-time use cases i.e how to deal with
> complex objects (IN or OUT)
>
> FYI: Malaka please follow up with Raj to build good samples.
> e.g
>
> @Override public void connect(MessageContext messageContext) { Object
> ejbObj; String methodName = (String) getParameter(messageContext,
> EJBConstants.METHOD_NAME); String returnName = (String)
> getParameter(messageContext, EJBConstants.RETURN); if
> (getParameter(messageContext, EJBConstants.RETURN) == null) {returnName =
> EJBConstants.RESPONSE;} if (messageContext.getProperty(EJBConstants.
> EJB_OBJECT) == null) {ejbObj = EJBUtil.getEJBObject(messageContext,
> EJBConstants.JNDI_NAME);messageContext.setProperty(EJBConstants.EJB_OBJECT,
> ejbObj);} else {ejbObj = messageContext.getProperty(EJBConstants.
> EJB_OBJECT);} Object[] args = EJBUtil.buildArguments(messageContext,
> EJBConstants.STATEFUL); Method method = 
> EJBUtil.resolveMethod(ejbObj.getClass(),
> methodName, args.length); Object obj = EJBUtil.invokeInstanceMethod(ejbObj,
> method, args); if (!method.getReturnType().toString().equals(EJBConstants.
> VOID)) {messageContext.setProperty(returnName, obj);} else {messageContext
> .setProperty(EJBConstants.RESPONSE, EJBConstants.SUCCESS);}}
>
> On Sun, Dec 20, 2015 at 2:08 AM, Rajjaz Mohammed <[email protected]> wrote:
>
>> Hi all,
>> EJB2.0 connector published[1] in store and Documentation[2] also moved to
>> public space. as dushan mentioned its tested with Jboss5.0 and glashfish 4.
>> integration test added for jboss5.0.
>>
>>
>> [1]
>> https://store.wso2.com/store/assets/esbconnector/b04683e3-2c04-49a1-b408-9b5eb620798c
>> [2] https://docs.wso2.com/display/ESBCONNECTORS/EJB2+Connector
>>
>> On Fri, Dec 4, 2015 at 9:36 AM, Malaka Silva <[email protected]> wrote:
>>
>>> ​Rajjaz may be it's not required for this connector. But worth checking
>>> it to find what are the benefits over reflection?​
>>>
>>> On Thu, Dec 3, 2015 at 6:04 PM, Rajjaz Mohammed <[email protected]> wrote:
>>>
>>>> Hi,
>>>> since ejb2 connector work fine with glassfish libraries and getting
>>>> error with jboss libraries i removed java reflection and creating method
>>>> directly [1] and its work with both jboss and glassfish. so i think i no
>>>> need to use  Invokedynamic[2]. WDYT?
>>>>
>>>>
>>>> [1] Method method =ejbObj.getClass().getDeclaredMethod(methodName) ;
>>>> [2]
>>>> http://www.javaworld.com/article/2860079/scripting-jvm-languages/invokedynamic-101.html
>>>>
>>>> On Sun, Nov 29, 2015 at 1:42 PM, Rajjaz Mohammed <[email protected]>
>>>> wrote:
>>>>
>>>>> Hi Malkaa,
>>>>> i will check on that.
>>>>>
>>>>> On Sat, Nov 28, 2015 at 6:30 PM, Malaka Silva <[email protected]> wrote:
>>>>>
>>>>>> Rajjaz I guess you are currently using java reflection in EJB
>>>>>> connector.
>>>>>>
>>>>>> Worth checking is we can do this via Invokedynamic as well. [1]
>>>>>>
>>>>>> [1]
>>>>>> http://www.javaworld.com/article/2860079/scripting-jvm-languages/invokedynamic-101.html
>>>>>>
>>>>>> On Mon, Nov 16, 2015 at 9:32 AM, Rajjaz Mohammed <[email protected]>
>>>>>> wrote:
>>>>>>
>>>>>>> i will change key to arg.key and other then void method output's are
>>>>>>> directly add to property name with response .  since message contest
>>>>>>> contain objects as string and we are getting the argument type from 
>>>>>>> remote
>>>>>>> interface we are dynamically casting the values so we no need to get
>>>>>>> argument type from user.
>>>>>>>
>>>>>>> On Mon, Nov 16, 2015 at 9:02 AM, Malaka Silva <[email protected]>
>>>>>>> wrote:
>>>>>>>
>>>>>>>> Rajjaz
>>>>>>>> ​ ​
>>>>>>>> better we can rename key to arg.key. Also output is always written
>>>>>>>> to
>>>>>>>> ​ ​
>>>>>>>> out
>>>>>>>> ​ property​
>>>>>>>> ​? If so we have to pass the variable name where output should be
>>>>>>>> set IMO.
>>>>>>>> ​
>>>>>>>>
>>>>>>>> ​Don't we need to capture argument type also?​
>>>>>>>>
>>>>>>>>
>>>>>>>> ​eg :-​
>>>>>>>>          <ejbconnector.stateless>
>>>>>>>>             <jndiName>HelloBean</jndiName>
>>>>>>>>             <method>sayHello</method>
>>>>>>>>             *<return>out</return>*
>>>>>>>>             *<arg.key>args</**arg.key>*
>>>>>>>>             <agrs.arg1>Rajjaz123</args.arg1>
>>>>>>>>          </ejbconnector.stateless>
>>>>>>>>
>>>>>>>> On Sun, Nov 15, 2015 at 3:21 PM, Rajjaz Mohammed <[email protected]>
>>>>>>>> wrote:
>>>>>>>>
>>>>>>>>> HI all,
>>>>>>>>> currently the behaviour of ejb2 connector[1]. if  is there any
>>>>>>>>> suggestion to this approach please advice me to improve.
>>>>>>>>>
>>>>>>>>> init
>>>>>>>>> #########
>>>>>>>>> we can add any number of arguments and with any name but want to
>>>>>>>>> follow the approach i added here(need to add key and value name also 
>>>>>>>>> start
>>>>>>>>> with key).
>>>>>>>>>
>>>>>>>>> method
>>>>>>>>> #########
>>>>>>>>> same approach like init but here we need to add JNDI name and
>>>>>>>>> method name. here also we can add any number of arguments with key 
>>>>>>>>> value
>>>>>>>>>
>>>>>>>>> output
>>>>>>>>> #########
>>>>>>>>> here output we can get directly using property mediator. I’m
>>>>>>>>> directly add the output in property without doing any modification so
>>>>>>>>> whatever return type it will return as same as it is. for void method 
>>>>>>>>> it
>>>>>>>>> will return only success.
>>>>>>>>>
>>>>>>>>>
>>>>>>>>>  [1]
>>>>>>>>> <inSequence>
>>>>>>>>>          <ejbconnector.init>
>>>>>>>>>             <key>raj</key>
>>>>>>>>>
>>>>>>>>> <raj.java.naming.factory.initial>com.sun.enterprise.naming.SerialInitContextFactory</raj.java.naming.factory.initial>
>>>>>>>>>
>>>>>>>>> <raj.org.omg.CORBA.ORBInitialHost>localhost</raj.org.omg.CORBA.ORBInitialHost>
>>>>>>>>>
>>>>>>>>> <raj.org.omg.CORBA.ORBInitialPort>3700</raj.org.omg.CORBA.ORBInitialPort>
>>>>>>>>>          </ejbconnector.init>
>>>>>>>>>          <ejbconnector.stateless>
>>>>>>>>>             <jndiName>HelloBean</jndiName>
>>>>>>>>>             <method>sayHello</method>
>>>>>>>>>             <key>jack</key>
>>>>>>>>>             <jack.arg1>Rajjaz</jack.arg1>
>>>>>>>>>          </ejbconnector.stateless>
>>>>>>>>>          <ejbconnector.stateless>
>>>>>>>>>             <jndiName>HelloBean</jndiName>
>>>>>>>>>             <method>sayHello</method>
>>>>>>>>>             <key>jack1</key>
>>>>>>>>>             <jack1.arg1>Rajjaz123</jack1.arg1>
>>>>>>>>>          </ejbconnector.stateless>
>>>>>>>>>          <log level="full">
>>>>>>>>>             <property name="out" expression="get-property('out')"/>
>>>>>>>>>          </log>
>>>>>>>>>       </inSequence>
>>>>>>>>>
>>>>>>>>> On Wed, Oct 28, 2015 at 10:59 AM, Rajjaz Mohammed <[email protected]
>>>>>>>>> > wrote:
>>>>>>>>>
>>>>>>>>>> yes malaka,
>>>>>>>>>> i got the point. development will be based on that.
>>>>>>>>>>
>>>>>>>>>> @Rasika
>>>>>>>>>> Thanks Rasika for the Reply.
>>>>>>>>>>
>>>>>>>>>> On Wed, Oct 28, 2015 at 10:57 AM, Malaka Silva <[email protected]>
>>>>>>>>>> wrote:
>>>>>>>>>>
>>>>>>>>>>> Rajjaz as we discussed offline this implementation should be
>>>>>>>>>>> generic and should not tightly coupled to a container.
>>>>>>>>>>>
>>>>>>>>>>> On Wed, Oct 28, 2015 at 10:45 AM, Rasika Perera <
>>>>>>>>>>> [email protected]> wrote:
>>>>>>>>>>>
>>>>>>>>>>>> Can you list down the libraries you are using?
>>>>>>>>>>>>
>>>>>>>>>>>> On Wed, Oct 28, 2015 at 10:42 AM, Rajjaz Mohammed <
>>>>>>>>>>>> [email protected]> wrote:
>>>>>>>>>>>>
>>>>>>>>>>>>> Hi All,
>>>>>>>>>>>>> Since I’m adding server libraries for Connector the size of
>>>>>>>>>>>>> the connector zip file is increasing (now 65 MB) so is there any 
>>>>>>>>>>>>> limitation
>>>>>>>>>>>>> for Connector file? or do we have any other solution?
>>>>>>>>>>>>>
>>>>>>>>>>>>> On Sat, Oct 24, 2015 at 6:15 PM, Rasika Perera <
>>>>>>>>>>>>> [email protected]> wrote:
>>>>>>>>>>>>>
>>>>>>>>>>>>>> Hi Rajjaz,
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> i need to know which EJB-Container is mostly used by the
>>>>>>>>>>>>>>> client? or which is recommended one? because development will 
>>>>>>>>>>>>>>> be based on
>>>>>>>>>>>>>>> that (later will try Generalized format).
>>>>>>>>>>>>>>
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> All EJB containers implements EJB 2.x/3.0/3.1/3.2
>>>>>>>>>>>>>> specifications. Theoretically all should support it.
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> You may try the followings;
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> Oracle Weblogic[2], IBM Websphere[3], RedHat JBoss[4], Oracle
>>>>>>>>>>>>>> Glassfish[5].
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> [1]
>>>>>>>>>>>>>> http://download.oracle.com/otndocs/jcp/ejb-3_2-fr-spec/index.html
>>>>>>>>>>>>>> [2]
>>>>>>>>>>>>>> http://www.oracle.com/technetwork/middleware/weblogic/downloads/index.html
>>>>>>>>>>>>>> [3]
>>>>>>>>>>>>>> http://www.ibm.com/developerworks/downloads/ws/was/index.html
>>>>>>>>>>>>>> [4] http://www.jboss.org/products/eap/overview/
>>>>>>>>>>>>>> [5] https://glassfish.java.net/download.html
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> On Wed, Oct 7, 2015 at 12:00 PM, Rajjaz Mohammed <
>>>>>>>>>>>>>> [email protected]> wrote:
>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> Noted Malaka,
>>>>>>>>>>>>>>> i need to know which EJB-Container is mostly used by the
>>>>>>>>>>>>>>> client? or which is recommended one? because development will 
>>>>>>>>>>>>>>> be based on
>>>>>>>>>>>>>>> that (later will try Generalized format).
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> On Wed, Oct 7, 2015 at 11:55 AM, Malaka Silva <
>>>>>>>>>>>>>>> [email protected]> wrote:
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>> Hi Rajjaz,
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>> We don't need to write a connector for EJB 3.0 since this
>>>>>>>>>>>>>>>> is already supported with ESB EJB mediator.
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>> +1 for the connector with EJB 2.1 support.
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>> On Wed, Oct 7, 2015 at 11:52 AM, Rajjaz Mohammed <
>>>>>>>>>>>>>>>> [email protected]> wrote:
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> Hi All,
>>>>>>>>>>>>>>>>> For the EJB Connector Development which EJB-Container is
>>>>>>>>>>>>>>>>> Recommenced ? and Which version?
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> as a first step i would like to develop a EJB 3.x
>>>>>>>>>>>>>>>>> connector because its have more features and light weighted. 
>>>>>>>>>>>>>>>>> after i can
>>>>>>>>>>>>>>>>> develop a connector for EJB 2.x. is it OK or am i need to 
>>>>>>>>>>>>>>>>> implement
>>>>>>>>>>>>>>>>> connector for 2.x first?
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> can anyone have experience with client can guide me on
>>>>>>>>>>>>>>>>> this? what is the client requirement?
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> On Wed, Sep 23, 2015 at 12:24 PM, Rajjaz Mohammed <
>>>>>>>>>>>>>>>>> [email protected]> wrote:
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>> Hi All,
>>>>>>>>>>>>>>>>>> Thank you for your Suggestions. Since EJB Mediator also
>>>>>>>>>>>>>>>>>> have some issues in working as Discussed in Yesterday 
>>>>>>>>>>>>>>>>>> meeting first i
>>>>>>>>>>>>>>>>>> stared to get more domain knowledge and then i plan to start 
>>>>>>>>>>>>>>>>>> the
>>>>>>>>>>>>>>>>>> development. EJB 3.X is light weighted and more features 
>>>>>>>>>>>>>>>>>> then EJB 2.X but
>>>>>>>>>>>>>>>>>> since as malaka mentioned our clients are prefer EJB 2.X  
>>>>>>>>>>>>>>>>>> first connector
>>>>>>>>>>>>>>>>>> will be for EJB 2.X.
>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>> On Fri, Sep 18, 2015 at 10:40 AM, Malaka Silva <
>>>>>>>>>>>>>>>>>> [email protected]> wrote:
>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>> Hi,
>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>> There is an EJB mediator that ships with ESB. But the
>>>>>>>>>>>>>>>>>>> mediator only supports esb 3.0.
>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>> IMO users who have the interest to integrate with ejb
>>>>>>>>>>>>>>>>>>> may have the requirement of integrating with legacy systems.
>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>> So in this systems they may not be using the latest ejb
>>>>>>>>>>>>>>>>>>> version. I had some experience of a requirement to 
>>>>>>>>>>>>>>>>>>> integrate with EJB 2.1.
>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>> So the integration requirement resides to integrate with
>>>>>>>>>>>>>>>>>>> different ejb versions. So if we follow the current 
>>>>>>>>>>>>>>>>>>> approach we need to
>>>>>>>>>>>>>>>>>>> write a mediator for each or parameter it.
>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>> In this case best solution is to have different
>>>>>>>>>>>>>>>>>>> connectors for different ejb versions. I think we can start 
>>>>>>>>>>>>>>>>>>> with ejb 2.1
>>>>>>>>>>>>>>>>>>> (since ejb mediator is already there to support 3.0)
>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>> In long term we can deprecate EJB mediator and write
>>>>>>>>>>>>>>>>>>> connectors for these. WDYT?
>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>> @Rajjaz - To start better we discuss the high level
>>>>>>>>>>>>>>>>>>> architecture of your development.
>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>> On Wed, Sep 16, 2015 at 11:09 PM, Rajjaz Mohammed <
>>>>>>>>>>>>>>>>>>> [email protected]> wrote:
>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>> Hi Chanaka/Dushan,
>>>>>>>>>>>>>>>>>>>> Thank you to add some ideas on this Thread. I’m
>>>>>>>>>>>>>>>>>>>> Currently searching on implement new EJB Connector with 
>>>>>>>>>>>>>>>>>>>> Current EJB
>>>>>>>>>>>>>>>>>>>> Mediator Functions and possibilities to add more features. 
>>>>>>>>>>>>>>>>>>>> So i will add
>>>>>>>>>>>>>>>>>>>> your ideas also in the development.
>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>> On Wed, Sep 16, 2015 at 10:27 PM, Dushan Abeyruwan <
>>>>>>>>>>>>>>>>>>>> [email protected]> wrote:
>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>> Hi
>>>>>>>>>>>>>>>>>>>>>   I guess there are many improvements to be made if
>>>>>>>>>>>>>>>>>>>>> you writing connector, and would certainly looking 
>>>>>>>>>>>>>>>>>>>>> forward to see new
>>>>>>>>>>>>>>>>>>>>> design rather what we currently have in EJB mediator [1] 
>>>>>>>>>>>>>>>>>>>>> (it seems original
>>>>>>>>>>>>>>>>>>>>> doc is corrupted)
>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>> Existing problems
>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>    -  EJB mediator binds with Bean mediator when we
>>>>>>>>>>>>>>>>>>>>>    need to initialize instances for binding responses or 
>>>>>>>>>>>>>>>>>>>>> requests for complex
>>>>>>>>>>>>>>>>>>>>>    object IMV its too much overhead and feels we need to 
>>>>>>>>>>>>>>>>>>>>> normalize this.
>>>>>>>>>>>>>>>>>>>>>    -  We need to get rid from 'beanstalks' way of
>>>>>>>>>>>>>>>>>>>>>    communicating via synapse.propertis (it is must) it 
>>>>>>>>>>>>>>>>>>>>> should be flexible.
>>>>>>>>>>>>>>>>>>>>>    - Then we must test this with least multiple
>>>>>>>>>>>>>>>>>>>>>    application servers (Jboss, Glassfish) there are tons 
>>>>>>>>>>>>>>>>>>>>> of class loader
>>>>>>>>>>>>>>>>>>>>>    issues (and we had to create split packages to get rid)
>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>  With all above concerns please do come up with the
>>>>>>>>>>>>>>>>>>>>> design we can continue to discuss.
>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>> [1] http://www.dushantech.com/search?q=ejb
>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>> Cheers,
>>>>>>>>>>>>>>>>>>>>> Dushan
>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>> On Wed, Sep 16, 2015 at 10:42 AM, Chanaka Fernando <
>>>>>>>>>>>>>>>>>>>>> [email protected]> wrote:
>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>> Hi Rajjaz,
>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>> Well, if you see any issue with the EJB mediator,
>>>>>>>>>>>>>>>>>>>>>> please report them and help us to improve the existing 
>>>>>>>>>>>>>>>>>>>>>> mediator. It is not
>>>>>>>>>>>>>>>>>>>>>> required to repeat the functionality of the EJB mediator 
>>>>>>>>>>>>>>>>>>>>>> in the new
>>>>>>>>>>>>>>>>>>>>>> connector which you are going to develop. Could you 
>>>>>>>>>>>>>>>>>>>>>> elaborate on a use case
>>>>>>>>>>>>>>>>>>>>>> for this EJB connector?
>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>> On Wed, Sep 16, 2015 at 2:04 PM, Rajjaz Mohammed <
>>>>>>>>>>>>>>>>>>>>>> [email protected]> wrote:
>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>> On Wed, Sep 16, 2015 at 2:04 PM, Rajjaz Mohammed <
>>>>>>>>>>>>>>>>>>>>>>> [email protected]> wrote:
>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>> Hi All,
>>>>>>>>>>>>>>>>>>>>>>>> I have planned to Implement EJB Connector for WSO2
>>>>>>>>>>>>>>>>>>>>>>>> ESB. Currently, EJB mediator supports EJB3 Stateless 
>>>>>>>>>>>>>>>>>>>>>>>> Session Beans and
>>>>>>>>>>>>>>>>>>>>>>>> Stateful Session Beans. Since EJB mediator have some 
>>>>>>>>>>>>>>>>>>>>>>>> isues EJB Connector
>>>>>>>>>>>>>>>>>>>>>>>> will include the Functionality of  EJB mediator which 
>>>>>>>>>>>>>>>>>>>>>>>> calls an external
>>>>>>>>>>>>>>>>>>>>>>>> Enterprise JavaBean (EJB) and stores the result in the 
>>>>>>>>>>>>>>>>>>>>>>>> message payload or
>>>>>>>>>>>>>>>>>>>>>>>> in a message context property.
>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>> This is my Basic Idea so If you have anything  to
>>>>>>>>>>>>>>>>>>>>>>>> add/change in EJB Connector please add in this Thread. 
>>>>>>>>>>>>>>>>>>>>>>>> and Connector will
>>>>>>>>>>>>>>>>>>>>>>>> be Separate for EJB 2.0 & 3.0.
>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>> --
>>>>>>>>>>>>>>>>>>>>>>>> Thank you
>>>>>>>>>>>>>>>>>>>>>>>> Best Regards
>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>> *Rajjaz HM*
>>>>>>>>>>>>>>>>>>>>>>>> Associate Software Engineer
>>>>>>>>>>>>>>>>>>>>>>>> WSO2 Inc. <http://wso2.com/>
>>>>>>>>>>>>>>>>>>>>>>>> lean | enterprise | middleware
>>>>>>>>>>>>>>>>>>>>>>>> Mobile | +94752833834
>>>>>>>>>>>>>>>>>>>>>>>> Email   | [email protected]
>>>>>>>>>>>>>>>>>>>>>>>> LinkedIn | Blogger | WSO2 Profile
>>>>>>>>>>>>>>>>>>>>>>>> <http://wso2.com/about/team/mohammer_rajjaz/>
>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>> --
>>>>>>>>>>>>>>>>>>>>>>> Thank you
>>>>>>>>>>>>>>>>>>>>>>> Best Regards
>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>> *Rajjaz HM*
>>>>>>>>>>>>>>>>>>>>>>> Associate Software Engineer
>>>>>>>>>>>>>>>>>>>>>>> WSO2 Inc. <http://wso2.com/>
>>>>>>>>>>>>>>>>>>>>>>> lean | enterprise | middleware
>>>>>>>>>>>>>>>>>>>>>>> Mobile | +94752833834
>>>>>>>>>>>>>>>>>>>>>>> Email   | [email protected]
>>>>>>>>>>>>>>>>>>>>>>> LinkedIn | Blogger | WSO2 Profile
>>>>>>>>>>>>>>>>>>>>>>> <http://wso2.com/about/team/mohammer_rajjaz/>
>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>>>>>> Architecture mailing list
>>>>>>>>>>>>>>>>>>>>>>> [email protected]
>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>> https://mail.wso2.org/cgi-bin/mailman/listinfo/architecture
>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>> --
>>>>>>>>>>>>>>>>>>>>>> --
>>>>>>>>>>>>>>>>>>>>>> Chanaka Fernando
>>>>>>>>>>>>>>>>>>>>>> Senior 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
>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>>>>> Architecture mailing list
>>>>>>>>>>>>>>>>>>>>>> [email protected]
>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>> https://mail.wso2.org/cgi-bin/mailman/listinfo/architecture
>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>> --
>>>>>>>>>>>>>>>>>>>>> Dushan Abeyruwan | Technical Lead
>>>>>>>>>>>>>>>>>>>>> Technical Support-Bloomington US
>>>>>>>>>>>>>>>>>>>>> PMC Member Apache Synpase
>>>>>>>>>>>>>>>>>>>>> WSO2 Inc. http://wso2.com/
>>>>>>>>>>>>>>>>>>>>> Blog:*http://www.dushantech.com/
>>>>>>>>>>>>>>>>>>>>> <http://www.dushantech.com/>*
>>>>>>>>>>>>>>>>>>>>> Mobile:(001)812-391-7441
>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>>>> Architecture mailing list
>>>>>>>>>>>>>>>>>>>>> [email protected]
>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>> https://mail.wso2.org/cgi-bin/mailman/listinfo/architecture
>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>> --
>>>>>>>>>>>>>>>>>>>> Thank you
>>>>>>>>>>>>>>>>>>>> Best Regards
>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>> *Rajjaz HM*
>>>>>>>>>>>>>>>>>>>> Associate Software Engineer
>>>>>>>>>>>>>>>>>>>> WSO2 Inc. <http://wso2.com/>
>>>>>>>>>>>>>>>>>>>> lean | enterprise | middleware
>>>>>>>>>>>>>>>>>>>> Mobile | +94752833834
>>>>>>>>>>>>>>>>>>>> Email   | [email protected]
>>>>>>>>>>>>>>>>>>>> LinkedIn | Blogger | WSO2 Profile
>>>>>>>>>>>>>>>>>>>> <http://wso2.com/about/team/mohammer_rajjaz/>
>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>> --
>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>> Best Regards,
>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>> Malaka Silva
>>>>>>>>>>>>>>>>>>> Senior Tech Lead
>>>>>>>>>>>>>>>>>>> M: +94 777 219 791
>>>>>>>>>>>>>>>>>>> Tel : 94 11 214 5345
>>>>>>>>>>>>>>>>>>> Fax :94 11 2145300
>>>>>>>>>>>>>>>>>>> Skype : malaka.sampath.silva
>>>>>>>>>>>>>>>>>>> LinkedIn :
>>>>>>>>>>>>>>>>>>> http://www.linkedin.com/pub/malaka-silva/6/33/77
>>>>>>>>>>>>>>>>>>> Blog : http://mrmalakasilva.blogspot.com/
>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>> WSO2, Inc.
>>>>>>>>>>>>>>>>>>> lean . enterprise . middleware
>>>>>>>>>>>>>>>>>>> http://www.wso2.com/
>>>>>>>>>>>>>>>>>>> http://www.wso2.com/about/team/malaka-silva/
>>>>>>>>>>>>>>>>>>> <http://wso2.com/about/team/malaka-silva/>
>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>> Save a tree -Conserve nature & Save the world for your
>>>>>>>>>>>>>>>>>>> future. Print this email only if it is absolutely necessary.
>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>> --
>>>>>>>>>>>>>>>>>> Thank you
>>>>>>>>>>>>>>>>>> Best Regards
>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>> *Rajjaz HM*
>>>>>>>>>>>>>>>>>> Associate Software Engineer
>>>>>>>>>>>>>>>>>> WSO2 Inc. <http://wso2.com/>
>>>>>>>>>>>>>>>>>> lean | enterprise | middleware
>>>>>>>>>>>>>>>>>> Mobile | +94752833834
>>>>>>>>>>>>>>>>>> Email   | [email protected]
>>>>>>>>>>>>>>>>>> LinkedIn | Blogger | WSO2 Profile
>>>>>>>>>>>>>>>>>> <http://wso2.com/about/team/mohammer_rajjaz/>
>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> --
>>>>>>>>>>>>>>>>> Thank you
>>>>>>>>>>>>>>>>> Best Regards
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> *Rajjaz HM*
>>>>>>>>>>>>>>>>> Associate Software Engineer
>>>>>>>>>>>>>>>>> WSO2 Inc. <http://wso2.com/>
>>>>>>>>>>>>>>>>> lean | enterprise | middleware
>>>>>>>>>>>>>>>>> Mobile | +94752833834
>>>>>>>>>>>>>>>>> Email   | [email protected]
>>>>>>>>>>>>>>>>> LinkedIn | Blogger | WSO2 Profile
>>>>>>>>>>>>>>>>> <http://wso2.com/about/team/mohammer_rajjaz/>
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>> --
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>> Best Regards,
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>> Malaka Silva
>>>>>>>>>>>>>>>> Senior Tech Lead
>>>>>>>>>>>>>>>> M: +94 777 219 791
>>>>>>>>>>>>>>>> Tel : 94 11 214 5345
>>>>>>>>>>>>>>>> Fax :94 11 2145300
>>>>>>>>>>>>>>>> Skype : malaka.sampath.silva
>>>>>>>>>>>>>>>> LinkedIn : http://www.linkedin.com/pub/malaka-silva/6/33/77
>>>>>>>>>>>>>>>> Blog : http://mrmalakasilva.blogspot.com/
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>> WSO2, Inc.
>>>>>>>>>>>>>>>> lean . enterprise . middleware
>>>>>>>>>>>>>>>> http://www.wso2.com/
>>>>>>>>>>>>>>>> http://www.wso2.com/about/team/malaka-silva/
>>>>>>>>>>>>>>>> <http://wso2.com/about/team/malaka-silva/>
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>> Save a tree -Conserve nature & Save the world for your
>>>>>>>>>>>>>>>> future. Print this email only if it is absolutely necessary.
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> --
>>>>>>>>>>>>>>> Thank you
>>>>>>>>>>>>>>> Best Regards
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> *Rajjaz HM*
>>>>>>>>>>>>>>> Associate Software Engineer
>>>>>>>>>>>>>>> WSO2 Inc. <http://wso2.com/>
>>>>>>>>>>>>>>> lean | enterprise | middleware
>>>>>>>>>>>>>>> Mobile | +94752833834
>>>>>>>>>>>>>>> Email   | [email protected]
>>>>>>>>>>>>>>> LinkedIn | Blogger | WSO2 Profile
>>>>>>>>>>>>>>> <http://wso2.com/about/team/mohammer_rajjaz/>
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>> Architecture mailing list
>>>>>>>>>>>>>>> [email protected]
>>>>>>>>>>>>>>> https://mail.wso2.org/cgi-bin/mailman/listinfo/architecture
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> --
>>>>>>>>>>>>>> With Regards,
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> *Rasika Perera*
>>>>>>>>>>>>>> Software Engineer
>>>>>>>>>>>>>> M: +94 71 680 9060 E: [email protected]
>>>>>>>>>>>>>> LinkedIn: http://lk.linkedin.com/in/rasika90
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> WSO2 Inc. www.wso2.com
>>>>>>>>>>>>>> lean.enterprise.middleware
>>>>>>>>>>>>>>
>>>>>>>>>>>>>
>>>>>>>>>>>>>
>>>>>>>>>>>>>
>>>>>>>>>>>>> --
>>>>>>>>>>>>> Thank you
>>>>>>>>>>>>> Best Regards
>>>>>>>>>>>>>
>>>>>>>>>>>>> *Rajjaz HM*
>>>>>>>>>>>>> Associate Software Engineer
>>>>>>>>>>>>> WSO2 Inc. <http://wso2.com/>
>>>>>>>>>>>>> lean | enterprise | middleware
>>>>>>>>>>>>> Mobile | +94752833834
>>>>>>>>>>>>> Email   | [email protected]
>>>>>>>>>>>>> LinkedIn | Blogger | WSO2 Profile
>>>>>>>>>>>>> <http://wso2.com/about/team/mohammer_rajjaz/>
>>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>> --
>>>>>>>>>>>> With Regards,
>>>>>>>>>>>>
>>>>>>>>>>>> *Rasika Perera*
>>>>>>>>>>>> Software Engineer
>>>>>>>>>>>> M: +94 71 680 9060 E: [email protected]
>>>>>>>>>>>> LinkedIn: http://lk.linkedin.com/in/rasika90
>>>>>>>>>>>>
>>>>>>>>>>>> WSO2 Inc. www.wso2.com
>>>>>>>>>>>> lean.enterprise.middleware
>>>>>>>>>>>>
>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>> Architecture mailing list
>>>>>>>>>>>> [email protected]
>>>>>>>>>>>> https://mail.wso2.org/cgi-bin/mailman/listinfo/architecture
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>> --
>>>>>>>>>>>
>>>>>>>>>>> Best Regards,
>>>>>>>>>>>
>>>>>>>>>>> Malaka Silva
>>>>>>>>>>> Senior Tech Lead
>>>>>>>>>>> M: +94 777 219 791
>>>>>>>>>>> Tel : 94 11 214 5345
>>>>>>>>>>> Fax :94 11 2145300
>>>>>>>>>>> Skype : malaka.sampath.silva
>>>>>>>>>>> LinkedIn : http://www.linkedin.com/pub/malaka-silva/6/33/77
>>>>>>>>>>> Blog : http://mrmalakasilva.blogspot.com/
>>>>>>>>>>>
>>>>>>>>>>> WSO2, Inc.
>>>>>>>>>>> lean . enterprise . middleware
>>>>>>>>>>> http://www.wso2.com/
>>>>>>>>>>> http://www.wso2.com/about/team/malaka-silva/
>>>>>>>>>>> <http://wso2.com/about/team/malaka-silva/>
>>>>>>>>>>> https://store.wso2.com/store/
>>>>>>>>>>>
>>>>>>>>>>> Save a tree -Conserve nature & Save the world for your future.
>>>>>>>>>>> Print this email only if it is absolutely necessary.
>>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> --
>>>>>>>>>> Thank you
>>>>>>>>>> Best Regards
>>>>>>>>>>
>>>>>>>>>> *Rajjaz HM*
>>>>>>>>>> Associate Software Engineer
>>>>>>>>>> WSO2 Inc. <http://wso2.com/>
>>>>>>>>>> lean | enterprise | middleware
>>>>>>>>>> Mobile | +94752833834
>>>>>>>>>> Email   | [email protected]
>>>>>>>>>> LinkedIn | Blogger | WSO2 Profile
>>>>>>>>>> <http://wso2.com/about/team/mohammer_rajjaz/>
>>>>>>>>>>
>>>>>>>>>
>>>>>>>>>
>>>>>>>>>
>>>>>>>>> --
>>>>>>>>> Thank you
>>>>>>>>> Best Regards
>>>>>>>>>
>>>>>>>>> *Rajjaz HM*
>>>>>>>>> Associate Software Engineer
>>>>>>>>> WSO2 Inc. <http://wso2.com/>
>>>>>>>>> lean | enterprise | middleware
>>>>>>>>> Mobile | +94752833834
>>>>>>>>> Email   | [email protected]
>>>>>>>>> LinkedIn | Blogger | WSO2 Profile
>>>>>>>>> <http://wso2.com/about/team/mohammer_rajjaz/>
>>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>> --
>>>>>>>>
>>>>>>>> Best Regards,
>>>>>>>>
>>>>>>>> Malaka Silva
>>>>>>>> Senior Tech Lead
>>>>>>>> M: +94 777 219 791
>>>>>>>> Tel : 94 11 214 5345
>>>>>>>> Fax :94 11 2145300
>>>>>>>> Skype : malaka.sampath.silva
>>>>>>>> LinkedIn : http://www.linkedin.com/pub/malaka-silva/6/33/77
>>>>>>>> Blog : http://mrmalakasilva.blogspot.com/
>>>>>>>>
>>>>>>>> WSO2, Inc.
>>>>>>>> lean . enterprise . middleware
>>>>>>>> http://www.wso2.com/
>>>>>>>> http://www.wso2.com/about/team/malaka-silva/
>>>>>>>> <http://wso2.com/about/team/malaka-silva/>
>>>>>>>> https://store.wso2.com/store/
>>>>>>>>
>>>>>>>> Save a tree -Conserve nature & Save the world for your future.
>>>>>>>> Print this email only if it is absolutely necessary.
>>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>> --
>>>>>>> Thank you
>>>>>>> Best Regards
>>>>>>>
>>>>>>> *Rajjaz HM*
>>>>>>> Associate Software Engineer
>>>>>>> WSO2 Inc. <http://wso2.com/>
>>>>>>> lean | enterprise | middleware
>>>>>>> Mobile | +94752833834
>>>>>>> Email   | [email protected]
>>>>>>> LinkedIn | Blogger | WSO2 Profile
>>>>>>> <http://wso2.com/about/team/mohammer_rajjaz/>
>>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>> --
>>>>>>
>>>>>> Best Regards,
>>>>>>
>>>>>> Malaka Silva
>>>>>> Senior Tech Lead
>>>>>> M: +94 777 219 791
>>>>>> Tel : 94 11 214 5345
>>>>>> Fax :94 11 2145300
>>>>>> Skype : malaka.sampath.silva
>>>>>> LinkedIn : http://www.linkedin.com/pub/malaka-silva/6/33/77
>>>>>> Blog : http://mrmalakasilva.blogspot.com/
>>>>>>
>>>>>> WSO2, Inc.
>>>>>> lean . enterprise . middleware
>>>>>> http://www.wso2.com/
>>>>>> http://www.wso2.com/about/team/malaka-silva/
>>>>>> <http://wso2.com/about/team/malaka-silva/>
>>>>>> https://store.wso2.com/store/
>>>>>>
>>>>>> Save a tree -Conserve nature & Save the world for your future. Print
>>>>>> this email only if it is absolutely necessary.
>>>>>>
>>>>>
>>>>>
>>>>>
>>>>> --
>>>>> Thank you
>>>>> Best Regards
>>>>>
>>>>> *Rajjaz HM*
>>>>> Associate Software Engineer
>>>>> WSO2 Inc. <http://wso2.com/>
>>>>> lean | enterprise | middleware
>>>>> Mobile | +94752833834
>>>>> Email   | [email protected]
>>>>> LinkedIn | Blogger | WSO2 Profile
>>>>> <http://wso2.com/about/team/mohammer_rajjaz/>
>>>>>
>>>>
>>>>
>>>>
>>>> --
>>>> Thank you
>>>> Best Regards
>>>>
>>>> *Rajjaz HM*
>>>> Associate Software Engineer
>>>> WSO2 Inc. <http://wso2.com/>
>>>> lean | enterprise | middleware
>>>> Mobile | +94752833834
>>>> Email   | [email protected]
>>>> LinkedIn | Blogger | WSO2 Profile
>>>> <http://wso2.com/about/team/mohammer_rajjaz/>
>>>>
>>>
>>>
>>>
>>> --
>>>
>>> Best Regards,
>>>
>>> Malaka Silva
>>> Senior Tech Lead
>>> M: +94 777 219 791
>>> Tel : 94 11 214 5345
>>> Fax :94 11 2145300
>>> Skype : malaka.sampath.silva
>>> LinkedIn : http://www.linkedin.com/pub/malaka-silva/6/33/77
>>> Blog : http://mrmalakasilva.blogspot.com/
>>>
>>> WSO2, Inc.
>>> lean . enterprise . middleware
>>> http://www.wso2.com/
>>> http://www.wso2.com/about/team/malaka-silva/
>>> <http://wso2.com/about/team/malaka-silva/>
>>> https://store.wso2.com/store/
>>>
>>> Save a tree -Conserve nature & Save the world for your future. Print
>>> this email only if it is absolutely necessary.
>>>
>>
>>
>>
>> --
>> Thank you
>> Best Regards
>>
>> *Rajjaz HM*
>> Associate Software Engineer
>> WSO2 Inc. <http://wso2.com/>
>> lean | enterprise | middleware
>> Mobile | +94752833834
>> Email   | [email protected]
>> LinkedIn | Blogger | WSO2 Profile
>> <http://wso2.com/about/team/mohammer_rajjaz/>
>>
>> _______________________________________________
>> Architecture mailing list
>> [email protected]
>> https://mail.wso2.org/cgi-bin/mailman/listinfo/architecture
>>
>>
>
>
> --
> Dushan Abeyruwan | Technical Lead
>
> PMC Member Apache Synpase
> WSO2 Inc. http://wso2.com/
> Blog:*http://www.dushantech.com/ <http://www.dushantech.com/>*
> Mobile:(001)408-791-9312
>
>
> _______________________________________________
> Architecture mailing list
> [email protected]
> https://mail.wso2.org/cgi-bin/mailman/listinfo/architecture
>
>


-- 
Thank you
Best Regards

*Rajjaz HM*
Associate Software Engineer
WSO2 Inc. <http://wso2.com/>
lean | enterprise | middleware
Mobile | +94752833834
Email   | [email protected]
LinkedIn | Blogger | WSO2 Profile
<http://wso2.com/about/team/mohammer_rajjaz/>
_______________________________________________
Architecture mailing list
[email protected]
https://mail.wso2.org/cgi-bin/mailman/listinfo/architecture

Reply via email to