[JBoss-user] [HTTPD, Servlets & JSP] - help - application.xml

2005-01-10 Thread fabius
Hi, is possible in application.xml define same on different ? E.g.: Test application a data application application-test.jar application.war /testa application.war /testb In this case /testb is not find. Why? Thanks for any suggestion. View the original post : http://www.jboss.

[JBoss-user] [Installation & Configuration] - Error instantiating org.apache.jasper.servlet.JspServlet

2005-01-10 Thread David Zejda
On startup or as I try to deploy the tomcat service, the exceptions "error instantiating JspServlet" caused by "class not found" are thrown. The Tomcat does not start.. JBoss v4.0.1RC1, default config, JDK 1.5.0_01, Debian woody Please, have you any ideas, that could lead me to find the heart of

[JBoss-user] [JCA/JBoss] - Unable to fill pool

2005-01-10 Thread shawfai
Hi all, I am using JBoss 3.2.3 and get the following warning messages: WARN [org.jboss.resource.connectionmanager.JBossManagedConnectionPool] Unable to fill pool org.jboss.resource.JBossResourceException: Could not create connection; - nested t

[JBoss-user] [Persistence & CMP/JBoss] - dead lock

2005-01-10 Thread dragon_jdh
jboss3.2.3 sql server 2000 I have a timertask, run in background regularly. it will visit an entity bean, suppose A. And also there are other places visit that bean. all the methods are 'required' configuration. the isolation level is pessimistic now I often met deadlock exception. How

[JBoss-user] [EJB/JBoss] - Re: How Can I dynimicly load a Class in Session Bean (Statel

2005-01-10 Thread SportsBaby1980
Maybe I should read jboss4.0 src? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3861522#3861522 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3861522 --- The SF.Net

[JBoss-user] [JBoss Getting Started Documentation] - How Can I specify the startup class in Jboss4.0?

2005-01-10 Thread amitc
I want to set up the start up class where i can gather data required for my application. Can anybody help me with the settings for the start up class in Jboss 4.0? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3861520#3861520 Reply to the post : http://www.

[JBoss-user] [Installation & Configuration] - How can I set up startup class in JBoss 4.0?

2005-01-10 Thread amitc
I want to cache some data for the future use of my application. Can anbody help me with the settings of startup class in JBoss 4.0? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3861521#3861521 Reply to the post : http://www.jboss.org/index.html?module=bb&op

[JBoss-user] [The Lizzard's corner] - Re: Corrupt Forum Database

2005-01-10 Thread [EMAIL PROTECTED]
It did, but apparently this is not the only issue. Additional fixes and debugging was added just tonight. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3861517#3861517 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3861

[JBoss-user] [Installation & Configuration] - Multiple .har possible?

2005-01-10 Thread luxmatic
Using Jboss 3.2.6 I've successfully deployed a single .har file: | example1.har | -Channel.hbm.xml | -Channel.class | -META-INF | --hibernate-service.xml | | hibernate-service.xml: | | | java:/jdbc/example1DS | java:/hibernate/SessionFactory | net.sf.hibern

[JBoss-user] [Security & JAAS/JBoss] - SocketTimeoutException while using DatabaseServerLoginModule

2005-01-10 Thread diripu
Getting the following exception in the client side while accessing a stateless bean.And using the DatabaseServerLoginModule for authentication. Any comments ?? | javax.security.auth.login.LoginException: javax.naming.CommunicationException: R | eceive timed out [Root exception is java.n

[JBoss-user] [Advanced Documentation] - Re: List of Thirdparty jar versions

2005-01-10 Thread [EMAIL PROTECTED]
See docs/licenses/thirdparty-licenses.xml in the dist. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3861516#3861516 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3861516 --

[JBoss-user] [EJB/JBoss] - How Can I dynimicly load a Class in Session Bean (Stateless

2005-01-10 Thread SportsBaby1980
I encounter a problem. I should dynimicly load classes in a EJB. I read xml file and parse it ,then I can get a class name---I have packaged the class and the xml file into the ejb's jar file. I can get the file as a inputStream by Class.getResourceAsInputStream. But later,when I load the class b

[JBoss-user] [JBoss Getting Started Documentation] - Possible Confusion with class loading

2005-01-10 Thread rhook
Chapter 2 of the 4.0.1 guide discusses in detail class loading, and in section 2.2.2.4.2 suggests that scoped class loading at the EAR level can be done by editing jboss-app.xml. Chapter 9 discusses web applications, and suggests that isolation (globally) for web applications is done by editing

[JBoss-user] [Beginners Corner] - Possible Solution

2005-01-10 Thread rhook
This may or may not be an appropriate solution. Re-examing the 4.0.1 documentation, I found in chapter 9, section 9.1, discussion of configuring the tomcat 5.x bundled inside Jboss 4.0.1. It discusses the contents of the jboss-service.xml file for Tomcat 5, and says anonymous wrote : UseJBossWe

[JBoss-user] [EJB/JBoss] - Re: how can I add mysql jdbc driver to ejb?

2005-01-10 Thread SportsBaby1980
you can put the mysql-driver at /jboss/server/default/lib. Or put it /jboss/lib . View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3861511#3861511 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3861511 --

[JBoss-user] [JCA/JBoss] - Re: NewConnection SQL execution

2005-01-10 Thread kalyan120
We are using JBoss application server in our application as a middle-tier. We are using JBoss JCA to create connection pools to the required databases. In order to do this, we are generating a sybase-ds.xml file at the server startup and then JBoss loads this service and creates the specified co

[JBoss-user] [EJB/JBoss] - Re: How Can I dynimicly load a Class in Session Bean (Statel

2005-01-10 Thread SportsBaby1980
The appliction Server is Jboss4.0. JDK is 1.42_05. I need your help View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3861508#3861508 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3861508 ---

[JBoss-user] [Performance Tuning] - JBoss and usage of multiple processors

2005-01-10 Thread wjlinde
My company is using JBoss 3.2.1 in a production environment with Tomcat 4.1.24. We are starting to see performance issues on the server. The production server has 4GB of memory, 4 processors, and is running in a Windows Server 2003 operating system. The issue we are having is that JBoss is usi

[JBoss-user] [Beginners Corner] - Follow up 2

2005-01-10 Thread rhook
In my previous, as far as I can determine all classes for which linkage errors are being reported are coming out of rt.jar, possibly limited to those in the javax.* package. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3861494#3861494 Reply to the post : h

[JBoss-user] [Beginners Corner] - JBoss 4.0.1 Linkage Error Nightmare

2005-01-10 Thread rhook
We have a very real need to support the following situation: - a server will have a JBoss 4.x installation, possibly with certain 3rd party libraries such as iBatis in the {server}/lib directory; - we will deploy multiple different EAR files for our various internal applications; - some of those

[JBoss-user] [Beginners Corner] - Re: jUDDI part of JBoss 4.0?

2005-01-10 Thread [EMAIL PROTECTED]
No. We are in the process of bringing it back!!! View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3861485#3861485 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3861485

[JBoss-user] [Management, JMX/JBoss] - Expose a interface via Http

2005-01-10 Thread cool_xiong
I write a MBean, which is made step by step according to JBoss administration. But I don't know where is the MBean's description which utilize HttpProxyFactory placed correctly. It is the jboss-service.xml in deploy/http-invoker/META-INF or others? View the original post : http://www.jboss.org

[JBoss-user] [Persistence & CMP/JBoss] - Optimized loading Without Transactions

2005-01-10 Thread vbatista
Hello, I have several SessionBean methods which retrieve lists os records from the DB. If I wan't these methods to have no transaction, how can I avoid the "performance penalty" referred on the book JBossCMP (Chapter 6->Optimized Loading->Transactions)? Book Excerpts: "The performance impa

[JBoss-user] [Management, JMX/JBoss] - Re: depend on jms connection factory does not work

2005-01-10 Thread jieshengz
The deploy.last solves the problem. Thanks View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3861495#3861495 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3861495 --- T

[JBoss-user] [Beginners Corner] - Follow-up 1

2005-01-10 Thread rhook
The wiki page http://www.jboss.org/wiki/Wiki.jsp?page=JBoss4FAQ is incorrect where it states anonymous wrote : In the default configuration, the ear-deployer.xml is configured to isolate deployments In fact the ear-deployer.xml in the default configuration as deployed is: | | | |

[JBoss-user] [Persistence & CMP/JBoss] - @jboss.method-attributes

2005-01-10 Thread vbatista
Hi! Where can I find documentation about jboss.method-attributes? Regarding the information which I have found, all the methods which have the method-attribute: read-only="true" won't issue the ejbStore(), and methods calling these methods won't be blocked on Transactions if the Entity Be

[JBoss-user] [Clustering/JBoss] - JBoss and usage of multiple processors

2005-01-10 Thread wjlinde
My company is using JBoss 3.2.1 in a production environment with Tomcat 4.1.24. We are starting to see performance issues on the server. The production server has 4GB of memory, 4 processors, and is running in a Windows Server 2003 operating system. The issue we are having is that JBoss is usin

[JBoss-user] [Beginners Corner] - Re: EJB spec violation in Duke bank

2005-01-10 Thread nkm
This is the complete list of errors I am getting 17:40:08,403 WARN [verifier] EJB spec violation: Bean : CustomerBean Section: 12.2.2 Warning: The class must be defined as public and must not be abstract. 17:40:08,403 WARN [verifier] EJB spec violation: Bean : CustomerBean Section: 12.2.5 W

[JBoss-user] [JCA/JBoss] - Re: Jboss 4.01 - Configure Pool Connection for MSSQL 2000

2005-01-10 Thread cstefani
If this is an exerpt from your service file, check your spelling of "server" (I see being spelled as "serwer") -c View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3861472#3861472 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=rep

[JBoss-user] [JBossWS] - Re: How do I deploy a SOAP Webservice (ServiceManagerClient

2005-01-10 Thread jasong
With J2EE web services there is no "command" to deploy web services. You build your package with the appropriate descriptors, which is what the tutorials are showing you how to make. Then, when you deploy your war or jar, the web service is deployed. Reread the wiki, it is quite clear about how

[JBoss-user] [Installation & Configuration] - Automatic JMS topic/queue creation

2005-01-10 Thread apinto
Hi there, In JBoss 3.2.3, if I try to deploy an MBD and the corresponding local JMS topic/queue isn't deployed, a "dummy" one is created (with the same JNDI name). How do I prevent this? I'm experiencing a similar problem if the MDB listens in an external (that is, in another JBoss instan

[JBoss-user] [Beginners Corner] - jUDDI part of JBoss 4.0?

2005-01-10 Thread n_oikonomidis
Hi all, I'm a bit confused about the support of jUDDI. Is it integrated in the current version (4.0.1) or not? Thanks in advance, Nikos View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3861467#3861467 Reply to the post : http://www.jboss.org/index.html?modu

[JBoss-user] [Installation & Configuration] - InstanceNotFoundException

2005-01-10 Thread Kostas75
I am e-mailing bacause I am against the problem that was on that old link: http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3822619#3822619 I am also using JBoss 3.0.8 and I am not having anything like Sun's JMX in my classpath! So what else could be the problem??? Please help any way you

[JBoss-user] [JCA/JBoss] - Re: ManagedConnectionFactory is null

2005-01-10 Thread dtauzell
I see this occasionally under 3.2.6. Looking in my server.log I see: ERROR [org.jboss.resource.connectionmanager.TxConnectionManager] Starting failed jboss.jca:service=LocalTxCM,name=DefaultDS java.lang.ClassCastException: org.jboss.resource.connectionmanager.CachedConnectionManager I'm con

[JBoss-user] [Installation & Configuration] - javax.naming.NameNotFoundException: comp not bound

2005-01-10 Thread peake
Trying to access an ejb from a java application. We have a delegate class which looks up the ejb successfully 'IF' you are a servlet within the container which includes the proper ejb references. It does so like this: Object obj = ctx.lookup("java:comp/env/ejb/WorkplaceSessionBean"); Works well

[JBoss-user] [JCA/JBoss] - NewConnection SQL execution

2005-01-10 Thread kalyan120
Hi, We are having a problem while creating a new connection from a connection pool. We have some temp tables that are to be created once the connection is created and before it is returned to the user. We have specified these tables in the new-connection-sql element of the *-ds.xml. For some of

[JBoss-user] [JCA/JBoss] - Re: How to programmatically create datasource without config

2005-01-10 Thread [EMAIL PROTECTED]
OK, you are right. JBoss does hot-deply when *-ds.xml got modified. My problem was that the default "ScanPeriod=5000" in jboss-service.xml was too large for the application, cause right after the datasource was defined in *-ds.xml, it will be used almost immediately and 5 secs are too large.

[JBoss-user] [JBossWS] - Re: Frequently Asked Questions [Web Services]

2005-01-10 Thread jasong
I also started a FAW in the wiki here: http://www.jboss.org/wiki/Wiki.jsp?page=JBossWSFAQ Its not much, but a start. -Jason View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3861470#3861470 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posti

[JBoss-user] [Javassist user questions] - How to value a byte array

2005-01-10 Thread dechamps
Hi, I begin to use Javassist and need some help. I would like to add and value in the bytecode of class A a field private final static byte[] x; Of course I have also to insert a method public static getX(){return x;} The creation of the field looks like: CtClass A= String fs="private final

[JBoss-user] [Installation & Configuration] - Re: Tomcat and ClassLoader Problems

2005-01-10 Thread brownjava
My war contains "commons-logging-1.0.2.jar". I deleted it, cleaned and rebuilt, restarted the server, etc. but I'm still getting the same error. The war also contains "dom4j-full.jar", which I already tried deleting (in hopes that I could just use the stock JBoss one), but the JBoss "dom4j.jar"

[JBoss-user] [JCA/JBoss] - Re: Binding DS to multiple JNDI names

2005-01-10 Thread kalyan120
Yes, this database mapping has been there for years and the corresponding code is also there for years. We have a peculiar problem here. The following is what we do currently: 1. During the server startup, create the required connection pools. For example CP1, CP2 and CP3. Each of them has the

[JBoss-user] [JBossWS] - Re: How do I deploy a SOAP Webservice (ServiceManagerClient

2005-01-10 Thread empress101
believe me I would use tomcat if choice , but i have been assigned and must use jboss for this project i am trying to get off the ground. I figured Jboss could do it because there are many sources on the web that allued to it. One in particular guide that many point to is http://www.csd.abdn.

[JBoss-user] [Advanced Documentation] - List of Thirdparty jar versions

2005-01-10 Thread RandySKNT
Couldn't figure out exactly where to put this post. I have a suggestion about future releases of JBoss/documentation: that they include a list of all the version numbers of the thirdparty jar files (ie jsse, xml-apis, servlet, etc...). I figure it'd be easy enough to update this list whenever

[JBoss-user] [JBossWS] - Problem with using custom datatypes in WSTypeMapping

2005-01-10 Thread Mette
I am creating a document/literal web service, and I wish to use my own custom classes for the types used by the web service. I have therefore gone the path described in: http://www.jboss.org/wiki/Wiki.jsp?page=WSTypeMapping However, I am having a hard time getting it to work. Specifically, it s

[JBoss-user] [JBossWS] - Re: How do I deploy a SOAP Webservice (ServiceManagerClient

2005-01-10 Thread [EMAIL PROTECTED]
It is easier to use Standalone tomcat if you are trying to build axis based web services. In JBoss, we are focusing towards building J2EE standards based webservices. What you described about changing the extension to .jws and dropping the webapp in tomcat, is how axis does it work, in a prop

[JBoss-user] [JBossWS] - Re: How do I deploy a SOAP Webservice (ServiceManagerClient

2005-01-10 Thread empress101
so what your saying is that jboss does not support axis-soap? what i need to know is if i have a simple hello world service...were exaclty do i place the file in the jboss directory for it to be deployed. for tomcat all i have to do is change the extesion to jws and drop it into the tomcat/web

[JBoss-user] [JCA/JBoss] - Re: Binding DS to multiple JNDI names

2005-01-10 Thread darranl
Is managing the mappings within a database a major requirement of yours? If not have you had a look at using the resource-ref element within the ejb-jar.xml deployment descriptor? This allows you to access the datasource within the bean code using a symbolic name in the java:comp/env namespace

[JBoss-user] [Installation & Configuration] - Re: Tomcat and ClassLoader Problems

2005-01-10 Thread [EMAIL PROTECTED]
Does your war contain commons-logging.jar and/or log4j.jar? If yes, try removing those and give it a shot. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3861443#3861443 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3

[JBoss-user] [EJB/JBoss] - Re: Stateful Session bean and java.sql.Connection problem

2005-01-10 Thread darranl
anonymous wrote : And who wrote in my name with no permission! There is currently an issue with the forum database where a number of posts have had their original author changed, I think the database is due to be rebuilt soon to correct this. View the original post : http://www.jboss.org/index

[JBoss-user] [Beginners Corner] - Re: JBoss 4.0.1 : config and properties files not found anym

2005-01-10 Thread thunder
Copied cache.ccf to dir of caller SecundaryCache.class : no effect still nullpointer exception. So, here goes : Stacktrace : | 17:25:23,359 ERROR [SecundaryCache] JCS Cache could not be initialized | java.lang.NullPointerException | at java.io.Reader.(Reader.java:61) | a

[JBoss-user] [EJB/JBoss] - Re: what I have to do after that?

2005-01-10 Thread repkin
how will I use that in ejb? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3861424#3861424 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3861424 --- The SF.Net email

[JBoss-user] [Management, JMX/JBoss] - Re: depend on jms connection factory does not work

2005-01-10 Thread [EMAIL PROTECTED]
You probably need to depend on the MBean that represent to Queue/Topic you want to subscribe to, e.g. jboss.mq.destination:name=A,service=Queue If you are not sure on which MBean to depend, then remove the dependency, make a folder: deploy/deploy.last and drop your service definition in there

[JBoss-user] [Installation & Configuration] - Tomcat and ClassLoader Problems

2005-01-10 Thread brownjava
I'm having some problems scoping my WAR file for the JBoss ClassLoader as per the instructions in the wiki at "http://www.jboss.org/wiki/Wiki.jsp?page=ClassLoadingConfiguration";. Basically, my application ships with a version of dom4j that seems to conflict with the dom4j in "/lib", so I want

[JBoss-user] [The Lizzard's corner] - Re: Corrupt Forum Database

2005-01-10 Thread darranl
Scott, did the forum database get rebuilt at the end of last year? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3861433#3861433 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3861433 --

[JBoss-user] [EJB/JBoss] - Re: how can I add mysql jdbc driver to ejb?

2005-01-10 Thread HariV
Please add the datasouce (xml) file in the deploy directory of your server. This is a sample xml file for mysql - - - - - - - - - - jdbc/mysql jdbc:mysql://localhost:3306/mysql com.mysql.jdbc.Driver root View the original post : http://www.jboss.org/

[JBoss-user] [Beginners Corner] - Re: my installed jboos up with error

2005-01-10 Thread wmprice
Could both of you, or just one of you post the contents of your /etc/host file? Weston View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3861431#3861431 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3861431

[JBoss-user] [Installation & Configuration] - Re: Connect JBoss from client pc

2005-01-10 Thread darranl
This really just comes down to correct configuration of the network between the two machines. You haven't said what operating system the two machines are running. You should be able to find some tutorials on the internet appropriate for your operating system(s) that you can follow to get your

[JBoss-user] [Installation & Configuration] - java.lang.NoClassDefFoundError: org/jboss/aop/AspectManager

2005-01-10 Thread lfmr
hi iÂm getting this error always when i started the jboss web console, anyone knows how to fix it??? sincereously lfmr View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3861415#3861415 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&

[JBoss-user] [JBossWS] - Re: Complex types in WS4EE.

2005-01-10 Thread osataken
thank you very much thomas, but how about webservices.xml and ws4ee-deployment.xml??? am i doing in the right way??? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3861413#3861413 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: How a Message Driven Bean to handle a JMS Exception

2005-01-10 Thread bbd66
were you able to resolve this problem? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3861423#3861423 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3861423 --- The SF

[JBoss-user] [JCA/JBoss] - datasource and standardjbosscmp-jdbc.xml problem

2005-01-10 Thread vvangara
Hello all, I am using Jboss 4.0 with PostgreSQL 7.4.5. I have 3 databases, clientDB, TransactionDB and the ParsingDB in PostgreSQL. so i have created "postgres-ds.xml" and placed /server/default/deploy/ directory. the contents of this file are, ClientDBDS jdbc:postgresql://10.200

[JBoss-user] [Clustering/JBoss] - cluster farm undeploy deploy sometimes successfull sometimes

2005-01-10 Thread roy2118
Hi using all configuration 2 nodes performing undeploy + deploy to all/farm directory of first jboss, I look at the log of the other jboss and i see undeploy, but i didnt see deploy relevant logsand then... performing another couple of times undeploy and deploy (manually deleting and copyi

[JBoss-user] [EJB/JBoss] - Re: what I have to do after that?

2005-01-10 Thread HariV
This should be enough. What is the error you are getting? Since you copied the files under the default instance; I guess you are running the default instance. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3861408#3861408 Reply to the post : http://www.jboss.

[JBoss-user] [Management, JMX/JBoss] - Web-console giving OutOfMemery exception when loading applet

2005-01-10 Thread tawbrey
Anyone else getting this problem when trying to use the web console? Happens with IE & Firefox and jre 1.4.2_06. Is there some settings somewhere that need tweaked for this to work? thanks, Tony View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3861416#3861416

[JBoss-user] [Beginners Corner] - Re: JBoss 4.0.1 : config and properties files not found anym

2005-01-10 Thread [EMAIL PROTECTED]
When I say copy/paste the code, please don't paste the whole Java source code. Just the snippet where you deal with the config/properties files. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3861414#3861414 Reply to the post : http://www.jboss.org/index.htm

[JBoss-user] [Beginners Corner] - Re: JBoss 4.0.1 : config and properties files not found anym

2005-01-10 Thread [EMAIL PROTECTED]
Try putting your properties/config file at the same level as the class files are (I mean try placing the xml/props file inside abc package). Also copy paste the code that reads the config files. Then we can understand as to what you are doing and what may be wrong. View the original post :

[JBoss-user] [JCA/JBoss] - Re: Jboss 4.01 - Configure Pool Connection for MSSQL 2000

2005-01-10 Thread konrad1980
I confugre pollconnection mssql-service.xml: sqlserverNoTxDS jdbc:microsoft:sqlserver://ser

[JBoss-user] [JCA/JBoss] - bug in chapter 7 (jboss4guide.zip)

2005-01-10 Thread vonarxma
Hi There is probably a bug in the jboss-ds_1_5.dtd (http://www.jboss.org/j2ee/dtd/jboss-ds_1_5.dtd). This is the reason for the following exeption while deploying the example in chapter 7 (new version for jboss 4.0): 2005-01-10 10:38:15,073 ERROR [org.jboss.deployment.MainDeployer] Could not

[JBoss-user] [Beginners Corner] - Re: JBoss 4.0.1 : config and properties files not found anym

2005-01-10 Thread thunder
Hi Frito, First thanks for your time to reply. Perhaps my entry wasn't clear on it, but we construct our ear files like they are supposed (?) to be. | myear.ear | - myjar.jar (ejb) | - mywar.war (webapp) | - application.xml | | mywar.war | - ourwebsources | - WEB-INF |

[JBoss-user] [EJB/JBoss] - Re: pool of connections

2005-01-10 Thread HariV
In 3.2.5 the format for specifying the datasource is different. The following is a xml file for connecting to MS SQL Server 2000 with a pool for 100 connections. This file should be under your server deploy directory. varsdb com.inet.tds.TdsDriver tnadmin tnadmin 300

[JBoss-user] [Beginners Corner] - Re: JBoss 4.0.1 : config and properties files not found anym

2005-01-10 Thread Frito
The ear should not contain plain resources. Just put them into a jar. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3861407#3861407 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3861407 ---

[JBoss-user] [JBoss Getting Started Documentation] - bug in chapter 7

2005-01-10 Thread vonarxma
http://www.jboss.org/index.html?module=bb&op=viewtopic&t=58583 View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3861401#3861401 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3861401 --

[JBoss-user] [Installation & Configuration] - How to integrate Jboss4.0 with Jbuilder ( 8 or later version

2005-01-10 Thread anu_katta
Hi All, Can anybody know are there any tools available to configure Jbuilder to start Jboss 4.0 in a debug mode inside the Jbuilder. Any help is appreciated. Thanks in advance.. --Anu. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3861399#3861399 Reply to th

[JBoss-user] [Installation & Configuration] - Re: getting errors with multiple vhosts in jboss-web.xml

2005-01-10 Thread LORDs_diakonos
DOes anybody know how to fix this? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3861398#3861398 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3861398 --- The SF.Net

[JBoss-user] [EJB/JBoss] - what I have to do after that?

2005-01-10 Thread repkin
1- I have copied "mysql-connector-java-3.0.16-ga-bin.jar" file under the C:\jboss-4.0.0\server\default\lib 2- I have created "mysql-ds.xml" file under the "C:\jboss-4.0.0\server\default\deploy" 3- this xml file includes these codes: jspNedirMysql jdbc:mysql://localhost:3306/jspNedir c

[JBoss-user] [Beginners Corner] - Beginners book on J2EE

2005-01-10 Thread Osiris
Hello, I'm looking for a book to learn J2EE. I have some experience with the Zope application server and PHP programming. The book should describe all steps to build a web application (including basic server configuration and deployment). It should focus on an application server which is free and r

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: DefaultJMSProvider not bound

2005-01-10 Thread chenna1978
Thanks for all ur response. I am able to deploy MDB and run after I re-install Jboss-3.2.1 Thanks. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3861391#3861391 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3861391

[JBoss-user] [EJB/JBoss] - Re: DefaultJMSProvider not bound

2005-01-10 Thread chenna1978
Thanks for all ur response. I am able to deploy MDB and run after I re-install Jboss-3.2.1 Thanks. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3861389#3861389 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3861389

[JBoss-user] [Installation & Configuration] - jboss and pja on a system without X11

2005-01-10 Thread tthiele
I'm getting the error "Toolkit not found: com.eteks.Toolkit" using jboss 3.2.6 and pja-2.5.jar The property awt.toolkit=com.eteks.Toolkit is set properly. I tried to put jpa-2.5.jar in j2sdk14/jre/lib jboss326/server/default/lib .../WEB-INF/lib without success. Did anyone cope with this problem

[JBoss-user] [Management, JMX/JBoss] - depend on jms connection factory does not work

2005-01-10 Thread jieshengz
I have a Mbean which registers itself as a queue listener at start up. There fore, it depends on JMS service. I have one line my jboss-service.xml | jboss.mq:name=JMSProvider,service=JMSProviderLoader | However, in the bean start up method, when I try to look up the the like this | Conte

[JBoss-user] [Installation & Configuration] - missing javax.servlet.jar in 3.2.6

2005-01-10 Thread malinims
hello all, i am trying to use duke's application with jboss.it works fine with jboos 4.0&3.2.3. But with 3.25 and 3.2.6 i have a prob.In build.properties it refers servlet.jar.i used to link it to java.servlet.jar.But this seems to be missing in 3.2.5 and 3.2.6.Is there any other equivalent jar

[JBoss-user] [Persistence & CMP/JBoss] - Re: Possible problem with batch-cascade-delete in 4.0.1

2005-01-10 Thread hirowla
The violation is actually in the 1st table (the field cannot be null) but the field is a foreign key into the 3rd table. Does that answer your question? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3861385#3861385 Reply to the post : http://www.jboss.org/i

[JBoss-user] [JCA/JBoss] - Re: problems deploying Tangosol JCA-Adapter with JBOSS 4

2005-01-10 Thread seanblood
thanks View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3861382#3861382 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3861382 --- The SF.Net email is sponsored by: Beat

[JBoss-user] [Beginners Corner] - JBoss 4.0.1 : config and properties files not found anymore

2005-01-10 Thread thunder
We are planning to upgrade our current JBoss 3.2.3 servers to JBoss 4.0.1 but if we deploy JBoss 3.2.3 ear files, the applications cannot find their properties and config files any more that are just sitting on the root of the application. Example structure : | -com | ---abc | --d

[JBoss-user] [JBoss Getting Started Documentation] - Re: Where is org.jboss.util.ChapterExRepository [JBoss Admin

2005-01-10 Thread hazarinaveen
Yes i got it View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3861379#3861379 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3861379 --- The SF.Net email is sponsored by

[JBoss-user] [EJB/JBoss] - how can I add mysql jdbc driver to ejb?

2005-01-10 Thread repkin
it is giving this error: "java.lang.ClassNotFoundException: No ClassLoaders found for: com.mysql.jdbc.Driver" How can I add myqsl jdbc driver to my ejb project? I am using myeclipse. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3861381#3861381 Reply to the

[JBoss-user] Error instantiating servlet class org.apache.jasper.servlet.JspServlet

2005-01-10 Thread David Zejda
On startup or as I try to deploy the tomcat service, the exceptions "error instantiating JspServlet" caused by "class not found" are thrown. JBoss v4.0.1RC1, default config, JDK 1.5.0_01, Debian woody Please, have You (JBoss gurus) any ideas, that could lead me (JBoss greenhorn yet) to find the

[JBoss-user] [Persistence & CMP/JBoss] - Re: Possible problem with batch-cascade-delete in 4.0.1

2005-01-10 Thread [EMAIL PROTECTED]
Ok, still, does the 3rd one contain a non-null foreign key? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3861377#3861377 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3861377 -

[JBoss-user] [Advanced Documentation] - Re: Docs for 4.0

2005-01-10 Thread jlamain
Hello, When I subscribed for the annual documentation I got nice pdf's. Will there be a printable pdf for the 4.0 book ? Best regards, Jeroen View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3861378#3861378 Reply to the post : http://www.jboss.org/index.html?

[JBoss-user] [Persistence & CMP/JBoss] - Bidirectional Self-realtionship : Is it possible?

2005-01-10 Thread mandarkul
Hi I am having an Entity Bean "TestCategories". I want to have a bidirectional self-relationship for my entity bean. So Ideally my entity bean will be something like public abstract class QuestionCategoriesBean implements EntityBean { public

[JBoss-user] [JBossWS] - Re: Problem with EJB Web service Client

2005-01-10 Thread gayathiri
Hi, i m using jboss-4.0.1RC2.i have given axis-ws4ee.jar in my classpath. but still i m getting this exception 2005-01-10 13:37:46,033 WARN org.jboss.xml.binding.Unmarshaller[main] - SAX feature not recognized: http://apache.org/xml/features/validation/schema | 2005-01-10 13:37:46,035 WARN org

[JBoss-user] [Javassist user questions] - Re: New problem with the 3.0 version of javassist !

2005-01-10 Thread mlefebvre
Oops... Sorry. I made an horrible mistake As I was writing on disk the generated class for debug, this one was in the classpath and was loaded by default in the system classloader on each runtime View the original post : http://www.jboss.org/index.html?module=bb&op=viewto

[JBoss-user] [EJB/JBoss] - Re: Stateful Session bean and java.sql.Connection problem

2005-01-10 Thread ter_d
The reply at the beginning of this page is not the one I post one Friday. I would like to know where it is And who wrote in my name with no permission! View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3861371#3861371 Reply to the post : http://www.jboss.org

[JBoss-user] [Clustering/JBoss] - Re: cluster jmx-console not updated in different nodes

2005-01-10 Thread dannyb23
does this means that if i update an mbeans attribute through jmx-console / twiddle i should update it in all my clustered nodes? (assuming i want this attribute to be the same in all nodes...) Thanks... View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3861370#3