Re: [JBoss-user] Feature Request

2003-03-23 Thread Jules Gosnell
David Corbin wrote: Please feel free to tell me I'm nuts, or that there is a better way to solve my problem. I'd like to have a directory that is "recognized by a class loader as if it were on the class path", that is intrinsicly associated with a .WAR (I can't speak to .EAR, though that might

Re: [JBoss-user] Stack Overflow Exception in CMR

2003-03-23 Thread Alex Loubyansky
Hello Michael, it's a bug. I'll fix it today ASAP. alex Monday, March 24, 2003, 1:43:06 AM, you wrote: MN> Hello! MN> I'm getting a StackOverflowException while population a CMR Entity Bean. What's special about the relation is that it uses primary key fields as part of the relation (no for

Re: [JBoss-user] default JNDI location for entity beans

2003-03-23 Thread Guy Rouillier
Matthew Hixson wrote: On Friday, March 21, 2003, at 07:11 PM, Guy Rouillier wrote: Note I changed your subject - don't use the digest as the subject for a particular question, many people may skip it. And I've changed it back to the original because I almost skipped this one. Well, no you

Re: [JBoss-user] Feature Request

2003-03-23 Thread James Ward
Yup. Jboss is sure neat hu? Doing development this was saves quite a few cycles. No wasted time in unnecessary jar'ing and unjar'ing. Ant or Maven will just copy the files that have been changed. Touch the dir, or web.xml or whatever to reload. Fun stuff! -James On Sun, 2003-03-23 at 21:07

[JBoss-user] getClass().getClassLoader().getResourceAsStream() not working inweb-app

2003-03-23 Thread Herve Tchepannou
I create rss.jar with a this structure: RSSPortlet.class rss2html.xsl in RSSPortlet, I need to access the xsl file, so Im doing: void foo() { InputStream in = this.getClass.getClassLoader().getResourceAsStream( "rss2html.xsl" ) ... } I put rss.jar in WEB-INF/lib a rss.war. When the RSSS

Re: [JBoss-user] Feature Request

2003-03-23 Thread Ryan Hoegg
This looks interesting. Will it allow you to have an exploded archive inside an exploded EAR? $JBOSS_HOME/server/$SERVER/deploy/myapp.ear/cool-webapp.war/... -- Ryan Hoegg ISIS Networks http://www.isisnetworks.net David Jencks wrote: I don't really know much about the web engines (jetty and to

Re: [JBoss-user] Feature Request

2003-03-23 Thread David Jencks
I don't really know much about the web engines (jetty and tomcat), and they may handle this differently, but for anything else in jboss you can deploy it "exploded" or unpacked. So, for example, instead of a zip file myapp.ear, you have a directory myapp.ear with exactly the same contents. You ca

Re: [JBoss-user] Feature Request

2003-03-23 Thread David Corbin
So far, I'm able to do all my automated testing without having to deploy to JBoss.Your suggestion is not without merit, but I'm hoping some others will say my original idea isn't too far out there:) Ryan Hoegg wrote: MBeans are lighter weight than EJBs imho, but are still a heavyweight

Re: [JBoss-user] new datasource

2003-03-23 Thread Dain Sundstrom
I'm dumb. I didn't read that very carefully. -dain On Sunday, March 23, 2003, at 07:33 PM, David Ward wrote: Isn't that what I said? Driver jar in lib and datasource xml in deploy. By "it" I meant the datasource xml file. Sorry if I wasn't clear before. David Dain Sundstrom escribió:: On Sun

Re: [JBoss-user] Feature Request

2003-03-23 Thread Ryan Hoegg
MBeans are lighter weight than EJBs imho, but are still a heavyweight solution. JBoss uses log4j, which uses a properties file or XML file for its configuration. However, you can go into your jmx-console and use the Log4jService to reconfigure log4j. I am not sure how they did this, but I th

Re: [JBoss-user] Feature Request

2003-03-23 Thread David Corbin
I'm not very educated on EJBs (in any form), but I tend to resist them as they make automated testing a lot more complex. And, often the configuration is for a piece of code that I don't have control of (i.e, a third party library that relies on a properties file, or an XML file of some sort).

Re: [JBoss-user] Feature Request

2003-03-23 Thread Ryan Hoegg
This may be a sledgehammer for your thumbtack, but you could redesign your configuration system to use JMX MBeans. -- Ryan Hoegg ISIS Networks http://www.isisnetworks.net David Corbin wrote: Please feel free to tell me I'm nuts, or that there is a better way to solve my problem. I'd like to ha

[JBoss-user] Stack Overflow Exception in CMR

2003-03-23 Thread Michael Nowotny
Hello!   I'm getting a StackOverflowException while population a CMR Entity Bean. What's special about the relation is that it uses primary key fields as part of the relation (no foreign key db constraint attached). The problem described below occured in a number of different cases. For illu

Re: [JBoss-user] new datasource

2003-03-23 Thread Dain Sundstrom
On Sunday, March 23, 2003, at 04:09 PM, David Ward wrote: Put it in the deploy subdir, and it will be hot-deployed. Make sure you have the appropriate jdbc driver in the lib subdir first. eg: $JBOSS_HOME/server/default/lib/ojdbc14.jar $JBOSS_HOME/server/default/deploy/oracle-ds.xml I think it i

[JBoss-user] Feature Request

2003-03-23 Thread David Corbin
Please feel free to tell me I'm nuts, or that there is a better way to solve my problem. I'd like to have a directory that is "recognized by a class loader as if it were on the class path", that is intrinsicly associated with a .WAR (I can't speak to .EAR, though that might be good too). Here

Re: [JBoss-user] new datasource

2003-03-23 Thread David Ward
Put it in the deploy subdir, and it will be hot-deployed. Make sure you have the appropriate jdbc driver in the lib subdir first. eg: $JBOSS_HOME/server/default/lib/ojdbc14.jar $JBOSS_HOME/server/default/deploy/oracle-ds.xml Nathan Hoover escribió:: I found and configured that XML file... I was

RE: [JBoss-user] new datasource

2003-03-23 Thread Nathan Hoover
I found and configured that XML file... I was looking for instructions on what to do with the XML file after that. N At 04:35 PM 3/23/2003 -0500, you wrote: after you build jboss look into directory JBOSS_HOME/build/output/jboss-{VERSION}/docs/examples/jca -Original Message- From: [EMAIL

RE: [JBoss-user] new datasource

2003-03-23 Thread Alex Shneyderman
after you build jboss look into directory JBOSS_HOME/build/output/jboss-{VERSION}/docs/examples/jca -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Nathan Hoover Sent: Sunday, March 23, 2003 4:06 PM To: [EMAIL PROTECTED] Subject: [JBoss-user] new datasource

[JBoss-user] new datasource

2003-03-23 Thread Nathan Hoover
Does anyone have a pointer to some detailed instructions on how to add a completely new datasource to JBoss 3.2? I purchased the JBoss admin/devel book, but there doesn't seem to be anything specific in there. Thanks N --- This SF.net email

RE: [JBoss-user] ?????,??????

2003-03-23 Thread Oren Gross
Hi pal, thanks for the reply, but I cannot read Japanese Oren Gross Java(TM) Developer Mercury Interactive APM TAC R&D +972-3-5399407 [EMAIL PROTECTED] -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Sunday, March 23, 2003

[JBoss-user] Invocation Layer plugin

2003-03-23 Thread Oren Gross
Hi thereI'm currently working on an authorization service for an application running on JBoss 246.I want to use the EJBs security for authorization checks, i.e. have the EJBContainer ask my authorization API for permission.I understand there is a way to have JBoss invoke my method, and it ha

[JBoss-user] run.bat with option 'stop' doesn't always work

2003-03-23 Thread Oren Gross
Hi there, we are using JBoss 246, and found out that the run.bat with option 'stop' doesn't always work. We could not state when exactly it happens and why, any ideas? anyone had this problem?TIA Oren - Oren Gross Java(TM) De

[JBoss-user] 特低价商品,您想合作吗?

2003-03-23 Thread thsa58
这是一封商业信函,如有打搅,我们表示真诚道歉! 手机,笔记本电脑,数码产品及电脑配件批发销售中心,全国最低价。 版面有限,详细配置,图片请登入http://www.263it.com/ 1.诺基亚 7650/1665元 8310/990元 松下GD88/2880元 三星T108/2030元 x199/2100元 x399/2800元 2.全新原装数码产品比市价优惠40%,价格谁低我再低! 3.只要4000元就可以买到P4的名牌笔记本电脑,赶快哦! 详情登陆网站:http://www.263it.com/