[JBoss-user] [Installation & Configuration] - how to config mysql datasource?

2004-04-24 Thread kalfen
when I config jboss mysql datasource, the autocommit always set to "true", how can I set the autocommit to "false", through which configuration file. I don't willing to set it within program. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3832259#3832259 Repl

[JBoss-user] [Nukes User] - VirtualHosting for Nukes?

2004-04-24 Thread Melroy
Hi, I would like to be able to virtual-host nukes: I already have a JBoss-application virtual-hosted on the root context of my virtual-host: www.name.com.au with a jboss-web.xml with content: http://www.jboss.org/j2ee/dtds/jboss-web_3_0.dtd";> / www.name.com.au Now I wish to

[JBoss-user] [J2EE Compliance] - Has JBoss implemented JSR88?

2004-04-24 Thread jxtang
Plus, will JBoss plan to implement it? Thanks! View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3832255#3832255 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3832255 -

[JBoss-user] [Beginners Corner] - Re: Problem deploying WAR in JBoss 3.2.3

2004-04-24 Thread jonlee
It seems like some class didn't unload properly from the JVM. This tends to happen a lot with Struts but it also happens with anything that the JVM understands to be still in use - that is; an active instance of the class remains in use in the JVM. For your issue, you might be able to get around

[JBoss-user] [Installation & Configuration] - Re: Deploy Order - how?

2004-04-24 Thread hoos
Khaled, I'm glad you got it working, my EAR is still bombing out. Are you deploying your EJBs and JMX beans in an EAR file or seperately? Hoos View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3832252#3832252 Reply to the post : http://www.jboss.org/index.html

[JBoss-user] [Beginners Corner] - Problem deploying WAR in JBoss 3.2.3

2004-04-24 Thread adam1970
Hello and help! I run in this problem during the deployment of a Struts WAR in JBoss 3.2.3. First deployment OK, everything running fine, done a code change in an Action class, redeploying, everything running fine again, only the result is the same as before the code change. Since then I have r

[JBoss-user] [EJB/JBoss] - Re: CMR relation tables (further to a post by Sesque)

2004-04-24 Thread sesques
Hi again, CMR relation tables are many to many relationships as described in the spec. This means defining both CMR fields (for each entity bean) as Collections, and of course the multiplicity as many. The mapping to the database is quite specific to each application server. For JBoss, all the m

[JBoss-user] [EJB/JBoss] - CMR relation tables (further to a post by Sesque)

2004-04-24 Thread balteo
Hello, Further to a post by Sesque that can be found here: http://jboss.org/index.html?module=bb&op=viewtopic&t=48933I would be grateful if someone could tell me where to find more documentation about the CMR relation tables mentionned by Sesque. I was not able to find anything in the ejb spec. T

[JBoss-user] [Installation & Configuration] - can't get mbean to work across ears

2004-04-24 Thread btarbox
I have an ear that depends on another ear. I create a dependency on a service that starts from the second ear. Sometimes, the dependency works and sometimes it doesn't; i.e. the start order of the two ears seems to be random. Here is my jboss-service.xml bmcs:service=BmcsService

[JBoss-user] [JCA/JBoss] - MySql and XA datasource

2004-04-24 Thread gorano
I'm using JBoss 3.2.4, Mysql 4.0.17 and mysql-connector 3.0.10. I have a couple of distributed transactions between different schemas and I want to set up proper XA support. I know this is not supported in MySql, but there is a way of using some kind of XA wrapper to sort the problem, isn't it?

[JBoss-user] [EJB/JBoss] - Beginner needs help with modelisation issue

2004-04-24 Thread balteo
Sesques, Thanks a lot for your lengthy reply! Julien. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3832241#3832241 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3832241 -

[JBoss-user] [Installation & Configuration] - Re: Configuring Servlets

2004-04-24 Thread raja05
Can you try post the section of code u are modifying? Is this in ur web.xml ? If you are modifying something in the tmp directory of ur config, e.g. /server/default/tmp//xxx.war Then jboss will rewrite it everytime the server starts. There shudnt be a overwrite otherwise. View the original

[JBoss-user] [Installation & Configuration] - Re: Deploy Order - how?

2004-04-24 Thread raja05
The order does not matter(whether you put the code first or the name first in the mbean tag). The original problem u had was with the jboss:j2ee instead of jboss.j2ee, Lookup the http://localhost:8080/jmx-console to see how the object names are defined. They are of the format domain:serviceName

[JBoss-user] [The Lizzard's corner] - Re: Why 3.2.3? Differences between 2.4.9 and 3.2.3.

2004-04-24 Thread jonlee
If nothing else, the advantage is EJB 2.0 and EJB-QL over EJB 1.1, particularly with entity bean development. At least, I think this is still the case as it has been a long time since I've used 2.4.x. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3832238#3832

[JBoss-user] [Beginners Corner] - Re: I am new to JBOSS and ejbs, is there a tutorial i can fo

2004-04-24 Thread nrichards
Try the getting started guide: http://www.jboss.org/docs/index#free-32x View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3832237#3832237 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3832237

[JBoss-user] [Nukes User] - Re: UserEJB not found for relation

2004-04-24 Thread aristoi
Thank you, that worked. :-) View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3832235#3832235 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3832235 --- This SF.net email

[JBoss-user] [Beginners Corner] - I am new to JBOSS and ejbs, is there a tutorial i can follow

2004-04-24 Thread kinkin
I am new to JBOSS and ejbs, i've already startup JBoss, is there a tutorial i can follow to deploy EJB's in jboss... Is there any example to let me to try the deployment View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3832234#3832234 Reply to the post : http:/

[JBoss-user] [EJB/JBoss] - Re: Beginner needs help with modelisation issue

2004-04-24 Thread sesques
Hi Julien, My suggested Approach: 1. First of all decide do you require EJB or not? if yes then.. You have 3 options for data access in j2ee. 1. CMP 2. BMP 3. Pure JDBC calls. CMP: CMP entity beans can span only a single database table. With the introduction of the EJB 2.0 standard, you c

[JBoss-user] [EJB/JBoss] - Beginner needs help with modelisation issue

2004-04-24 Thread balteo
Hello, I have four tables in a relational database. *First table, called "establishments", contains two fiels "db_establishment_id" and "db_establishment_name". Here is a sample: | db_establishment_id(pk) db_establishment_name | - | 1

[JBoss-user] [Performance Tuning] - Re: JBoss 3.2.3 Vs Weblogic 8.1 SP2

2004-04-24 Thread Sacha Labourey
So, what is the feedback on that yohanfer? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3832230#3832230 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3832230 --- Th

[JBoss-user] [Clustering/JBoss] - Re: jboss clustering test

2004-04-24 Thread Sacha Labourey
... and which version of JBoss... View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3832229#3832229 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3832229 --- This SF.net

[JBoss-user] [Clustering/JBoss] - Re: jboss clustering test

2004-04-24 Thread Sacha Labourey
What are you trying to achieve? how many nodes? are the web and EJB layers deployed in the same JVM or not? are you trying to load-balance HTTP requests or EJB invocations? which jboss config are you using? default/all? how is your jboss.xml (your first post is not complete), etc. View the orig

[JBoss-user] [Security & JAAS/JBoss] - Re: LoginContext for Servlet

2004-04-24 Thread spiritualmechanic
Make sure you secure your servlet and that you are logging in. If your servlet isn't secured, a null Subject is passed on to the EJB layer. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3832227#3832227 Reply to the post : http://www.jboss.org/index.html?modu

[JBoss-user] [HTTPD, Servlets & JSP] - Re: Start Page

2004-04-24 Thread Strupniveral
Thanks! View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3832226#3832226 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3832226 --- This SF.net email is sponsored by: Th

[JBoss-user] [Installation & Configuration] - Configuring Servlets

2004-04-24 Thread umajava
Hello, I tried to Modify web.xml file and uncomment the lines for "invoker" servlet. I saved the file and restarted the JBoss. But JBoss remodified the file that I saved to the original state and hence prevent me from using the Servlets. How can I uncomment the invoker servlet? Thanks Uma View

[JBoss-user] [Security & JAAS/JBoss] - LoginContext for Servlet

2004-04-24 Thread martin.weidig
When I try to use a secure bean with this method in a servlet a javax.servlet.ServletException: EJBException:; nested exception is: javax.ejb.EJBException: checkSecurityAssociation; CausedByException is: Authentication exception, principal=null was thrown. public void doGet(HttpServletRequest req

[JBoss-user] [HTTPD, Servlets & JSP] - Re: Why are the session objects lost?

2004-04-24 Thread umajava
I too am having the same problem with Tomcat 5.0.19. The application worked well for the past few days and it stopped working suddenly. Now what happens is when the user logs in for the first time, the session is destroyed and the user is sent back to the Login page. If the user logs in with the

[JBoss-user] [HTTPD, Servlets & JSP] - Re: Start Page

2004-04-24 Thread sesques
Adds | | |jsp.war |/ | | | in your application.xml View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=383#383 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=383 -

[JBoss-user] [Beginners Corner] - username and password for "XDB" at localhost problem

2004-04-24 Thread slapbass
Hi. I have installed my jboss3.2.3 and deployed duke's bank application. When I wanted to check if it works dialog with two inputs : username and password appeared. I don't know about what jboss asked me. I have searched all files in jboss directories and I didn't find any username or password

[JBoss-user] [Beginners Corner] - Re: Question about default deployment directory name

2004-04-24 Thread raja05
Yes, you can specify multiple deployment directories. Lookup the jboss-service.xml in ur conf directory and look for URLDeploymentScanner at the end. There is an attribute where you can specify all ur deployment directories(comma separated list IIRC) View the original post : http://www.jboss.or

[JBoss-user] [Security & JAAS/JBoss] - Re: CustumLoginModule

2004-04-24 Thread sanjuthomas
i have cleared that problem, but now i am getting some other exception in the server if you know something about this please help me .. exception in server console 13:15:20,544 INFO [OptiwiseServerLoginModule] FIRST LINE OF getRoleSets() 13:15:20,564 INFO [OptiwiseServerLoginModule] (getRoleS