[JBoss-user] [Management, JMX/JBoss] - Re: how to find jboss server status, if it is stopped

2004-07-03 Thread genman
Install this: http://cr.yp.to/daemontools.html Once you get it going, you can control your service and find its status using the command line. You don't want to check a socket on JBoss to find out if it's running, because the socket isn't created until a few seconds after start-up; you may en

[JBoss-user] [Nukes User] - Re: BB question

2004-07-03 Thread lonicera
Thank you for your help. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3840879#3840879 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3840879 --- This SF.Net email sp

[JBoss-user] [Performance Tuning] - Re: custom RMI SocketFactory

2004-07-03 Thread semi
Take a look at the file jboss-service.xml You can specify your own SocketFactory in the "RMI/JRMP invoker" section of the file. | | | | jboss:service=TransactionManager | | View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3840878#38408

jboss-user@lists.sourceforge.net

2004-07-03 Thread [EMAIL PROTECTED]
... except that the link http://www.nsdev.org/jboss/stories/jboss-net.html appears to be dead. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3840875#3840875 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3840875 --

[JBoss-user] [Nukes User] - Re: RC 1.1 Candidate Fails On This Install

2004-07-03 Thread jae77
i am aware of the problems w/ the grant syntax and am working on a solution for this. (i already know what the correct syntax is, i'm looking to see if i can make the setup even easier). as for the other problem, nukes will not be >= 3.2.4 compatible until after the 1.1 release. you will not be

[JBoss-user] [Nukes User] - Re: RC 1.1 Candidate Fails On This Install

2004-07-03 Thread lane
Following the install.txt script to the letter. this is the start of the error report to the console: | 13:18:03,750 INFO [EARDeployer] Init J2EE application: file:/E:/deploy/releases/jboss-3.2.5/server/default/deploy/nukes.ear | 13:18:04,968 WARN [DeploymentInfo] Only the root deployment

[JBoss-user] [Persistence & CMP/JBoss] - how to use QL to have a case insensitive String compare?

2004-07-03 Thread WebSel
Hi! I'm trying to build a finder that uses user input to lookup entries in a database. I'm using CMP and a finder. The finder is case sensitive and that is highly generating errors as the words are sometimes typed in with capitals. Can i fix this in QL or do i need to create work around? Wess

[JBoss-user] [Nukes User] - Re: RC 1.1 Candidate Fails On This Install

2004-07-03 Thread lane
The user is created but the grant command fails. I am now using this instead as my grants: GRANT SELECT, INSERT, UPDATE, DELETE, CREATE, DROP, ALTER, INDEX ON nukes.* TO 'nukes'@'localhost' WITH GRANT OPTION; GRANT FILE, RELOAD, REFERENCES ON *.* TO 'nukes'@'localhost'; I am trying this out i

Re: [JBoss-user] [Beginners Corner] - Problems starting transaction from a servlet

2004-07-03 Thread Dasarath Weeratunge
Hi, Check and see when the ejb methods are executed, whether there is a transaction context -- you can use UserTransaction.getStatus from within those methods. Good luck, Dasarath --- millenium <[EMAIL PROTECTED]> wrote: > Hi out there, > i have a little problem with transactions (its my > first

[JBoss-user] [Security & JAAS/JBoss] - limitations of ClientLoginModule and security model

2004-07-03 Thread danorris
All, My apologies in advance if this has already been answered... I have looked at past posts but haven't seen anything definitive. I have two questions. The first is about ClientLoginModule and the underlying security classes. It seems these classes are hard-coded to use NameCallback and Pass

[JBoss-user] [Nukes User] - RC 1.1 Candidate Fails On This Install

2004-07-03 Thread lane
env: mysql 4.0.20a win2000 error on exection of ddl scripts per the install instruction: C:\mysql\bin>mysql -u root -e "create database nukes" C:\mysql\bin>mysql -u root -D nukes -e "source e:\deploy\releases\nukes\prepare. ddl" ERROR 1221 at line 20 in file: 'e:\deploy\releases\nukes\prepar

[JBoss-user] [The Lizzard's corner] - Re: What is the biggest site using JBoss ?

2004-07-03 Thread jaap
Well I have got a small site running JBoss. About 1000 visitors a day. The site is reasonably complex - light pages are about 10 database requests, the heavier pages need up till 1000 database requests. Before JBoss I had the same war's where running flawlessly on Tomcat (for years). Since

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: ManagedConnection [InUse/Avalilable/Max]: [-1/9/40] bug?

2004-07-03 Thread genman
Hmm, sounds like a bug that was fixed in 3.2.4. This was a JCA issue. Perhaps you could have found your answer through the forum Search or release notes? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3840864#3840864 Reply to the post : http://www.jboss.or

[JBoss-user] [Persistence & CMP/JBoss] - Re: OFFSET & LIMIT does not make it into the generated sql

2004-07-03 Thread greiezer
Thanks for the reply Joachim. OK, I have 107 products which are related to a category. CategoryLocal cat = CategoryUtil.getLocalHome( ).findByPrimaryKey( categoryId ); | Collection products = cat.getActiveProducts( offset, limit ) At this point I would expect that 'products' has size=limit, b

[JBoss-user] [Management, JMX/JBoss] - Re: how to find jboss server status, if it is stopped

2004-07-03 Thread lretief
What operating system and jboss version? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3840862#3840862 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3840862 --- This

[JBoss-user] [Management, JMX/JBoss] - Re: Generate GUID

2004-07-03 Thread gorano
If you want a home made solution, you can always create a UUID table in your database. Create one field with the name and one field with value. You can implement a cmp, bmp or session bean to read the table, increase value and update. By creating a generic interface and a factory class you can

[JBoss-user] [Beginners Corner] - Re: Migration from websphere to JBoss

2004-07-03 Thread fbiaggi
Hi, we develop with WSAD and deploy to JBoss without problems. The only things are special JBOSS-QL statements. Try it maybe it works without any changes, just only add the required jar's to JBoss (like ivjejb35.jar if required). Ciao View the original post : http://www.jboss.org/index.html?mo

[JBoss-user] [Performance Tuning] - Re: Regarding maximum number of JAVA,JAVAC pids

2004-07-03 Thread plat
Chronological PID's are adding up memory leak?? is that your problem.. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3840853#3840853 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3840853 -

[JBoss-user] [Management, JMX/JBoss] - how to find jboss server status, if it is stopped

2004-07-03 Thread maheedhar
Hi, Can any one suggest, how to find the jboss server status? My application has a requirement to start the jboss server only if it is not already started. I am able to find the status, if the server is already running, by accessing the respective MBean ("jboss.system:type=Server" MBean has a

[JBoss-user] [Beginners Corner] - Problems starting transaction from a servlet

2004-07-03 Thread millenium
Hi out there, i have a little problem with transactions (its my first try to use them...). Following Scenario: I want to call 2 methods of a Session Bean from a Servlet. Both methods are creating a new CMP-Object. Well...the first Object should be removed from Database if the second fails...So I

[JBoss-user] [Installation & Configuration] - WebApp deployment in JBoss 3.2.3 and 3.2.5

2004-07-03 Thread Varshney
Hi All, I am new to JBoss 3.2.5 I wrote a web app (which uses Jasper reports) and packaged it into an ear and then deployed it on JBoss 3.2.3 and it works fine. The Web app is a normal webapp having jsp and servlets (no struts or any EJBs) I downloaded JBoss 3.2.5 and then tried deploying the

[JBoss-user] [Performance Tuning] - Re: UPDATE after INSERT in CMR

2004-07-03 Thread loubyansky
Because the spec says insert after ejbCreate and before ejbPostCreate. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3840849#3840849 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3840849 --

[JBoss-user] [EJB/JBoss] - Re: ejb-ql with date problem

2004-07-03 Thread loubyansky
What is the full message? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3840848#3840848 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3840848 --- This SF.Net email s

[JBoss-user] [Persistence & CMP/JBoss] - Re: finder methods not working

2004-07-03 Thread loubyansky
Change anonymous wrote : http://java.sun.com/j2ee/dtds/ejb-jar_1_1.dtd";> to anonymous wrote : http://java.sun.com/dtd/ejb-jar_2_0.dtd";> View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3840847#3840847 Reply to the post : http://www.jboss.org/index.html?module=

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

2004-07-03 Thread loubyansky
The datasource is not available. Make sure it is deployed successfully and you can see it in JNDIView. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3840846#3840846 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3840846

[JBoss-user] [Persistence & CMP/JBoss] - Re: Relationship mapping in jbosscmp-jdbc.xml (another probl

2004-07-03 Thread loubyansky
What SQL query caused this? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3840845#3840845 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3840845 --- This SF.Net email

[JBoss-user] [Persistence & CMP/JBoss] - Re: Catching TransactionRolledbackException

2004-07-03 Thread loubyansky
You could updateCountry in RequiresNew and catch the exception. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3840844#3840844 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3840844 -