You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@synapse.apache.org by Davanum Srinivas <da...@gmail.com> on 2008/11/19 17:04:15 UTC

Re: Patch - Axis2 configuration to support synapse transactions

Please log a JIRA issue.

thanks,
dims

On Wed, Nov 19, 2008 at 11:00 AM, Irantha <ir...@wso2.com> wrote:
> Axis2 patch to support  transaction configuration in axis2.xml.
>
> -Irantha
>
>
>> In oder to support JTA transactions in synapse, I'm working on changing
>> axis2 configuration (axis2.xml) to support following new transaction manager
>> definition.
>>
>> <transactionManager>
>>  <parameter name="string">text</parameter>*
>> </transactionManager>
>>
>> Example,
>>
>> <transactionManager>
>>  <parameter
>> name="java.naming.factory.initial">org.*jnp*.interfaces.NamingContextFactory</parameter>*
>>  <parameter name="java.naming.provider.url">localhost:1099</parameter>
>>  <parameter name="UserTransactionJNDIName">UserTransaction</parameter>
>> <parameter name="TransactionManagerJNDIName">TransactionManager</parameter>
>> </transactionManager>
>>
>>
>> -Irantha
>>
>>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: axis-dev-unsubscribe@ws.apache.org
> For additional commands, e-mail: axis-dev-help@ws.apache.org
>



-- 
Davanum Srinivas :: http://davanum.wordpress.com

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@synapse.apache.org
For additional commands, e-mail: dev-help@synapse.apache.org


Re: Patch - Axis2 configuration to support synapse transactions

Posted by Irantha <ir...@wso2.com>.
New JIRA issue AXIS2-4138 is created for this.

-Thanks,
Irantha

Davanum Srinivas wrote:
> Please log a JIRA issue.
>
> thanks,
> dims
>
> On Wed, Nov 19, 2008 at 11:00 AM, Irantha <ir...@wso2.com> wrote:
>   
>> Axis2 patch to support  transaction configuration in axis2.xml.
>>
>> -Irantha
>>
>>
>>     
>>> In oder to support JTA transactions in synapse, I'm working on changing
>>> axis2 configuration (axis2.xml) to support following new transaction manager
>>> definition.
>>>
>>> <transactionManager>
>>>  <parameter name="string">text</parameter>*
>>> </transactionManager>
>>>
>>> Example,
>>>
>>> <transactionManager>
>>>  <parameter
>>> name="java.naming.factory.initial">org.*jnp*.interfaces.NamingContextFactory</parameter>*
>>>  <parameter name="java.naming.provider.url">localhost:1099</parameter>
>>>  <parameter name="UserTransactionJNDIName">UserTransaction</parameter>
>>> <parameter name="TransactionManagerJNDIName">TransactionManager</parameter>
>>> </transactionManager>
>>>
>>>
>>> -Irantha
>>>
>>>
>>>       
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: axis-dev-unsubscribe@ws.apache.org
>> For additional commands, e-mail: axis-dev-help@ws.apache.org
>>
>>     
>
>
>
>   


Re: Patch - Axis2 configuration to support synapse transactions

Posted by Irantha <ir...@wso2.com>.
New JIRA issue AXIS2-4138 is created for this.

-Thanks,
Irantha

Davanum Srinivas wrote:
> Please log a JIRA issue.
>
> thanks,
> dims
>
> On Wed, Nov 19, 2008 at 11:00 AM, Irantha <ir...@wso2.com> wrote:
>   
>> Axis2 patch to support  transaction configuration in axis2.xml.
>>
>> -Irantha
>>
>>
>>     
>>> In oder to support JTA transactions in synapse, I'm working on changing
>>> axis2 configuration (axis2.xml) to support following new transaction manager
>>> definition.
>>>
>>> <transactionManager>
>>>  <parameter name="string">text</parameter>*
>>> </transactionManager>
>>>
>>> Example,
>>>
>>> <transactionManager>
>>>  <parameter
>>> name="java.naming.factory.initial">org.*jnp*.interfaces.NamingContextFactory</parameter>*
>>>  <parameter name="java.naming.provider.url">localhost:1099</parameter>
>>>  <parameter name="UserTransactionJNDIName">UserTransaction</parameter>
>>> <parameter name="TransactionManagerJNDIName">TransactionManager</parameter>
>>> </transactionManager>
>>>
>>>
>>> -Irantha
>>>
>>>
>>>       
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: axis-dev-unsubscribe@ws.apache.org
>> For additional commands, e-mail: axis-dev-help@ws.apache.org
>>
>>     
>
>
>
>   


Re: Patch - Axis2 configuration to support synapse transactions

Posted by Irantha <ir...@wso2.com>.
New patch is attached to JIRA issue AXIS2-4138.

-Irantha

Eran Chinthaka wrote:
> Irantha,
>
> A small suggestion/improvement. Can you please not add the new 
> parameter to axisconfig, if no parameter is available in axis2.xml?
>  
>           
>             OMElement transactionElement = 
> config_element.getFirstChildWithName(new QName(TAG_TRANSACTION));
>            
>             if (transactionElement != null) {
>                 ParameterInclude transactionConfig = new 
> ParameterIncludeImpl();
>                 Iterator parameters = 
> transactionElement.getChildrenWithName(new QName(TAG_PARAMETER));
>                 processParameters(parameters, transactionConfig, null);
>                 axisConfig.setTransactionConfig(transactionConfig);   
>             }
>            
>
>
> With Mettha,
> Eran Chinthaka
>
> --------------------------------------------------------------------
> Health is the greatest gift; contentment is the greatest wealth; 
> trusting is the best relationship; nirvana is the highest joy. - 
> Dhammapada
>
>
> On Wed, Nov 19, 2008 at 12:19 PM, Paul Fremantle <pzfreo@gmail.com 
> <ma...@gmail.com>> wrote:
>
>     Yes indeed!
>
>     Paul
>
>     On Wed, Nov 19, 2008 at 6:06 PM, David Illsley
>     <davidillsley@gmail.com <ma...@gmail.com>> wrote:
>     > And possibly for UserTransaction support in the new Sandesha2
>     > persistence module?
>     > David
>     >
>     > On Wed, Nov 19, 2008 at 5:49 PM, Paul Fremantle
>     <pzfreo@gmail.com <ma...@gmail.com>> wrote:
>     >> Irantha
>     >>
>     >> Its worth mentioning that this will also enable transactions in
>     Axis2
>     >> (e.g. using the JMS transport and having the JTA transaction passed
>     >> through to a service and thence onto a database).
>     >>
>     >> Paul
>     >>
>     >> On Wed, Nov 19, 2008 at 4:04 PM, Davanum Srinivas
>     <davanum@gmail.com <ma...@gmail.com>> wrote:
>     >>> Please log a JIRA issue.
>     >>>
>     >>> thanks,
>     >>> dims
>     >>>
>     >>> On Wed, Nov 19, 2008 at 11:00 AM, Irantha <irantha@wso2.com
>     <ma...@wso2.com>> wrote:
>     >>>> Axis2 patch to support  transaction configuration in axis2.xml.
>     >>>>
>     >>>> -Irantha
>     >>>>
>     >>>>
>     >>>>> In oder to support JTA transactions in synapse, I'm working
>     on changing
>     >>>>> axis2 configuration (axis2.xml) to support following new
>     transaction manager
>     >>>>> definition.
>     >>>>>
>     >>>>> <transactionManager>
>     >>>>>  <parameter name="string">text</parameter>*
>     >>>>> </transactionManager>
>     >>>>>
>     >>>>> Example,
>     >>>>>
>     >>>>> <transactionManager>
>     >>>>>  <parameter
>     >>>>>
>     name="java.naming.factory.initial">org.*jnp*.interfaces.NamingContextFactory</parameter>*
>     >>>>>  <parameter
>     name="java.naming.provider.url">localhost:1099</parameter>
>     >>>>>  <parameter
>     name="UserTransactionJNDIName">UserTransaction</parameter>
>     >>>>> <parameter
>     name="TransactionManagerJNDIName">TransactionManager</parameter>
>     >>>>> </transactionManager>
>     >>>>>
>     >>>>>
>     >>>>> -Irantha
>     >>>>>
>     >>>>>
>     >>>>
>     >>>>
>     >>>>
>     ---------------------------------------------------------------------
>     >>>> To unsubscribe, e-mail: axis-dev-unsubscribe@ws.apache.org
>     <ma...@ws.apache.org>
>     >>>> For additional commands, e-mail: axis-dev-help@ws.apache.org
>     <ma...@ws.apache.org>
>     >>>>
>     >>>
>     >>>
>     >>>
>     >>> --
>     >>> Davanum Srinivas :: http://davanum.wordpress.com
>     >>>
>     >>>
>     ---------------------------------------------------------------------
>     >>> To unsubscribe, e-mail: axis-dev-unsubscribe@ws.apache.org
>     <ma...@ws.apache.org>
>     >>> For additional commands, e-mail: axis-dev-help@ws.apache.org
>     <ma...@ws.apache.org>
>     >>>
>     >>>
>     >>
>     >>
>     >>
>     >> --
>     >> Paul Fremantle
>     >> Co-Founder and CTO, WSO2
>     >> Apache Synapse PMC Chair
>     >> OASIS WS-RX TC Co-chair
>     >>
>     >> blog: http://pzf.fremantle.org
>     >> paul@wso2.com <ma...@wso2.com>
>     >>
>     >> "Oxygenating the Web Service Platform", www.wso2.com
>     <http://www.wso2.com>
>     >>
>     >>
>     ---------------------------------------------------------------------
>     >> To unsubscribe, e-mail: axis-dev-unsubscribe@ws.apache.org
>     <ma...@ws.apache.org>
>     >> For additional commands, e-mail: axis-dev-help@ws.apache.org
>     <ma...@ws.apache.org>
>     >>
>     >>
>     >
>     >
>     ---------------------------------------------------------------------
>     > To unsubscribe, e-mail: axis-dev-unsubscribe@ws.apache.org
>     <ma...@ws.apache.org>
>     > For additional commands, e-mail: axis-dev-help@ws.apache.org
>     <ma...@ws.apache.org>
>     >
>     >
>
>
>
>     --
>     Paul Fremantle
>     Co-Founder and CTO, WSO2
>     Apache Synapse PMC Chair
>     OASIS WS-RX TC Co-chair
>
>     blog: http://pzf.fremantle.org
>     paul@wso2.com <ma...@wso2.com>
>
>     "Oxygenating the Web Service Platform", www.wso2.com
>     <http://www.wso2.com>
>
>     ---------------------------------------------------------------------
>     To unsubscribe, e-mail: axis-dev-unsubscribe@ws.apache.org
>     <ma...@ws.apache.org>
>     For additional commands, e-mail: axis-dev-help@ws.apache.org
>     <ma...@ws.apache.org>
>
>


Re: Patch - Axis2 configuration to support synapse transactions

Posted by Eran Chinthaka <er...@gmail.com>.
Irantha,

A small suggestion/improvement. Can you please not add the new parameter to
axisconfig, if no parameter is available in axis2.xml?


            OMElement transactionElement =
config_element.getFirstChildWithName(new QName(TAG_TRANSACTION));

            if (transactionElement != null) {
                ParameterInclude transactionConfig = new
ParameterIncludeImpl();
                Iterator parameters =
transactionElement.getChildrenWithName(new QName(TAG_PARAMETER));
                processParameters(parameters, transactionConfig, null);
                axisConfig.setTransactionConfig(transactionConfig);
            }



With Mettha,
Eran Chinthaka

--------------------------------------------------------------------
Health is the greatest gift; contentment is the greatest wealth; trusting is
the best relationship; nirvana is the highest joy. - Dhammapada


On Wed, Nov 19, 2008 at 12:19 PM, Paul Fremantle <pz...@gmail.com> wrote:

> Yes indeed!
>
> Paul
>
> On Wed, Nov 19, 2008 at 6:06 PM, David Illsley <da...@gmail.com>
> wrote:
> > And possibly for UserTransaction support in the new Sandesha2
> > persistence module?
> > David
> >
> > On Wed, Nov 19, 2008 at 5:49 PM, Paul Fremantle <pz...@gmail.com>
> wrote:
> >> Irantha
> >>
> >> Its worth mentioning that this will also enable transactions in Axis2
> >> (e.g. using the JMS transport and having the JTA transaction passed
> >> through to a service and thence onto a database).
> >>
> >> Paul
> >>
> >> On Wed, Nov 19, 2008 at 4:04 PM, Davanum Srinivas <da...@gmail.com>
> wrote:
> >>> Please log a JIRA issue.
> >>>
> >>> thanks,
> >>> dims
> >>>
> >>> On Wed, Nov 19, 2008 at 11:00 AM, Irantha <ir...@wso2.com> wrote:
> >>>> Axis2 patch to support  transaction configuration in axis2.xml.
> >>>>
> >>>> -Irantha
> >>>>
> >>>>
> >>>>> In oder to support JTA transactions in synapse, I'm working on
> changing
> >>>>> axis2 configuration (axis2.xml) to support following new transaction
> manager
> >>>>> definition.
> >>>>>
> >>>>> <transactionManager>
> >>>>>  <parameter name="string">text</parameter>*
> >>>>> </transactionManager>
> >>>>>
> >>>>> Example,
> >>>>>
> >>>>> <transactionManager>
> >>>>>  <parameter
> >>>>>
> name="java.naming.factory.initial">org.*jnp*.interfaces.NamingContextFactory</parameter>*
> >>>>>  <parameter
> name="java.naming.provider.url">localhost:1099</parameter>
> >>>>>  <parameter
> name="UserTransactionJNDIName">UserTransaction</parameter>
> >>>>> <parameter
> name="TransactionManagerJNDIName">TransactionManager</parameter>
> >>>>> </transactionManager>
> >>>>>
> >>>>>
> >>>>> -Irantha
> >>>>>
> >>>>>
> >>>>
> >>>>
> >>>> ---------------------------------------------------------------------
> >>>> To unsubscribe, e-mail: axis-dev-unsubscribe@ws.apache.org
> >>>> For additional commands, e-mail: axis-dev-help@ws.apache.org
> >>>>
> >>>
> >>>
> >>>
> >>> --
> >>> Davanum Srinivas :: http://davanum.wordpress.com
> >>>
> >>> ---------------------------------------------------------------------
> >>> To unsubscribe, e-mail: axis-dev-unsubscribe@ws.apache.org
> >>> For additional commands, e-mail: axis-dev-help@ws.apache.org
> >>>
> >>>
> >>
> >>
> >>
> >> --
> >> Paul Fremantle
> >> Co-Founder and CTO, WSO2
> >> Apache Synapse PMC Chair
> >> OASIS WS-RX TC Co-chair
> >>
> >> blog: http://pzf.fremantle.org
> >> paul@wso2.com
> >>
> >> "Oxygenating the Web Service Platform", www.wso2.com
> >>
> >> ---------------------------------------------------------------------
> >> To unsubscribe, e-mail: axis-dev-unsubscribe@ws.apache.org
> >> For additional commands, e-mail: axis-dev-help@ws.apache.org
> >>
> >>
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: axis-dev-unsubscribe@ws.apache.org
> > For additional commands, e-mail: axis-dev-help@ws.apache.org
> >
> >
>
>
>
> --
> Paul Fremantle
> Co-Founder and CTO, WSO2
> Apache Synapse PMC Chair
> OASIS WS-RX TC Co-chair
>
> blog: http://pzf.fremantle.org
> paul@wso2.com
>
> "Oxygenating the Web Service Platform", www.wso2.com
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: axis-dev-unsubscribe@ws.apache.org
> For additional commands, e-mail: axis-dev-help@ws.apache.org
>
>

Re: Patch - Axis2 configuration to support synapse transactions

Posted by Paul Fremantle <pz...@gmail.com>.
Yes indeed!

Paul

On Wed, Nov 19, 2008 at 6:06 PM, David Illsley <da...@gmail.com> wrote:
> And possibly for UserTransaction support in the new Sandesha2
> persistence module?
> David
>
> On Wed, Nov 19, 2008 at 5:49 PM, Paul Fremantle <pz...@gmail.com> wrote:
>> Irantha
>>
>> Its worth mentioning that this will also enable transactions in Axis2
>> (e.g. using the JMS transport and having the JTA transaction passed
>> through to a service and thence onto a database).
>>
>> Paul
>>
>> On Wed, Nov 19, 2008 at 4:04 PM, Davanum Srinivas <da...@gmail.com> wrote:
>>> Please log a JIRA issue.
>>>
>>> thanks,
>>> dims
>>>
>>> On Wed, Nov 19, 2008 at 11:00 AM, Irantha <ir...@wso2.com> wrote:
>>>> Axis2 patch to support  transaction configuration in axis2.xml.
>>>>
>>>> -Irantha
>>>>
>>>>
>>>>> In oder to support JTA transactions in synapse, I'm working on changing
>>>>> axis2 configuration (axis2.xml) to support following new transaction manager
>>>>> definition.
>>>>>
>>>>> <transactionManager>
>>>>>  <parameter name="string">text</parameter>*
>>>>> </transactionManager>
>>>>>
>>>>> Example,
>>>>>
>>>>> <transactionManager>
>>>>>  <parameter
>>>>> name="java.naming.factory.initial">org.*jnp*.interfaces.NamingContextFactory</parameter>*
>>>>>  <parameter name="java.naming.provider.url">localhost:1099</parameter>
>>>>>  <parameter name="UserTransactionJNDIName">UserTransaction</parameter>
>>>>> <parameter name="TransactionManagerJNDIName">TransactionManager</parameter>
>>>>> </transactionManager>
>>>>>
>>>>>
>>>>> -Irantha
>>>>>
>>>>>
>>>>
>>>>
>>>> ---------------------------------------------------------------------
>>>> To unsubscribe, e-mail: axis-dev-unsubscribe@ws.apache.org
>>>> For additional commands, e-mail: axis-dev-help@ws.apache.org
>>>>
>>>
>>>
>>>
>>> --
>>> Davanum Srinivas :: http://davanum.wordpress.com
>>>
>>> ---------------------------------------------------------------------
>>> To unsubscribe, e-mail: axis-dev-unsubscribe@ws.apache.org
>>> For additional commands, e-mail: axis-dev-help@ws.apache.org
>>>
>>>
>>
>>
>>
>> --
>> Paul Fremantle
>> Co-Founder and CTO, WSO2
>> Apache Synapse PMC Chair
>> OASIS WS-RX TC Co-chair
>>
>> blog: http://pzf.fremantle.org
>> paul@wso2.com
>>
>> "Oxygenating the Web Service Platform", www.wso2.com
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: axis-dev-unsubscribe@ws.apache.org
>> For additional commands, e-mail: axis-dev-help@ws.apache.org
>>
>>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: axis-dev-unsubscribe@ws.apache.org
> For additional commands, e-mail: axis-dev-help@ws.apache.org
>
>



-- 
Paul Fremantle
Co-Founder and CTO, WSO2
Apache Synapse PMC Chair
OASIS WS-RX TC Co-chair

blog: http://pzf.fremantle.org
paul@wso2.com

"Oxygenating the Web Service Platform", www.wso2.com

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@synapse.apache.org
For additional commands, e-mail: dev-help@synapse.apache.org


Re: Patch - Axis2 configuration to support synapse transactions

Posted by Paul Fremantle <pz...@gmail.com>.
Yes indeed!

Paul

On Wed, Nov 19, 2008 at 6:06 PM, David Illsley <da...@gmail.com> wrote:
> And possibly for UserTransaction support in the new Sandesha2
> persistence module?
> David
>
> On Wed, Nov 19, 2008 at 5:49 PM, Paul Fremantle <pz...@gmail.com> wrote:
>> Irantha
>>
>> Its worth mentioning that this will also enable transactions in Axis2
>> (e.g. using the JMS transport and having the JTA transaction passed
>> through to a service and thence onto a database).
>>
>> Paul
>>
>> On Wed, Nov 19, 2008 at 4:04 PM, Davanum Srinivas <da...@gmail.com> wrote:
>>> Please log a JIRA issue.
>>>
>>> thanks,
>>> dims
>>>
>>> On Wed, Nov 19, 2008 at 11:00 AM, Irantha <ir...@wso2.com> wrote:
>>>> Axis2 patch to support  transaction configuration in axis2.xml.
>>>>
>>>> -Irantha
>>>>
>>>>
>>>>> In oder to support JTA transactions in synapse, I'm working on changing
>>>>> axis2 configuration (axis2.xml) to support following new transaction manager
>>>>> definition.
>>>>>
>>>>> <transactionManager>
>>>>>  <parameter name="string">text</parameter>*
>>>>> </transactionManager>
>>>>>
>>>>> Example,
>>>>>
>>>>> <transactionManager>
>>>>>  <parameter
>>>>> name="java.naming.factory.initial">org.*jnp*.interfaces.NamingContextFactory</parameter>*
>>>>>  <parameter name="java.naming.provider.url">localhost:1099</parameter>
>>>>>  <parameter name="UserTransactionJNDIName">UserTransaction</parameter>
>>>>> <parameter name="TransactionManagerJNDIName">TransactionManager</parameter>
>>>>> </transactionManager>
>>>>>
>>>>>
>>>>> -Irantha
>>>>>
>>>>>
>>>>
>>>>
>>>> ---------------------------------------------------------------------
>>>> To unsubscribe, e-mail: axis-dev-unsubscribe@ws.apache.org
>>>> For additional commands, e-mail: axis-dev-help@ws.apache.org
>>>>
>>>
>>>
>>>
>>> --
>>> Davanum Srinivas :: http://davanum.wordpress.com
>>>
>>> ---------------------------------------------------------------------
>>> To unsubscribe, e-mail: axis-dev-unsubscribe@ws.apache.org
>>> For additional commands, e-mail: axis-dev-help@ws.apache.org
>>>
>>>
>>
>>
>>
>> --
>> Paul Fremantle
>> Co-Founder and CTO, WSO2
>> Apache Synapse PMC Chair
>> OASIS WS-RX TC Co-chair
>>
>> blog: http://pzf.fremantle.org
>> paul@wso2.com
>>
>> "Oxygenating the Web Service Platform", www.wso2.com
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: axis-dev-unsubscribe@ws.apache.org
>> For additional commands, e-mail: axis-dev-help@ws.apache.org
>>
>>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: axis-dev-unsubscribe@ws.apache.org
> For additional commands, e-mail: axis-dev-help@ws.apache.org
>
>



-- 
Paul Fremantle
Co-Founder and CTO, WSO2
Apache Synapse PMC Chair
OASIS WS-RX TC Co-chair

blog: http://pzf.fremantle.org
paul@wso2.com

"Oxygenating the Web Service Platform", www.wso2.com

---------------------------------------------------------------------
To unsubscribe, e-mail: axis-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-dev-help@ws.apache.org


Re: Patch - Axis2 configuration to support synapse transactions

Posted by David Illsley <da...@gmail.com>.
And possibly for UserTransaction support in the new Sandesha2
persistence module?
David

On Wed, Nov 19, 2008 at 5:49 PM, Paul Fremantle <pz...@gmail.com> wrote:
> Irantha
>
> Its worth mentioning that this will also enable transactions in Axis2
> (e.g. using the JMS transport and having the JTA transaction passed
> through to a service and thence onto a database).
>
> Paul
>
> On Wed, Nov 19, 2008 at 4:04 PM, Davanum Srinivas <da...@gmail.com> wrote:
>> Please log a JIRA issue.
>>
>> thanks,
>> dims
>>
>> On Wed, Nov 19, 2008 at 11:00 AM, Irantha <ir...@wso2.com> wrote:
>>> Axis2 patch to support  transaction configuration in axis2.xml.
>>>
>>> -Irantha
>>>
>>>
>>>> In oder to support JTA transactions in synapse, I'm working on changing
>>>> axis2 configuration (axis2.xml) to support following new transaction manager
>>>> definition.
>>>>
>>>> <transactionManager>
>>>>  <parameter name="string">text</parameter>*
>>>> </transactionManager>
>>>>
>>>> Example,
>>>>
>>>> <transactionManager>
>>>>  <parameter
>>>> name="java.naming.factory.initial">org.*jnp*.interfaces.NamingContextFactory</parameter>*
>>>>  <parameter name="java.naming.provider.url">localhost:1099</parameter>
>>>>  <parameter name="UserTransactionJNDIName">UserTransaction</parameter>
>>>> <parameter name="TransactionManagerJNDIName">TransactionManager</parameter>
>>>> </transactionManager>
>>>>
>>>>
>>>> -Irantha
>>>>
>>>>
>>>
>>>
>>> ---------------------------------------------------------------------
>>> To unsubscribe, e-mail: axis-dev-unsubscribe@ws.apache.org
>>> For additional commands, e-mail: axis-dev-help@ws.apache.org
>>>
>>
>>
>>
>> --
>> Davanum Srinivas :: http://davanum.wordpress.com
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: axis-dev-unsubscribe@ws.apache.org
>> For additional commands, e-mail: axis-dev-help@ws.apache.org
>>
>>
>
>
>
> --
> Paul Fremantle
> Co-Founder and CTO, WSO2
> Apache Synapse PMC Chair
> OASIS WS-RX TC Co-chair
>
> blog: http://pzf.fremantle.org
> paul@wso2.com
>
> "Oxygenating the Web Service Platform", www.wso2.com
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: axis-dev-unsubscribe@ws.apache.org
> For additional commands, e-mail: axis-dev-help@ws.apache.org
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@synapse.apache.org
For additional commands, e-mail: dev-help@synapse.apache.org


Re: Patch - Axis2 configuration to support synapse transactions

Posted by David Illsley <da...@gmail.com>.
And possibly for UserTransaction support in the new Sandesha2
persistence module?
David

On Wed, Nov 19, 2008 at 5:49 PM, Paul Fremantle <pz...@gmail.com> wrote:
> Irantha
>
> Its worth mentioning that this will also enable transactions in Axis2
> (e.g. using the JMS transport and having the JTA transaction passed
> through to a service and thence onto a database).
>
> Paul
>
> On Wed, Nov 19, 2008 at 4:04 PM, Davanum Srinivas <da...@gmail.com> wrote:
>> Please log a JIRA issue.
>>
>> thanks,
>> dims
>>
>> On Wed, Nov 19, 2008 at 11:00 AM, Irantha <ir...@wso2.com> wrote:
>>> Axis2 patch to support  transaction configuration in axis2.xml.
>>>
>>> -Irantha
>>>
>>>
>>>> In oder to support JTA transactions in synapse, I'm working on changing
>>>> axis2 configuration (axis2.xml) to support following new transaction manager
>>>> definition.
>>>>
>>>> <transactionManager>
>>>>  <parameter name="string">text</parameter>*
>>>> </transactionManager>
>>>>
>>>> Example,
>>>>
>>>> <transactionManager>
>>>>  <parameter
>>>> name="java.naming.factory.initial">org.*jnp*.interfaces.NamingContextFactory</parameter>*
>>>>  <parameter name="java.naming.provider.url">localhost:1099</parameter>
>>>>  <parameter name="UserTransactionJNDIName">UserTransaction</parameter>
>>>> <parameter name="TransactionManagerJNDIName">TransactionManager</parameter>
>>>> </transactionManager>
>>>>
>>>>
>>>> -Irantha
>>>>
>>>>
>>>
>>>
>>> ---------------------------------------------------------------------
>>> To unsubscribe, e-mail: axis-dev-unsubscribe@ws.apache.org
>>> For additional commands, e-mail: axis-dev-help@ws.apache.org
>>>
>>
>>
>>
>> --
>> Davanum Srinivas :: http://davanum.wordpress.com
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: axis-dev-unsubscribe@ws.apache.org
>> For additional commands, e-mail: axis-dev-help@ws.apache.org
>>
>>
>
>
>
> --
> Paul Fremantle
> Co-Founder and CTO, WSO2
> Apache Synapse PMC Chair
> OASIS WS-RX TC Co-chair
>
> blog: http://pzf.fremantle.org
> paul@wso2.com
>
> "Oxygenating the Web Service Platform", www.wso2.com
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: axis-dev-unsubscribe@ws.apache.org
> For additional commands, e-mail: axis-dev-help@ws.apache.org
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: axis-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-dev-help@ws.apache.org


Re: Patch - Axis2 configuration to support synapse transactions

Posted by Paul Fremantle <pz...@gmail.com>.
Irantha

Its worth mentioning that this will also enable transactions in Axis2
(e.g. using the JMS transport and having the JTA transaction passed
through to a service and thence onto a database).

Paul

On Wed, Nov 19, 2008 at 4:04 PM, Davanum Srinivas <da...@gmail.com> wrote:
> Please log a JIRA issue.
>
> thanks,
> dims
>
> On Wed, Nov 19, 2008 at 11:00 AM, Irantha <ir...@wso2.com> wrote:
>> Axis2 patch to support  transaction configuration in axis2.xml.
>>
>> -Irantha
>>
>>
>>> In oder to support JTA transactions in synapse, I'm working on changing
>>> axis2 configuration (axis2.xml) to support following new transaction manager
>>> definition.
>>>
>>> <transactionManager>
>>>  <parameter name="string">text</parameter>*
>>> </transactionManager>
>>>
>>> Example,
>>>
>>> <transactionManager>
>>>  <parameter
>>> name="java.naming.factory.initial">org.*jnp*.interfaces.NamingContextFactory</parameter>*
>>>  <parameter name="java.naming.provider.url">localhost:1099</parameter>
>>>  <parameter name="UserTransactionJNDIName">UserTransaction</parameter>
>>> <parameter name="TransactionManagerJNDIName">TransactionManager</parameter>
>>> </transactionManager>
>>>
>>>
>>> -Irantha
>>>
>>>
>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: axis-dev-unsubscribe@ws.apache.org
>> For additional commands, e-mail: axis-dev-help@ws.apache.org
>>
>
>
>
> --
> Davanum Srinivas :: http://davanum.wordpress.com
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: axis-dev-unsubscribe@ws.apache.org
> For additional commands, e-mail: axis-dev-help@ws.apache.org
>
>



-- 
Paul Fremantle
Co-Founder and CTO, WSO2
Apache Synapse PMC Chair
OASIS WS-RX TC Co-chair

blog: http://pzf.fremantle.org
paul@wso2.com

"Oxygenating the Web Service Platform", www.wso2.com

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@synapse.apache.org
For additional commands, e-mail: dev-help@synapse.apache.org


Re: Patch - Axis2 configuration to support synapse transactions

Posted by Paul Fremantle <pz...@gmail.com>.
Irantha

Its worth mentioning that this will also enable transactions in Axis2
(e.g. using the JMS transport and having the JTA transaction passed
through to a service and thence onto a database).

Paul

On Wed, Nov 19, 2008 at 4:04 PM, Davanum Srinivas <da...@gmail.com> wrote:
> Please log a JIRA issue.
>
> thanks,
> dims
>
> On Wed, Nov 19, 2008 at 11:00 AM, Irantha <ir...@wso2.com> wrote:
>> Axis2 patch to support  transaction configuration in axis2.xml.
>>
>> -Irantha
>>
>>
>>> In oder to support JTA transactions in synapse, I'm working on changing
>>> axis2 configuration (axis2.xml) to support following new transaction manager
>>> definition.
>>>
>>> <transactionManager>
>>>  <parameter name="string">text</parameter>*
>>> </transactionManager>
>>>
>>> Example,
>>>
>>> <transactionManager>
>>>  <parameter
>>> name="java.naming.factory.initial">org.*jnp*.interfaces.NamingContextFactory</parameter>*
>>>  <parameter name="java.naming.provider.url">localhost:1099</parameter>
>>>  <parameter name="UserTransactionJNDIName">UserTransaction</parameter>
>>> <parameter name="TransactionManagerJNDIName">TransactionManager</parameter>
>>> </transactionManager>
>>>
>>>
>>> -Irantha
>>>
>>>
>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: axis-dev-unsubscribe@ws.apache.org
>> For additional commands, e-mail: axis-dev-help@ws.apache.org
>>
>
>
>
> --
> Davanum Srinivas :: http://davanum.wordpress.com
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: axis-dev-unsubscribe@ws.apache.org
> For additional commands, e-mail: axis-dev-help@ws.apache.org
>
>



-- 
Paul Fremantle
Co-Founder and CTO, WSO2
Apache Synapse PMC Chair
OASIS WS-RX TC Co-chair

blog: http://pzf.fremantle.org
paul@wso2.com

"Oxygenating the Web Service Platform", www.wso2.com

---------------------------------------------------------------------
To unsubscribe, e-mail: axis-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-dev-help@ws.apache.org