RE: [JBoss-user] Building Catalina .sar (Tomcat to work with JBoss Beta 2 HOWTO)?

2002-04-07 Thread Alex Loubyansky
To build Catalina sar-file: In catalina directory (cvs directory structure) in build.xml you'll find: Well, this is the answer: copy catalina to ${module.root}/jakarta-tomcat-4.0.2 or change the value of tomcat.server.root accordingly. And in the jboss-service.xml you'll need to

[JBoss-user] ÊÖ»ú×îµÍ¼Û£¬·þÎñË͵½¼Ò¡£

2002-04-07 Thread friend
ÄúºÃ£º ÎÒ·¢ÏÖÁËÒ»¸öÂôÊÖ»úµÄÍøÕ¾£¬¼Û¸ñ¾ªÈ˵ıãÒË£¬ºóÀ´Á˽⵽´ËÍøÕ¾ÊǹúÄÚÒ»¼Ò±È½Ï´óµÄÊÖ»úÅú·¢É̽¨ÉèµÄÍøÕ¾£¬ºÜ¶àÍøÓÑͨ¹ý´ËÍøÕ¾Âòµ½Á˳ÆÐÄÈçÒâµÄÊÖ»ú£¬È«²¿ÊÖ»ú¶¼ÊÇÕýÆ·Ðлõ£¬ÊÛºó·þÎñºÜºÃ¡£ÍøÕ¾ÄÚÈÝÒ²ºÜ·á¸»£¬¼¸ºõ°üÀ¨ÁËÊÖ»úµÄ·½·½ÃæÃ棬¶ÔÄú¿Ï¶¨ÓаïÖú£¬ÌرðÍÆ¼ö¸øÄã¡£ÍøÖ·Îª£º http://www.139shop.com/asp/me

Re: [JBoss-user] Strange problem

2002-04-07 Thread Dmitri Colebatch
If you could post a stack trace it would help. cheers dim - Original Message - From: "Mahesh Agarwal" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, April 08, 2002 2:54 PM Subject: [JBoss-user] Strange problem > Hi Everybody > > I am facing a very strange problem in my app

[JBoss-user] Strange problem

2002-04-07 Thread Mahesh Agarwal
Hi Everybody I am facing a very strange problem in my application which is running in Jboss. I am creating a "Request" in my application and saving that "Request" in the database(MySql), that mean, I inserted a new row in a table. When I come to my application again to see that "Request" , the

RE: [JBoss-user] Caching relationships for a tree structure

2002-04-07 Thread Jeff Schnitzer
> From: David Jencks [mailto:[EMAIL PROTECTED]] > > with ejb -- look at commit option D with a 24 hour timeout. This will > give > you 1 copy in memory. You may want to set it read-only also if it is > really read only. There may be a way to get more than one copy using a > multi-instance sync

Re: [JBoss-user] Caching relationships for a tree structure

2002-04-07 Thread David Jencks
with ejb -- look at commit option D with a 24 hour timeout. This will give you 1 copy in memory. You may want to set it read-only also if it is really read only. There may be a way to get more than one copy using a multi-instance synchronization interceptory, I'm not sure. Without ejb -- write

[JBoss-user] Caching relationships for a tree structure

2002-04-07 Thread Jeff Schnitzer
Hi! I'm trying to figure out a caching strategy for a fairly simple tree structure. The tree will be very heavily used, there are relatively few nodes, they change only rarely, and transactional behavior really isn't necessary. Some sort of cache which updates once per day would be ideal. The

RE: [JBoss-user] Scheduled class slow when bundled with beans

2002-04-07 Thread Jeff Schnitzer
How are you accessing the entity beans? If you access like this: void clientMethod() { foo = bean.getFoo(); bar = bean.getBar(); } ...then each of those methods are going to run in a separate transaction, and the bean will probably be loaded separately for each method call. Two database

RE: [JBoss-user] bug in .jboss.net-deployer

2002-04-07 Thread Martin Maisey
Marius, I just posted the following to jboss-development (didn't spot your post beforehand). Martin --- Christoph and whoever, I have been trying to get JBoss.net up and running to have a play about with, and have hit a few problems. Before going too much further, I just wanted to check that

Re: [JBoss-user] Jaws -- How can I force Jaws to generate SQL which is SELECT * FROM TEST WHERE name = '%NAME%' ??

2002-04-07 Thread Burkhard Vogel
Hi, I allways thought the > >findByNameLike >name LIKE '%{0}%' > should do it. What is the SQL generated? or is there a stack-trace? Regards, Burkhard - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, April 05, 2002 9:52 AM Subject: [JBoss-user]

Re: [JBoss-user] RE: accessing EJBs from ASP, JBoss,NET-problems

2002-04-07 Thread Marius Kotsbak
On man, 2002-03-25 at 09:34, Craig Johannsen wrote: > An Active Server Page can make a SOAP RPC call using the new .NET stuff, > which calls a network service. JBoss can expose EJBs as network services > using JBoss.net (see http://www.jboss.org/developers/jboss-net.jsp). It is > still alpha cod

[JBoss-user] bug in .jboss.net-deployer

2002-04-07 Thread Marius Kotsbak
The deployer fails to be registered. Is this a known bug? The testsuite-script also doesn't work, it (gen-src) creates duplicate classes Cause: java.lang.IllegalArgumentException: argument type mismatch at org.jboss.mx.capability.ReflectedMBeanDispatcher.invoke(ReflectedMBeanDispatcher.j

Re: [JBoss-user] Re: [JBoss-dev] Automated JBoss TestsuiteResults: 7-April-2002

2002-04-07 Thread Peter Fagerlund
on 07-04-2 18.13, Richard Lim at [EMAIL PROTECTED] wrote: > Ass hole, Can you stop sending this email to me. U talking to Me ? ___ JBoss-user mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/jboss-user

Re: [JBoss-user] Scheduled class slow when bundled with beans

2002-04-07 Thread Marius Kotsbak
On søn, 2002-04-07 at 16:16, Eric Jain wrote: > I bundled a scheduled class together with the entity beans it uses so it can > access them directly. Previously the scheduled class had to access the > entity beans through a session bean, since the entity beans only have local > interfaces (CMR...).

Re: [JBoss-user] Re: [JBoss-dev] Automated JBoss Testsuite Results: 7-April-2002

2002-04-07 Thread Richard Lim
Ass hole, Can you stop sending this email to me. --- "Adrian Brock" <[EMAIL PROTECTED]> wrote: >Hi, > >Try this link for a temporary workaround. >http://main.jboss.org/thread.jsp?forum=66&thread=11645 > >Regards, >Adrian > > >>From: Marius Kotsbak <[EMAIL PROTECTED]> >>To: [EMAIL PROTECTED] >

[JBoss-user] Scheduled class slow when bundled with beans

2002-04-07 Thread Eric Jain
I bundled a scheduled class together with the entity beans it uses so it can access them directly. Previously the scheduled class had to access the entity beans through a session bean, since the entity beans only have local interfaces (CMR...). Instead of observing increased performance as a resul

[JBoss-user] RE: [JBoss-dev] JBoss 3 users -- warning of impending configuration change

2002-04-07 Thread Ignacio Coloma
Right now I don't have access to CVS. It should be restarted this week. If someone could fix the mysql example, good. If not, as far as I have CVS I'll do it. BTW David that change for JMX javadocs looks damn-damn cool. > -Mensaje original- > De: [EMAIL PROTECTED] > [mailto:[EMAIL PROTEC

Re: [JBoss-user] Re: [JBoss-dev] Automated JBoss Testsuite Results: 7-April-2002

2002-04-07 Thread Adrian Brock
Hi, Try this link for a temporary workaround. http://main.jboss.org/thread.jsp?forum=66&thread=11645 Regards, Adrian >From: Marius Kotsbak <[EMAIL PROTECTED]> >To: [EMAIL PROTECTED] >CC: [EMAIL PROTECTED] >Subject: [JBoss-user] Re: [JBoss-dev] Automated JBoss Testsuite Results: >7-April-2002

[JBoss-user] Re: [JBoss-dev] Automated JBoss Testsuite Results: 7-April-2002

2002-04-07 Thread Marius Kotsbak
JBoss 3.x doesn't seem to work at all with JDK 1.4. I can't even start it. It just stops on some exception and shuts itself down ( I can provide the error if it helps). The following testsuite also gives more errors than successful tests! Is it supposed to work, or when will it work? Marius K O