[JBoss-user] [EJB/JBoss] - Re: JBoss 3.2.2 to JBoss 4.0 DR4 now calls ejbStore ?? ignor

2004-05-31 Thread loubyansky
Yes, isModified was lost. It is fixed now.
By the spec ejbStore must always be called at the end of the transaction even on clean 
instances.
For CMP there is  element in the jboss.xml. Set it to false 
to avoid ejbStore invocations on clean instances.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3837026#3837026

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3837026



---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Re: Syntax Error in jboss.xml???

2004-05-31 Thread hbothmer
Adrian, 

thanks for your answer. But it is not that easy.  The ejb-jar.xml does have the 
ressource-env-ref. See first few lines of ejb-jar.xml are:



http://java.sun.com/dtd/ejb-jar_2_0.dtd";>



   
   Generated by XDoclet

   

  
  
 
 AuftragsverwaltungsFassade

 AuftragsverwaltungsFassade

 de.dbh.codis.auftrag.ejb.AuftragsverwaltungsFassadeRemoteHome
 de.dbh.codis.auftrag.ejb.AuftragsverwaltungsFassadeRemote
 
de.dbh.codis.auftrag.ejb.AuftragsverwaltungsFassadeLocalHome
 de.dbh.codis.auftrag.ejb.AuftragsverwaltungsFassadeLocal
 de.dbh.codis.auftrag.ejb.AuftragsverwaltungsFassadeBean
 Stateless
 Container

 
jdbc/CodisDatasource
javax.sql.Datasource
Container
 

  


And to make things worse: When I delete the ressource-env-ref in jboss.xml I still get 
the error message (950 ERROR [XmlFileLoader] failed to load jboss.xml. There could be 
a syntax error. ).

It must be something else I guess.

Holger

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3837025#3837025

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3837025



---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Security & JAAS/JBoss] - Re: cannot get multiple realms to work with 3.2 (works well

2004-05-31 Thread Eelco69
In addition: I don't get any errors, just my page won't show the right things because 
the principal is null..

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3837024#3837024

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3837024



---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Security & JAAS/JBoss] - Re: cannot get multiple realms to work with 3.2 (works well

2004-05-31 Thread Eelco69
okay,

We host four websites in different realms, which all do a DatabaseLoginModule login. I 
have configured 4 datasources, which all use a different schema within the same oracle 
9.2 instance. 

In JBoss 3.07 production, this works perfectly. In the 3.2 version, I do not get any 
errors, only the first realm to login 'wins', and the others won't be able to login 
anymore. 

I was kind of hoping that configuration has changed with the new version. I know 
datasource configuration has changed, does it have anything to do with the JNDI 
bindings? In the former version, I had to configure in the datasource file the mbean 
ManagedConnectionPooleach time a different "name" for it to work. 


  
  

In every datasource-service.xml, i have to change the name=OracleDS to a different 
name (DS1, DS2 etc). 

In the new oracle-ds.xml, that is not possible anymore, so I figure it is not 
necessary either. Or am I wrong, hopefully!!!

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3837023#3837023

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3837023



---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [HTTPD, Servlets & JSP] - JBoss and UTF Character encoding

2004-05-31 Thread Dargrim
Hi,

First, sorry for my english. It is not very good.

I build simple application who send  string with Polish characters from HTML to 
another jsp page and display it.
I use "get" method to send this string.
and I recive what's like that   "ąęśćżółń" 

Bellow i put code of my simple application.

  | index.jsp 
  | ---
  | <%@ page language="java" pageEncoding="UTF-8" %>
  | 
  | 
  | 
  | 
  | 
  | Polish Character Encoding Test: 
ąćęłńóśźż
  | 
  | 
  | 
  | Polish string  
  | 
  | 
  | 
  | 
  | 
  | ---
  | rec.jsp
  | ---
  | <%@ page language="java" pageEncoding="UTF-8" %>
  | 
  | 
  | 
  | 
  | 
  | Polish Character Encding Test: 
ĄĆĘŁŃÓŚŹŻ
  | 
  | 
  | 
  | I recive from index.jsp folowing string: "<%= 
request.getParameter("test") %>" 
  | 
  | 
  | 
  | 
  | --
  | Main.java
  | --
  | import java.io.*;
  | import javax.servlet.*;
  | import javax.servlet.http.*;
  | 
  | public class Main extends HttpServlet {
  | 
  | protected void doGet(
  | HttpServletRequest request,
  | HttpServletResponse response)
  | throws ServletException, IOException {
  | 
  | RequestDispatcher disp = 
request.getRequestDispatcher("rec.jsp");
  | disp.forward(request,response);
  | 
  | }
  | 
  | protected void doPost(
  | HttpServletRequest request,
  | HttpServletResponse response)
  | throws ServletException, IOException {
  | 
  | doGet(request,response);
  | }
  | }
  | 
  | 

All files are encoded in UTF-8.
If I send string vi "post" method all characters are displayed ok.
If I change "forward" method of RequestDispatcher to "include"  method string is 
displayed ok but all polish characters on page are displayed perhaps in ISO-8859-1 
encoding.

I need your help. What I do wrong?

Piotr Brandys-Buczek

My e-mail: [EMAIL PROTECTED]

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3837022#3837022

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3837022



---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g.
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id149&alloc_id?66&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Persistence & CMP/JBoss] - Re: Mapping Entity Beans to Database Tables

2004-05-31 Thread abcolson
Hi ironbird,

Here's the latest...

anonymous wrote : You think that the error is for your questions bean. I think the 
error is for your QuestionCategory bean. 
  | Try to activate cmp plugin traces to see the generated SQL in jboss log file. 

The reason I think this is that I am not instantiating a QuestionCategory bean 
anyplace and I am only instantiating a Question bean once in a test servlet.  When I 
go to that servlet (and after turning on log4j tracing) I get

2004-05-31 22:35:09,054 TRACE [org.jboss.ejb.plugins.LRUEnterpriseContextCachePolicy] 
Resized cache for bean QuestionCategory: old capacity = 100, new capacity = 50
  | 2004-05-31 22:35:10,095 TRACE [org.jboss.system.Registry] lookup 
1524151178=jboss.j2ee:jndiName=ejb/tutorial/Fibo,service=EJB
  | 2004-05-31 22:35:10,095 TRACE [org.jboss.ejb.plugins.LogInterceptor] Start 
method=create
  | 2004-05-31 22:35:10,095 TRACE [org.jboss.ejb.plugins.TxInterceptorCMT] Current 
transaction in MI is null
  | 2004-05-31 22:35:10,095 TRACE [org.jboss.ejb.plugins.TxInterceptorCMT] TX_REQUIRED 
for create
  | 2004-05-31 22:35:10,095 TRACE [org.jboss.ejb.plugins.TxInterceptorCMT] Thread came 
in with tx null
  | 2004-05-31 22:35:10,095 TRACE [org.jboss.ejb.plugins.TxInterceptorCMT] Starting 
new tx TransactionImpl:XidImpl [FormatId=257, GlobalId=pegasus//5, BranchQual=]
  | 2004-05-31 22:35:10,095 TRACE [org.jboss.ejb.plugins.TxInterceptorCMT] 
TxInterceptorCMT: In finally
  | 2004-05-31 22:35:10,095 TRACE [org.jboss.ejb.plugins.LogInterceptor] End 
method=create
  | 2004-05-31 22:35:10,095 TRACE [org.jboss.system.Registry] lookup 
102234528=jboss.j2ee:jndiName=ejb/tutorial/Question,service=EJB
  | 2004-05-31 22:35:10,095 TRACE [org.jboss.ejb.plugins.LogInterceptor] Start 
method=findByPrimaryKey
  | 2004-05-31 22:35:10,095 TRACE [org.jboss.ejb.plugins.TxInterceptorCMT] Current 
transaction in MI is null
  | 2004-05-31 22:35:10,095 TRACE [org.jboss.ejb.plugins.TxInterceptorCMT] TX_REQUIRED 
for findByPrimaryKey
  | 2004-05-31 22:35:10,095 TRACE [org.jboss.ejb.plugins.TxInterceptorCMT] Thread came 
in with tx null
  | 2004-05-31 22:35:10,095 TRACE [org.jboss.ejb.plugins.TxInterceptorCMT] Starting 
new tx TransactionImpl:XidImpl [FormatId=257, GlobalId=pegasus//7, BranchQual=]
  | 2004-05-31 22:35:10,105 TRACE [org.jboss.ejb.plugins.EntityInstancePool] Get 
instance [EMAIL PROTECTED] tutorial.ejb.QuestionBean
  | 2004-05-31 22:35:10,105 DEBUG 
[org.jboss.ejb.plugins.cmp.jdbc.JDBCFindByPrimaryKeyQuery.Question#findByPrimaryKey] 
Executing SQL: SELECT id FROM question WHERE id=?
  | 2004-05-31 22:35:10,105 TRACE 
[org.jboss.ejb.plugins.cmp.jdbc.JDBCFindByPrimaryKeyQuery.Question#findByPrimaryKey] 
Set parameter: index=1, jdbcType=BIGINT, value=1
  | 2004-05-31 22:35:10,105 DEBUG 
[org.jboss.ejb.plugins.cmp.jdbc.JDBCFindByPrimaryKeyQuery.Question#findByPrimaryKey] 
Find failed
  | java.sql.SQLException: ERROR:  Relation "question" does not exist

which is what I expected: a PreparedStatement with one parameter.

BTW, when I did a grep SELECT server.log I got the following:

  SELECT_ALL_UNCOMMITED_TXS = SELECT TXID FROM JMS_TRANSACTIONS
  |   SELECT_MAX_TX = SELECT MAX(TXID) FROM JMS_MESSAGES
  |   SELECT_MESSAGES_IN_DEST = SELECT MESSAGEID, ESSAGEBLOB FROM JMS_MESSAGES 
WHERE DESTINATION=?
  |   SELECT_MESSAGE = SELECT MESSAGEID, MESSAGEBLOB FROM JMS_MESSAGES WHERE 
MESSAGEID=? AND DESTINATION=?
  |   DELETE_MARKED_MESSAGES_WITH_TX = DELETE FROM JMS_MESSAGES WHERE TXID IN 
(SELECT TXID FROM  JMS_TRANSACTIONS) AND TXOP=? 2004-05-31 22:22:21,180 DEBUG 
[org.jboss.ejb.plugins.cmp.jdbc.JDBCCreateEntityCommand.QuestionCategory] Entity 
Exists SQL: SELECT COUNT(*) FROM questioncategory WHERE id=?
  | 2004-05-31 22:22:21,320 DEBUG 
[org.jboss.ejb.plugins.cmp.jdbc.JDBCFindByPrimaryKeyQuery.QuestionCategory#findByPrimaryKey]
 SQL: SELECT id FROM questioncategory WHERE id=?
  | 2004-05-31 22:22:21,340 DEBUG 
[org.jboss.ejb.plugins.cmp.jdbc.JDBCCreateEntityCommand.Question] Entity Exists SQL: 
SELECT COUNT(*) FROM question WHERE id=?
  | 2004-05-31 22:22:21,380 DEBUG 
[org.jboss.ejb.plugins.cmp.jdbc.JDBCFindByPrimaryKeyQuery.Question#findByPrimaryKey] 
SQL: SELECT id FROM question WHERE id=?
  | 2004-05-31 22:22:55,379 DEBUG 
[org.jboss.ejb.plugins.cmp.jdbc.JDBCFindByPrimaryKeyQuery.Question#findByPrimaryKey] 
Executing SQL: SELECT id FROM question WHERE id=?

So maybe some of these other sql statements are causing the problem.

anonymous wrote : No, the EJB spec from SUN says that the where clause in EJB-QL must 
refers to the abstract schema name of your bean, which is QuestionCategory, not 
QuestionCategoryBean. So your EJB-QL should be 
  | Code: 
  | 
  | SELECT OBJECT(qcb) FROM QuestionCategory qcb WHERE qcb.id = ?1

Well, then there may be two bugs with JBoss 3.2.3:

Bug #1 Non Recognition Of 

When I tested without my re-definition of findByPrimaryKey(), 
I changed Question descriptor in ejb-jar.xml to
  
  |  
  |  Q

[JBoss-user] [Beginners Corner] - deployment success with JBoss3.2.1 but not with JBoss3.2.3

2004-05-31 Thread Saroj
Hi,
Iam using  Linux7.3 - Jboss3.2.1 - NetBeansIDE3.6

I can able to deploy EJB applications with JBoss3.2.1 but deployment failure with 
JBoss3.2.3
Anything is to be incliuded..Pls help me.

Regards,
Saroj



View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3837018#3837018

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3837018



---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Getting Started Documentation] - Problem with Downloading and installation

2004-05-31 Thread UshaDevi
Hi,
 I downloaded JBoss-3.2.3.zip using Belgium-Europe mirror(i don't know why i 
should choose this mirror to download? as well as i don't know which mirror to 
choose?) After downloading it i extracted the zip file which gave me lot of 
html,jar,xml and so many files. but when i go thru the tutorial it stated that 
Jboss-3.2.3 will contain 4 directories(bin,lib,etc) which i could not find in the 
files i downloaded. what should i do to install jboss in my system? can anyone help me 
soon as i'm in an urge to start my project using this.

Thanks.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3837017#3837017

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3837017



---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation & Configuration] - Re: Can jboss run on Itanium processor

2004-05-31 Thread mbandt
"hbaxmann" wrote : Have it up and running here on a AMD64 with RedHat EL 3.0 if 
somebody is interested in the test results, ask.
  | 
  | 
  | bax
  | PS: Does not know what windows is nor Itanium ;-)

I'm interested. I was wondering if there was significant postive or negative affect on 
performance. We're considering an investment in new hardware and are struggling to 
decide to go middle of the road on Xeon's or opt for Opterons.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3837016#3837016

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3837016



---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Re: CORBA Call back Client and Session beans

2004-05-31 Thread vashistvishal
Just a  suggestion on yr scenario, if you dont want to use CORBA to talk to bean then 
use GSOAP for C/C++ cleint to talk to  Stateless Session Bean.

Vishal




View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3837015#3837015

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3837015



---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Nukes User] - Re: How can I control multiple nuke sites?

2004-05-31 Thread cooper
this should be done with "run -b xxx.xxx.xxx.xxx" to launch jboss on a particular 
network inteface. this way you can start multiple jboss one per nic

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3837013#3837013

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3837013



---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Persistence & CMP/JBoss] - Re: column

2004-05-31 Thread pockey
Hi

Thanks you very much for your help.

The problem is solved. Now it does not show the error message.
The solution that I took was 

1. to take out  

public abstract String getCompanyID()
public abstract void setCompanyID(String companyID).

because of the conflict between CMP-fiend and CMR-field like Millerm1 suggested. 

2. I changed the name of the method

anonymous wrote : 
  | public abstract CompanyLocal getCompany()
  | public abstract void setCompany(CompanyLocal companyLocal);
  | 
to 
anonymous wrote : 
  | public abstract CompanyLocal getCompanyID()
  | public abstract void setCompanyID(CompanyLocal companyLocal);
  | 
Without changing the name from "Company" to "CompanyID", I received an error message 
that "company" table does not exist.

3. Set the companyID from ejbPostCreate()


  | public void ejbPostCreate(CompanyLocal company, UserGroupValue userGroupValue) 
throws CreateException {
  | setCompanyID(company);
  | }
  | 
It looks like specifying  

anonymous wrote : 
  |  * @jboss.relationfk-constraint="true"
  |  * related-pk-field="companyID"
  |  * fk-column="companyID"
  | 

is not enough to tell JBOSS that companyID is the foreign key column.

I still don't understand why I need to change, in this case,

anonymous wrote : 
  | public abstract CompanyLocal getCompany()
  | 
to 
anonymous wrote : 
  | public abstract CompanyLocal getCompanyID()
  | 

when XDOCLET is specify the foreign key column already.

I looked at some sample codes. The names of their set and get methods of CMR do not 
match the name of the foreign key columns. But in my case, I need to make it matched.
 



View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3837012#3837012

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3837012



---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Performance Tuning] - Re: 200% performance increase with remote debugging on.

2004-05-31 Thread treespace
With all of that IO going on even one CPU would be snoozing most of the time unless 
there are several threads polling something-or-other. Might be worth your while to 
pinpoint those bottlenecks and come back and revisit the wacky debug behavior later.  
If there was anyway to circumvent JMS and queue in the application that could also be 
very telling. Good luck with your efforts. 

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3837011#3837011

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3837011



---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Performance Tuning] - Re: 200% performance increase with remote debugging on.

2004-05-31 Thread [EMAIL PROTECTED]
You mean this?

http://cvs.sourceforge.net/viewcvs.py/jboss/jbossmq/src/main/org/jboss/mq/server/MessageCache.java?only_with_tag=JBoss_3_2_3

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3837010#3837010

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3837010



---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JCA/JBoss] - Re: Connection errors using Connector/J 3.0.13 with JBoss/My

2004-05-31 Thread [EMAIL PROTECTED]
You missed the adjectives repeated and incomplete.

Read "READ THIS FIRST" or the FAQ in the JBossMQ forum if you are
in any doubt about my attitude towards lazy users.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3837009#3837009

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3837009



---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JCA/JBoss] - Re: Connection errors using Connector/J 3.0.13 with JBoss/My

2004-05-31 Thread tbauer
[31 May 1:11pm] Mark Matthews
This is a known issue which was solved in 3.0.14 which was posted the same day
as the release of 3.0.13

BTW, in review of dozens of responses in THIS forum, I'd say I'm not the one with the 
attitude problem...Look at your responses to users who are just asking honest/valid 
questions.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3837005#3837005

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3837005



---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Persistence & CMP/JBoss] - Re: Mapping Entity Beans to Database Tables

2004-05-31 Thread ironbird
anonymous wrote : 
  | I think maybe all the words didn't come through. I am unclear on what exactly you 
suggest removing. 
  | 
You don't need to define the findByPrimarykey finder. The container knows how to 
implement it.

anonymous wrote : 
  | I think this might be a slip in terminology. It appears to be either a PostgresQL 
message or a java message i.e.
  | 
  | BTW, when I create a view called "question" which is simply a "SELECT * FROM 
Questions" the table is mapped but then I get field mapping errors (makes sense if it 
is the same mapping pattern problem) 
  | 

The only term in your code where "question" is referenced is your entity bean name 
(and it has nothing to do with an SQL string) and your table name "Question 
Categories" (which has to do with sql string).
The error log talks about a relation but there is no relation in your descriptor 
snippets. So the error text is useless.

anonymous wrote : 
  | I don't think this is the problem. PostgresQL seems to be case sensitive and 
translates everything you type in a sql statement to lowercase unless you put it in 
quotes. Same goes for spaces. So in PostgresQL, 
  | SELECT * FROM "Question Categories" works fine. 
  | 
I agree with you for the database, but when I try myself on my computer, the container 
don't put the quotes and throws an error.

anonymous wrote : 
  | Do you mean QuestionCategoryBean (upper case B)? 
  | 
No, the EJB spec from SUN says that the where clause in EJB-QL must refers to the 
abstract schema name of your bean, which is QuestionCategory, not 
QuestionCategoryBean. So your EJB-QL should be

  | SELECT OBJECT(qcb) FROM QuestionCategory qcb WHERE qcb.id = ?1
  | 

You think that the error is for your questions bean. I think the error is for your 
QuestionCategory bean.
Try to activate cmp plugin traces to see the generated SQL in jboss log file.
Add 

  | 
  | 
  | 
  | 
in Log4j.xml


View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3837004#3837004

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3837004



---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Re: JBoss 3.2.2 to JBoss 4.0 DR4 now calls ejbStore ?? ignor

2004-05-31 Thread gmatthews
I don't need the container to call isModified(), it's just that 3.2.2 does seem to 
call it, and I wondered why 4.0.0 DR4 now does not.

Is isModified() no longer supported in 4.0.0 ?

Note that I'd also changed my code to how you suggest, but noticed there are a whole 
bunch of chained interceptor calls leading up to the ejbStore -- and that maybe 
(guessing here) previously the container might have been able to call isModified and 
avoid all of that.

I also tried creating a jboss.xml file with read-only methods, but ejbStore is still 
called even after only a single getValue method has been called on the entity bean. 
Are there other conditions that must exist in addition to having a jboss.xml file so 
that ejbStore is not called.


  


  myEntityBean
  

  get*
  true

  


Thanks.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3837003#3837003

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3837003



---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation & Configuration] - Im trying to run jboss on linux.

2004-05-31 Thread kelly_kong03
I downloaded jboss3.2.3. trying to run run.sh under bin folder, but it gave java_home 
related problem, then i modified run.sh to set up java_home and also put jdk into 
/usr/javastill gave me problem...anybody can give me a executable run.sh? thanks 
in advance

the following is the run.sh i modified
#!/bin/sh
### == ###
##  ##
##  JBoss Bootstrap Script  ##
##  ##
### == ###

### $Id: run.sh,v 1.9.2.3 2003/05/02 00:51:17 slaboure Exp $ ###

DIRNAME=`dirname $0`
PROGNAME=`basename $0`
GREP="grep"

# Use the maximum available, or set MAX_FD != -1 to use that
MAX_FD="maximum"

#
# Helper to complain.
#
warn() {
echo "${PROGNAME}: $*"
}

#
# Helper to puke.
#
die() {
warn $*
exit 1
}

# OS specific support (must be 'true' or 'false').
cygwin=false;
darwin=false;
case "`uname`" in
CYGWIN*)
cygwin=true
;;

Darwin*)
darwin=true
;;
esac

# Read an optional running configuration file
if [ "x$RUN_CONF" = "x" ]; then
RUN_CONF="$DIRNAME/run.conf"
fi
if [ -r $RUN_CONF ]; then
. $RUN_CONF
fi

# For Cygwin, ensure paths are in UNIX format before anything is touched
if $cygwin ; then
[ -n "$JBOSS_HOME" ] &&
JBOSS_HOME=`cygpath --unix "$JBOSS_HOME"`
[ -n "$JAVA_HOME" ] &&
JAVA_HOME=`cygpath --unix "$JAVA_HOME"`
[ -n "$JAVAC_JAR" ] &&
JAVAC_JAR=`cygpath --unix "$JAVAC_JAR"`
fi

# Setup JBOSS_HOME
if [ "x$JBOSS_HOME" = "x" ]; then
# get the full path (without any relative bits)
JBOSS_HOME=`cd $DIRNAME/..; pwd`
fi
export JBOSS_HOME

# Setup JAVA_HOME
echo "set up java_home"
# get the full path (without any relative bits)
JAVA_HOME=`cd /usr/java/jdk; pwd`
export JAVA_HOME
echo "java_home" $JAVA_HOME

# Increase the maximum file descriptors if we can
if [ "$cygwin" = "false" ]; then
MAX_FD_LIMIT=`ulimit -H -n`
if [ $? -eq 0 ]; then
if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ]; then
# use the system max
MAX_FD="$MAX_FD_LIMIT"
fi

ulimit -n $MAX_FD
if [ $? -ne 0 ]; then
warn "Could not set maximum file descriptor limit: $MAX_FD"
fi
else
warn "Could not query system maximum file descriptor limit: $MAX_FD_LIMIT"
fi
fi

# Setup Profiler
useprofiler=false
if [ "x$PROFILER" != "x" ]; then
if [ -r "$PROFILER" ]; then
. $PROFILER
useprofiler=true
else
die "Profiler file not found: $PROFILER"
fi
fi

# Setup the JVM
if [ "x$JAVA" = "x" ]; then
if [ "x$JAVA_HOME" != "x" ]; then
JAVA="$JAVA_HOME/bin/java"
else
JAVA="java"
fi
fi

# Setup the classpath
runjar="$JBOSS_HOME/bin/run.jar"
if [ ! -f $runjar ]; then
die "Missing required file: $runjar"
fi
JBOSS_BOOT_CLASSPATH="$runjar"

# Include the JDK javac compiler for JSP pages. The default is for a Sun JDK
# compatible distribution which JAVA_HOME points to
if [ "x$JAVAC_JAR" = "x" ]; then
JAVAC_JAR="$JAVA_HOME/lib/tools.jar"
fi
if [ ! -f "$JAVAC_JAR" ]; then
   # MacOSX does not have a seperate tools.jar
   if [ "$darwin" != "true" ]; then
  warn "Missing file: $JAVAC_JAR"
  warn "Unexpected results may occur.  Make sure JAVA_HOME points to a JDK and not 
a JRE."
   fi
fi

if [ "x$JBOSS_CLASSPATH" = "x" ]; then
JBOSS_CLASSPATH="$JBOSS_BOOT_CLASSPATH:$JAVAC_JAR"
else
JBOSS_CLASSPATH="$JBOSS_CLASSPATH:$JBOSS_BOOT_CLASSPATH:$JAVAC_JAR"
fi

# If JAVA_OPTS is not set try check for Hotspot
if [ "x$JAVA_OPTS" = "x" ]; then

# Check for SUN(tm) JVM w/ HotSpot support
if [ "x$HAS_HOTSPOT" = "x" ]; then
HAS_HOTSPOT=`$JAVA -version 2>&1 | $GREP -i HotSpot`
fi

# Enable -server if we have Hotspot, unless we can't
if [ "x$HAS_HOTSPOT" != "x" ]; then
# MacOS does not support -server flag
if [ "$darwin" != "true" ]; then
JAVA_OPTS="-server"
fi
fi
fi

# Setup JBoss sepecific properties
JAVA_OPTS="$JAVA_OPTS -Dprogram.name=$PROGNAME"

# For Cygwin, switch paths to Windows format before running java
if $cygwin; then
JBOSS_HOME=`cygpath --path --windows "$JBOSS_HOME"`
JAVA_HOME=`cygpath --path --windows "$JAVA_HOME"`
JBOSS_CLASSPATH=`cygpath --path --windows "$JBOSS_CLASSPATH"`
fi

# Display our environment
echo ""
echo ""
echo "  JBoss Bootstrap Environment"
echo ""
echo "  JBOSS_HOME: $JBOSS_HOME"
echo ""
echo "  JAVA: $JAVA"
echo ""
echo "  JAVA_OPTS: $JAVA_OPTS"
echo ""
echo "  CLASSPATH: $JBOSS_CLASSPATH"
echo ""
echo ""
echo ""

if $useprofiler; then

[JBoss-user] [Beginners Corner] - not woking at first time

2004-05-31 Thread zhangj
I defined a class:
import com.sun.rowset.*;
import java.sql.*;
public class RowSetAdaptor extends java.lang.Object implements java.io.Serializable
{
 private String s;
 private CachedRowSetImpl rowset;

public RowSetAdaptor()
{
try{

rowset = new CachedRowSetImpl();

}catch(Exception e){System.out.println("constructor:"+e);}


}

I put this class file in a jar and put this jar in the 
C:\jboss-3.2.3\server\default\lib
in my code,I use this class:
RowSetAdaptor rs = new RowSetAdaptor(); 
or
RowSetAdaptor rs = null;
rs = new RowSetAdaptor();

the first time after start jboss,I get error:
constructor:java.lang.NullPointerException
but this only happen on first time,if I run it again,no errors,why?looks like 
something not been populate in the memory for the first time.by the com.sun.rowset.* 
classes are in th rowset.jar which is also in C:\jboss-3.2.3\server\default\lib folder


View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3837000#3837000

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3837000



---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Persistence & CMP/JBoss] - Re: Mapping Entity Beans to Database Tables

2004-05-31 Thread abcolson
Thanks for the feedback, guys.  But I am not sure I understand your recommendations.

anonymous wrote : Try removing or commenting the from your ejb-jar.xml to rule that 
out, since it isn't needed for findByPrimaryKey(). 

I think maybe all the words didn't come through.  I am unclear on what exactly you 
suggest removing.

anonymous wrote : I'm wondering why it's looking for a relation. That seems really odd 
since you didn't define any relationships. 
  | 

I think this might be a slip in terminology.  It appears to be either a PostgresQL 
message or a java message i.e. java.sql.SQLException: ERROR:  Relation "question" does 
not exist

BTW, when I create a view called "question" which is simply a "SELECT * FROM 
Questions" the table is mapped but then I get field mapping errors (makes sense if it 
is the same mapping pattern problem)

anonymous wrote : I think the problem is the space in your Question Categories. This 
don't work, even in sql. 

I don't think this is the problem.  PostgresQL seems to be case sensitive and 
translates everything you type in a sql statement to lowercase unless you put it in 
quotes.  Same goes for spaces.  So in PostgresQL,

SELECT * FROM "Question Categories" works fine.

At some point I need to investigate the quoting issue, but I can't do that as long as 
JBoss keeps looking for "question" and not "questions".


anonymous wrote : Your bean abstract schema name is QuestionCategory not 
QuestionCategorybean. 
  | It's surprising you have no errors at deployment. 
  | 

Do you mean QuestionCategoryBean (upper case B)?

Actually, I am using XDoclet to generate the descriptors and this is what it generates 
by default.  Do I really need to alter this?  I am actually confused on what 
 is used for so I can't comment on the issue of no deployment 
errors regarding abstract schema names.

I did try changing the schema in my Question example to QuestionBean and that didn't 
seem to help.

Here are the XDoclet headers for my 2 cases:

QuestionBean:
/**
  |  * @author colson
  |  *
  |  * @ejb.bean name="Question"
  |  *   display-name = "Question  EJB"
  |  *   description = "EJB that manages a Question"
  |  *   view-type = "remote"
  |  *   jndi-name = "ejb/tutorial/Question"
  |  *   cmp-version = "2.x"
  |  *   primkey-field = "id"
  |  *
  |  * @ejb.persistence table-name = "Questions"
  |  * 
  |  * @ejb.finderdescription = "Lookup Question By ID"
  |  *signature = "tutorial.interfaces.Question 
findByPrimaryKey(java.lang.Long)"
  |  *result-type-mapping = "Local"
  |  *query = "SELECT OBJECT(qb) FROM QuestionBean qb WHERE qb.id = ?1"
  |  *   
  |  * @ejb.resource-refres-ref-name = "jdbc/PostgresDS"
  |  *  res-type = "javax.sql.DataSource"
  |  *  res-auth = "Container"
  |  *  
  |  * @jboss.resource-ref  res-ref-name = "jdbc/PostgresDS"
  |  *  jndi-name = "java:/PostgresDS"
  |  * 
  |  * @jboss.persistence table-name = "Questions"
  |  *datasource = "java:/PostgresDS"
  |  * 
  |  * To change the template for this generated type comment go to
  |  * Window>Preferences>Java>Code Generation>Code and Comments
  |  */
  | 

QuestionCategoryBean:

/**
  |  * @author colson
  |  *
  |  * 
  |  * @ejb.bean name="QuestionCategory"
  |  *   display-name = "Question Category EJB"
  |  *   description = "EJB that manages a Question Category"
  |  *   view-type = "remote"
  |  *   jndi-name = "ejb/tutorial/QuestionCategory"
  |  *   cmp-version = "2.x"
  |  *   primkey-field = "id"
  |  * 
  |  * @ejb.persistence table-name = "Question Categories"
  |  * 
  |  * 
  |  * 
  |  * @ejb.finderdescription = "Lookup Question Category By ID"
  |  *signature = "tutorial.interfaces.QuestionCategory 
findByPrimaryKey(java.lang.Long)"
  |  *result-type-mapping = "Local"
  |  *query = "SELECT OBJECT(qcb) FROM QuestionCategoryBean qcb WHERE 
qcb.id = ?1"
  |  * 
  |  * @ejb.resource-refres-ref-name = "jdbc/PostgresDS"
  |  *  res-type = "javax.sql.DataSource"
  |  *  res-auth = "Container"
  |  *  
  |  * @jboss.resource-ref  res-ref-name = "jdbc/PostgresDS"
  |  *  jndi-name = "java:/PostgresDS"
  |  * 
  |  * 
  |  * 
  |  * To change the template for this generated type comment go to
  |  * Window>Preferences>Java>Code Generation>Code and Comments
  |  */
  | 

Thanks for all the tips!
Tony

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836999#3836999

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3836999



---
This SF.Net email is sponsored by: Oracle 10g
Get certified on 

[JBoss-user] [Installation & Configuration] - NoClassDefFoundError and hibernate2.jar

2004-05-31 Thread afsilva
Hi all,

I've put hibernate2.jar in $JBOSS_HOME/server/default/lib, but when I try to use 
hibernate, the following error occurs:

java.lang.NoClassDefFoundError: net/sf/hibernate/collection/Set
  | at net.sf.hibernate.type.TypeFactory.set(TypeFactory.java:200)
  | at net.sf.hibernate.mapping.Set.getCollectionType(Set.java:29)
  | at net.sf.hibernate.mapping.Collection.getType(Collection.java:275)
  | at net.sf.hibernate.cfg.Binder.bindProperty(Binder.java:443)
  | at net.sf.hibernate.cfg.Binder.createProperty(Binder.java:1070)
  | at net.sf.hibernate.cfg.Binder.propertiesFromXML(Binder.java:1050)
  | at net.sf.hibernate.cfg.Binder.bindRootClass(Binder.java:361)
  | at net.sf.hibernate.cfg.Binder.bindRoot(Binder.java:1243)
  | at net.sf.hibernate.cfg.Configuration.add(Configuration.java:249)
  | at net.sf.hibernate.cfg.Configuration.addInputStream(Configuration.java:
  | 285)

No matter what I do, I get this error.  I checked and there is no another 
hibernate2.jar file deployed, no class duplicated, the net/sf/hibernate/collection/Set 
class is in the hibernate2.jar. 
Probably it's a jboss class loader problem. Someone has already had this problem? Did 
someone fix this problem?

Thanks,

afsilva


View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836997#3836997

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3836997



---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Performance Tuning] - Re: 200% performance increase with remote debugging on.

2004-05-31 Thread pclear
Hi Treespace.

Thanks for the response.

The CPU is not at a constant 100% usage - I only used this as a term indicating that 
the box itself was at it's full capacity.  Not only did we watch th e CPU but all the 
other OS load paramerters also indicated full capacity.  It is a 4 CPU box and the 
"Load" value reported via rstatd was also very high (16-20) when debugging was turned 
off and we hit 30 "users".

Webload uses rstatd to determine cpu usage/load and we often manually monitor these 
(using top, mpstat, etc...) and what it reports is always consistent with what we see 
manually.

Another indication that the server is "working better" when the debug flag is turned 
on is that we can pass more of the load onto the database server which indicates that 
we are getting more transactions per minute.  With debugging off, we could only load 
the DB server (12 CPU sun box) to about 30% cpu and a load value of 1 - 2 no matter 
how many "users" we had hitting the jboss server - obviously not heavily loaded.   
When we switch to debug on, we're able to get the database box up to about 75% cpu 
usage, with a load value of 8-10 which is a much heavier load. 

You're comment about blocked IO is interesting.  The application is a massive 
re-implementation of an old mainframe cobol system.  When it was coded there was very 
little thought given to performance and if we run it through a profiler, it is obvious 
that it spends most of it's time doing IO.  For example, a single request from a user 
can result in over 30 database reads and 10 database updates in about 3 different 
transactions as well as a JMS message.  Maybe somehow the different IO causes the db 
IO to be more efficient?   

pete. 

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836996#3836996

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3836996



---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS & JBossMQ] - Re: Hypersonic localDB.data file size limit

2004-05-31 Thread genman

http://hsqldb.sourceforge.net/doc/hsqlSyntax.html#SET%20LOGSIZE

The .script file is cleaned up when it hits 200 MB.  You can set this size lower if 
you want.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836995#3836995

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3836995



---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [HTTPD, Servlets & JSP] - Re: JSP 2.0 open source & STABLE container

2004-05-31 Thread Zapa
you can imagine then how badly i got shocked when i heard what you guys did on 
theserverside.com ;) :P

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836994#3836994

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3836994



---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Re: don't give client jsp files

2004-05-31 Thread zhangj
I tryed this:
made a jsp file put under default\deploy\myweb.war\myjsp.jsp
call this jsp from browser,this jsp compiled and generated class is 
default\work\MainEngine\localhost\myjsp_jsp.class

delete default\deploy\myweb.war\myjsp.jsp and put myjsp_jsp.class under 
default\deploy\myweb.war\,use jar create a myweb.war.
delete myweb.war folder and put myweb.war file under deploy,the myweb.war file is 
contain myjsp_jsp.class,but when I call this jsp from browser myjsp.jsp it doesn't 
work.
where am I wrong?

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836993#3836993

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3836993



---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Performance Tuning] - Re: 200% performance increase with remote debugging on.

2004-05-31 Thread treespace
If you have a constant 100% CPU usage there is a serious problem. Consider that means 
each of the CPUs is running a thread that is not blocked all the time. When you run in 
debug mode it lowers your performance by introducing blocked IO calls (I am assuming 
it's not using NIO) but it decreases your CPU usage. Increased CPU usage can mean 
better overall performance through more efficient IO but not if the thing is pegged at 
100%. 

Cupla questions. How many processors on your 880? How does the load testing tool 
determine the CPU usage ? since it is running on a client it must communicate with the 
server to get those stats and mayby what is being reported is suspect. 


View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836992#3836992

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3836992



---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Nukes User] - Re: Text is cut off at far right end

2004-05-31 Thread jnmdev
"jnmdev" wrote : Correct,
  | 
  | and I didn't. I commented out both the  start tag, and the  end tag. But of 
course, you could remove them instead.
  | 
  | The middle part was never commented out.
  | 
  | Cheers,
  | jnmdev

Oops, the HTML got lost in my last post. What I wanted to say was that each of the 
DIV-tags were commented out. But you could remove them instead.

The "END header" and "BEGIN footer" were left untouched.

Cheers,
jnmdev

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836990#3836990

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3836990



---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Nukes User] - Re: Text is cut off at far right end

2004-05-31 Thread jnmdev
Correct,

and I didn't. I commented out both the  start tag, and the  end tag. But of course, 
you could remove them instead.

The middle part was never commented out.

Cheers,
jnmdev

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836989#3836989

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3836989



---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Persistence & CMP/JBoss] - Re: Mapping Entity Beans to Database Tables

2004-05-31 Thread ironbird
I don't know which findByPrimaryKey throws an error, but the second one (for 
QuestionCategory bean) has an error. Your bean abstract schema name is 
QuestionCategory not QuestionCategorybean.
It's surprising you have no errors at deployment.
But as says Erik, you can remove both.


View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836988#3836988

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3836988



---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Clustering/JBoss] - Session replication not working

2004-05-31 Thread e.robles
I am running Jboss 3.2.3 on Linux. It is accesses via ajp13 from a separate Apache 
(port 8009). It is running in clustered mode (with "run -c all") on two nodes, and I 
get this on the logs :

2004-05-31 13:21:24,757 INFO  [org.jboss.deployment.MainDeployer] Starting deployment 
of package: file:/usr/local/jboss/server/all/deploy/cluster-service.xml
2004-05-31 13:21:25,728 INFO  [org.jboss.ha.framework.server.ClusterPartition] Set the 
JGroups logging to log
4j with category:[EMAIL PROTECTED], priority: DEBUG, JGroupsLevel: 4
2004-05-31 13:21:25,874 INFO  
[org.jboss.ha.framework.interfaces.HAPartition.DefaultPartition] Initializing
2004-05-31 13:21:25,907 DEBUG [DefaultPartition:ReplicantManager] registerRPCHandler
2004-05-31 13:21:25,908 DEBUG [DefaultPartition:ReplicantManager] 
subscribeToStateTransferEvents
2004-05-31 13:21:25,908 DEBUG [DefaultPartition:ReplicantManager] 
registerMembershipListener
2004-05-31 13:21:26,203 INFO  [STDOUT]
---
GMS: address is nodo2:33856 (additional data: 17 bytes)
---
2004-05-31 13:21:28,373 INFO  [org.jboss.ha.framework.server.ClusterPartition] 
Starting channel
2004-05-31 13:21:28,374 INFO  
[org.jboss.ha.framework.interfaces.HAPartition.DefaultPartition] Number of clus
ter members: 2
2004-05-31 13:21:28,375 INFO  
[org.jboss.ha.framework.interfaces.HAPartition.DefaultPartition] Other members:
 1
2004-05-31 13:21:28,467 INFO  [org.jboss.ha.framework.server.ClusterPartition] Started 
ClusterPartition: Defa
ultPartition
2004-05-31 13:21:28,467 INFO  [org.jboss.ha.framework.server.ClusterPartition] Started 
jboss:service=DefaultP
artition
2004-05-31 13:21:28,628 INFO  [org.jboss.ejb.plugins.EntityInstancePool] Started 
jboss.j2ee:jndiName=clusteri
ng/HTTPSession,plugin=pool,service=EJB
2004-05-31 13:21:28,639 INFO  [org.jboss.ejb.EntityContainer] Started 
jboss.j2ee:jndiName=clustering/HTTPSess
ion,service=EJB
2004-05-31 13:21:28,765 INFO  
[org.jboss.ha.httpsession.server.ClusteredHTTPSessionService] Started jboss:ser
vice=ClusteredHttpSession

The web app is started as :

2004-05-31 13:21:38,029 INFO  [org.jboss.ha.framework.server.FarmMemberService]  
pullNewDeployments 
2004-05-31 13:21:38,071 INFO  [org.jboss.ha.framework.server.FarmMemberService] 
farmDeployment(), deploy locally: 
/usr/local/jboss/server/all/tmp/cluster-examples-service.xml
2004-05-31 13:21:40,009 INFO  [org.jboss.deployment.MainDeployer] Starting deployment 
of package: file:/usr/local/jboss/server/all/farm/cluster-examples-service.xml
2004-05-31 13:21:40,028 INFO  [org.jboss.deployment.MainDeployer] Deployed package: 
file:/usr/local/jboss/server/all/farm/cluster-examples-service.xml
2004-05-31 13:21:40,030 INFO  [org.jboss.deployment.MainDeployer] Starting deployment 
of package: file:/usr/local/jboss/server/all/farm/mi-perfil.war
2004-05-31 13:21:49,641 INFO  [org.jboss.web.tomcat.tc4.EmbeddedTomcatService] deploy, 
ctxPath=, warUrl=file:/usr/local/jboss/server/all/tmp/deploy/tmp55720mi-perfil.war/
2004-05-31 13:21:52,968 INFO  [org.jboss.web.tomcat.tc4.EmbeddedTomcatService] 
ClusteredHTTPSessionService found
2004-05-31 13:21:52,991 INFO  [org.jboss.web.tomcat.tc4.EmbeddedTomcatService] Enabled 
clustering support for ctxPath=
2004-05-31 13:22:01,562 INFO  [org.jboss.web.localhost.Engine] 
SingleSignOnContextConfig[]: Added certificates -> request attribute Valve
2004-05-31 13:22:01,656 WARN  [org.jboss.web.tomcat.tc4.EmbeddedTomcatService] Unable 
to invoke setDelegate on class loader:[EMAIL PROTECTED]
2004-05-31 13:22:01,679 INFO  [org.jboss.web.localhost.Engine] 
StandardWrapper[:default]: Loading container servlet default
2004-05-31 13:22:01,680 INFO  [org.jboss.web.localhost.Engine] 
StandardWrapper[:invoker]: Loading container servlet invoker
2004-05-31 13:22:02,382 INFO  [org.jboss.deployment.MainDeployer] Deployed package: 
file:/usr/local/jboss/server/all/farm/mi-perfil.war
2004-05-31 13:22:02,406 INFO  [org.jboss.ha.framework.server.FarmMemberService] 
Started jboss:service=FarmMem
ber,partition=DefaultPartition
2004-05-31 13:22:02,464 INFO  [org.jboss.deployment.MainDeployer] Deployed package: 
file:/usr/local/jboss/server/all/deploy/deploy.last/
2004-05-31 13:22:02,494 INFO  [org.jboss.deployment.scanner.URLDeploymentScanner] 
Started jboss.deployment:type=DeploymentScanner,flavor=URL
2004-05-31 13:22:02,676 INFO  [org.jboss.deployment.MainDeployer] Deployed package: 
file:/usr/local/jboss/server/all/conf/jboss-service.xml
2004-05-31 13:22:02,690 INFO  [org.jboss.system.server.Server] JBoss (MX MicroKernel) 
[3.2.3 (build: CVSTag=J
Boss_3_2_3 date=200311301445)] Started in 1m:18s:820ms

My web app resides on mi-perfil.war, uses context "/". It  has the "" tag on web.xml, 
according to "HTTP Clustering" documentation (Chap. 6). However, I see that session 
replication is not working. I set up a session on one page ("login.jsp") and I get 
session information on other pa

[JBoss-user] [Nukes User] - Re: Text is cut off at far right end

2004-05-31 Thread jae77
you can't comment out the the following:


  |   
  |   
  | 

  b/c that is how the templating engine knows how to start processing loops and/or 
display additional text depending upon some criteria (ie: is the user logged in).

  i'm surprised you didn't get a deployment exception b/c the rendering engine usually 
picks this up as a missing tag and "complains" when the templats are compiled. 


View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836986#3836986

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3836986



---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Persistence & CMP/JBoss] - Re: Mapping Entity Beans to Database Tables

2004-05-31 Thread erik777
Try removing or commenting the  from your ejb-jar.xml to rule that out, since it isn't 
needed for findByPrimaryKey().  It looks OK, but doesn't hurt to rule it out since 
this is a needle in a haystack.

I'm wondering why it's looking for a relation.  That seems really odd since you didn't 
define any relationships.



View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836984#3836984

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3836984



---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [HTTPD, Servlets & JSP] - Re: Default page not found when precompiled

2004-05-31 Thread treespace
Clarification: the "flaw" is of course fixed in the JSP specification 2.0 that TC 5.0 
will use versus 1.2 currently in use.  BTW, TC 5.0 is following the path JBoss took 
with JMX management. Looking forward to that release. 

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836982#3836982

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3836982



---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Nukes User] - Re: where do I get modules

2004-05-31 Thread neilk
Thanks jae77 :-) for your answer.



View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836981#3836981

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3836981



---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Nukes User] - Re: Text is cut off at far right end

2004-05-31 Thread jnmdev
"henrikandoff" wrote : I'm having a problem with the imagic theme. Text is cut off at 
the far right when I view the Forum module. Why is that?
  | 
  | Regards,
  | /Henrik

Hi,

I commented out the following div-tags to make it work:


They are located in:
\nukes-snapshot\nukes\src\bin\nukes-lib-jar\org\jboss\nukes\core\themes\imagic\theme.html

I needed to "build deploy" and restart the server also... This won't fix wide images 
etc. But it seems to fix most issues.

Cheers,
jnmdev 

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836980#3836980

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3836980



---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS & JBossMQ] - Re: Jboss-3.2.3 Hypersonic localDB.backup problem

2004-05-31 Thread TheImmortal
I switched to the file-pm-service instead.  

--
"I have said many times that I do not recommend this database for anything other than 
demos and testing - read the FAQ."
--

This wasn't production anyway, it was a test/demo.   I read the FAQ, I know it isn't 
production quality.  It was a simple question.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836979#3836979

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3836979



---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Performance Tuning] - 200% performance increase with remote debugging on.

2004-05-31 Thread pclear
Hi.

We've been running performance testing on our web application on one of our production 
servers lately and have encountered an interesting performance item.  It is probably 
not related to JBoss, but I thought this community may have some interest and possibly 
some insight into this issue.

We have an application which uses a large number of Stateless Session Beans and no 
Entity Beans with a Tomcat web frontend.  We've been testing it with the Radview 
Webload product.  We ran into a problem with our testing where the JMS implementation 
would stall (a known issue fixed in 3.2.3) under heavy load so in order to determine 
where the problem was, we setup the jvm so we could connect with a remote debugger.  
We fixed the jms problem but left the server in debug mode and continued our 
performance tests.  We would generally get to about 100 users before we maxed out the 
CPU. 

We then noticed that the debug info was still in the start script so we removed it.  
We could now only get to about 30 users before hitting 100% CPU.  This was very 
repeatable, and finally we took everything off the command line and it turned out the 
"-debug" flag is all we needed to make the performance reach it's previous levels.

Has anybody seen this before?  Any ideas why having the jvm in debug mode would 
increase performance?

system specs:

os: SunOS xxx.xxx.xxx.xxx 5.8 Generic_108528-29 sun4u sparc SUNW,Sun-Fire-880  

jvm: Java HotSpot(TM) Client VM (build 1.4.1_01-b01, mixed mode)

Pete.




View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836978#3836978

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3836978



---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Getting Started Documentation] - please help

2004-05-31 Thread alijavan
please help me to find a good toturial or  ebook to start jboss

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836977#3836977

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3836977



---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Security & JAAS/JBoss] - Re: Authentication in JBoss (login)

2004-05-31 Thread remowaller
do you mean this sequence:
base64

But this is only for the login-sequence. the password is stored as a hashed value. I 
understand, that JBoss would compare the stored (and hashed) password with the 
password filled in by the user to login.

But when a new user register himself by the ejb-application, he must enter his 
password. then, when the user entity is stored in the DB, the password should be 
encrypted, so that jboss could compare the entered password for login with the stored. 
Which algorihm do I have to take that this will match?

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836975#3836975

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3836975



---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Nukes User] - Re: How can I control multiple nuke sites?

2004-05-31 Thread hbaxmann
1a) you give your machine multiple IP adresses and deploy one nukes for each

bax

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836973#3836973

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3836973



---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Re: Foreign key set to NULL

2004-05-31 Thread hbaxmann
It is a question of cardinality of the relationship _end_. Set a NOT NULL constraint 
on the FK will give you the exception. The full cardinality of the relation will then 
be: (Entity A)1:1 <--is a--> 1:1(Entity B) which means: "one and exactly one is A one 
and exactly one B" in contrast to "one or no A is one or no B": 0:1<--is a-->0:1.

JBoss has obviously in your case the 0 as default for the lower boundary of 
relationship ends. But this should come from the NOT NULL attribute of 
DatabaseMetadata.

bax

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836972#3836972

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3836972



---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Re: JBoss 3.2.2 to JBoss 4.0 DR4 now calls ejbStore ?? ignor

2004-05-31 Thread [EMAIL PROTECTED]
Why do you need the container to invoke isModified() for BMP?


  | public void ejbStore()
  | {
  |if (isModified())
  |{
  |   ...
  |}
  | }
  | 

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836971#3836971

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3836971



---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Persistence & CMP/JBoss] - Re: Index already exists in statement

2004-05-31 Thread sbocquet
Hi,

In JDBCStartCommand.java...
It seems that JBossCMP doesn't detects that there is an index already created. It 
detects that the tables are created, but still try to create indexes. Can't understand 
why !

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836969#3836969

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3836969



---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Persistence & CMP/JBoss] - Re: Index already exists in statement

2004-05-31 Thread triathlon98
Ok, send me your ear and I will have a look, address is joachim at triathlon98.com

Joachim

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836968#3836968

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3836968



---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS & JBossMQ] - Re: Jboss-3.2.3 Hypersonic localDB.backup problem

2004-05-31 Thread [EMAIL PROTECTED]
help with hsqldb should be obtained from them.

I have said many times that I do not recommend this database for anything other
than demos and testing - read the FAQ.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836966#3836966

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3836966



---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS & JBossMQ] - Re: configure jboss mdb to listen to oracle advance queue (a

2004-05-31 Thread [EMAIL PROTECTED]
FAQ

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836965#3836965

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3836965



---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Nukes User] - Re: How can I control multiple nuke sites?

2004-05-31 Thread jae77
if the instances are going to run on seperate boxes, then you don't need to do 
anything else other then have the seperate database instances.

if you are going to run on the same box, that is not easily supported at the moment, 
but you do have 1 of 2 options.

1) you could setup multiple instances of jboss to run on one machine. this would 
require you to setup port bindings so you don't get conflicts when trying to start 
multliple instances

2) you could deploy nukes multiple times in the same instance, but that would require 
you to change the mbean names contained in the -service.xml files so they are unique 
(you'd also have to change the servlet root context in the application.xml file as 
well).


View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836964#3836964

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3836964



---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Nukes User] - Re: where do I get modules

2004-05-31 Thread jae77
"officially released" modules are bundled as part of the available downloads on the 
main project page.

the rest of the modules are in cvs, but there is no current guarentee they will work. 
efforts are to underway to refactor and improve these modules are re-release them  
over time. 

the upcoming 1.1 release has the following slated for release:

- core
- forums (bb)
- news
- downloads

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836963#3836963

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3836963



---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Persistence & CMP/JBoss] - Re: Index already exists in statement

2004-05-31 Thread sbocquet
Here is it 


  |
  |   java:/DefaultDS
  |   Hypersonic SQL
  | 
  |   true
  |   false
  |   false
  |   30
  |   false
  |   true
  |   false
  |   foreign-key
  |   
  |  on-load
  |  1000
  |  *
  |   
  |   1000
  | 
  |   
  |  UUIDKeyGeneratorFactory
  |  java.lang.String
  |  VARCHAR
  |  VARCHAR(32)
  |   
  | 
  |   
  | 
  |
  | 

the  is set to false, but I think it is overridden by the EJB 
descriptor value, which is set to true.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836962#3836962

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3836962



---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Persistence & CMP/JBoss] - Re: Index already exists in statement

2004-05-31 Thread triathlon98
Can you publish the "defaults" section in your jbosscmp-jdbc.xml file?

Joachim

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836961#3836961

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3836961



---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - JBoss 3.2.2 to JBoss 4.0 DR4 now calls ejbStore ?? ignoring

2004-05-31 Thread gmatthews
I have deployed an app developed under 3.2.2 in JBoss 4.0.0 DR4 that uses BMP Entity 
beans.

I use a boolean isModified() method in each bean to prevent ejbStore() being called 
when there are no changes to make -- but isModified() seems like it's ignored in 4.0.0 
DR4.

Is this the case, or is this broken in 4.0.0 DR4?

If isModified is no longer supported, what's the alternative? Should I be using 
jboss.xml and read-only methods?

Thanks.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836960#3836960

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3836960



---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Re: Lookup inside EJB

2004-05-31 Thread [EMAIL PROTECTED]
Make sure you've set up your ejb references in the ejb-jar.xml correctly. Namespace 
java:comp/env is private to the bean as is setup based on the declarations from the 
deployment descriptors.



View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836958#3836958

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3836958



---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Persistence & CMP/JBoss] - Re: Mapping Entity Beans to Database Tables

2004-05-31 Thread ironbird
No matter the matching between table names and bean name, or field name and column 
name, all the mapping is done in jbosscmp-jdbc.xml.
I think the problem is the space in your Question Categories. This don't work, even in 
sql.


View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836956#3836956

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3836956



---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Persistence & CMP/JBoss] - Re: Index already exists in statement

2004-05-31 Thread sbocquet
Hi,

Perhaps, but It deploys the same ear two times... with no change in it. Just start and 
stop the server two times.
Can someone tests my ear if I send it to him, in order to see if it's a JBoss bug ?
I'm trying to debug JDBCStartCommand.java to see what it does, but it's quite 
difficult I'm not familiar with JbossCMP ;-)))


View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836955#3836955

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3836955



---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Persistence & CMP/JBoss] - Re: Index already exists in statement

2004-05-31 Thread triathlon98
No, JBoss does not drop indexes.

It creates indexes on create-table.
It checks whether indexes exists and creates if they don't exist with alter-table.

So my guess is that you have alter-table set and that hsqldb does not implement the 
JDBC metadata calls properly.

Joachim

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836953#3836953

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3836953



---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation & Configuration] - Re: Error while running Radrunner with JBoss and MySQL

2004-05-31 Thread Kenan
The simplest solution is, using the right versions:

- radrunner_1.2.24
- j2sdk1.3.1_02
- jboss 3.0.0
- mysql 4.0.18 (max-nt)
- mysql-connector-java-3.0.11-stable-bin.jar

Good luck,


Kenan

* Ne mutlu Turkum diyene! *



View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836952#3836952

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3836952



---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Javassist user questions] - Re: inserting duplicated members

2004-05-31 Thread fluca1978
I've tested javassist 3 (beta), recompiling my sources with the above library, but the 
behavior of the shown code has not changed. I've substituted the aPool.write() call 
with a call toBytecode() over the CtClass object, but I'm still able to copy 
duplicated members as detailed in previous posts.
Any idea?

Thanks,
Luca

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836951#3836951

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3836951



---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS & JBossMQ] - configure jboss mdb to listen to oracle advance queue (aq)

2004-05-31 Thread erahamim
Hi,

I want to configure jboss mdb to listen to oracle advance queue (aq).
Does anybody know how to do it ?

Thanks

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836950#3836950

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3836950



---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Persistence & CMP/JBoss] - Re: Index already exists in statement

2004-05-31 Thread sbocquet
Hi,

I'm surprise that JBoss drop the indexex at undeploy time !... I was thinking that if 
the table does not exist, it creates it, with the constraints and indexes, and if the 
table is already created, it just detects it, and uses it as it is.


View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836949#3836949

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3836949



---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Re: Foreign key set to NULL

2004-05-31 Thread loubyansky
A simple reason is to be able to remove w/o exception from the db.

As for me, there is no strict theoretical prove which way is right here. The default 
behaviour should the one that is expected in the majority of cases. 


View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836948#3836948

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3836948



---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JCA/JBoss] - Re: Oracel XA and deployment error

2004-05-31 Thread santon
Hi 

It`s my syntax error!!!

sorry to trouble you!!!

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836947#3836947

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3836947



---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Persistence & CMP/JBoss] - Re: JBoss audit fields

2004-05-31 Thread sbocquet
Hi,

Thanks a lot for all.


View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836946#3836946

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3836946



---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Re: Weird problem starting JBoss on linux

2004-05-31 Thread schmidts
Sounds like the application only works correctly if it can connect to an X11 server. 
Nothing JBoss specific, check out http://www.jguru.com/faq/view.jsp?EID=96

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836945#3836945

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3836945



---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS & JBossMQ] - Re: Hypersonic localDB.data file size limit

2004-05-31 Thread jbossy
"jbossy" wrote : My localDB.script grows huge, was there ever a way to deal with the 
evergrowing size of this file without being forced to shutdown the JBoss instance? Can 
someone point me to some documentation on this, I have bought some JBoss books and 
docs already? Is there some rolling log like feature that I can use?
  | 
  | Thanks!

BTW, I am running medium size 1.3MB bytes messages on JB4DR4.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836944#3836944

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3836944



---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS & JBossMQ] - Re: Hypersonic localDB.data file size limit

2004-05-31 Thread jbossy
My localDB.script grows huge, was there ever a way to deal with the evergrowing size 
of this file without being forced to shutdown the JBoss instance? Can someone point me 
to some documentation on this, I have bought some JBoss books and docs already? Is 
there some rolling log like feature that I can use?

Thanks!

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836943#3836943

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3836943



---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Nukes User] - How can I control multiple nuke sites?

2004-05-31 Thread seenu78
Hi All,

I am developing my site using Nukes. In this regard I want to setup my development 
setup in three stages, likely(Testing, Staging, Release). In that way I no need to 
work with Release all the times. Once my changes are done in testing then it can be 
moved into staging then Release.

So how can I handle this, I knew that need the setup three different database for 
these(i.e nukes_test,...nuke_release). What about my nuke installation? what are the 
areas I may need changes?(like changing context and all) So that in one jboss 
installation I can run all my development areas.

Waiting for a quick response..

Regards,
Seenu.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836942#3836942

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3836942



---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Re: Foreign key set to NULL

2004-05-31 Thread jbm
Hi,

Thanks for your answer.
It's quite interresting behaviour.
I'd like to understand a bit farther, is there any doc where this behaviour is 
detailed ?

Or is there a simple and specific reason for it ?

Thanks.

Jbm

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836941#3836941

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3836941



---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Re: Problem deploying CMR (2)

2004-05-31 Thread didi
what would be the equivalent XDoclet tags for that?

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836939#3836939

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3836939



---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Re: Foreign key set to NULL

2004-05-31 Thread loubyansky
This is the intended behaviour. If a referenced entity can't be removed you have to 
check references yourself.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836938#3836938

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3836938



---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Re: Foreign key set to NULL

2004-05-31 Thread jbm
Please, if one of you had an answer since, could you post it ?

Thanks

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836937#3836937

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3836937



---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Management, JMX/JBoss] - MBeans dependencies

2004-05-31 Thread clau25
Hi, 
I've written a MBean which depends on JMS and JNDI. I made it dependent on these 
services using tags like:


  | service:Test";>
  | Test
  | jboss:service=Naming
  | 
  | 

in user-service.xml file from jboss.

When my MBean does not depend on any other service, it works fine. But when it depends 
on some other services i get this error:

2004-05-31 11:35:03,125 ERROR [org.jboss.deployment.scanner.URLDeploymentScanner] 
MBeanException: Exception in MBean operation 'checkIncompleteDeployments()'
Cause: Incomplete Deployment listing:
Packages waiting for a deployer:
[EMAIL PROTECTED] { 
url=file:/D:/jboss-3.2.3/server/default/deploy/jms/jbossmq-httpil.sar/jbossmq-httpil.war/
 }
  deployer: null
  status: Starting
  state: INIT_WAITING_DEPLOYER
  watch: 
file:/D:/jboss-3.2.3/server/default/deploy/jms/jbossmq-httpil.sar/jbossmq-httpil.war/
  lastDeployed: 1085992493968
  lastModified: 107899639
  mbeans:
, [EMAIL PROTECTED] { 
url=file:/D:/jboss-3.2.3/server/default/deploy/http-invoker.sar/invoker.war/ }
  deployer: null
  status: Starting
  state: INIT_WAITING_DEPLOYER
  watch: file:/D:/jboss-3.2.3/server/default/deploy/http-invoker.sar/invoker.war/
  lastDeployed: 1085992493968
  lastModified: 107899639
  mbeans:
, [EMAIL PROTECTED] { 
url=file:/D:/jboss-3.2.3/server/default/deploy/management/web-console.war }
  deployer: null
  status: null
  state: INIT_WAITING_DEPLOYER
  watch: file:/D:/jboss-3.2.3/server/default/deploy/management/web-console.war
  lastDeployed: 1085992503125
  lastModified: 1085992504000
  mbeans:
, [EMAIL PROTECTED] { url=file:/D:/jboss-3.2.3/server/default/deploy/jmx-console.war/ }
  deployer: null
  status: null
  state: INIT_WAITING_DEPLOYER
  watch: file:/D:/jboss-3.2.3/server/default/deploy/jmx-console.war/
  lastDeployed: 1085992503125
  lastModified: 1078996386000
  mbeans:
]Incompletely deployed packages:
[EMAIL PROTECTED] { 
url=file:/D:/jboss-3.2.3/server/default/deploy/management/web-console.war }
  deployer: null
  status: null
  state: INIT_WAITING_DEPLOYER
  watch: file:/D:/jboss-3.2.3/server/default/deploy/management/web-console.war
  lastDeployed: 1085992503125
  lastModified: 1085992504000
  mbeans:
, [EMAIL PROTECTED] { url=file:/D:/jboss-3.2.3/server/default/deploy/jmx-console.war/ }
  deployer: null
  status: null
  state: INIT_WAITING_DEPLOYER
  watch: file:/D:/jboss-3.2.3/server/default/deploy/jmx-console.war/
  lastDeployed: 1085992503125
  lastModified: 1078996386000
  mbeans:
]MBeans waiting for classes:
  
MBeans waiting for other MBeans:
[ObjectName: user:service=Test
 state: CONFIGURED
 I Depend On:  jboss.mq:service=Naming

 Depends On Me: , ObjectName: jboss.jmx:name=SnmpAgent,service=snmp,type=adaptor
 state: FAILED
 I Depend On:  jboss.jmx:name=SnmpAgent,service=timer,type=heartbeat

 Depends On Me: java.lang.RuntimeException: [Missing message 
conf.noDefaultConfigurationFile], ObjectName: jboss.web:service=WebServer
 state: FAILED
 I Depend On:  jboss:service=TransactionManager

 Depends On Me:  jboss.mq:service=InvocationLayer,type=HTTP
java.lang.ExceptionInInitializerError, ObjectName: 
jboss.mq:service=InvocationLayer,type=HTTP
 state: CONFIGURED
 I Depend On:  jboss.mq:service=Invoker
 jboss.web:service=WebServer

 Depends On Me: ]
2004-05-31 11:35:03,140 INFO  [org.jboss.deployment.scanner.URLDeploymentScanner] 
Started jboss.deployment:type=DeploymentScanner,flavor=URL
2004-05-31 11:35:03,500 INFO  [org.jboss.deployment.MainDeployer] Deployed package: 
file:/D:/jboss-3.2.3/server/default/conf/jboss-service.xml
2004-05-31 11:35:03,515 INFO  [org.jboss.system.server.Server] JBoss (MX MicroKernel) 
[3.2.3 (build: CVSTag=JBoss_3_2_3 date=200311301445)] Started in 22s:78ms


I'd appreciate any help. 
Thank you,
clau


View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836936#3836936

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3836936



---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Re: Possible JBoss Bug. Please suggest.

2004-05-31 Thread didi
can someone provide a correct, working XDoclet example for a 1-N CMR?
That would be great. tnx

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836935#3836935

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3836935



---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - How to deploy several applications with JBoss

2004-05-31 Thread damugar
Good morning!

I would like to know if I could deploy several applications with JBoss.  I have some 
.jar and .ear files and I need to know how it is the structure of directories inside 
JBoss to work with them and all the changes I need to do so JBoss run correctly.

Thank you.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836934#3836934

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3836934



---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Persistence & CMP/JBoss] - Re: Index already exists in statement

2004-05-31 Thread loubyansky
It seems like a JBossCMP bug. We don't drop index at undeploy. The code should be in 
org.jboss.ejb.plugins.cmp.jdbc.JDBCStopCommand.


View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836933#3836933

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3836933



---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Persistence & CMP/JBoss] - Re: JBoss audit fields

2004-05-31 Thread loubyansky
It worked once with the following class level tags:


  |  * @jboss.audit-created-by
  |  *field-name="createdBy"
  |  *column-name="CREATED_BY"
  |  * @jboss.audit-created-time
  |  *field-name="createdTime"
  |  *column-name="CREATED_TIME"
  |  * @jboss.audit-updated-by
  |  *field-name="updatedBy"
  |  *column-name="UPDATED_BY"
  |  * @jboss.audit-updated-time
  |  *field-name="updatedTime"
  |  *column-name="UPDATED_TIME"
  | 


View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836932#3836932

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3836932



---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user