[jboss-user] [Clustering/JBoss] - Re: Cluster Deployment: farming

2008-06-25 Thread sankul123
"[EMAIL PROTECTED]" wrote : I don't understand your question. Are you saying you try to edit files in the default/tmp folder but then find they get overridden from the content in default/deploy when you redeploy? But an exploded archive lets you edit the exploded content? I am sorry for the co

[jboss-user] [JCA/JBoss] - Re: changing conn parameters in -ds.xml file !!!urgent!!!

2008-06-25 Thread sankul123
"vickyk" wrote : !!!urgent!!! | When you want these things to get addressed you MUST go for Jboss support . | do they charge for developer support? Let me try JMX , thank you for your help. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4160679#4160679 R

[jboss-user] [JCA/JBoss] - Re: how to get the value of a property in oracle-ds.xml from

2008-06-25 Thread sankul123
Hi Price, Is there any Jboss API through JMX , from which we can update the connection parameters already set in ds.xml and get conn object according to new set connection parameters. Regards, Sandeep View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4160678#41

[jboss-user] [Clustering/JBoss] - Re: Cluster Deployment: farming

2008-06-20 Thread sankul123
Can someone through some light on this? I need to make a decision on whether I should go with archived ear file or exploded directory deployment. Sandeep View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4159707#4159707 Reply to the post : http://www.jboss

[jboss-user] [Clustering/JBoss] - Cluster Deployment: farming

2008-06-20 Thread sankul123
Need some clear[simple :)] clarifications[please]- 1.Farming service- When we say farming service , I believe that I need not worry about keeping the application context synch in cluster. For ex: we have some feature to upload files. So in a cluster with N1,N2,N3 and if file upload request is

[jboss-user] [JCA/JBoss] - Re: changing conn parameters in -ds.xml file !!!urgent!!!

2008-06-20 Thread sankul123
"vickyk" wrote : | | You should be redeploying the EAR to see the changes in -ds.xml , modify the EAR/META-INF/app.xml after you make changes in the -ds.xml that will lead to the hot deployment of EAR . Thank you Vicky , for the reply. Just to add to my question, changing conn parameters

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Deployment: Deploying as ear !!!!!URGENT!!!!!!!

2008-06-19 Thread sankul123
HI ALL, I have an ear myApp.ear file and deployed it under ${JBOSS_HOME}/server/default/deploy. On start[run] it got exploded to default/temp folder. I have few configurations done on few property files. Once I restart the server again I dont see the configuraions it is again exploded to a new

[jboss-user] [JCA/JBoss] - changing conn parameters in -ds.xml file !!!urgent!!!

2008-06-19 Thread sankul123
I have tried to explain using these two cases - ora-ds.xml -> oracle ds xml file. CASE 1: If I place the ora-ds.xml file under ${JBOSSHOME}/server/default i,e ${JBOSSHOME}/server/default | | | |--- myApp.ear | | | |---ora-ds.xml | | | and I update the ora-ds.xml file manually

[jboss-user] [Beginners Corner] - Real Path of ear deployment

2008-06-16 Thread sankul123
Hi ALL, I want to know how to get the real path of a deployed ear file in jboss. I know how to get the real path of a deployed war file , but I want it for ear file. I want to access a file which is directly under root of ear. | myApp.ear | |--version.xml [how to access this file to

[jboss-user] [Beginners Corner] - Re: Local SSL process [method - CMT used] atomic operations

2008-05-21 Thread sankul123
This is how I have implemented , Used SSB with BMT- Code: | void myAtomicProcess(String a, String b)throws MyException{ |try{ |userTx.begin() |//2. update file ... |fileOperFlag = true |//1. upd

[jboss-user] [EJB/JBoss] - Re: Atomic process in Local SSB -Urgent !!!!!!!

2008-05-21 Thread sankul123
Thank you Khazoo , for your support. "kahzoo" wrote : | | With BMT, you need to do the transaction demarcation (begin, commit, rolback) yourself, but since your bean will know the outcome of the transaction, it can decide to write/do-not-write data in the file accordingly. | This is

[jboss-user] [EJB/JBoss] - Re: Atomic process in Local SSB -Urgent !!!!!!!

2008-05-19 Thread sankul123
"kahzoo" wrote : Can you switch to stateful session bean? | Yes I can , but after assessing there is not much hit on performance. One thing that worries me with Synchronization is that Synch is on whole bean and not the methods :). Now I need to have more than one Stateful session bean. Thi

[jboss-user] [Beginners Corner] - Re: Updating JDBC Datasources

2008-05-18 Thread sankul123
"sankul123" wrote : Hi ALL, | | Also I want to persist changes into {JBossHome}/server/default/deploy/oracle-ds.xml. | Is there anyway I can take this -ds.xml inside my context[.ear] | | Am ?I doing any blunder , please HELP :) This is the solution I am using , experts plea

[jboss-user] [Beginners Corner] - Local SSL process [method - CMT used] atomic operations issu

2008-05-18 Thread sankul123
Hi ALL, I have a following process, to be done by (Local)SSB[Stateless Session Bean]- 1. Persist [update] some values in database. 2. Some file operations , write some data to file. I want both operations to be atomic. My Local SSL EJB is a CMT and its method 'transaction' attribute is marked f

[jboss-user] [EJB/JBoss] - Atomic process in Local SSB -Urgent !!!!!!!

2008-05-18 Thread sankul123
Hi ALL, I have a following process, to be done by (Local)SSB[Stateless Session Bean]- 1. Persist [update] some values in database. 2. Some file operations , write some data to file. I want both operations to be atomic. My Local SSL EJB is a CMT and its method 'transaction' attribute is marked

[jboss-user] [JCA/JBoss] - Re: Updatingd JDBC Datasources and container behaviour

2008-05-07 Thread sankul123
This is the solution I am using , experts please comment on this To take *-ds.xml file inside ear - - Added a new module under services in jboss-app.xml | | META-INF/myApp-ds.xml | | - copied the myApp-ds.xml file inside META-INF in the build scripts itself. And I will be by hoo

[jboss-user] [JCA/JBoss] - Re: Updatingd JDBC Datasources and container behaviour

2008-05-05 Thread sankul123
"vickyk" wrote : | Read this | http://www.catb.org/~esr/faqs/smart-questions.html Thanks for the link really good one , I will read it completely once I find time. Is there any API Jboss expose , which we can use in program to update the ds xml. I am looking for some information on MBean h

[jboss-user] [JCA/JBoss] - Re: Updatingd JDBC Datasources and container behaviour

2008-05-05 Thread sankul123
"vickyk" wrote : | Modify the -ds.xml file and redeploy , did this answer to your unexplained question ? | | Read this | http://www.catb.org/~esr/faqs/smart-questions.html View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4148666#4148666 Reply to the

[jboss-user] [JCA/JBoss] - Re: Updatingd JDBC Datasources and container behaviour

2008-05-01 Thread sankul123
"vickyk" wrote : If you need help here make sure that you explain this properly. | You should be getting answer to your questions if you search Jboss wikis/JCA forums , if you are too lazy to do that then don't expect help . | | Can you please let me know , what part my post you did not u

[jboss-user] [JCA/JBoss] - Updatingd JDBC Datasources and container behaviour

2008-04-28 Thread sankul123
Hi ALL, I want to add a new datasource[ex- oracle database DS object] and rebind to an existing JNDI name. I want to do this to achieve the following - -If there is any change in database schema password[manuually on database server], this should be updated to already existing datasource and reb

[jboss-user] [EJB/JBoss] - Updatingd JDBC Datasources and container behaviour

2008-04-25 Thread sankul123
Hi ALL, I want to add a new datasource[ex- oracle database DS object] and rebind to an existing JNDI name. I want to do this to achieve the following - -If there is any change in database schema password[manuually on database server], this should be updated to already existing datasource and reb

[jboss-user] [Beginners Corner] - Updating JDBC Datasources

2008-04-25 Thread sankul123
Hi ALL, I want to add a new datasource[ex- oracle database DS] and rebind to an existing JNDI name. I want to do this to achieve the following - -If there is any change in database schema password[manuually on database server], this should be updated to already existing datasource and rebing wit

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Updatingd JDBC Datasources ...

2008-04-25 Thread sankul123
Hi ALL, I want to add a new datasource[ex- oracle database DS object] and rebind to an existing JNDI name. I want to do this to achieve the following - -If there is any change in database schema password[manuually on database server], this should be updated to already existing datasource and reb