[JBoss-dev] [Nukes Development] - Re: i18n of nukes. What is the way to go?

2004-04-02 Thread Janoz
I wasn't aware of that. I was aiming at this pasage in CoreModule.java (starting 
around line 375)

  | // If nothing is right we will endup with en_US locale.
  | Locale preferedLocale = Locale.US;
  | for (Enumeration e = req.getLocales();e.hasMoreElements();)
  | {
  |Locale requestedLocale = (Locale)e.nextElement();
  |ResourceBundle requestedResourceBundle = 
getResourceBundle(requestedLocale);
  | 
  |// It returns Locale.US if tmpLocale is not supported
  |if (!requestedResourceBundle.getLocale().equals(Locale.US))
  |{
  |   preferedLocale = requestedLocale;
  |   break;
  |}
  | }
  | 
Maybe this should be a constant or even configurable. The same goes for the part in 
the constructor:

  |public CoreModule(boolean persistent)
  |{
  |   super(persistent);
  |Locale locale = Locale.US;
  |locales.add(locale);
  |bundles.put(locale, new ResourceBundleAggregator(locale));
  |locale = new Locale(nl);
  |locales.add(locale);
  |bundles.put(locale, new ResourceBundleAggregator(locale));
  |}
  | 
But on the other hand. Adding some new resources requires a rebuild of the jar files 
so recompiling CoreModule isn't a big problem.

But that still leaves the label question and the codestandard for the 
resource.properties. Since I'm planning some rather large changes I would like to know 
if I'm doing the right thing.

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Mail Services] - Re: mailboxes and authentication

2004-04-02 Thread [EMAIL PROTECTED]
What are the items that need to be secured, and what are the granularities? The Java 
model is either roles or permissions with the latter needing some acl spec, for 
example xacml which is something I'm planning on integrating anyway. One xacml 
starting point being:
http://sourceforge.net/projects/sunxacml.

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Nukes Development] - Re: problem displaying topics

2004-04-02 Thread itchiban
Thank you but I have already corrected this problem.
It was the default value attributes,I have modifed topic_time,post_username default 
value in nukes database.

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [ jboss-Bugs-927759 ] Entity w/table name with schema always tries to create table

2004-04-02 Thread SourceForge.net
Bugs item #927759, was opened at 2004-04-01 21:32
Message generated for change (Comment added) made by lqd
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detailatid=376685aid=927759group_id=22866

Category: JBossCMP
Group: v3.2
Status: Closed
Resolution: Fixed
Priority: 5
Submitted By: James Robinson (jlrobins_sserve)
Assigned to: Christian Riege (lqd)
Summary: Entity w/table name with schema always tries to create table

Initial Comment:
Deploying a CMP entity with the jbosscmp-jdbc.xml tag for 
tablename set containaing the name of the preexisting database 
schema for the table to be built in, such as:

table-nameagency.category/table-name
create-tabletrue/create-table

will always try to create the table, since 
org.jboss.ejb.plugins.cmp.jdbc.SQLUtil#039;s tableExists() 
method does not split out the schema portion of the name into the 
separate parameter mandated by DatabaseMetaData#039;s getTables(). 
Calling getTables() with null for schemas:

 ... null means that the schema name should not be used to 
narrow  the search (from DriverMetaData javadoc)

yet it seems to imply that the table name portion should be the 
simple name, not fully-qualified. Using Postgresql JDBC driver, 
when given null for schema and agency.category for table name, 
it always returns an empty result set, since no one table#039;s non-
fullly-qualified name is #039;agency.category#039; -- very different from 
schema named #039;agency#039; and table named #039;category#039; (in 
postgres#039;s 
eyes, anyway).

This causes JBoss to *always* try to create the table, causing 
deployment failure on all but the first deployment.

Fix would be to sniff the passed-in table name for a #039;.#039;, and split 
into schema vs. table name on the period.

Patch attached to fix places in SQLUtil where getTables is called w/o 
sniffing to split fully qualified table name into schema + table. The 
patch is relative to SQLUtil version 1.12.4.19.



--

Comment By: Christian Riege (lqd)
Date: 2004-04-02 11:51

Message:
Logged In: YES 
user_id=176671

I have applied your patch, thanks.

SQLUtil is a general mess though anyways ...

--

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Mail Services] - Re: TODO: TLS and JBossSX integration

2004-04-02 Thread kabkhan
Yeah, got there in the end :-) Had to look at quite a lot of stuff in the various 
modules in JBoss to igure it out, but have learnt a bit from it

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Mail Services] - Re: Back and status query

2004-04-02 Thread kabkhan
I've done:

Header normalization - It would be good if somebody could check through it as I got a 
bit confused at times by the specs, but I believe what I have done is correct. 
JBossSX/TLS integration - For SMTP, needs adding to POP

Am working on:
Bounce messages, should be ready over the weekend.



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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Nukes Development] - Re: Display options: Templates / XSLT / JSP

2004-04-02 Thread sgwood

The JSP integration is little bit difficult at the moment. The aim is to have module 
specific JSPs be in a WAR in a module EAR, but we are not there yet. Julien is working 
in this area.

I am using JSPs right now, but I deploy them by putting them in an exploded 
nukes.ear/nukes.war.


Sherman

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Nukes Development] - Re: Nukes Build Failure

2004-04-02 Thread sgwood

deploy-installer moves the installer WAR into your JBoss deploy directory. As part of 
the process of running the install process, the nukes.ear is pushed out at the right 
time.

You should remove the installer from your deploy directory now.


Sherman

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Nukes Development] - Re: Display options: Templates / XSLT / JSP

2004-04-02 Thread cooper
jsp support will come with the portlets stuff for the 2.0 version.

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Nukes Development] - Re: Nearly impossible to develop complex site [let's discuss

2004-04-02 Thread rebornspirit
I guess I'm the only one who thinks that nukes is a nice product, but in his current 
release isn't usable for enterprise development 

I would like to hear from you how you handled the use of multiple theme, dependent on 
what part or page of the site you are, i.e. .

I'm going to test cocoon with lenya this couple of weeks, let's see where the 
differences are. Anyone out there that already used cocoon or lenya???

Grtz

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Nukes Development] - Changing Nukes Language to Brazilian Portuguese

2004-04-02 Thread wellington.pinheiro
Hi all,

How can I use in Nukes the resources in portuguese that I translated? I don't know if 
it's the right way to do that but the only way I found (and it works) is to change the 
code on the constructor of CoreModule to add in the Map bundles a locale for 
Brazilian Portuguese (pb_BR). Is it right??

I'm translating the Resources for Nukes to Brazilian Portuguese and i want to know if 
it's possible to these translations be included in new Nukes distribution, maybe in a 
next version.

If it's not possible and there's anyone interested on these resources I can send them.

I'm translating only the Resource files for all modules (i've seen many strings 
hard-coded and i'm not translating them, when a new version of nukes be available with 
all strings in resources i'll translate those new strings)

Thanks,
Wellington.

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [AOP on JBoss (Aspects/JBoss)] - Re: Welcome Claude Hussenet!

2004-04-02 Thread claudehussenet
Are the asynchronous aspects related in any way to the remoting framework or are they 
entirely in VM.

= same JVM.Can run within a web-container with JBOSS-AOP standalone.

Claude, which area of JMS would you like to contribute to?

= POJO face on JMS. But need a rest before and write some documentation
of the asynchronous Aspects on WIKI.

Rgds,Claude


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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Nukes Development] - Re: Oracle support for nukes

2004-04-02 Thread natjohns
thepriz wrote : We have converted the files to run nukes on Oracle. I am going to 
check them in if there are no objections. Basicly I will add an oracle directory to 
the nukes/resources directory with the appropriate files. I will also add an 
oracle.properties file in the build/etc directory. Anyone object?
  | 
  | Dennis Przybyla

We would love to get a copy of those!  Converting to Oracle is our next big step 
before we can use Nukes.  I don't see them anywhere in CVS... have you committed those 
yet?

Thanks!

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [AOP on JBoss (Aspects/JBoss)] - Re: Welcome Claude Hussenet!

2004-04-02 Thread ivelin
Please let me know when you start on JMS so when can update the roadmap.

Ivelin

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Nukes Development] - Re: Nearly impossible to develop complex site [let's discuss

2004-04-02 Thread sgwood
anonymous wrote : I guess I'm the only one who thinks that nukes is a nice product, 
but in his current release isn't usable for enterprise development 
  | 

Nukes is raw right now, but the basic concepts are there and right for what I want. It 
depends on what you mean by enterprise development.

rebornspirit wrote : I would like to hear from you how you handled the use of 
multiple theme, dependent on what part or page of the site you are

If you are talking about role-based themes, ie. different themes for  administrators 
versus normal users versus super users, I think that can be easily done by restricting 
the setting of the theme for each user to what you want it to be.

Anything more complicated than that makes me think that you are trying to do something 
that themes are not designed to do. Themes focus on basic look and feel, and layout. 
Blocks and module content appear in specified areas in the layout. Blocks can appear 
or disappear based on criteria you specify.  Changing the theme on a page by page 
basis makes no sense - changing the theme on part of a page should be done by 
applying stylesheet classes.


Sherman


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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [AOP on JBoss (Aspects/JBoss)] - Re: Welcome Claude Hussenet!

2004-04-02 Thread Bill Burke
Ivelin,

This is related to AOP task:

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

Bill

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [ jboss-Bugs-923433 ] StdServerSessionPool Always Creates Topic Sessions

2004-04-02 Thread SourceForge.net
Bugs item #923433, was opened at 2004-03-25 20:24
Message generated for change (Comment added) made by wolfftw
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detailatid=376685aid=923433group_id=22866

Category: JBossMQ
Group: v3.2
Status: Closed
Resolution: Rejected
Priority: 5
Submitted By: Todd Wolff (wolfftw)
Assigned to: Adrian Brock (ejort)
Summary: StdServerSessionPool Always Creates Topic Sessions

Initial Comment:

The create method within StdServerSessionPool always 
creates a pool of topic sesions, ie. SpyTopicSession.  

Using a non-XA connection as an example, the logic 
within create method uses instanceof to test 
connection and being that org.jboss.mq.SpyConnection 
implements both TopicConnection and QueueConnection, 
the (con instanceof QueueConnection) else if logic 
never executes.


--

Comment By: Todd Wolff (wolfftw)
Date: 2004-04-02 15:31

Message:
Logged In: YES 
user_id=839156

No. SpyQueueSession implements QueueSession and 
SpyTopicSession implements TopicSession. The logic within 
StdServerSessionPool is implemented such that the user 
cannot create a pool of QueueSessions, ie. SpyQueueSession 
is never instantiated.

--

Comment By: Adrian Brock (ejort)
Date: 2004-04-01 20:56

Message:
Logged In: YES 
user_id=9459

What problem does this cause?
SpySession implements both Queue and Topic Sessions, or at least
the part that is relevent for a connection consumer.

Regards,
Adrian

--

Comment By: Todd Wolff (wolfftw)
Date: 2004-03-29 16:20

Message:
Logged In: YES 
user_id=839156

Applies to 3.2.4 codebase

--

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [ jboss-Bugs-928024 ] Class Loader Classpath Conflict

2004-04-02 Thread SourceForge.net
Bugs item #928024, was opened at 2004-04-01 21:30
Message generated for change (Comment added) made by starksm
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detailatid=376685aid=928024group_id=22866

Category: JBossSOAP
Group: v3.2
Status: Open
Resolution: None
Priority: 5
Submitted By: Jula (julajula)
Assigned to: Scott M Stark (starksm)
Summary: Class Loader Classpath Conflict

Initial Comment:
The JDOM jar which is being used by JBoss is newer to 
what is used in my web service. So I explicitly gave the 
following command to avoid looking at the 3.2.2 servers 
jar. 

jboss-web
   class-loading java2ClassLoadingCompliance=false
  loader-repository
 jboss.test:war=oldxerces.war
 loader-repository-config
java2ParentDelegation=false
 /loader-repository-config
  /loader-repository
   /class-loading
/jboss-web

It solved JDOM error but now I get another error. The 
stack trace is attached here with.

I am simply trying to use FOP to generate a PDF using 
the fop.jar, batik.jar, xalan-2.4.1.jar components in 
addition to using JDOM. These 4 jars are inside my EAR.





--

Comment By: Scott M Stark (starksm)
Date: 2004-04-02 07:37

Message:
Logged In: YES 
user_id=175228

jboss-3.2.2 did not have adequate separation between the web
container deployer and the web application. This was fixed
in 3.2.3 so you have to use that version or simply replace
the jboss version of jdom with your own. If there is still
an issue in 3.2.3 then I need a testcase.

--

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Mail Services] - Re: Calendar Server proposal

2004-04-02 Thread kabkhan
Hi there,

The mail service is packaged as an ear file containing the sar file for mail services 
(mail.sar) and individual jars for the various ejb's. You should be able to modify the 
mail services build script to include the jar for your ejb, and to either a) put your 
stuff with mail.sar or to b) put it in a separate sar within the ear file. I reckon b) 
sounds best as maybe not everybody wants calendar?

I don't know too much about how calendar stuff works (even though I have obviously 
used Outlook), but would definitely like to know more, so I for one would be 
interested in a summary of how it works, how to build/run it and what sorts of client 
I would use to test it and some information on what specs I should be looking at. 

Thanks,

Kab


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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [ jboss-Bugs-925399 ] StdServerSession always transacted

2004-04-02 Thread SourceForge.net
Bugs item #925399, was opened at 2004-03-29 16:23
Message generated for change (Comment added) made by wolfftw
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detailatid=376685aid=925399group_id=22866

Category: JBossMQ
Group: v3.2
Status: Open
Resolution: Later
Priority: 5
Submitted By: Todd Wolff (wolfftw)
Assigned to: Nobody/Anonymous (nobody)
Summary: StdServerSession always transacted

Initial Comment:
OnMessage method always starts a transaction even 
though connection is non-XA and transacted set to 
false for ServerSessionPool.

--

Comment By: Todd Wolff (wolfftw)
Date: 2004-04-02 15:52

Message:
Logged In: YES 
user_id=839156

No. I'm referring to the comment in the onMessage method of 
StdServerSession:

... So, for the case where we do not have an XASession and 
the bean is not transacted, we have the unneeded overhead 
of creating a Transaction. I'm leaving it this way since it 
keeps the code simpler and that case should not be too 
common (JBossMQ provides XASessions).

This precludes the use of ServerSessionPool for those of us 
that are writing message driven processes using POJO's, ie. 
not MDB's, and who are managing transactions explicitly via 
UserTransaction.

--

Comment By: Adrian Brock (ejort)
Date: 2004-04-01 21:07

Message:
Logged In: YES 
user_id=9459

I think you are referring to the following comment in
org.jboss.metadata.MessageDrivenMetaData?

  // My interpretation of the EJB and JMS spec leads
  // me to that CLIENT_ACK is the only possible
  // solution. A transaction is per session in JMS, and
  // it is not possible to get access to the transaction.
  // According to the JMS spec it is possible to
  // multithread handling of messages (but not session),
  // but there is NO transaction support for this.
  // I,e, we can not use the JMS transaction for
  // message ack: hence we must use manual ack.
  
  // But for NOT_SUPPORTED this is not true here we
  // should have AUTO_ACKNOWLEDGE_MODE
  
  // This is not true for now. For JBossMQ we relly
  // completely on transaction handling. For JBossMQ, the
  // ackmode is actually not relevant. We keep it here
  // anyway, if we find that this is needed for other
  // JMS provider, or is not good.


--

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [AOP on JBoss (Aspects/JBoss)] - Re: cflow implemented with ThreadLocal

2004-04-02 Thread rythos
Oh thank goodness! I thought I had just unintentionally alienated another person in 
the field I'd like to end up in ;)

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Nukes Development] - Re: Nukes Build Failure

2004-04-02 Thread hxp
tega2020 wrote :  I found the wiki at 
  | http://jboss.org/wiki/Wiki.jsp?page=InstallUninstallUpgrade quite helpful.
  | 

Tega2020 ---

Please let me know if there is anything, no matter how small, that is inaccurate on 
the InstallUninstallUpgrade wiki, because I am working to get it perfected.

--hxp

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Nukes Development] - Re: Changing Nukes Language to Brazilian Portuguese

2004-04-02 Thread sgwood

You should follow this posting 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3828820#3828820 to work out 
the issues around this.


Sherman

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Nukes Development] - Re: Oracle support for nukes

2004-04-02 Thread thepriz
No sorry, I will try to get that done today if I have the files. I am home with a sick 
family today. I may not have the files here.

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Nukes Development] - Re: Oracle support for nukes

2004-04-02 Thread natjohns
thepriz wrote : No sorry, I will try to get that done today if I have the files. I 
am home with a sick family today. I may not have the files here.

Thanks!  We really appreciate it here.

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Nukes Development] - Re: i18n of nukes. What is the way to go?

2004-04-02 Thread wellington.pinheiro
I have the same problem than you Janoz, and I did the same thing on CoreModule.java.

I'm translating nukes for brazilian portuguese and I still don't know the best way to 
do that, but it works this way

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [ jboss-Bugs-912557 ] nukes users postgresql setup.xml error - pn_uorder

2004-04-02 Thread SourceForge.net
Bugs item #912557, was opened at 2004-03-09 00:15
Message generated for change (Comment added) made by sgwood
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detailatid=376685aid=912557group_id=22866

Category: Nukes
Group: None
Status: Open
Resolution: None
Priority: 5
Submitted By: joe hobson (joehobson)
Assigned to: Nobody/Anonymous (nobody)
Summary: nukes users postgresql setup.xml error - pn_uorder

Initial Comment:
Inserts to the nukes_users table for postgresql
setup.xml file should use false instead of 0 (zero)
for the pn_uorder column [boolean data type]. Update
lines 203 and 237, file attached.

--

Comment By: Sherman Wood (sgwood)
Date: 2004-04-02 12:55

Message:
Logged In: YES 
user_id=611753


This was fixed.

--

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Caches on JBoss (Caches/JBoss)] - problem deploying Jboss cache

2004-04-02 Thread tperrigo
I'm trying to deploy Jboss cache into my default server (using the 
local-service-eviction.xml configuration file, copied into my deploy directory), but 
I'm getting the following error...can anyone point me in the right direction?  Any 
help would be appreciated!

Tim

15:01:47,875 INFO  [MainDeployer] Deployment of package: 
file:/Users/tperrigo/dev/jboss-4.0.0DR3/server/default/deploy/local-service-eviction.xml
 is waiting for an appropriate deployer.
15:01:47,880 ERROR [URLDeploymentScanner] MBeanException: null
Cause: Incomplete Deployment listing:
Packages waiting for a deployer:
[EMAIL PROTECTED] { 
url=file:/Users/tperrigo/dev/jboss-4.0.0DR3/server/default/deploy/local-service-eviction.xml
 }
  deployer: null
  status: null
  state: INIT_WAITING_DEPLOYER
  watch: 
file:/Users/tperrigo/dev/jboss-4.0.0DR3/server/default/deploy/local-service-eviction.xml
  lastDeployed: 1080939707874
  lastModified: 1080939707000
  mbeans:
]Incompletely deployed packages:
[EMAIL PROTECTED] { 
url=file:/Users/tperrigo/dev/jboss-4.0.0DR3/server/default/deploy/local-service-eviction.xml
 }
  deployer: null
  status: null
  state: INIT_WAITING_DEPLOYER
  watch: 
file:/Users/tperrigo/dev/jboss-4.0.0DR3/server/default/deploy/local-service-eviction.xml
  lastDeployed: 1080939707874
  lastModified: 1080939707000
  mbeans:
]MBeans waiting for classes:
  
MBeans waiting for other MBeans:
  

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Clusters on JBoss (Clusters/JBoss)] - HTTP failover - working?

2004-04-02 Thread mikefinn
Tried this in user forum - no response.

JBoss 3.2.2/mod_jk2. Sun 1.4.2 JVM. 

Having problems getting failover to work. On failover, user is prompted for login on 
the node to which he is sent. Has *anyone* gotten this working? 

I see this line in ClusteredSession, which makes me think there is no way that a 
seamless/login-less failover can occur, unless I am missing something. 

private transient Principal principal = null; 

TIA, 
Mike

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [ jboss-Bugs-928605 ] Missing Base64Encoder class on client

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

Category: JBossSX
Group: v3.2
Status: Open
Resolution: None
Priority: 5
Submitted By: VBN Developer (vbn)
Assigned to: Nobody/Anonymous (nobody)
Summary: Missing Base64Encoder class on client

Initial Comment:
This bug is for JBoss 3.2.3.

The Base64Encoder class is missing from both the
jbosssx-client.jar and jbossall-client.jar. A temporary
workaround is to copy the Base64Encoder.class from the
jbosssx.jar in one of the server lib directories and
add it to the appropriate client jar file.

--

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [ jboss-Bugs-928615 ] File upload problem, due to apache commons version conflict

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

Category: Nukes
Group: None
Status: Open
Resolution: None
Priority: 5
Submitted By: Chris Jericho (coachvargo)
Assigned to: Nobody/Anonymous (nobody)
Summary: File upload problem, due to apache commons version conflict

Initial Comment:
I had an application deployed in jboss that uses the 
apache commons-fileupload.jar library.  When I 
attempted to deploy and use nukes on the same jboss 
server, I was unable to upload a file in the manage 
html section.  I kept receiving a NoSuchMethod error on 
FileUpload.setMaxSize(I).  It seems the FileUpload class 
in use by nukes needs an int param for that method, yet 
the actual class from the apache jar uses a long param.

I removed the ear file for my application, then restarted 
jboss and the nukes file upload worked fine.  The nukes 
code should be changed to use the release version of 
the apache commons-fileupload.jar library otherwise, 
similar conflicts could occurr.

--

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


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

2004-04-02 Thread kimptoc_mail
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Sat Apr  3 01:37:06 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:   1873



Successful tests:  1769

Errors:93

Failures:  11





[time of test: 2004-04-02.23-36 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-04-02.23-36
 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.ejbconf.test.MetaDataUnitTestCase
Test:testMethodPermissions
Type:error
Exception:   org.jboss.deployment.DeploymentException
Message: Error in ejb-jar.xml for Session Bean StatelessSession: Cannot create 
webservice client; - nested throwable: (java.lang.IllegalStateException: No 'jboss' 
MBeanServer found!)
-



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!
-



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



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

===
Sat Apr  3 01:37:06 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: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Caches on JBoss (Caches/JBoss)] - Re: I repeat my eviction question

2004-04-02 Thread bwang00
Hi,

Can you try to sleep longer than 10 seconds, say, 15? Since the eviction timer thread 
runs every 5 seconds, there is a chance that 10 seconds is on the borderline. 

Otherwise, I'd suggest you check out the example JUnit tests. There are couple tests 
running evitction policy.

Thanks,

-Ben

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Caches on JBoss (Caches/JBoss)] - Re: problem deploying Jboss cache

2004-04-02 Thread bwang00
Hi,

I don't see anything obvious right now. But did you remember to copy the 
jboss-cache.jar to the lib directory?

Thanks,

-Ben

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Caches on JBoss (Caches/JBoss)] - Re: Problem with org.jboss.cache.TreeCache using Hibernate

2004-04-02 Thread bwang00
Hi,

Can you try out the latest jboss cache 1.0 release? It has couple bug fixes that may 
solve your problem.

You can just download the standalone version and replace the jar files under Hibernate.

Thanks,

-Ben

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


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

2004-04-02 Thread kimptoc_mail
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Sat Apr  3 02:44:59 GMTDT 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
[junit] Running org.jboss.test.webservice.ws4eesimple.JSR109SimpleSecureTestCase
[junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 3.813 sec
[junit] Running org.jboss.test.webservice.ws4eesimple.JSR109SimpleWebTestCase
[junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 4.093 sec
[junit] Running org.jboss.test.webservice.wsr.RedeployUnitTestCase
[junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 3.828 sec
[junit] Running org.jboss.test.webservice.wsr.WSRUnitTestCase
[junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 3.781 sec

tests-util-unit:
[junit] Running org.jboss.test.util.test.PropertyEditorsUnitTestCase
[junit] Tests run: 5, Failures: 0, Errors: 0, Time elapsed: 0.485 sec
[junit] Running org.jboss.test.util.test.PropertyPatternUnitTestCase
[junit] Tests run: 17, Failures: 0, Errors: 0, Time elapsed: 0.094 sec
[junit] Running org.jboss.test.util.test.ProtocolHandlerUnitTestCase
[junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.078 sec
[junit] Running org.jboss.test.util.test.SchedulerUnitTestCase
[junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 0.484 sec
[junit] Running org.jboss.test.util.test.StringsUnitTestCase
[junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 0.188 sec
[junit] Running org.jboss.test.util.test.ThreadPoolRunnableUnitTestCase
[junit] Tests run: 7, Failures: 0, Errors: 0, Time elapsed: 1.141 sec
[junit] Running org.jboss.test.util.test.ThreadPoolTaskUnitTestCase
[junit] Tests run: 7, Failures: 0, Errors: 0, Time elapsed: 1.219 sec

tests-jbossmx-compliance:
[junit] Running org.jboss.test.jbossmx.compliance.modelmbean.ModelMBeanTestCase
[junit] Tests run: 5, Failures: 0, Errors: 0, Time elapsed: 0.469 sec
[junit] Running org.jboss.test.jbossmx.compliance.monitor.BasicTestCase
[junit] Tests run: 9, Failures: 7, Errors: 0, Time elapsed: 2.813 sec
[junit] TEST org.jboss.test.jbossmx.compliance.monitor.BasicTestCase FAILED
[junit] Running org.jboss.test.jbossmx.compliance.notcompliant.NCMBeanTestCase
[junit] Tests run: 6, Failures: 0, Errors: 0, Time elapsed: 0.563 sec
[junit] Running org.jboss.test.jbossmx.compliance.objectname.BasicTestCase
[junit] Tests run: 8, Failures: 0, Errors: 0, Time elapsed: 0.047 sec
[junit] Running org.jboss.test.jbossmx.compliance.objectname.CanonicalTestCase
[junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 0.219 sec
[junit] Running org.jboss.test.jbossmx.compliance.objectname.MalformedTestCase
[junit] Tests run: 50, Failures: 0, Errors: 0, Time elapsed: 0.093 sec
[junit] Running org.jboss.test.jbossmx.compliance.objectname.PatternTestCase
[junit] Tests run: 12, Failures: 0, Errors: 0, Time elapsed: 0.063 sec
[junit] Running org.jboss.test.jbossmx.compliance.registration.RegistrationTestCase
[junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 0.532 sec
[junit] Running org.jboss.test.jbossmx.compliance.relation.BasicTestCase
[junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.032 sec
[junit] Running org.jboss.test.jbossmx.compliance.server.MBeanServerFactoryTestCase
[junit] Tests run: 7, Failures: 0, Errors: 0, Time elapsed: 0.531 sec
[junit] Running org.jboss.test.jbossmx.compliance.server.MBeanServerTestCase
[junit] Tests run: 13, Failures: 0, Errors: 0, Time elapsed: 0.812 sec
[junit] Running org.jboss.test.jbossmx.compliance.standard.InfoTortureTestCase
[junit] Tests run: 38, Failures: 0, Errors: 0, Time elapsed: 0.047 sec
[junit] Running org.jboss.test.jbossmx.compliance.standard.InheritanceTestCase
[junit] Tests run: 21, Failures: 0, Errors: 0, Time elapsed: 0.047 sec
[junit] Running org.jboss.test.jbossmx.compliance.standard.TrivialTestCase
[junit] Tests run: 6, Failures: 0, Errors: 0, Time elapsed: 0.547 sec
[junit] Running org.jboss.test.jbossmx.compliance.timer.BasicTestCase
[junit] Tests run: 5, Failures: 0, Errors: 0, Time elapsed: 30.11 sec

tests-jbossmx-implementation:
[junit] Running 
org.jboss.test.jbossmx.implementation.persistence.OnTimerPersistenceTestCase
[junit] Tests run: 2, Failures: 

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

2004-04-02 Thread kimptoc_mail
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Sat Apr  3 02:58:17 GMTDT 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===

===
Sat Apr  3 02:58:17 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: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Nukes Development] - prioritize loading some mbean/theme (OT)

2004-04-02 Thread joanrey
Hello Guys,

I have this weird problem.. we have multiple themes and one of the theme
is the parent theme and the rest will just extend it. I need to load the
parent theme first, but jboss seems to load them alphabetically. 
Only those themes that are loaded after the parent theme will work, and I have to 
manually deploy the rest because we're having Incompletely deployed packages: error.

I have something like this on my child theme's jboss-service.xml:

nukes.modules:name=core
nukes.themes:name=parenttheme


Am I barking at the wrong tree?
How do I load the ParentTheme.sar first?

Thanks,
Joan Rey

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Caches on JBoss (Caches/JBoss)] - Re: Question on error

2004-04-02 Thread cwampler
Ben,

When you get a chance please let me know what is coming up null. Is it something I can 
check before each put?

Thanks again,
Chris

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Nukes Development] - XML view?

2004-04-02 Thread jfergus
I'm looking for a way to get information supplied by the nukes framework in XML 
format.   

An example use would be flash components or applets (running as a module) that can 
access the server and all its provided security and user session environment without a 
full browser page request.  

In a vanilla J2EE app, this would be done with JSP or servlets rather easily.  As far 
as I can see from looking at it, Nukes does not allow a custom servlet (in a user 
module without adding to the core) and the JSPs have all the portal stuff added to 
them.

Am I overlooking a simple way to make XML data available from a module?  Like a 
parameter to pass to the jsp to tell it not to nukify it?
Right now I see extending the core with my own servlet as the easiest approach.

Suggestions?

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Mail Services] - Re: mailboxes and authentication

2004-04-02 Thread spiritualmechanic
Looking into sunxacml.

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development