[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: Problem in configuring log4j in Jboss

2007-07-19 Thread inderjeet
I was able to resolve the problem by changing category tag contents from to (my app's base package). It started working and my file is now displaying all the logs. :-) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4066030#4066030 Reply to the post : http:

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Problem in configuring log4j in Jboss

2007-07-19 Thread inderjeet
Hi All, I am trying to set up a logger for my web application. I have Jboss 4.0.4 installed on my machine. I am using 'default' configuration of the JBoss server. I have added the follwoing code in my log4j.xml placed at /server/default/conf folder. | | | | |

[jboss-user] [Installation, Configuration & Deployment] - Re: Chnaging JBoss JDBC connection pool size

2007-03-11 Thread inderjeet
Hi I am able to get the attributes of the ManagedConnectionPool MBean of the JBoos. eg. MinSize, MaxSize, BlockingTimeoutMillis, PreFill etc (Using the document given in the link...). But still I am unable to either read the values of these attributes or modify these values. Can someone please

[jboss-user] [Installation, Configuration & Deployment] - Re: Chnaging JBoss JDBC connection pool size

2007-03-08 Thread inderjeet
Thanks again peter I will try to incorporate the suggested code in my application. Thanks & Regards Inder Jeet Singh View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4026527#4026527 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=r

[jboss-user] [Installation, Configuration & Deployment] - Re: Chnaging JBoss JDBC connection pool size

2007-03-08 Thread inderjeet
HI Peter The link which you have given talks about the xml configuration to set up the connection pool in Jboos but it does not mention anything about API through which we can change the pool configuration at runtime. I need the API used for runtime configuration of Connection Pool. Thanks & Re

[jboss-user] [Installation, Configuration & Deployment] - Re: Chnaging JBoss JDBC connection pool size

2007-03-07 Thread inderjeet
Thanks Peter for your reply. But i would like to know that what API i need to use and where can i find that. one more thing is that how can i invoke those methods? Do we have some doc available from which i can find this info? And what about the second problem? Can we pass the DB schema password

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Chnaging JBoss JDBC connection pool size

2007-03-07 Thread inderjeet
Hi all I have setup a JDBC connection pool in JBoss using oracle-ds.xml. I have a requirement in my web application to change the size of the pool using my web application itself. Can I do it? Does Jboss provide some API to do it in runtime? Earlier we had our own connection pool where we had th

[jboss-user] [Installation, Configuration & Deployment] - Chnaging JBoss JDBC connection pool size

2007-03-07 Thread inderjeet
Hi all I have setup a JDBC connection pool in JBoss using oracle-ds.xml. I have a requirement in my web application to change the size of the pool using my web application itself. Can I do it? Does Jboss provide some API to do it in runtime? Earlier we had our own connection pool where we had th

[jboss-user] [Installation, Configuration & Deployment] - Re: Deploy a web application on JBoss

2006-12-21 Thread inderjeet
No probs. Thanks Peter:-) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3995766#3995766 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3995766 ___ jboss-user mailing li

[jboss-user] [Installation, Configuration & Deployment] - Re: Deploy a web application on JBoss

2006-12-20 Thread inderjeet
Thanks to all of those who helped me to solve my problem. Peter, I tried to search method by the name of "Invoke", but there is no invoke method in the MainDeployer MBean. As per kennychaffin and your, suggestion, i am not going for application across network, but I just wanted to see this worki

[jboss-user] [Installation, Configuration & Deployment] - Re: Deploy a web application on JBoss

2006-12-19 Thread inderjeet
Thanks Peter I understood your explanation partially Actually my exact requirement is to deploy an application on JBoos server which is on my machine and the WAR file or the exploded war file which is there on some other machine on my network. Now How to achieve this? Please help me out. T

[jboss-user] [Installation, Configuration & Deployment] - Re: Deploy a web application on JBoss

2006-12-18 Thread inderjeet
Yes budy, I did change the port from 808 to 7070. And the URL i have mentioned is not the URL I am using to access my web application from browser. It is the URL mentioned in the jboss-service.xml file to access the application(WAR) contents from there, instead of putting my WAR in deploy/ fold

[jboss-user] [Installation, Configuration & Deployment] - Re: Deploy a web application on JBoss

2006-12-18 Thread inderjeet
Thanks for your reply. I am able to deploy application on JBoss from some other folder. Now i tried suing it from some remote machine as per the format given in the jboss-service.xml But it does not work. I have given something like http://www.localhost:7070/mywar/test.war Can someone te

[jboss-user] [Installation, Configuration & Deployment] - Deploy a web application on JBoss

2006-12-17 Thread inderjeet
Hi All I need to deploy a web application on JBoss. I know that i can deploy a web application by putting my war file in defauly/deploy folder of Jboss server. But I would like to know that can't I deploly a web application by simply giving the path of my war file somewhere in Jboss, as we do

[jboss-user] [Installation, Configuration & Deployment] - Re: Configure and use Connection pool of Jboss

2006-10-30 Thread inderjeet
Oh, is it so.. Then it is fine Thanks for ur prompt reply View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3981737#3981737 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3981737 _

[jboss-user] [Installation, Configuration & Deployment] - Re: Configure and use Connection pool of Jboss

2006-10-30 Thread inderjeet
I am done with "Getting connection from the JBoss connection pool". Now I would like to know that, after doing my database processiong, how can i return the connection back to the pool? I have seen many example for JBoss connection pooling, but in all of then they have used the conn.close(). But

[jboss-user] [Beginners Corner] - problem configuring log4j in JBoss

2006-10-24 Thread inderjeet
Hi I am new to Jboss. I was using iplanet prior to this. My web application is using log4j for logging. But how the log4j be configured with Jboss, I am not able to find out. I have tried by putting log4j.properties file in the WEB-INF/classes folder and the log4j jar file in WEB-INF/lib folder.

[jboss-user] [Installation, Configuration & Deployment] - Re: Configure and use Connection pool of Jboss

2006-10-23 Thread inderjeet
Thanks for your reply one more thing i need to know that how can from my web application I can get a connection of the configured database? Regards Inder Jeet Singh View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3980245#3980245 Reply to the post : ht

[jboss-user] [Installation, Configuration & Deployment] - Configure and use Connection pool of Jboss

2006-10-23 Thread inderjeet
Hi I am new to JBoss. I have seen that JBoos has its own Connection pool implementation. I would like to use it with oracle database. Could someone please let me know that how can we configurethe connection pool and how can we use it in a web application? Or if someone can forward me the corresp

[jboss-user] [Clustering/JBoss] - Load handling capacity of JBoss App Server

2006-09-01 Thread inderjeet
Hi All I am new to JBoss. We are in the just evaluation stages of the JBoss. Our aplication requirement is around 100,000 request at a time. Can JBoss server handle this much load? Or we need to look for some proprietary server like Weblogic or Websphere? Thanks & Regards Inder Jeet Singh View

[jboss-user] [Beginners Corner] - JBoss Request handling capacity

2006-09-01 Thread inderjeet
Hi All I am new to JBoss. We are in the just evaluation stages of the JBoss. Our aplication requirement is around 100,000 request at a time. Can JBoss server handle this much load? Or we need to look for some proprietary server like Weblogic or Websphere? Thanks & Regards Inder Jeet Singh View