[JBoss-dev] [ jboss-Bugs-951472 ] More than one entity found exception raised with subclasses

2004-05-11 Thread SourceForge.net
Bugs item #951472, was opened at 2004-05-10 16:42
Message generated for change (Comment added) made by ruoso
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detailatid=376685aid=951472group_id=22866

Category: JBossCMP
Group: v3.2
Status: Closed
Resolution: Rejected
Priority: 5
Submitted By: Daniel Ruoso (ruoso)
Assigned to: Alexey Loubyansky (loubyansky)
Summary: More than one entity found exception raised with subclasses

Initial Comment:
Hi,

I have one CMP EJB called Account, and I have
descendant EJBs called AccountMoney, AccountPayCheck,
AccountCreditCard. These EJBs are java subclasses from
the AccountBean class, and the tables inherits the
Account table.

Here's the problem.

I have two session beans, one named CtrlPayCheck and
other name CtrlAccounts. The CtrlPayCheck needs to
findByPrimaryKey on an AccountPayCheck EJB, and invoke
a method in CtrlAccounts to operate on the generic
Account.

When the second session bean (CtrlAccounts) tries to
findByPrimaryKey the same account (as AccountLocal)
that the first session bean (CtrlPayCheck) accessed (as
AccountPayCheckLocal), a More than one entity matches
the find criteria exception. In fact, the field used
in the finder *is* the primary key of the account
table. And there is *only one* entity that matches the
find criteria...

Possible cause:

I think when the CMP container instantiates the
AccountPayCheck EJB it sees that it must check the
idAccount field into Account table, but store that
information as an AccountPayCheck. which in fact *is*
an Account.
Then, when the container goes to instantiate the
Account EJB, it gets from the database (as he never
retrtieved an Account Bean) and sees that the
AccountnPayCheck is a Account too, so it finds two
entities, and not just one. Even they being the same
entity.

I've never looked at Jboss's source code, and I
actually don't have a clue of where to look at. This
problem is really urgent to me, as it's stopping an
online situation... Hope there is a workaround before
the fix is released.

--

Comment By: Daniel Ruoso (ruoso)
Date: 2004-05-11 17:30

Message:
Logged In: YES 
user_id=288034

Ok... 
just to make clear, JDBCAbstractQueryCommand is the last
step before talking to database? I mean, there is no cache
control or transaction control inside jboss after that?

And... there is still the chance I misunderstood what was
going on in jboss... after all, this was my first incursion
in jboss source... :)

--

Comment By: Alexey Loubyansky (loubyansky)
Date: 2004-05-11 16:44

Message:
Logged In: YES 
user_id=543482

Or the driver if the database really contains only one row
matching the query.
I mean if the SQL query is correct and ResultSet contains
wrong result this is not a bug in JBoss.

--

Comment By: Daniel Ruoso (ruoso)
Date: 2004-05-11 13:30

Message:
Logged In: YES 
user_id=288034

Do you mean this can be a bug in postgresql?

--

Comment By: Alexey Loubyansky (loubyansky)
Date: 2004-05-11 03:18

Message:
Logged In: YES 
user_id=543482

If ResultSet contains wrong results we can't fix it.

--

Comment By: Daniel Ruoso (ruoso)
Date: 2004-05-10 19:07

Message:
Logged In: YES 
user_id=288034

I made a workaround to this bug that gives more information
about where exactly is the bug. I've changed the code that
retrieves the Account EJB to retrieve the AccountPayCheck
EJB and then the exception stopped.

--

Comment By: Daniel Ruoso (ruoso)
Date: 2004-05-10 18:11

Message:
Logged In: YES 
user_id=288034

Just to make clear... I've looked at 
JDBCAbstractQueryCommand method execute. and definetively
the ResultSet *IS* returning 2 rows, and not 1 as there is
in the database...

--

Comment By: Daniel Ruoso (ruoso)
Date: 2004-05-10 18:05

Message:
Logged In: YES 
user_id=288034

Ok,

I've done some tests... and as far as I could go, the sql
was correctly arranged. like SELECT * FROM Account WHERE
idaccount=?. And, this part I really didn't understand, the
result set had 2 rows. even the database having just 1.

Maybe it's the transaction manager, that incercepts the
execution and makes some mess... but I don't know where to
look up.



--

Comment By: Daniel Ruoso (ruoso)
Date: 2004-05-10 17:12

Message:
Logged In: YES 
user_id=288034

Well,

I finally got the stacktrace for the error.

17:08:57,769 ERROR [STDERR] Caused by:
javax.ejb.FinderException: More than one entity matches the
finder criteria.
17:08:57,772 ERROR [STDERR] at

[JBoss-dev] [ jboss-Bugs-951472 ] More than one entity found exception raised with subclasses

2004-05-11 Thread SourceForge.net
Bugs item #951472, was opened at 2004-05-10 22:42
Message generated for change (Comment added) made by loubyansky
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detailatid=376685aid=951472group_id=22866

Category: JBossCMP
Group: v3.2
Status: Closed
Resolution: Rejected
Priority: 5
Submitted By: Daniel Ruoso (ruoso)
Assigned to: Alexey Loubyansky (loubyansky)
Summary: More than one entity found exception raised with subclasses

Initial Comment:
Hi,

I have one CMP EJB called Account, and I have
descendant EJBs called AccountMoney, AccountPayCheck,
AccountCreditCard. These EJBs are java subclasses from
the AccountBean class, and the tables inherits the
Account table.

Here's the problem.

I have two session beans, one named CtrlPayCheck and
other name CtrlAccounts. The CtrlPayCheck needs to
findByPrimaryKey on an AccountPayCheck EJB, and invoke
a method in CtrlAccounts to operate on the generic
Account.

When the second session bean (CtrlAccounts) tries to
findByPrimaryKey the same account (as AccountLocal)
that the first session bean (CtrlPayCheck) accessed (as
AccountPayCheckLocal), a More than one entity matches
the find criteria exception. In fact, the field used
in the finder *is* the primary key of the account
table. And there is *only one* entity that matches the
find criteria...

Possible cause:

I think when the CMP container instantiates the
AccountPayCheck EJB it sees that it must check the
idAccount field into Account table, but store that
information as an AccountPayCheck. which in fact *is*
an Account.
Then, when the container goes to instantiate the
Account EJB, it gets from the database (as he never
retrtieved an Account Bean) and sees that the
AccountnPayCheck is a Account too, so it finds two
entities, and not just one. Even they being the same
entity.

I've never looked at Jboss's source code, and I
actually don't have a clue of where to look at. This
problem is really urgent to me, as it's stopping an
online situation... Hope there is a workaround before
the fix is released.

--

Comment By: Alexey Loubyansky (loubyansky)
Date: 2004-05-11 23:48

Message:
Logged In: YES 
user_id=543482

Didn't you write that SQL query was correct and ResultSet
returned wrong data?
There is no query cache. We return what is in the ResultSet.

--

Comment By: Daniel Ruoso (ruoso)
Date: 2004-05-11 23:30

Message:
Logged In: YES 
user_id=288034

Ok... 
just to make clear, JDBCAbstractQueryCommand is the last
step before talking to database? I mean, there is no cache
control or transaction control inside jboss after that?

And... there is still the chance I misunderstood what was
going on in jboss... after all, this was my first incursion
in jboss source... :)

--

Comment By: Alexey Loubyansky (loubyansky)
Date: 2004-05-11 22:44

Message:
Logged In: YES 
user_id=543482

Or the driver if the database really contains only one row
matching the query.
I mean if the SQL query is correct and ResultSet contains
wrong result this is not a bug in JBoss.

--

Comment By: Daniel Ruoso (ruoso)
Date: 2004-05-11 19:30

Message:
Logged In: YES 
user_id=288034

Do you mean this can be a bug in postgresql?

--

Comment By: Alexey Loubyansky (loubyansky)
Date: 2004-05-11 09:18

Message:
Logged In: YES 
user_id=543482

If ResultSet contains wrong results we can't fix it.

--

Comment By: Daniel Ruoso (ruoso)
Date: 2004-05-11 01:07

Message:
Logged In: YES 
user_id=288034

I made a workaround to this bug that gives more information
about where exactly is the bug. I've changed the code that
retrieves the Account EJB to retrieve the AccountPayCheck
EJB and then the exception stopped.

--

Comment By: Daniel Ruoso (ruoso)
Date: 2004-05-11 00:11

Message:
Logged In: YES 
user_id=288034

Just to make clear... I've looked at 
JDBCAbstractQueryCommand method execute. and definetively
the ResultSet *IS* returning 2 rows, and not 1 as there is
in the database...

--

Comment By: Daniel Ruoso (ruoso)
Date: 2004-05-11 00:05

Message:
Logged In: YES 
user_id=288034

Ok,

I've done some tests... and as far as I could go, the sql
was correctly arranged. like SELECT * FROM Account WHERE
idaccount=?. And, this part I really didn't understand, the
result set had 2 rows. even the database having just 1.

Maybe it's the transaction manager, that incercepts the
execution and makes some mess... but I don't know where to
look up.




[JBoss-dev] [ jboss-Bugs-951472 ] More than one entity found exception raised with subclasses

2004-05-11 Thread SourceForge.net
Bugs item #951472, was opened at 2004-05-10 16:42
Message generated for change (Comment added) made by ruoso
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detailatid=376685aid=951472group_id=22866

Category: JBossCMP
Group: v3.2
Status: Closed
Resolution: Rejected
Priority: 5
Submitted By: Daniel Ruoso (ruoso)
Assigned to: Alexey Loubyansky (loubyansky)
Summary: More than one entity found exception raised with subclasses

Initial Comment:
Hi,

I have one CMP EJB called Account, and I have
descendant EJBs called AccountMoney, AccountPayCheck,
AccountCreditCard. These EJBs are java subclasses from
the AccountBean class, and the tables inherits the
Account table.

Here's the problem.

I have two session beans, one named CtrlPayCheck and
other name CtrlAccounts. The CtrlPayCheck needs to
findByPrimaryKey on an AccountPayCheck EJB, and invoke
a method in CtrlAccounts to operate on the generic
Account.

When the second session bean (CtrlAccounts) tries to
findByPrimaryKey the same account (as AccountLocal)
that the first session bean (CtrlPayCheck) accessed (as
AccountPayCheckLocal), a More than one entity matches
the find criteria exception. In fact, the field used
in the finder *is* the primary key of the account
table. And there is *only one* entity that matches the
find criteria...

Possible cause:

I think when the CMP container instantiates the
AccountPayCheck EJB it sees that it must check the
idAccount field into Account table, but store that
information as an AccountPayCheck. which in fact *is*
an Account.
Then, when the container goes to instantiate the
Account EJB, it gets from the database (as he never
retrtieved an Account Bean) and sees that the
AccountnPayCheck is a Account too, so it finds two
entities, and not just one. Even they being the same
entity.

I've never looked at Jboss's source code, and I
actually don't have a clue of where to look at. This
problem is really urgent to me, as it's stopping an
online situation... Hope there is a workaround before
the fix is released.

--

Comment By: Daniel Ruoso (ruoso)
Date: 2004-05-11 18:05

Message:
Logged In: YES 
user_id=288034

Ok... I'll investigate a little more...

--

Comment By: Alexey Loubyansky (loubyansky)
Date: 2004-05-11 17:48

Message:
Logged In: YES 
user_id=543482

Didn't you write that SQL query was correct and ResultSet
returned wrong data?
There is no query cache. We return what is in the ResultSet.

--

Comment By: Daniel Ruoso (ruoso)
Date: 2004-05-11 17:30

Message:
Logged In: YES 
user_id=288034

Ok... 
just to make clear, JDBCAbstractQueryCommand is the last
step before talking to database? I mean, there is no cache
control or transaction control inside jboss after that?

And... there is still the chance I misunderstood what was
going on in jboss... after all, this was my first incursion
in jboss source... :)

--

Comment By: Alexey Loubyansky (loubyansky)
Date: 2004-05-11 16:44

Message:
Logged In: YES 
user_id=543482

Or the driver if the database really contains only one row
matching the query.
I mean if the SQL query is correct and ResultSet contains
wrong result this is not a bug in JBoss.

--

Comment By: Daniel Ruoso (ruoso)
Date: 2004-05-11 13:30

Message:
Logged In: YES 
user_id=288034

Do you mean this can be a bug in postgresql?

--

Comment By: Alexey Loubyansky (loubyansky)
Date: 2004-05-11 03:18

Message:
Logged In: YES 
user_id=543482

If ResultSet contains wrong results we can't fix it.

--

Comment By: Daniel Ruoso (ruoso)
Date: 2004-05-10 19:07

Message:
Logged In: YES 
user_id=288034

I made a workaround to this bug that gives more information
about where exactly is the bug. I've changed the code that
retrieves the Account EJB to retrieve the AccountPayCheck
EJB and then the exception stopped.

--

Comment By: Daniel Ruoso (ruoso)
Date: 2004-05-10 18:11

Message:
Logged In: YES 
user_id=288034

Just to make clear... I've looked at 
JDBCAbstractQueryCommand method execute. and definetively
the ResultSet *IS* returning 2 rows, and not 1 as there is
in the database...

--

Comment By: Daniel Ruoso (ruoso)
Date: 2004-05-10 18:05

Message:
Logged In: YES 
user_id=288034

Ok,

I've done some tests... and as far as I could go, the sql
was correctly arranged. like SELECT * FROM Account WHERE
idaccount=?. And, this part I really didn't understand, the
result set had 2 rows. even the database 

[JBoss-dev] [ jboss-Bugs-951472 ] More than one entity found exception raised with subclasses

2004-05-11 Thread SourceForge.net
Bugs item #951472, was opened at 2004-05-10 16:42
Message generated for change (Comment added) made by ruoso
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detailatid=376685aid=951472group_id=22866

Category: JBossCMP
Group: v3.2
Status: Closed
Resolution: Rejected
Priority: 5
Submitted By: Daniel Ruoso (ruoso)
Assigned to: Alexey Loubyansky (loubyansky)
Summary: More than one entity found exception raised with subclasses

Initial Comment:
Hi,

I have one CMP EJB called Account, and I have
descendant EJBs called AccountMoney, AccountPayCheck,
AccountCreditCard. These EJBs are java subclasses from
the AccountBean class, and the tables inherits the
Account table.

Here's the problem.

I have two session beans, one named CtrlPayCheck and
other name CtrlAccounts. The CtrlPayCheck needs to
findByPrimaryKey on an AccountPayCheck EJB, and invoke
a method in CtrlAccounts to operate on the generic
Account.

When the second session bean (CtrlAccounts) tries to
findByPrimaryKey the same account (as AccountLocal)
that the first session bean (CtrlPayCheck) accessed (as
AccountPayCheckLocal), a More than one entity matches
the find criteria exception. In fact, the field used
in the finder *is* the primary key of the account
table. And there is *only one* entity that matches the
find criteria...

Possible cause:

I think when the CMP container instantiates the
AccountPayCheck EJB it sees that it must check the
idAccount field into Account table, but store that
information as an AccountPayCheck. which in fact *is*
an Account.
Then, when the container goes to instantiate the
Account EJB, it gets from the database (as he never
retrtieved an Account Bean) and sees that the
AccountnPayCheck is a Account too, so it finds two
entities, and not just one. Even they being the same
entity.

I've never looked at Jboss's source code, and I
actually don't have a clue of where to look at. This
problem is really urgent to me, as it's stopping an
online situation... Hope there is a workaround before
the fix is released.

--

Comment By: Daniel Ruoso (ruoso)
Date: 2004-05-11 19:51

Message:
Logged In: YES 
user_id=288034

Ok... I revised my investigation and In fact, the rs
contains 2 rows... then I found that the problem is really
with postgresql inherits implementation.

The problem is: when I have the table Account have the
primary key idAccount postgresql does not assure that the
inherited table doesn't have the same id.

It's not a JBOSS bug after all...

--

Comment By: Daniel Ruoso (ruoso)
Date: 2004-05-11 18:05

Message:
Logged In: YES 
user_id=288034

Ok... I'll investigate a little more...

--

Comment By: Alexey Loubyansky (loubyansky)
Date: 2004-05-11 17:48

Message:
Logged In: YES 
user_id=543482

Didn't you write that SQL query was correct and ResultSet
returned wrong data?
There is no query cache. We return what is in the ResultSet.

--

Comment By: Daniel Ruoso (ruoso)
Date: 2004-05-11 17:30

Message:
Logged In: YES 
user_id=288034

Ok... 
just to make clear, JDBCAbstractQueryCommand is the last
step before talking to database? I mean, there is no cache
control or transaction control inside jboss after that?

And... there is still the chance I misunderstood what was
going on in jboss... after all, this was my first incursion
in jboss source... :)

--

Comment By: Alexey Loubyansky (loubyansky)
Date: 2004-05-11 16:44

Message:
Logged In: YES 
user_id=543482

Or the driver if the database really contains only one row
matching the query.
I mean if the SQL query is correct and ResultSet contains
wrong result this is not a bug in JBoss.

--

Comment By: Daniel Ruoso (ruoso)
Date: 2004-05-11 13:30

Message:
Logged In: YES 
user_id=288034

Do you mean this can be a bug in postgresql?

--

Comment By: Alexey Loubyansky (loubyansky)
Date: 2004-05-11 03:18

Message:
Logged In: YES 
user_id=543482

If ResultSet contains wrong results we can't fix it.

--

Comment By: Daniel Ruoso (ruoso)
Date: 2004-05-10 19:07

Message:
Logged In: YES 
user_id=288034

I made a workaround to this bug that gives more information
about where exactly is the bug. I've changed the code that
retrieves the Account EJB to retrieve the AccountPayCheck
EJB and then the exception stopped.

--

Comment By: Daniel Ruoso (ruoso)
Date: 2004-05-10 18:11

Message:
Logged In: YES 
user_id=288034

Just to make clear... I've looked at 

[JBoss-dev] [JBoss IDE] - Re: Unable to install the JBOSS PLUGIN in Eclipse

2004-05-11 Thread letiemble
Hi,

Very strange indeed.

Now the only way to upgrade, is to download the zip bundle.
Go on the JBoss Sourceforge project page and choose the JBoss-IDE release. You should 
see the Files section with the bundle.

Laurent.


View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3834526#3834526

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3834526


---
This SF.Net email is sponsored by Sleepycat Software
Learn developer strategies Cisco, Motorola, Ericsson  Lucent use to 
deliver higher performing products faster, at low TCO.
http://www.sleepycat.com/telcomwpreg.php?From=osdnemail3
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Caches on JBoss (Caches/JBoss)] - Re: Use of JBoss's cache with hibernate

2004-05-11 Thread bwang00
You can't use TreeCache as a mbean service inside Hibernate. That's the current 
integration limitation from Hibernate.

Thanks,

-Ben

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3834529#3834529

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3834529


---
This SF.Net email is sponsored by Sleepycat Software
Learn developer strategies Cisco, Motorola, Ericsson  Lucent use to 
deliver higher performing products faster, at low TCO.
http://www.sleepycat.com/telcomwpreg.php?From=osdnemail3
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Caches on JBoss (Caches/JBoss)] - Re: TreeCache standalone / Hibernate / Orion

2004-05-11 Thread bwang00
You need to put TreeCache.xml in your class path.

-Ben

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3834530#3834530

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3834530


---
This SF.Net email is sponsored by Sleepycat Software
Learn developer strategies Cisco, Motorola, Ericsson  Lucent use to 
deliver higher performing products faster, at low TCO.
http://www.sleepycat.com/telcomwpreg.php?From=osdnemail3
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] jboss-head build.140 Build Successful

2004-05-11 Thread kimptoc_mail

View results here -> http://tck2.jboss.com/cc/buildresults/jboss-head?log=log20040511194116Lbuild.140
BUILD COMPLETE-build.140Date of build:05/11/2004 19:41:16Time to build:13 minutes 44 secondsLast changed:05/11/2004 19:21:16Last log entry:add missing jboss-4.x dtd




   Unit Tests: (0)No Tests RunThis project doesn't have any tests
Modifications since last build:(4)1.2modifiedtdieslercommon/src/main/org/jboss/util/xml/JBossEntityResolver.javaadd missing jboss-4.x dtd1.1addedtdieslerwebservice/src/main/org/jboss/webservice/client/ClientEngine.java+ use our own AxisClient engine, as the original one does not respect ws4ee handler lifecycle1.5modifiedtdieslerwebservice/src/main/org/jboss/webservice/client/JaxRpcClientService.java+ use our own AxisClient engine, as the original one does not respect ws4ee handler lifecycle1.3modifiedtdieslerwebservice/src/main/org/jboss/webservice/handler/HandlerChainImpl.java+ use our own AxisClient engine, as the original one does not respect ws4ee handler lifecycle



[JBoss-dev] JBoss Test Results: 94 % ( 1721 / 1821 ) - come on - pull your finger out. JBoss (HEAD/winxp/1.4.1_06) [AUTOMATED]

2004-05-11 Thread kimptoc_mail
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Wed May 12 01:40:30 GMTDT 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===


JBoss daily test results

SUMMARY

Number of tests run:   1821



Successful tests:  1721

Errors:93

Failures:  7





[time of test: 2004-05-11.23-38 GMT]
[java.version: 1.4.1_06]
[java.vendor: Sun Microsystems Inc.]
[java.vm.version: 1.4.1_06-b01]
[java.vm.name: Java HotSpot(TM) Client VM]
[java.vm.info: mixed mode]
[os.name: Windows XP]
[os.arch: x86]
[os.version: 5.1]

Useful resources:

- 
http://jboss.kimptoc.net/winxp/1.4.1_06/logtests/testresults/reports/html//2004-05-11.23-38
 for
the junit report of this test.


NOTE: If there are any errors shown above - this mail is only highlighting 
them - it is NOT indicating that they are being looked at by anyone.

It is assumed that whoever makes change(s) to jboss that 
break the test will be fixing the test or jboss, as appropriate!





DETAILS OF ERRORS



Suite:   org.jboss.test.client.test.AppClientUnitTestCase
Test:testENC
Type:error
Exception:   javax.naming.NameNotFoundException
Message: test-client not bound
-



Suite:   org.jboss.test.client.test.AppClientUnitTestCase
Test:testEjbs
Type:error
Exception:   javax.naming.NameNotFoundException
Message: test-client not bound
-



Suite:   org.jboss.test.client.test.AppClientUnitTestCase
Test:testServerFound
Type:error
Exception:   org.jboss.deployment.DeploymentException
Message: Failed to find module file: cts.jar
-



Suite:   org.jboss.test.exception.EntityExceptionUnitTestCase
Test:testNotDiscardedApplicationExceptionInTxMarkRollback_remote
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Error, bean instance was discarded!
-



Suite:   org.jboss.test.exception.EntityExceptionUnitTestCase
Test:testNotDiscardedApplicationExceptionNewTxMarkRollback_remote
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Error, bean instance was discarded!
-



Suite:   org.jboss.test.exception.EntityExceptionUnitTestCase
Test:testNotDiscardedApplicationExceptionNoTx_remote
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Error, bean instance was discarded!

===
Wed May 12 01:40:30 GMTDT 2004
===
CYGWIN_NT-5.1 quarks2 1.5.4(0.94/3/2) 2003-09-12 23:08 i686 unknown unknown Cygwin
===
java -version
java version 1.4.1_06
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.1_06-b01)
Java HotSpot(TM) Client VM (build 1.4.1_06-b01, mixed mode)


---
This SF.Net email is sponsored by Sleepycat Software
Learn developer strategies Cisco, Motorola, Ericsson  Lucent use to 
deliver higher performing products faster, at low TCO.
http://www.sleepycat.com/telcomwpreg.php?From=osdnemail3
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JMS on JBoss (JMS/JBoss)] - Re: ChangeNotes: 3.2.4

2004-05-11 Thread [EMAIL PROTECTED]
ConnectionConsumer improvements:

Some more logging.
Make the thread name more unique.
Catch Throwable not just JMSException so we can detect all failures.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3834535#3834535

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3834535


---
This SF.Net email is sponsored by Sleepycat Software
Learn developer strategies Cisco, Motorola, Ericsson  Lucent use to 
deliver higher performing products faster, at low TCO.
http://www.sleepycat.com/telcomwpreg.php?From=osdnemail3
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] jboss-head build.141 Build Successful

2004-05-11 Thread kimptoc_mail

View results here -> http://tck2.jboss.com/cc/buildresults/jboss-head?log=log20040511210725Lbuild.141
BUILD COMPLETE-build.141Date of build:05/11/2004 21:07:25Time to build:12 minutes 45 secondsLast changed:05/11/2004 20:45:43Last log entry:branches:  1.1.2;Include the source used to build the jar




   Unit Tests: (0)No Tests RunThis project doesn't have any tests
Modifications since last build:(2)1.1addedstarksmthirdparty/oswego-concurrent/lib/concurrent-src.zipbranches:  1.1.2;Include the source used to build the jar1.4modifiedstarksmthirdparty/oswego-concurrent/lib/concurrent.jarThe rebuild of this jar did not match the 1.3.3 source so rebuild andvalidate that the EDU/oswego/cs/dl/util/concurrent source that was compiledmatched the concurrent/*.java source from the 1.3.3 archive.



[JBoss-dev] jboss-3.2 build.19 Build Successful

2004-05-11 Thread kimptoc_mail

View results here -> http://tck2.jboss.com/cc/buildresults/jboss-3.2?log=log20040511213531Lbuild.19
BUILD COMPLETE-build.19Date of build:05/11/2004 21:35:31Time to build:12 minutes 25 secondsLast changed:05/11/2004 21:15:31Last log entry:Some more logging in the connection consumer.Make the thread name more unique.Catch Throwable not just JMSException so we can detect all failures.




   Unit Tests: (0)No Tests RunThis project doesn't have any tests
Modifications since last build:(4)1.8.4.2modifiedejortmessaging/src/main/org/jboss/mq/SpyConnectionConsumer.javaSome more logging in the connection consumer.Make the thread name more unique.Catch Throwable not just JMSException so we can detect all failures.1.1.2.2modifiedstarksmthirdparty/oswego/concurrent/lib/concurrent-src.zipUse the source with the correct package structure and the ant build.xml usedto compile and create the jar. The chksums for the source used to compile thejar are:[EMAIL PROTECTED] concurrent]$ cksum *.java160980130 2044 Barrier.java3506800350 4923 BoundedBuffer.java3960876365 1117 BoundedChannel.java3800617546 10159 BoundedLinkedQueue.java457694538 4077 BoundedPriorityQueue.java1344025718 1051 BrokenBarrierException.java1401341919 1184 Callable.java3533319535 11003 Channel.java4286056154 12287 ClockDaemon.java3960311208 39060 ConcurrentHashMap.java2733216478 39130 ConcurrentReaderHashMap.java1675813698 7465 CondVar.java4207498784 38341 CopyOnWriteArrayList.java857592983 3897 CopyOnWriteArraySet.java4048788415 3420 CountDown.java3445429967 9578 CyclicBarrier.java2216200710 1763 DefaultChannelCapacity.java2231274636 991 DirectExecutor.java415108686 2596 Executor.java42183043 5717 FIFOReadWriteLock.java1728500723 2537 FIFOSemaphore.java2046950402 18638 FJTask.java424825908 29129 FJTaskRunner.java550052333 20499 FJTaskRunnerGroup.java1029709563 5910 FutureResult.java767101141 4004 Heap.java1391561217 2899 Latch.java2391232040 2223 LayeredSync.java2694834193 860 LinkedNode.java2391444107 4968 LinkedQueue.java3385602716 1627 LockedExecutor.java1906341805 5266 Mutex.java3297817497 1380 NullSync.java728671346 3497 ObservableSync.java4266036579 33073 PooledExecutor.java1737493272 2741 PrioritySemaphore.java568666976 14830 PropertyChangeMulticaster.java2918958045 2566 Puttable.java505768242 6375 QueuedExecutor.java2601979733 4864 QueuedSemaphore.java2519819980 2410 ReadWriteLock.java1745831590 1022 ReaderPreferenceReadWriteLock.java810010818 3722 ReentrantLock.java41134836 4753 ReentrantWriterPreferenceReadWriteLock.java3656771129 13288 Rendezvous.java2759353 5425 Semaphore.java3093770003 4724 SemaphoreControlledChannel.java863602164 2363 Slot.java1978633933 11062 Sync.java2100064643 13812 SyncCollection.java3591694702 7151 SyncList.java3771328104 6405 SyncMap.java182736445 2020 SyncSet.java3673835562 3274 SyncSortedMap.java201594876 3265 SyncSortedSet.java2661095218 4213 SynchronizedBoolean.java3891556101 5515 SynchronizedByte.java3598660334 4154 SynchronizedChar.java3597887615 4356 SynchronizedDouble.java4074061623 4250 SynchronizedFloat.java1717686487 5418 SynchronizedInt.java1154528474 5433 SynchronizedLong.java3992713316 2773 SynchronizedRef.java4121141196 5570 SynchronizedShort.java449697222 7943 SynchronizedVariable.java450371294 10494 SynchronousChannel.java24327629 2316 Takable.java4030363056 1017 ThreadFactory.java625628055 1750 ThreadFactoryUser.java1709581303 1156 ThreadedExecutor.java1097233501 1824 TimedCallable.java3777086941 1376 TimeoutException.java2073770757 1950 TimeoutSync.java3564892241 19007 VetoableChangeMulticaster.java3708698685 6125 WaitFreeQueue.java1365617006 3266 WaitableBoolean.java2167249974 4333 WaitableByte.java1259801264 4086 WaitableChar.java1176403560 4142 WaitableDouble.java1065848275 4114 WaitableFloat.java3459398765 4303 WaitableInt.java744465569 4333 WaitableLong.java1075804966 2808 WaitableRef.java1374263082 4363 WaitableShort.java1170168065 4395 WaiterPreferenceSemaphore.java1518310245 9211 WriterPreferenceReadWriteLock.java1.1.2.1modifiedstarksmthirdparty/oswego/concurrent/lib/concurrent-src.zipInclude the source used to build concurrent.jar1.1.1.1.8.4modifiedstarksmthirdparty/oswego/concurrent/lib/concurrent.jarThe rebuild of this jar did not match the 1.3.3 source so rebuild andvalidate that the EDU/oswego/cs/dl/util/concurrent source that was compiledmatched the concurrent/*.java source from the 1.3.3 archive.



[JBoss-dev] Test Job Failed to Complete Successfully (or we gave up on it...)! JBoss (HEAD/winxp/1.4.2_03) [AUTOMATED]

2004-05-11 Thread kimptoc_mail
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Wed May 12 02:57:21 GMTDT 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
[junit] Tests run: 4, Failures: 2, Errors: 0, Time elapsed: 8.187 sec
[junit] TEST org.jboss.test.txtimer.test.CanceledTimerTestCase FAILED
[junit] Running org.jboss.test.txtimer.test.EntityBeanTestCase
[junit] Tests run: 8, Failures: 0, Errors: 0, Time elapsed: 9.515 sec
[junit] Running org.jboss.test.txtimer.test.SimpleTimerTestCase
[junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 8.141 sec
[junit] Running org.jboss.test.txtimer.test.TimerSerializationTestCase
[junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 3.187 sec
[junit] Running org.jboss.test.txtimer.test.TransactionalTimerTestCase
[junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 4.328 sec

tests-util-unit:
[junit] Running org.jboss.test.util.test.PropertyEditorsUnitTestCase
[junit] Tests run: 5, Failures: 0, Errors: 0, Time elapsed: 0.64 sec
[junit] Running org.jboss.test.util.test.PropertyPatternUnitTestCase
[junit] Tests run: 17, Failures: 0, Errors: 0, Time elapsed: 0.11 sec
[junit] Running org.jboss.test.util.test.ProtocolHandlerUnitTestCase
[junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.093 sec
[junit] Running org.jboss.test.util.test.SchedulerUnitTestCase
[junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 0.5 sec
[junit] Running org.jboss.test.util.test.StringsUnitTestCase
[junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 0.219 sec
[junit] Running org.jboss.test.util.test.ThreadPoolRunnableUnitTestCase
[junit] Tests run: 7, Failures: 0, Errors: 0, Time elapsed: 1.203 sec
[junit] Running org.jboss.test.util.test.ThreadPoolTaskUnitTestCase
[junit] Tests run: 7, Failures: 0, Errors: 0, Time elapsed: 1.25 sec

tests-webservice-unit:
[junit] Running org.jboss.test.webservice.basic.AxisUnitTestCase
[junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 9.61 sec
[junit] Running org.jboss.test.webservice.ejbcomplex.EJBComplexUnitTestCase
[junit] org.jboss.test.webservice.ejbcomplex.EJBComplexUnitTestCase: This test 
involves some intense persistence actions and may require you to adjust your server 
-Xmx settings.
[junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 28.156 sec
[junit] Running org.jboss.test.webservice.ejbsimple.HelloUnitTestCase
[junit] Tests run: 8, Failures: 0, Errors: 0, Time elapsed: 10.531 sec
[junit] Running org.jboss.test.webservice.ejbsimple.RedeployUnitTestCase
[junit] Tests run: 8, Failures: 0, Errors: 0, Time elapsed: 10.984 sec
[junit] Running org.jboss.test.webservice.external.ExternalUnitTestCase
[junit] org.jboss.test.webservice.external.ExternalUnitTestCase: This test 
requires a working http(s) connection to the internet. If you are running behind a 
firewall, you must start the server with the correct -Dhttp.proxy options. See the 
java documentation for that topic.
[junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 14.688 sec
[junit] Running org.jboss.test.webservice.external.RedeployUnitTestCase
[junit] org.jboss.test.webservice.external.RedeployUnitTestCase: This test 
requires a working http(s) connection to the internet. If you are running behind a 
firewall, you must start the server with the correct -Dhttp.proxy options. See the 
java documentation for that topic.
[junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 9.047 sec
[junit] Running org.jboss.test.webservice.jmx.JmxUnitTestCase
[junit] Tests run: 11, Failures: 0, Errors: 0, Time elapsed: 8.016 sec
[junit] Running org.jboss.test.webservice.jmx.RedeployUnitTestCase
[junit] Tests run: 11, Failures: 0, Errors: 0, Time elapsed: 7.453 sec
[junit] Running org.jboss.test.webservice.security.SecurityUnitTestCase
[junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 8.437 sec
[junit] Running org.jboss.test.webservice.state.RedeployUnitTestCase
[junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 9.922 sec
[junit] Running org.jboss.test.webservice.state.StateUnitTestCase
[junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 9.359 sec
[junit] Running org.jboss.test.webservice.uddi.UddiUnitTestCase
[junit] 

[JBoss-dev] JBoss Test Results: % ( / ) - . JBoss (HEAD/winxp/1.4.2_03) [AUTOMATED]

2004-05-11 Thread kimptoc_mail
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Wed May 12 03:09:57 GMTDT 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===

===
Wed May 12 03:09:57 GMTDT 2004
===
CYGWIN_NT-5.1 quarks2 1.5.4(0.94/3/2) 2003-09-12 23:08 i686 unknown unknown Cygwin
===
java -version
java version 1.4.2_03
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_03-b02)
Java HotSpot(TM) Client VM (build 1.4.2_03-b02, mixed mode)


---
This SF.Net email is sponsored by Sleepycat Software
Learn developer strategies Cisco, Motorola, Ericsson  Lucent use to 
deliver higher performing products faster, at low TCO.
http://www.sleepycat.com/telcomwpreg.php?From=osdnemail3
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] jboss-head Build Failed

2004-05-11 Thread kimptoc_mail

View results here -> http://tck2.jboss.com/cc/buildresults/jboss-head?log=log20040511215128
BUILD FAILEDAnt Error Message:file:/home/build/cruisecontrol/work/scripts/build-jboss-head.xml:80: exec returned: -122Date of build:05/11/2004 21:51:28Time to build:13 minutes 55 secondsLast changed:05/11/2004 21:22:25Last log entry:Port connection consumer improvements from 3.2.x




   Unit Tests: (0)No Tests RunThis project doesn't have any tests
Modifications since last build:(2)1.14modifiedejortmessaging/src/main/org/jboss/mq/SpyConnectionConsumer.javaPort connection consumer improvements from 3.2.x1.2modifiedstarksmthirdparty/oswego-concurrent/lib/concurrent-src.zipUse the source with the correct package structure and the ant build.xml usedto compile and create the jar. The chksums for the source used to compile thejar are:[EMAIL PROTECTED] concurrent]$ cksum *.java160980130 2044 Barrier.java3506800350 4923 BoundedBuffer.java3960876365 1117 BoundedChannel.java3800617546 10159 BoundedLinkedQueue.java457694538 4077 BoundedPriorityQueue.java1344025718 1051 BrokenBarrierException.java1401341919 1184 Callable.java3533319535 11003 Channel.java4286056154 12287 ClockDaemon.java3960311208 39060 ConcurrentHashMap.java2733216478 39130 ConcurrentReaderHashMap.java1675813698 7465 CondVar.java4207498784 38341 CopyOnWriteArrayList.java857592983 3897 CopyOnWriteArraySet.java4048788415 3420 CountDown.java3445429967 9578 CyclicBarrier.java2216200710 1763 DefaultChannelCapacity.java2231274636 991 DirectExecutor.java415108686 2596 Executor.java42183043 5717 FIFOReadWriteLock.java1728500723 2537 FIFOSemaphore.java2046950402 18638 FJTask.java424825908 29129 FJTaskRunner.java550052333 20499 FJTaskRunnerGroup.java1029709563 5910 FutureResult.java767101141 4004 Heap.java1391561217 2899 Latch.java2391232040 2223 LayeredSync.java2694834193 860 LinkedNode.java2391444107 4968 LinkedQueue.java3385602716 1627 LockedExecutor.java1906341805 5266 Mutex.java3297817497 1380 NullSync.java728671346 3497 ObservableSync.java4266036579 33073 PooledExecutor.java1737493272 2741 PrioritySemaphore.java568666976 14830 PropertyChangeMulticaster.java2918958045 2566 Puttable.java505768242 6375 QueuedExecutor.java2601979733 4864 QueuedSemaphore.java2519819980 2410 ReadWriteLock.java1745831590 1022 ReaderPreferenceReadWriteLock.java810010818 3722 ReentrantLock.java41134836 4753 ReentrantWriterPreferenceReadWriteLock.java3656771129 13288 Rendezvous.java2759353 5425 Semaphore.java3093770003 4724 SemaphoreControlledChannel.java863602164 2363 Slot.java1978633933 11062 Sync.java2100064643 13812 SyncCollection.java3591694702 7151 SyncList.java3771328104 6405 SyncMap.java182736445 2020 SyncSet.java3673835562 3274 SyncSortedMap.java201594876 3265 SyncSortedSet.java2661095218 4213 SynchronizedBoolean.java3891556101 5515 SynchronizedByte.java3598660334 4154 SynchronizedChar.java3597887615 4356 SynchronizedDouble.java4074061623 4250 SynchronizedFloat.java1717686487 5418 SynchronizedInt.java1154528474 5433 SynchronizedLong.java3992713316 2773 SynchronizedRef.java4121141196 5570 SynchronizedShort.java449697222 7943 SynchronizedVariable.java450371294 10494 SynchronousChannel.java24327629 2316 Takable.java4030363056 1017 ThreadFactory.java625628055 1750 ThreadFactoryUser.java1709581303 1156 ThreadedExecutor.java1097233501 1824 TimedCallable.java3777086941 1376 TimeoutException.java2073770757 1950 TimeoutSync.java3564892241 19007 VetoableChangeMulticaster.java3708698685 6125 WaitFreeQueue.java1365617006 3266 WaitableBoolean.java2167249974 4333 WaitableByte.java1259801264 4086 WaitableChar.java1176403560 4142 WaitableDouble.java1065848275 4114 WaitableFloat.java3459398765 4303 WaitableInt.java744465569 4333 WaitableLong.java1075804966 2808 WaitableRef.java1374263082 4363 WaitableShort.java1170168065 4395 WaiterPreferenceSemaphore.java1518310245 9211 WriterPreferenceReadWriteLock.java



[JBoss-dev] [JMS on JBoss (JMS/JBoss)] - Re: ChangeNotes: 3.2.4

2004-05-11 Thread [EMAIL PROTECTED]
Bug fix:

Add the subscription to the non-durable topic message counter otherwise you can only 
see
one nondurable subscription per topic

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3834539#3834539

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3834539


---
This SF.Net email is sponsored by Sleepycat Software
Learn developer strategies Cisco, Motorola, Ericsson  Lucent use to 
deliver higher performing products faster, at low TCO.
http://www.sleepycat.com/telcomwpreg.php?From=osdnemail3
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [AOP on JBoss (Aspects/JBoss)] - Re: peristence+hibernate

2004-05-11 Thread Bill Burke
I hate to do this to you but..

www.hibernate.org


Don't be mad!

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3834491#3834491

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3834491


---
This SF.Net email is sponsored by Sleepycat Software
Learn developer strategies Cisco, Motorola, Ericsson  Lucent use to 
deliver higher performing products faster, at low TCO.
http://www.sleepycat.com/telcomwpreg.php?From=osdnemail3
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] jboss-3.2 build.20 Build Successful

2004-05-11 Thread kimptoc_mail

View results here -> http://tck2.jboss.com/cc/buildresults/jboss-3.2?log=log20040511224252Lbuild.20
BUILD COMPLETE-build.20Date of build:05/11/2004 22:42:52Time to build:10 minutes 7 secondsLast changed:05/11/2004 22:22:52Last log entry:Add the subscription to the non-durable topic message counter otherwise you can only see one nondurablesubscription per topic




   Unit Tests: (0)No Tests RunThis project doesn't have any tests
Modifications since last build:(1)1.17.2.17modifiedejortmessaging/src/main/org/jboss/mq/server/JMSTopic.javaAdd the subscription to the non-durable topic message counter otherwise you can only see one nondurablesubscription per topic



[JBoss-dev] jboss-head build.142 Build Fixed

2004-05-11 Thread kimptoc_mail

View results here -> http://tck2.jboss.com/cc/buildresults/jboss-head?log=log20040511230451Lbuild.142
BUILD COMPLETE-build.142Date of build:05/11/2004 23:04:51Time to build:13 minutes 34 secondsLast changed:05/11/2004 22:26:18Last log entry:Port the nondurable messagecounter fix from 3.2




   Unit Tests: (0)No Tests RunThis project doesn't have any tests
Modifications since last build:(3)1.29modifiedejortmessaging/src/main/org/jboss/mq/server/JMSTopic.javaPort the nondurable messagecounter fix from 3.21.14modifiedejortmessaging/src/main/org/jboss/mq/SpyConnectionConsumer.javaPort connection consumer improvements from 3.2.x1.2modifiedstarksmthirdparty/oswego-concurrent/lib/concurrent-src.zipUse the source with the correct package structure and the ant build.xml usedto compile and create the jar. The chksums for the source used to compile thejar are:[EMAIL PROTECTED] concurrent]$ cksum *.java160980130 2044 Barrier.java3506800350 4923 BoundedBuffer.java3960876365 1117 BoundedChannel.java3800617546 10159 BoundedLinkedQueue.java457694538 4077 BoundedPriorityQueue.java1344025718 1051 BrokenBarrierException.java1401341919 1184 Callable.java3533319535 11003 Channel.java4286056154 12287 ClockDaemon.java3960311208 39060 ConcurrentHashMap.java2733216478 39130 ConcurrentReaderHashMap.java1675813698 7465 CondVar.java4207498784 38341 CopyOnWriteArrayList.java857592983 3897 CopyOnWriteArraySet.java4048788415 3420 CountDown.java3445429967 9578 CyclicBarrier.java2216200710 1763 DefaultChannelCapacity.java2231274636 991 DirectExecutor.java415108686 2596 Executor.java42183043 5717 FIFOReadWriteLock.java1728500723 2537 FIFOSemaphore.java2046950402 18638 FJTask.java424825908 29129 FJTaskRunner.java550052333 20499 FJTaskRunnerGroup.java1029709563 5910 FutureResult.java767101141 4004 Heap.java1391561217 2899 Latch.java2391232040 2223 LayeredSync.java2694834193 860 LinkedNode.java2391444107 4968 LinkedQueue.java3385602716 1627 LockedExecutor.java1906341805 5266 Mutex.java3297817497 1380 NullSync.java728671346 3497 ObservableSync.java4266036579 33073 PooledExecutor.java1737493272 2741 PrioritySemaphore.java568666976 14830 PropertyChangeMulticaster.java2918958045 2566 Puttable.java505768242 6375 QueuedExecutor.java2601979733 4864 QueuedSemaphore.java2519819980 2410 ReadWriteLock.java1745831590 1022 ReaderPreferenceReadWriteLock.java810010818 3722 ReentrantLock.java41134836 4753 ReentrantWriterPreferenceReadWriteLock.java3656771129 13288 Rendezvous.java2759353 5425 Semaphore.java3093770003 4724 SemaphoreControlledChannel.java863602164 2363 Slot.java1978633933 11062 Sync.java2100064643 13812 SyncCollection.java3591694702 7151 SyncList.java3771328104 6405 SyncMap.java182736445 2020 SyncSet.java3673835562 3274 SyncSortedMap.java201594876 3265 SyncSortedSet.java2661095218 4213 SynchronizedBoolean.java3891556101 5515 SynchronizedByte.java3598660334 4154 SynchronizedChar.java3597887615 4356 SynchronizedDouble.java4074061623 4250 SynchronizedFloat.java1717686487 5418 SynchronizedInt.java1154528474 5433 SynchronizedLong.java3992713316 2773 SynchronizedRef.java4121141196 5570 SynchronizedShort.java449697222 7943 SynchronizedVariable.java450371294 10494 SynchronousChannel.java24327629 2316 Takable.java4030363056 1017 ThreadFactory.java625628055 1750 ThreadFactoryUser.java1709581303 1156 ThreadedExecutor.java1097233501 1824 TimedCallable.java3777086941 1376 TimeoutException.java2073770757 1950 TimeoutSync.java3564892241 19007 VetoableChangeMulticaster.java3708698685 6125 WaitFreeQueue.java1365617006 3266 WaitableBoolean.java2167249974 4333 WaitableByte.java1259801264 4086 WaitableChar.java1176403560 4142 WaitableDouble.java1065848275 4114 WaitableFloat.java3459398765 4303 WaitableInt.java744465569 4333 WaitableLong.java1075804966 2808 WaitableRef.java1374263082 4363 WaitableShort.java1170168065 4395 WaiterPreferenceSemaphore.java1518310245 9211 WriterPreferenceReadWriteLock.java



[JBoss-dev] jboss-head build.143 Build Successful

2004-05-11 Thread kimptoc_mail

View results here -> http://tck2.jboss.com/cc/buildresults/jboss-head?log=log20040512003919Lbuild.143
BUILD COMPLETE-build.143Date of build:05/12/2004 00:39:19Time to build:12 minutes 37 secondsLast changed:05/12/2004 00:19:19Last log entry:Don't wrap MBeanInvokers in the RawDynamicInvoker (wasted effort)




   Unit Tests: (0)No Tests RunThis project doesn't have any tests
Modifications since last build:(2)1.57modifiedejortjmx/src/main/org/jboss/mx/server/registry/BasicMBeanRegistry.javaDon't wrap MBeanInvokers in the RawDynamicInvoker (wasted effort)1.14modifiedejortjmx/src/main/org/jboss/mx/server/InvocationContext.javaExpand out the tcl class load so we can see where the NPE is



[JBoss-dev] jboss-3.2 build.21 Build Successful

2004-05-11 Thread kimptoc_mail

View results here -> http://tck2.jboss.com/cc/buildresults/jboss-3.2?log=log20040512005448Lbuild.21
BUILD COMPLETE-build.21Date of build:05/12/2004 00:54:48Time to build:10 minutes 44 secondsLast changed:05/11/2004 23:51:30Last log entry:add session information for web apps




   Unit Tests: (0)No Tests RunThis project doesn't have any tests
Modifications since last build:(3)1.1.2.2modifiedslaboureconsole/src/resources/webconsole.war/WebModule.jspadd session information for web apps1.1.2.7modifiedslabouremanagement/src/main/org/jboss/management/j2ee/factory/WebModuleFactory.javaadd session information for web apps1.6.2.6modifiedslabouremanagement/src/main/org/jboss/management/j2ee/WebModule.javaadd session information for web apps



[JBoss-dev] [Nukes Development] - Re: Access to SourceForge CVS is changing

2004-05-11 Thread hxp
Sherman --

Thanks for the heads up.

Quite timely, in fact. As a newcomer to JBoss CVS RW (just got added a few hrs ago), 
I'm wading thru the tons of docs on Sourceforge, and thinking about how it maps to 
Eclipse. It shouldnt be too tough just to check in a module update, but I'm the kind 
of guy who likes to figure it all out (and understand more than the specific piece I 
need) ... before hacking around and maybe making a mess.

I'm guessing these are the right cmds (incorporating your hostname news) if I were to 
be using a shell...

export CVS_RSH=ssh
  | cvs [EMAIL PROTECTED]:/cvsroot/jboss login
  | cvs -z3 [EMAIL PROTECTED]:/cvsroot/jboss co nukes
  | 
  | cvs -z3 update -Pd
  | 
  | cvs -z3 ci

...but maybe I'm missing something important, and I still dont know what gotchas there 
might be with doing this from the combination of Eclipse and SecureCRT (my SSH 
client... I dont even know whether Eclipse has its own SSH client ?, or if it has to 
go out to mySecureCRT ?)

A quick step by step, specifically for the JBoss/Nukes - Sourceforge - Eclipse 
combination, would be most appreciated. (including how to make sure that only the 
module that I wish to update is updated (even if I've modified other modules locally), 
how to avoid overwrites from the server of any of my local changes that are not in CVS 
yet, and eliminate risk of screwing anything up in CVS outside of the specific files I 
wish to commit.)


Thanks!
-- Howard

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3834389#3834389

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3834389


---
This SF.Net email is sponsored by Sleepycat Software
Learn developer strategies Cisco, Motorola, Ericsson  Lucent use to 
deliver higher performing products faster, at low TCO.
http://www.sleepycat.com/telcomwpreg.php?From=osdnemail3
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [ jboss-Bugs-951472 ] More than one entity found exception raised with subclasses

2004-05-11 Thread SourceForge.net
Bugs item #951472, was opened at 2004-05-10 22:42
Message generated for change (Comment added) made by loubyansky
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detailatid=376685aid=951472group_id=22866

Category: JBossCMP
Group: v3.2
Status: Closed
Resolution: Rejected
Priority: 5
Submitted By: Daniel Ruoso (ruoso)
Assigned to: Alexey Loubyansky (loubyansky)
Summary: More than one entity found exception raised with subclasses

Initial Comment:
Hi,

I have one CMP EJB called Account, and I have
descendant EJBs called AccountMoney, AccountPayCheck,
AccountCreditCard. These EJBs are java subclasses from
the AccountBean class, and the tables inherits the
Account table.

Here's the problem.

I have two session beans, one named CtrlPayCheck and
other name CtrlAccounts. The CtrlPayCheck needs to
findByPrimaryKey on an AccountPayCheck EJB, and invoke
a method in CtrlAccounts to operate on the generic
Account.

When the second session bean (CtrlAccounts) tries to
findByPrimaryKey the same account (as AccountLocal)
that the first session bean (CtrlPayCheck) accessed (as
AccountPayCheckLocal), a More than one entity matches
the find criteria exception. In fact, the field used
in the finder *is* the primary key of the account
table. And there is *only one* entity that matches the
find criteria...

Possible cause:

I think when the CMP container instantiates the
AccountPayCheck EJB it sees that it must check the
idAccount field into Account table, but store that
information as an AccountPayCheck. which in fact *is*
an Account.
Then, when the container goes to instantiate the
Account EJB, it gets from the database (as he never
retrtieved an Account Bean) and sees that the
AccountnPayCheck is a Account too, so it finds two
entities, and not just one. Even they being the same
entity.

I've never looked at Jboss's source code, and I
actually don't have a clue of where to look at. This
problem is really urgent to me, as it's stopping an
online situation... Hope there is a workaround before
the fix is released.

--

Comment By: Alexey Loubyansky (loubyansky)
Date: 2004-05-11 09:18

Message:
Logged In: YES 
user_id=543482

If ResultSet contains wrong results we can't fix it.

--

Comment By: Daniel Ruoso (ruoso)
Date: 2004-05-11 01:07

Message:
Logged In: YES 
user_id=288034

I made a workaround to this bug that gives more information
about where exactly is the bug. I've changed the code that
retrieves the Account EJB to retrieve the AccountPayCheck
EJB and then the exception stopped.

--

Comment By: Daniel Ruoso (ruoso)
Date: 2004-05-11 00:11

Message:
Logged In: YES 
user_id=288034

Just to make clear... I've looked at 
JDBCAbstractQueryCommand method execute. and definetively
the ResultSet *IS* returning 2 rows, and not 1 as there is
in the database...

--

Comment By: Daniel Ruoso (ruoso)
Date: 2004-05-11 00:05

Message:
Logged In: YES 
user_id=288034

Ok,

I've done some tests... and as far as I could go, the sql
was correctly arranged. like SELECT * FROM Account WHERE
idaccount=?. And, this part I really didn't understand, the
result set had 2 rows. even the database having just 1.

Maybe it's the transaction manager, that incercepts the
execution and makes some mess... but I don't know where to
look up.



--

Comment By: Daniel Ruoso (ruoso)
Date: 2004-05-10 23:12

Message:
Logged In: YES 
user_id=288034

Well,

I finally got the stacktrace for the error.

17:08:57,769 ERROR [STDERR] Caused by:
javax.ejb.FinderException: More than one entity matches the
finder criteria.
17:08:57,772 ERROR [STDERR] at
org.jboss.ejb.plugins.cmp.jdbc.JDBCFindEntityCommand.execute(JDBCFindEntityCommand.java:60)
17:08:57,775 ERROR [STDERR] at
org.jboss.ejb.plugins.cmp.jdbc.JDBCStoreManager.findEntity(JDBCStoreManager.java:571)
17:08:57,778 ERROR [STDERR] at
org.jboss.ejb.plugins.CMPPersistenceManager.findEntity(CMPPersistenceManager.java:299)
17:08:57,781 ERROR [STDERR] at
org.jboss.resource.connectionmanager.CachedConnectionInterceptor.findEntity(CachedConnectionInterceptor.java:300)
17:08:57,784 ERROR [STDERR] at
org.jboss.ejb.EntityContainer.findLocal(EntityContainer.java:637)
17:08:57,787 ERROR [STDERR] at
sun.reflect.GeneratedMethodAccessor95.invoke(Unknown Source)
17:08:57,790 ERROR [STDERR] at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
17:08:57,793 ERROR [STDERR] at
java.lang.reflect.Method.invoke(Method.java:324)
17:08:57,796 ERROR [STDERR] at
org.jboss.ejb.EntityContainer$ContainerInterceptor.invokeHome(EntityContainer.java:1043)
17:08:57,799 ERROR [STDERR] at

[JBoss-dev] [JBoss IDE] - Re: Which are the correct steps to configure JBoss-Remote on

2004-05-11 Thread letiemble
Hi,

You must launch the JBoss server with the debug options to enable remote connection.

Take a look at the run.bat file and the line :

set JAVA_OPTS=-classic -Xdebug -Xnoagent -Djava.compiler=NONE 
-Xrunjdwp:transport=dt_socket,address=8787,server=y,suspend=y %JAVA_OPTS%

Don't forget to uncomment it.

Laurent.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3834398#3834398

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3834398


---
This SF.Net email is sponsored by Sleepycat Software
Learn developer strategies Cisco, Motorola, Ericsson  Lucent use to 
deliver higher performing products faster, at low TCO.
http://www.sleepycat.com/telcomwpreg.php?From=osdnemail3
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Nukes Development] - Re: opinion needed for news design

2004-05-11 Thread hxp
Noel -- 

Regarding our discussion of why pure-CMP provides a higher and better level of 
abstraction than does thinking and talking and coding in terms of tables/sql/ddl 
and how we can uplevel nukes to the pure-CMP level...

hxp wrote : I'm organizing and preparing a bunch of relevant material, and will be 
posting it in the next few days --- and it will make this whole subject a lot clearer. 
I'll post back here when there is something relevant to point to. 

Sorry; forgot to post linkage back here so in case you haven't seen it yet...

Pure-CMP  FAQ Module revamp

http://www.jboss.org/index.html?module=bbop=viewtopict=49034


MySQL  Pure-CMP --- issues w News  FAQ modules

http://www.jboss.org/index.html?module=bbop=viewtopict=49132


and also put kind of bluntly in the 4th message of:

http://www.jboss.org/index.html?module=bbop=viewtopicp=3831721


When I return from travels in July, I'll want to talk turkey with you about what 
pure-CMP means for the next generation of the Installer.

--  Howard

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3834399#3834399

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3834399


---
This SF.Net email is sponsored by Sleepycat Software
Learn developer strategies Cisco, Motorola, Ericsson  Lucent use to 
deliver higher performing products faster, at low TCO.
http://www.sleepycat.com/telcomwpreg.php?From=osdnemail3
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Nukes Development] - any plan to make nukes works on multi language ?:

2004-05-11 Thread ziyu
It' seem nukes only friendly with single byte language.
I want to make it works width tranditional chinese, but it's seem not easy to find a 
entrance.

Did any nukes team memeber consider to define a good architechture wthich can make  
the whole nukes modules work friendly with any language.

There is at least three places to consider:
1. doPost , doGet method in servlet , must reconize the encoding of the client 
(browser) input. This should be responsibility of servlet spec, but earlier servlet 
implementation did not handle very well, I don't know what verstion of servlet/tomcat 
can handle it correctly or it is still a stupid bug ?

2. html page encode problems:  bb module encode/decode content seems has problem, it 
will encode all double byte charactor into a form like #23243. Can anybody explain 
why?

3.  database connection:  make sure it store correct data. I am not family with mysql, 
but I know mysql can work with utf8 encoding.  I have a little expriernce with MS-SQL 
JDBC driver long long ago. You have to gvive explict encoding parameter in connection.

I think all output rendering html page should be UTF-8 encoding, this coding is accept 
in most browser and works very good in multi language display. 

Java is i18n build-in, if we define it well, everything will goes well. What we have 
to do is just format the message like timestampe in bb module.

Sorry for my poor english grammar.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3834400#3834400

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3834400


---
This SF.Net email is sponsored by Sleepycat Software
Learn developer strategies Cisco, Motorola, Ericsson  Lucent use to 
deliver higher performing products faster, at low TCO.
http://www.sleepycat.com/telcomwpreg.php?From=osdnemail3
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Nukes Development] - Re: any plan to make nukes works on multi language ?:

2004-05-11 Thread cooper
Check what I have modified yesterday in CVS for the HTML module : now it is possible 
to put more chars. I don't think it works for chinese but at least it works for the 
more common used on internet. That entity encoding produce output which is independant 
from the output charset on the HttpServletResponse.

Basically, it's ok with MySQL for storing String object without information loss. So 
when a user submit some form with chars, these are properly stored in the database. I 
think this is because the parameters are taken from the HttpRequest which decodes them 
as String acccording to the content type.

So what cause problem is rather the other part, sending data to the client. What the 
HTML does now is it takes the String from the database and converts to HTML entity any 
chars that belongs to that table : 
http://cvs.sourceforge.net/viewcvs.py/*checkout*/jboss/nukes/common/src/main/org/jboss/nukes/common/util/EntityTable.java?content-type=text%2Fplainrev=1.1

I guess that the chinese chars are not listed here, so the question is, is there a way 
to display these chars independantly from the charset ? I don't know yet and I have to 
look at that.


View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3834403#3834403

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3834403


---
This SF.Net email is sponsored by Sleepycat Software
Learn developer strategies Cisco, Motorola, Ericsson  Lucent use to 
deliver higher performing products faster, at low TCO.
http://www.sleepycat.com/telcomwpreg.php?From=osdnemail3
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] jboss-head Build Failed

2004-05-11 Thread kimptoc_mail

View results here -> http://tck2.jboss.com/cc/buildresults/jboss-head?log=log20040511045846
BUILD FAILEDAnt Error Message:file:/home/build/cruisecontrol/work/scripts/build-jboss-head.xml:80: exec returned: -122Date of build:05/11/2004 04:58:46Time to build:18 minutes 37 secondsLast changed:05/11/2004 04:38:46Last log entry:throw an IllegalArgumentException before hitting a NPE when the bsh script cannot be found




   Unit Tests: (0)No Tests RunThis project doesn't have any tests
Modifications since last build:(1)1.6modifiedtdieslerconsole/src/main/org/jboss/console/plugins/helpers/BasePluginWrapper.javathrow an IllegalArgumentException before hitting a NPE when the bsh script cannot be found



[JBoss-dev] [Nukes Development] - Re: MySQL Pure-CMP --- issues w News FAQ modules

2004-05-11 Thread LCB
jae,
 you have added nukes.pk-constraint to the properties files for the database, but you 
forgott to use this property in your build script.
I think change the build.xml like this will fix it:
target name=configure unless=configure.disable
  | 
  |   property name=jndi-root value=nukes/news/
  |   property name=news.create-table value=true/
  |   property name=news.remove-table value=false/
  |   property name=news.pk-constraint value=${nukes.pk-constraint}/

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3834410#3834410

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3834410


---
This SF.Net email is sponsored by Sleepycat Software
Learn developer strategies Cisco, Motorola, Ericsson  Lucent use to 
deliver higher performing products faster, at low TCO.
http://www.sleepycat.com/telcomwpreg.php?From=osdnemail3
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] jboss-3.2 build.17 Build Successful

2004-05-11 Thread kimptoc_mail

View results here -> http://tck2.jboss.com/cc/buildresults/jboss-3.2?log=log20040511061536Lbuild.17
BUILD COMPLETE-build.17Date of build:05/11/2004 06:15:36Time to build:12 minutes 14 secondsLast changed:05/11/2004 05:53:33Last log entry:- remove unnecessary 'import' statements




   Unit Tests: (0)No Tests RunThis project doesn't have any tests
Modifications since last build:(14)1.1.4.2modifiedlqdsystem/src/main/org/jboss/system/server/ServerConfigLocator.java- remove unnecessary 'import' statements1.9.2.2modifiedlqdsystem/src/main/org/jboss/system/server/ServerInfo.java- remove unnecessary 'import' statements1.1.2.4modifiedlqdsystem/src/main/org/jboss/system/ListenerServiceMBeanSupport.java- remove unnecessary 'import' statements1.18.2.15modifiedlqdsystem/src/main/org/jboss/system/ServiceController.java- remove unnecessary 'import' statements1.1.2.2modifiedlqdsystem/src/main/org/jboss/deployment/scanner/HttpURLDeploymentScanner.java- remove unnecessary 'import' statements1.2.2.2modifiedlqdsystem/src/main/org/jboss/deployment/scanner/URLDirectoryScanner.java- remove unnecessary 'import' statements1.5.4.2modifiedlqdsystem/src/main/org/jboss/deployment/cache/DeploymentCache.java- remove unnecessary 'import' statements1.1.4.1modifiedlqdsystem/src/main/org/jboss/deployment/cache/DeploymentStore.java- remove unnecessary 'import' statements1.3.4.1modifiedlqdsystem/src/main/org/jboss/deployment/cache/FileDeploymentStore.java- remove unnecessary 'import' statements1.5.2.4modifiedlqdsystem/src/main/org/jboss/deployment/DeploymentSorter.java- remove unnecessary 'import' statements1.1.2.4modifiedlqdsystem/src/main/org/jboss/deployment/NetBootHelper.java- remove unnecessary 'import' statements1.8.2.13modifiedlqdsystem/src/main/org/jboss/deployment/SubDeployerSupport.java- remove unnecessary 'import' statements1.1.2.5modifiedlqdsystem/src/main/org/jboss/deployment/XSLSubDeployer.java- remove unnecessary 'import' statements1.1.4.1modifiedlqdsystem/src/main/org/jboss/Version.java- remove unnecessary 'import' statements



[JBoss-dev] [JBoss IDE] - Re: Unable to install the JBOSS PLUGIN in Eclipse

2004-05-11 Thread bklinghagen
If ezz232 is going by the Installation Guide provided on the website, then the issue 
he is running into is that Sourceforge no longer uses that format. The Installation 
Guide says to use http://jboss.sourceforege.net/jbosside/updates/, but Sourceforge has 
changed the format to http://sourceforge.net/projects/jboss. 

Following the Installation Guide version 1.2.2 I can't communication with Sourceforge 
either, and I know that the URL is incorrect because I've run into this before. I've 
tried several variations to try and connect, but haven't been able to guess the new 
correct format. Could you please provide it?

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3834416#3834416

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3834416


---
This SF.Net email is sponsored by Sleepycat Software
Learn developer strategies Cisco, Motorola, Ericsson  Lucent use to 
deliver higher performing products faster, at low TCO.
http://www.sleepycat.com/telcomwpreg.php?From=osdnemail3
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] jboss-head Build Failed

2004-05-11 Thread kimptoc_mail

View results here -> http://tck2.jboss.com/cc/buildresults/jboss-head?log=log20040511064351
BUILD FAILEDAnt Error Message:file:/home/build/cruisecontrol/work/scripts/build-jboss-head.xml:80: exec returned: 1Date of build:05/11/2004 06:43:51Time to build:21 minutes 35 secondsLast changed:05/11/2004 06:16:18Last log entry:better toString()




   Unit Tests: (0)No Tests RunThis project doesn't have any tests
Modifications since last build:(5)1.5modifiedtdieslerj2ee/src/main/javax/xml/rpc/handler/HandlerInfo.javabetter toString()1.6modifiedtdieslerconsole/src/main/org/jboss/console/plugins/helpers/BasePluginWrapper.javathrow an IllegalArgumentException before hitting a NPE when the bsh script cannot be found1.1addedtdieslertestsuite/src/main/org/jboss/test/ws4ee/wsdlimport/simplefile/ImportSimpleFileTestCase.javaadd wsdl import test1.1addedtdieslertestsuite/src/resources/ws4ee/wsdlimport/simplefile/SimpleFile.wsdladd wsdl import test1.1addedtdieslertestsuite/src/resources/ws4ee/wsdlimport/simplefile/SimpleFileToImport.wsdladd wsdl import test



[JBoss-dev] [JBoss IDE] - Re: Unable to install the JBOSS PLUGIN in Eclipse

2004-05-11 Thread letiemble
Hi,

The URL you put in your message is incorrect. You have mistyped it. I have checked a 
few minutes ago that the URL in the Installation Guide is correct and works.

For informations, the URL is :
http://jboss.sourceforge.net/jbosside/updates

Laurent.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3834423#3834423

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3834423


---
This SF.Net email is sponsored by Sleepycat Software
Learn developer strategies Cisco, Motorola, Ericsson  Lucent use to 
deliver higher performing products faster, at low TCO.
http://www.sleepycat.com/telcomwpreg.php?From=osdnemail3
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] Test of mail services

2004-05-11 Thread acoliver
This is a test of mail services M1RC2 to see if the continuous loop bug is
fixed and we can go public with it.



---
This SF.Net email is sponsored by Sleepycat Software
Learn developer strategies Cisco, Motorola, Ericsson  Lucent use to 
deliver higher performing products faster, at low TCO.
http://www.sleepycat.com/telcomwpreg.php?From=osdnemail3
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Nukes Development] - Re: MySQL Pure-CMP --- issues w News FAQ modules

2004-05-11 Thread jae77
i have the correct changes on my local machine, but they aren't checked in yet. 
(should be done later this evening once i'm home from the day job). 

for now you can just modify it locally if you're testing out the alpha release. don't 
get too attached to any news items you created b/c the tables did change again due to 
a weird cmp bug (which has now been fixed for 3.2.4) and some additional columns. 

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3834442#3834442

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3834442


---
This SF.Net email is sponsored by Sleepycat Software
Learn developer strategies Cisco, Motorola, Ericsson  Lucent use to 
deliver higher performing products faster, at low TCO.
http://www.sleepycat.com/telcomwpreg.php?From=osdnemail3
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


Re: [JBoss-dev] Test of mail services

2004-05-11 Thread acoliver
Lets roll!

 From: [EMAIL PROTECTED]
 Reply-To: [EMAIL PROTECTED]
 Date: Tue, 11 May 2004 08:52:12 -0400
 To: [EMAIL PROTECTED]
 Subject: [JBoss-dev] Test of mail services
 
 This is a test of mail services M1RC2 to see if the continuous loop bug is
 fixed and we can go public with it.
 
 
 
 ---
 This SF.Net email is sponsored by Sleepycat Software
 Learn developer strategies Cisco, Motorola, Ericsson  Lucent use to
 deliver higher performing products faster, at low TCO.
 http://www.sleepycat.com/telcomwpreg.php?From=osdnemail3
 ___
 JBoss-Development mailing list
 [EMAIL PROTECTED]
 https://lists.sourceforge.net/lists/listinfo/jboss-development



---
This SF.Net email is sponsored by Sleepycat Software
Learn developer strategies Cisco, Motorola, Ericsson  Lucent use to 
deliver higher performing products faster, at low TCO.
http://www.sleepycat.com/telcomwpreg.php?From=osdnemail3
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] jboss-head build.139 Build Fixed

2004-05-11 Thread kimptoc_mail

View results here -> http://tck2.jboss.com/cc/buildresults/jboss-head?log=log20040511091816Lbuild.139
BUILD COMPLETE-build.139Date of build:05/11/2004 09:18:16Time to build:20 minutes 1 secondLast changed:05/11/2004 08:35:18Last log entry:isolate the import wsdl file issue that is related to URLStreamHandlerFactory




   Unit Tests: (0)No Tests RunThis project doesn't have any tests
Modifications since last build:(6)1.2modifiedtdieslertestsuite/src/main/org/jboss/test/ws4ee/wsdlimport/simplefile/ImportSimpleFileTestCase.javaisolate the import wsdl file issue that is related to URLStreamHandlerFactory1.5modifiedtdieslerj2ee/src/main/javax/xml/rpc/handler/HandlerInfo.javabetter toString()1.6modifiedtdieslerconsole/src/main/org/jboss/console/plugins/helpers/BasePluginWrapper.javathrow an IllegalArgumentException before hitting a NPE when the bsh script cannot be found1.1addedtdieslertestsuite/src/main/org/jboss/test/ws4ee/wsdlimport/simplefile/ImportSimpleFileTestCase.javaadd wsdl import test1.1addedtdieslertestsuite/src/resources/ws4ee/wsdlimport/simplefile/SimpleFile.wsdladd wsdl import test1.1addedtdieslertestsuite/src/resources/ws4ee/wsdlimport/simplefile/SimpleFileToImport.wsdladd wsdl import test



[JBoss-dev] [AOP on JBoss (Aspects/JBoss)] - peristence+hibernate

2004-05-11 Thread kado0002
You wrote that you use hibernate for peristence!
how do you configure Jboss to use hibernate?
Do you integrate hibernate as an Mbean service like it's described on 
http://www.hibernate.org//66.html
or is hibernate always integrated in JBoss 4.0?

In my opinion the use of hibernate is something like a crosscutting concern!
(You must always open a session and save the object!...)
Is there a hibernate aspect or something?

Can you tell me  something more, about how to use hibernate as a POJO-oriented 
persistence layer, please?


View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3834450#3834450

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3834450


---
This SF.Net email is sponsored by Sleepycat Software
Learn developer strategies Cisco, Motorola, Ericsson  Lucent use to 
deliver higher performing products faster, at low TCO.
http://www.sleepycat.com/telcomwpreg.php?From=osdnemail3
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Mail Services] - Kabir: Thanks and bigfoot sucks

2004-05-11 Thread acoliver
Kabir: your fix worked!  M1 release is imminent.  BTW, your bigfoot mail is bouncing.  
with not allowed again.  I wanted to tell you any way I could :-)

You are the man behind M1 in my book.  The unoffical release codename is kabir :-)

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3834452#3834452

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3834452


---
This SF.Net email is sponsored by Sleepycat Software
Learn developer strategies Cisco, Motorola, Ericsson  Lucent use to 
deliver higher performing products faster, at low TCO.
http://www.sleepycat.com/telcomwpreg.php?From=osdnemail3
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [ jboss-Bugs-951934 ] Class-Path entry in WAR Manifest.mf ignored

2004-05-11 Thread SourceForge.net
Bugs item #951934, was opened at 2004-05-11 16:37
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detailatid=376685aid=951934group_id=22866

Category: JBossWeb
Group: v3.2
Status: Open
Resolution: None
Priority: 5
Submitted By: Ralf Zimmermann (rz1911)
Assigned to: Nobody/Anonymous (nobody)
Summary: Class-Path entry in WAR Manifest.mf ignored

Initial Comment:
Hi, 

I have packaged a WAR and a JAR within an EAR. The 
JAR contains the servlet class TestServlet.class used by 
the web application in the WAR. So I added an Class-
Path entry to the META-INF/Manifest.mf file of the 
WAR. When i try to acces the Servlet 
http://localhost:8080/test) i get an 
ClassNotFoundException. This seems to be the same 
problem as described in PR 784584 which is marked as 
closed. You can reproduce the bug with the attached
EAR. I tried it with JBoss 3.2.2 and Jboss 3.2.3.

Can you help?

Thanks, Ralf
 

--

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detailatid=376685aid=951934group_id=22866


---
This SF.Net email is sponsored by Sleepycat Software
Learn developer strategies Cisco, Motorola, Ericsson  Lucent use to 
deliver higher performing products faster, at low TCO.
http://www.sleepycat.com/telcomwpreg.php?From=osdnemail3
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Deployers on JBoss (Deployers/JBoss)] - Re: not able to do hot deploy

2004-05-11 Thread zhangj
thank you for your reply.I still have 2 questions:
1.I have another very simple ejb,have only one method,getNmae(),in the jsp,I look up 
and call this method,it works,even I hot redeploy this ejb,the jsp still 
working,why?may be beacuse I look up this ejb use :
Object obj = ic.lookup(ejbname);
but in my previous ejb,I use
Object obj = ic.lookup(java:comp/env/ejb/ejbname);

2.if I redeploy the ejb,I have to touch jsps and all of component which refer to 
this ejb,then the hot deploy is hard,I prefer to restart server

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3834458#3834458

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3834458


---
This SF.Net email is sponsored by Sleepycat Software
Learn developer strategies Cisco, Motorola, Ericsson  Lucent use to 
deliver higher performing products faster, at low TCO.
http://www.sleepycat.com/telcomwpreg.php?From=osdnemail3
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Deployers on JBoss (Deployers/JBoss)] - Re: not able to do hot deploy

2004-05-11 Thread zhangj
sorry,forget my 1st question,I did couple of more test,it's not working,I have to 
touch the jsp.
pls. take a look my 2nd question.thank you

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3834460#3834460

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3834460


---
This SF.Net email is sponsored by Sleepycat Software
Learn developer strategies Cisco, Motorola, Ericsson  Lucent use to 
deliver higher performing products faster, at low TCO.
http://www.sleepycat.com/telcomwpreg.php?From=osdnemail3
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss IDE] - Re: Unable to install the JBOSS PLUGIN in Eclipse

2004-05-11 Thread bklinghagen
Well, the URL doesn't work for me, and I have nothing wrong with system configuration 
or DNS configuration.  The following information is taken directly from the 
Sourceforge site, note the structure of the URL reference. This is the only way I can 
reference projects on Sourceforge. If I type in the URL as specified in the 
Installation document, I get a timeout error. Please don't blow me off as some 
crackpot who doesn't know what he is talking about. There is definetely something 
wrong here. If it works for you, and doesn't for me, then maybe there are two 
different mirrors of the Sourceforge with two different structures. I've run into this 
problem with another project, and there is ABSOLUTELY NO WAY to work around the URL 
issue, I have to type it as it shows below, and maybe the person above has to do the 
same thing. 

 Downloading a file: Locate the Project Summary page for the project in question  | 
doc feedback | support

Each project on SourceForge.net has a unique identifier, its UNIX name. You may access 
projects directly if you know their UNIX name 
(http://sourceforge.net/projects/UNIXNAME). Otherwise, you may locate a particular 
project by using the SourceForge.net Site Search feature, or the Software Map, both 
accessible within the left navbar of the SourceForge.net site.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3834463#3834463

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3834463


---
This SF.Net email is sponsored by Sleepycat Software
Learn developer strategies Cisco, Motorola, Ericsson  Lucent use to
deliver higher performing products faster, at low TCO.
http://www.sleepycat.com/telcomwpreg.php?From=osdnemail3
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss IDE] - Re: Unable to install the JBOSS PLUGIN in Eclipse

2004-05-11 Thread bklinghagen
BTW, the paragraph from the Sourceforge website was pulled from this URL (note the URL 
structure):

https://sourceforge.net/docman/display_doc.php?docid=11085group_id=1

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3834466#3834466

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3834466


---
This SF.Net email is sponsored by Sleepycat Software
Learn developer strategies Cisco, Motorola, Ericsson  Lucent use to 
deliver higher performing products faster, at low TCO.
http://www.sleepycat.com/telcomwpreg.php?From=osdnemail3
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [ jboss-Bugs-951985 ] Capital drive letter in depoyment scanner URL's attribute

2004-05-11 Thread SourceForge.net
Bugs item #951985, was opened at 2004-05-11 10:37
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detailatid=376685aid=951985group_id=22866

Category: JBossWeb
Group: v3.2
Status: Open
Resolution: None
Priority: 5
Submitted By: Jeff DePons (snoped)
Assigned to: Nobody/Anonymous (nobody)
Summary: Capital drive letter in depoyment scanner URL's attribute

Initial Comment:

If you add a file url to the deployment scanners URLs
attribute and use a capital drive letter, the server
performance drops drastically.  There are no errors in
any of the logs, but the problem is obvious if you try
it.  Replacing the drive letter with a lowercase letter
solves the problem. 

I am using jboss the jboss-tomcat  3.2.3  bundle, and
have  reproduce the problem and solution on win
2000/xp/2003. I am using p4 class machines with 512
ram, and jdk 1.4.2_03

To reproduce the problem,

1. Create a directory outside the jboss distribution,
and drop a war file in it. 
2. Add the fully qualified path to the directory to the
URLs attribute of the deployment scanner in
jboss-service.xml
3. Up case the drive letter. ex. C:
4.  Start up the server and access the pages in the war
file.

It will take about 60-80 seconds to compile each JSP.

5. shutdown the server, and lowercase the drive letter.
ex c:

6. Start up the server and access some pages in the war
file that you haven't compiled yet (or kill your work
directory and access the same pages).

It will take 3-6 seconds to compile each JSP.

Note that there is not just a slowdown in JSP
compilation, there is a slowdown in almost any code
that runs.  If you need another example, startup and
access a web service. 


Thanks,
JD

Example mbean config...

  mbean
code=org.jboss.deployment.scanner.URLDeploymentScanner
 
name=jboss.deployment:type=DeploymentScanner,flavor=URL

  depends
optional-attribute-name=Deployerjboss.system:service=MainDeployer/depends
  attribute
name=URLComparatororg.jboss.deployment.DeploymentSorter/attribute
  attribute
name=Filterorg.jboss.deployment.scanner.DeploymentFilter/attribute
  attribute name=ScanPeriod5000/attribute

  attribute name=URLs
  deploy/,file://C:/home/mydeploydir
  /attribute

  attribute name=RecursiveSearchTrue/attribute

   /mbean

--

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detailatid=376685aid=951985group_id=22866


---
This SF.Net email is sponsored by Sleepycat Software
Learn developer strategies Cisco, Motorola, Ericsson  Lucent use to 
deliver higher performing products faster, at low TCO.
http://www.sleepycat.com/telcomwpreg.php?From=osdnemail3
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Caches on JBoss (Caches/JBoss)] - TreeCache standalone / Hibernate / Orion

2004-05-11 Thread mirror303
Hi all,

First off, in the company I work insists that I use Orion, sorry :-)

I am trying to setup a 2nd level transactional cache with Treecache. 
The faq tells me to read the Hibernate config and so I have: I have set up 
hibernate.properties and my mapping files accordingly.
Furthermore, I have included all necessary jars. When starting up the app I get the 
following error (look at the last line).


2884 [RMIConnectionThread] INFO  net.sf.hibernate.cfg.SettingsFactory  - Query 
language substitutions: {no='N', true=1, yes='Y', false=0}
2894 [RMIConnectionThread] INFO  net.sf.hibernate.cfg.SettingsFactory  - cache 
provider: net.sf.hibernate.cache.TreeCacheProvider
2894 [RMIConnectionThread] INFO  net.sf.hibernate.cfg.Configuration  - instantiating 
and configuring caches
2894 [RMIConnectionThread] DEBUG net.sf.hibernate.cfg.Configuration  - instantiating 
cache hibernate.test.shop.entities.ProductSessionFactory error: Could not instantiate 
Cache
---
I have tried to get some more debugging info but to no avail :-(

Now this ofcourse could have a lot to do with the fact that I haven't put a 
treecache.xml file anywhere, which is due to the fact that I wouldn't know where to 
put, nor what to put in it.

Can anyone give me some directions? Has anyone at all used the standalone version in 
conjunction with hibernate and orion?
Is there some more documentation somewhere?

Kind regards,
Hans


View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3834469#3834469

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3834469


---
This SF.Net email is sponsored by Sleepycat Software
Learn developer strategies Cisco, Motorola, Ericsson  Lucent use to 
deliver higher performing products faster, at low TCO.
http://www.sleepycat.com/telcomwpreg.php?From=osdnemail3
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss IDE] - Re: Unable to install the JBOSS PLUGIN in Eclipse

2004-05-11 Thread bklinghagen
Here is the error message received when trying to use the URL as specified in the 
document. I have tried this multiple times, and will continue to try, but it won't 
work because it is the WRONG FORMAT ACCORDING TO THE SOURCEFORGE SITE.

Network connection problems encountered during search.
  Unable to access http://jboss.sourceforge.net/jbosside/updates;.
Unable to access Site stream: http://jboss.sourceforge.net/jbosside/updates; 
[connect timed out]
Unable to access Site stream: 
http://jboss.sourceforge.net/jbosside/updates/site.xml; [connect timed out]


View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3834471#3834471

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3834471


---
This SF.Net email is sponsored by Sleepycat Software
Learn developer strategies Cisco, Motorola, Ericsson  Lucent use to 
deliver higher performing products faster, at low TCO.
http://www.sleepycat.com/telcomwpreg.php?From=osdnemail3
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Deployers on JBoss (Deployers/JBoss)] - Re: not able to do hot deploy

2004-05-11 Thread jae77
well - it depends on what your packaing looks like. 

1) if you have an ear and inside that ear you put the ejb jars, the jsps (inside a 
war) and whatever else you want in there, then you can just hot-deploy the entire ear 
all you want and not encounter this issue. 

2) you can extract the interfaces (Remote Home, Remote) into a seperate jar file from 
the EJB impl class (so you've now got 2 jar files). if you do this, then as long as 
you don't add any methods to the interfaces, you can modify the EJB impl class all you 
want and redeploy w/o having to touch the jsp files. 

if you add a method to the interfaces, then you're only option is to either restart 
the server or touch all the deployed packages that reference the EJB interface that 
just changed. 

it will probably be easier to just restart the server if you have more then 1 or 2 
deployment archives referencing the EJB. if you are going to be adding more methods to 
the interface, and you know what the method names, params, return types, etc will be 
up front, then just stub them out in the impl class - that way you'll reduce the 
number of times for a server restart b/c only the impl class is changing. 

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3834474#3834474

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3834474


---
This SF.Net email is sponsored by Sleepycat Software
Learn developer strategies Cisco, Motorola, Ericsson  Lucent use to 
deliver higher performing products faster, at low TCO.
http://www.sleepycat.com/telcomwpreg.php?From=osdnemail3
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss IDE] - Re: Unable to install the JBOSS PLUGIN in Eclipse

2004-05-11 Thread letiemble
Hi,

We are not talking about the SourceForge project page (which, I agree, is formed the 
way you described as in the documentation).

The JBoss-IDE update site is located on the SourceForge project website. Take a look 
at the doc :

https://sourceforge.net/docman/display_doc.php?docid=4297group_id=1#urlformat

I quote :

^ How may I access the web site of a project hosted on SourceForge.net? 

All project web sites may be accessed by the UNIX name of that project, i.e. 
http://projectname.sourceforge.net


So in case of JBoss, the URL is :
http://jboss.sourceforge.net/

Can you try to open these URL in a browser and tell me the result ?

http://jboss.sourceforge.net/snapshots/
http://jboss.sourceforge.net/jbosside/updates/

Laurent.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3834482#3834482

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3834482


---
This SF.Net email is sponsored by Sleepycat Software
Learn developer strategies Cisco, Motorola, Ericsson  Lucent use to
deliver higher performing products faster, at low TCO.
http://www.sleepycat.com/telcomwpreg.php?From=osdnemail3
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [ jboss-Bugs-951472 ] More than one entity found exception raised with subclasses

2004-05-11 Thread SourceForge.net
Bugs item #951472, was opened at 2004-05-10 16:42
Message generated for change (Comment added) made by ruoso
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detailatid=376685aid=951472group_id=22866

Category: JBossCMP
Group: v3.2
Status: Closed
Resolution: Rejected
Priority: 5
Submitted By: Daniel Ruoso (ruoso)
Assigned to: Alexey Loubyansky (loubyansky)
Summary: More than one entity found exception raised with subclasses

Initial Comment:
Hi,

I have one CMP EJB called Account, and I have
descendant EJBs called AccountMoney, AccountPayCheck,
AccountCreditCard. These EJBs are java subclasses from
the AccountBean class, and the tables inherits the
Account table.

Here's the problem.

I have two session beans, one named CtrlPayCheck and
other name CtrlAccounts. The CtrlPayCheck needs to
findByPrimaryKey on an AccountPayCheck EJB, and invoke
a method in CtrlAccounts to operate on the generic
Account.

When the second session bean (CtrlAccounts) tries to
findByPrimaryKey the same account (as AccountLocal)
that the first session bean (CtrlPayCheck) accessed (as
AccountPayCheckLocal), a More than one entity matches
the find criteria exception. In fact, the field used
in the finder *is* the primary key of the account
table. And there is *only one* entity that matches the
find criteria...

Possible cause:

I think when the CMP container instantiates the
AccountPayCheck EJB it sees that it must check the
idAccount field into Account table, but store that
information as an AccountPayCheck. which in fact *is*
an Account.
Then, when the container goes to instantiate the
Account EJB, it gets from the database (as he never
retrtieved an Account Bean) and sees that the
AccountnPayCheck is a Account too, so it finds two
entities, and not just one. Even they being the same
entity.

I've never looked at Jboss's source code, and I
actually don't have a clue of where to look at. This
problem is really urgent to me, as it's stopping an
online situation... Hope there is a workaround before
the fix is released.

--

Comment By: Daniel Ruoso (ruoso)
Date: 2004-05-11 13:30

Message:
Logged In: YES 
user_id=288034

Do you mean this can be a bug in postgresql?

--

Comment By: Alexey Loubyansky (loubyansky)
Date: 2004-05-11 03:18

Message:
Logged In: YES 
user_id=543482

If ResultSet contains wrong results we can't fix it.

--

Comment By: Daniel Ruoso (ruoso)
Date: 2004-05-10 19:07

Message:
Logged In: YES 
user_id=288034

I made a workaround to this bug that gives more information
about where exactly is the bug. I've changed the code that
retrieves the Account EJB to retrieve the AccountPayCheck
EJB and then the exception stopped.

--

Comment By: Daniel Ruoso (ruoso)
Date: 2004-05-10 18:11

Message:
Logged In: YES 
user_id=288034

Just to make clear... I've looked at 
JDBCAbstractQueryCommand method execute. and definetively
the ResultSet *IS* returning 2 rows, and not 1 as there is
in the database...

--

Comment By: Daniel Ruoso (ruoso)
Date: 2004-05-10 18:05

Message:
Logged In: YES 
user_id=288034

Ok,

I've done some tests... and as far as I could go, the sql
was correctly arranged. like SELECT * FROM Account WHERE
idaccount=?. And, this part I really didn't understand, the
result set had 2 rows. even the database having just 1.

Maybe it's the transaction manager, that incercepts the
execution and makes some mess... but I don't know where to
look up.



--

Comment By: Daniel Ruoso (ruoso)
Date: 2004-05-10 17:12

Message:
Logged In: YES 
user_id=288034

Well,

I finally got the stacktrace for the error.

17:08:57,769 ERROR [STDERR] Caused by:
javax.ejb.FinderException: More than one entity matches the
finder criteria.
17:08:57,772 ERROR [STDERR] at
org.jboss.ejb.plugins.cmp.jdbc.JDBCFindEntityCommand.execute(JDBCFindEntityCommand.java:60)
17:08:57,775 ERROR [STDERR] at
org.jboss.ejb.plugins.cmp.jdbc.JDBCStoreManager.findEntity(JDBCStoreManager.java:571)
17:08:57,778 ERROR [STDERR] at
org.jboss.ejb.plugins.CMPPersistenceManager.findEntity(CMPPersistenceManager.java:299)
17:08:57,781 ERROR [STDERR] at
org.jboss.resource.connectionmanager.CachedConnectionInterceptor.findEntity(CachedConnectionInterceptor.java:300)
17:08:57,784 ERROR [STDERR] at
org.jboss.ejb.EntityContainer.findLocal(EntityContainer.java:637)
17:08:57,787 ERROR [STDERR] at
sun.reflect.GeneratedMethodAccessor95.invoke(Unknown Source)
17:08:57,790 ERROR [STDERR] at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
17:08:57,793 ERROR [STDERR] at

[JBoss-dev] [JBoss IDE] - Re: Unable to install the JBOSS PLUGIN in Eclipse

2004-05-11 Thread bklinghagen
As I've said, they timeout, whether through the Eclipse Update manager, or through the 
browser. The only way I can connect to the Sourceforge site is using the format 
specified by Sourceforge in that paragraph. I used to be able to access each project 
the way you've specified last year, but then they updated their site and now, it has 
to be done through this new URL format.

When I change the URLs to:

http://sourceforge.net/projects/jboss/snapshots/
http://sourceforge.net/projects/jboss/jbosside/updates/

I am able to access the site, but it gives me the summary page. If I try the URL 
format string that you provide, the browser times out with a network connection time 
out. I know the summary page is not the correct location either (it didn't work in the 
download manager, and I experimented with putting any word after the UNIXNAME/ and it 
would show the project summary page so it is defaulting to that page. But I can't 
access Sourceforge the way you specify. I can try it for the next day, the next week, 
the next month, and it won't change because it hasn't changed for the last several 
months.

I notice that you are in France. The other time this came up was with a project that 
was hosted in Germany. I wonder if Sourceforge is structured different here US west 
coast and in Europe. I've sent a request into Sourceforge for help. So far there is no 
response. That is the only reasonable explanation I can think of because I have 
nothing set up in my network that would preclude Sourceforge from setting up properly, 
and besides, Sourceforge's own documentation specifies the format I describe (for all 
references to project information. 

The quote that you provide is in error for the Sourceforge here. It may say that under 
your JBOSS documentation, but that is not what Sourceforge supports anymore. They have 
made a system wide change to access project information. Maybe this change hasn't 
happened on the web servers that you access from France, but the change has definitely 
happened here because it is all over the Sourceforge documentation. 

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3834489#3834489

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3834489


---
This SF.Net email is sponsored by Sleepycat Software
Learn developer strategies Cisco, Motorola, Ericsson  Lucent use to 
deliver higher performing products faster, at low TCO.
http://www.sleepycat.com/telcomwpreg.php?From=osdnemail3
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Caches on JBoss (Caches/JBoss)] - Problem with tx in TreeCacheMBean

2004-05-11 Thread aguenther
Hi There,

I used the TreeCache as MBean in Jboss 3.2.4 with JbossCache (cvs head).
There seems to be a problem using UserTransactions in this config.
The cache is configured with the following params:


  | attribute 
name=TransactionManagerLookupClassorg.jboss.cache.JBossTransactionManagerLookup/attribute
  | attribute name=IsolationLevelSERIALIZABLE/attribute 
  | attribute name=CacheModeREPL_SYNC/attribute
  | 

I have modified the Bank-Example and pack it into a Stateless EJB using
few invokes to call the TreeCacheMBean (put and get only). A little
junit-test like ConcurrentUnitTestCase.java to test it (calls the txTest-
Method in the bean via RMI).

And that's the problem:
It seems the SERIALIZABLE - Option in the Cache- Config does not work.
I extend the Debug- log from Jboss- Cache with the Thread.getCurrentThread() -
Method and found that more then one threads took access on one Node
at one Time. There seems to be no isolation between the different transactions. 

I could not found problems in my code. Is there a bug in JBossCache?

The used EJB as follow:


  | package samples;
  | 
  | import javax.ejb.CreateException;
  | import javax.management.ObjectName;
  | import javax.management.MBeanServer;
  | import javax.transaction.UserTransaction;
  | 
  | import org.jboss.cache.lock.LockingException;
  | import org.jboss.cache.lock.TimeoutException;
  | import org.jboss.mx.util.MBeanServerLocator;
  | 
  | import org.apache.log4j.*;
  | 
  | /**
  |  * @ejb.bean 
  |  *type=Stateless 
  |  *name=JBossCacheTest 
  |  *jndi-name=ejb/JBossCacheTest
  |  *local-jndi-name=ejb/local/JBossCacheTest
  |  *view-type=both
  |  *transaction-type=Bean
  |  * 
  |  * @ejb.interface generate=local,remote
  |  *extends=javax.ejb.EJBObject 
  |  *local-extends=javax.ejb.EJBLocalObject
  |  *remote-pattern=JBossCacheTest
  |  *local-pattern=JBossCacheTestLocal
  |  * 
  |  * @ejb.home  generate=true
  |  *extends=javax.ejb.EJBHome 
  |  *local-extends=javax.ejb.EJBLocalHome
  |  *remote-pattern=JBossCacheTestHome
  |  *local-pattern=JBossCacheTestLocalHome
  |  * 
  |  * @ejb.transaction type=Supports
  |  * 
  |  * @jboss.container-configuration name=Standard Stateless SessionBean
  |  */
  | public class JBossCacheTestEJB implements javax.ejb.SessionBean, 
javax.transaction.Status
  | {
  |MBeanServer server = null;
  |ObjectName cacheService = null;
  |static final String OBJECT_NAME = jboss.cache:service=TreeCache;
  |private static Logger logger_ = Logger.getLogger(JBossCacheTestEJB.class);
  |
  |final String NODE = /cachetest;
  |final int ROLLBACK_CHANCE = 100;
  | 
  |static String customer[] = {cu1, cu2, cu3};
  |
  |public javax.ejb.SessionContext sctx;
  |   
  |public void ejbCreate()
  |{
  |}
  |
  |public void ejbActivate () throws javax.ejb.EJBException, 
java.rmi.RemoteException
  |{
  |}
  |
  |public void ejbPassivate () throws javax.ejb.EJBException, 
java.rmi.RemoteException
  |{
  |}
  |
  |public void ejbRemove () throws javax.ejb.EJBException, java.rmi.RemoteException
  |{
  |}
  |
  |public void setSessionContext (javax.ejb.SessionContext sessionContext) throws 
javax.ejb.EJBException, java.rmi.RemoteException
  |{
  |   try
  |   {
  |  sctx = sessionContext;
  |   }
  |   catch(Exception e)
  |   {
  |  e.printStackTrace();
  |   }  
  |}   
  | 
  |/** 
  | * @ejb.interface-method
  | */ 
  |public int txTest(int iTestLoops)
  |{
  |   int iErr = 0;
  |   try
  |   {
  |  getTreeCacheMBean();
  |  UserTransaction tx = sctx.getUserTransaction();
  |  out(got utx ( + tx + ));
  |  
  |  // initializing tree if iTestLoops == 0 or nodes don't exists
  |  tx.begin();
  |  if(this.get(NODE) == null || iTestLoops == 0)
  |  {
  | this.put(NODE, cu1, new Integer(1000));
  | this.put(NODE, cu2, new Integer(1000));
  | this.put(NODE, cu3, new Integer(1000));
  |  }
  |  tx.commit();
  |  
  |  runTest(iTestLoops);
  |   }
  |   catch(Exception e)
  |   {
  |  e.printStackTrace();
  |  iErr = -2;
  |   }
  |   return iErr;
  |}
  | 
  |/**
  | * 
  | */
  |private void runTest(int iTestLoops)
  |{
  |   int count = 3;
  |   UserTransaction tx = null;
  |   try
  |   {
  |  boolean again = false;
  |  int src = 0;
  |  int dst = 0;
  |  int amo = 0;
  |  int cnt =0;
  |  while(cnt  iTestLoops)
  |  {
  |

[JBoss-dev] [JBoss IDE] - Re: Unable to install the JBOSS PLUGIN in Eclipse

2004-05-11 Thread bklinghagen
Well, I found some Sourceforge documentation that specifies that the 
http://projectname.sourceforge.net URL should be supported. But it doesn't work. I 
have no issues with any other website or portal site. I have no problems when I use 
the aforementioned URL structure, only with the URL structure above. Every time I use 
it, it times out. I can do a Google search and find the link, try and click on it, and 
it still times out. There is no way that I can reach Sourceforge using that format. I 
have a iptables firewall protecting my network, but I have no idea what rule would 
create such a restriction. And I haven't had this firewall in effect for the whole 
time that I've needed to make the changes to the URL. 

Is there any other way I can update Eclipse temporarily until I can get some answers 
why there is a discrepancy here between what you can do, and what I can't? I was able 
to download the plugin file from the SF project site (of course you know what URL I 
had to use). I briefly tried a local update, but I did it wrong. Is there a way I can 
install the plugin locally using the downloaded file?

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3834499#3834499

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3834499


---
This SF.Net email is sponsored by Sleepycat Software
Learn developer strategies Cisco, Motorola, Ericsson  Lucent use to 
deliver higher performing products faster, at low TCO.
http://www.sleepycat.com/telcomwpreg.php?From=osdnemail3
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] jboss-3.2 build.18 Build Successful

2004-05-11 Thread kimptoc_mail

View results here -> http://tck2.jboss.com/cc/buildresults/jboss-3.2?log=log20040511132247Lbuild.18
BUILD COMPLETE-build.18Date of build:05/11/2004 13:22:47Time to build:11 minutes 20 secondsLast changed:05/11/2004 13:00:35Last log entry:Updated JGroups to version 2.2.4 (tagged JG_2_2_4 in JGroups CVS)




   Unit Tests: (0)No Tests RunThis project doesn't have any tests
Modifications since last build:(5)1.1.2.1modifiedbelabanthirdparty/javagroups/javagroups/lib/JGroups-2.2.4.src.zipUpdated JGroups to version 2.2.4 (tagged JG_2_2_4 in JGroups CVS)1.1.2.3modifiedbelabanthirdparty/javagroups/javagroups/lib/README.txtUpdated JGroups to version 2.2.4 (tagged JG_2_2_4 in JGroups CVS)1.1.2.5modifiedbelabanthirdparty/javagroups/javagroups/lib/jgroups.jarUpdated JGroups to version 2.2.4 (tagged JG_2_2_4 in JGroups CVS)1.1.2.2deletedbelabanthirdparty/javagroups/javagroups/lib/JGroups-2.2.3.src.zipUpdated JGroups to version 2.2.4 (tagged JG_2_2_4 in JGroups CVS)1.13.2.13modifiedbelabanserver/src/etc/conf/default/log4j.xmlchanged log level for org.jgroups back to INFO



[JBoss-dev] [ jboss-Bugs-951472 ] More than one entity found exception raised with subclasses

2004-05-11 Thread SourceForge.net
Bugs item #951472, was opened at 2004-05-10 22:42
Message generated for change (Comment added) made by loubyansky
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detailatid=376685aid=951472group_id=22866

Category: JBossCMP
Group: v3.2
Status: Closed
Resolution: Rejected
Priority: 5
Submitted By: Daniel Ruoso (ruoso)
Assigned to: Alexey Loubyansky (loubyansky)
Summary: More than one entity found exception raised with subclasses

Initial Comment:
Hi,

I have one CMP EJB called Account, and I have
descendant EJBs called AccountMoney, AccountPayCheck,
AccountCreditCard. These EJBs are java subclasses from
the AccountBean class, and the tables inherits the
Account table.

Here's the problem.

I have two session beans, one named CtrlPayCheck and
other name CtrlAccounts. The CtrlPayCheck needs to
findByPrimaryKey on an AccountPayCheck EJB, and invoke
a method in CtrlAccounts to operate on the generic
Account.

When the second session bean (CtrlAccounts) tries to
findByPrimaryKey the same account (as AccountLocal)
that the first session bean (CtrlPayCheck) accessed (as
AccountPayCheckLocal), a More than one entity matches
the find criteria exception. In fact, the field used
in the finder *is* the primary key of the account
table. And there is *only one* entity that matches the
find criteria...

Possible cause:

I think when the CMP container instantiates the
AccountPayCheck EJB it sees that it must check the
idAccount field into Account table, but store that
information as an AccountPayCheck. which in fact *is*
an Account.
Then, when the container goes to instantiate the
Account EJB, it gets from the database (as he never
retrtieved an Account Bean) and sees that the
AccountnPayCheck is a Account too, so it finds two
entities, and not just one. Even they being the same
entity.

I've never looked at Jboss's source code, and I
actually don't have a clue of where to look at. This
problem is really urgent to me, as it's stopping an
online situation... Hope there is a workaround before
the fix is released.

--

Comment By: Alexey Loubyansky (loubyansky)
Date: 2004-05-11 22:44

Message:
Logged In: YES 
user_id=543482

Or the driver if the database really contains only one row
matching the query.
I mean if the SQL query is correct and ResultSet contains
wrong result this is not a bug in JBoss.

--

Comment By: Daniel Ruoso (ruoso)
Date: 2004-05-11 19:30

Message:
Logged In: YES 
user_id=288034

Do you mean this can be a bug in postgresql?

--

Comment By: Alexey Loubyansky (loubyansky)
Date: 2004-05-11 09:18

Message:
Logged In: YES 
user_id=543482

If ResultSet contains wrong results we can't fix it.

--

Comment By: Daniel Ruoso (ruoso)
Date: 2004-05-11 01:07

Message:
Logged In: YES 
user_id=288034

I made a workaround to this bug that gives more information
about where exactly is the bug. I've changed the code that
retrieves the Account EJB to retrieve the AccountPayCheck
EJB and then the exception stopped.

--

Comment By: Daniel Ruoso (ruoso)
Date: 2004-05-11 00:11

Message:
Logged In: YES 
user_id=288034

Just to make clear... I've looked at 
JDBCAbstractQueryCommand method execute. and definetively
the ResultSet *IS* returning 2 rows, and not 1 as there is
in the database...

--

Comment By: Daniel Ruoso (ruoso)
Date: 2004-05-11 00:05

Message:
Logged In: YES 
user_id=288034

Ok,

I've done some tests... and as far as I could go, the sql
was correctly arranged. like SELECT * FROM Account WHERE
idaccount=?. And, this part I really didn't understand, the
result set had 2 rows. even the database having just 1.

Maybe it's the transaction manager, that incercepts the
execution and makes some mess... but I don't know where to
look up.



--

Comment By: Daniel Ruoso (ruoso)
Date: 2004-05-10 23:12

Message:
Logged In: YES 
user_id=288034

Well,

I finally got the stacktrace for the error.

17:08:57,769 ERROR [STDERR] Caused by:
javax.ejb.FinderException: More than one entity matches the
finder criteria.
17:08:57,772 ERROR [STDERR] at
org.jboss.ejb.plugins.cmp.jdbc.JDBCFindEntityCommand.execute(JDBCFindEntityCommand.java:60)
17:08:57,775 ERROR [STDERR] at
org.jboss.ejb.plugins.cmp.jdbc.JDBCStoreManager.findEntity(JDBCStoreManager.java:571)
17:08:57,778 ERROR [STDERR] at
org.jboss.ejb.plugins.CMPPersistenceManager.findEntity(CMPPersistenceManager.java:299)
17:08:57,781 ERROR [STDERR] at
org.jboss.resource.connectionmanager.CachedConnectionInterceptor.findEntity(CachedConnectionInterceptor.java:300)
17:08:57,784 ERROR 

[JBoss-dev] [JMX on JBoss (JBoss/JMX)] - Re: Class not found exception in jar file nested inside sar

2004-05-11 Thread steeqs
Found the problem - the class loader failed to find the *interface* that the class was 
implementing and reported merely that the class could not be loaded. Didn't say 
anything about the interface that was the real root of the problem. I'll figure out 
how to beef up the error reporting so it is less confusing...

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3834507#3834507

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3834507


---
This SF.Net email is sponsored by Sleepycat Software
Learn developer strategies Cisco, Motorola, Ericsson  Lucent use to 
deliver higher performing products faster, at low TCO.
http://www.sleepycat.com/telcomwpreg.php?From=osdnemail3
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development