m1k3y3
m1k3y3

Reputation: 2788

WebSphere: can I reload transaction settings without restarting jvm?

is it possible to reload transaction timeout settings without restarting JVM ?

Upvotes: 0

Views: 301

Answers (2)

m1k3y3
m1k3y3

Reputation: 2788

based on @kurtcebe's answer. below commands will not reload settings but will apply settings on the runtime

set ts [$AdminControl completeObjectName cell=mycell,node=mynode,
process=server1,type=TransactionService,*]

$AdminControl setAttributes $ts {{clientInactivityTimeout 30} 
{totalTranLifetimeTimeout 180}}

Upvotes: 0

Manglu
Manglu

Reputation: 11344

I don't believe that this can be done. This affects every single application that runs on a JVM so I strongly believe this will not work without restarting the JVM. kurtcebe's suggestion is definitely a way to test and make some observation(s).

Upvotes: 1

Related Questions