[JBoss-user] [Clustering/JBoss] - Re: Independent clusters on same network with same partition

2004-04-16 Thread bela
That's doable: change either mcast_addr or mcast_port, or both in cluster-service.xml Bela View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3830890#3830890 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3830890 --

[JBoss-user] [EJB/JBoss] - Caused by: java.rmi.ServerException: RuntimeException; neste

2004-04-16 Thread isurunishan2000
Hi.I generated ejb classes using xdoclet. IDE-eclipse plugin-lomboz appserver-JBOSS3.2.x I deployed successfully But testclient throws an exception Caused by: java.rmi.ServerException: RuntimeException; nested exception is: etc.. What is the reason? View the original post : http://www.jboss.or

[JBoss-user] [Installation & Configuration] - My first servlet can't run! Help me!

2004-04-16 Thread calffin
Hi,I am using jboss3.0.8_tomcat4.1.24 in the eclipse. I use lomboz to develop servlet. I just write a servlet to response to the invoke and write "hello world" in the browser .But I found that the lomboz can't generate the class file for the servlet in the web-info/classes directory(I don't know

[JBoss-user] [Persistence & CMP/JBoss] - Informix-serial, auto-increment and discrete value

2004-04-16 Thread dirkniemeierde
Hi, I am using Informix serial columns with auto-increment funktion well. But there is an problem to insert an known value in the serial field like Infomix allows. In Informix an automatic new value will only be created when I insert a new entry without specify the serial field, or when I insert

[JBoss-user] [Performance Tuning] - Re: Jboss cache is always empty - why?

2004-04-16 Thread nraghuram
I think an entity is cached only when a getter is called. Also, I am not sure if commit option A works with Instance Per Transaction. this combination was not allowed earlier but i havent used the recent releases of jboss so i dont know if it is possible now. View the original post : http://ww

[JBoss-user] [Security & JAAS/JBoss] - Re: j_security_check & Struts

2004-04-16 Thread ant
anonymous wrote : My form action posts directly to j_security_check. If the login-form of the loginpage is the only reason for using struts you can also use pure html, because it dosen't matter if the loginpage is made up with struts or with pure html. The struts action will never be called. So i

[JBoss-user] [Persistence & CMP/JBoss] - Re: EJBQLParser throws generateParseException

2004-04-16 Thread sesques
I think that JBoss 4.0.0DR3 implements EJB-QL 2.1 which introduce the ORDER BY clause. Your query seems correct, so perhaps the name of your bean Order is taken as an ORDER BY clause. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3830898#3830898 Reply to the

[JBoss-user] [Persistence & CMP/JBoss] - Re: Informix-serial, auto-increment and discrete value

2004-04-16 Thread sesques
Hi, You have to use the unknown-pk tag with an entity-command name set to "informix-serial". Search in this forum, it is described many times. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3830899#3830899 Reply to the post : http://www.jboss.org/index.ht

[JBoss-user] [HTTPD, Servlets & JSP] - My first servlet "Hello world" can't run! Help me!

2004-04-16 Thread calffin
Hi,I am using jboss3.0.8_tomcat4.1.24 in the eclipse. I use lomboz to develop servlet. I just write a servlet to response to the invoke and write "hello world" in the browser .But I found that the lomboz can't generate the class file for the servlet in the web-info/classes directory( I don't kno

[JBoss-user] [EJB/JBoss] - Re: where contains(keywords, 'keyword list') > 0

2004-04-16 Thread sesques
The contains function is not part of EJB-QL spec. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3830901#3830901 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3830901 --

[JBoss-user] [Installation & Configuration] - Re: My first servlet can't run! Help me!

2004-04-16 Thread ManneF
Hi there, You seem to be using the wrong url to access the servlet, because jboss tries to redirect you to the error page. The error code 404 means "File not found". Check the servlet mappings in web.xml Good luck! Manne View the original post : http://www.jboss.org/index.html?module=bb&op=v

[JBoss-user] [EJB/JBoss] - Re: Caused by: java.rmi.ServerException: RuntimeException; n

2004-04-16 Thread sesques
Post more logs and more code snippet, not just saying IT NOT WORK. Unable to investigate without infos. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3830903#3830903 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=383090

[JBoss-user] [Messaging, JMS & JBossMQ] - auto reconnection of JMS server after a network failure

2004-04-16 Thread aquafresh
Hello , I am totally new in JBoss and I am try to find some information about this product. And my question is : if I run a JMS client but it occurs a network failure , is there a way that the JMS provider will reconnect automatically. A simple example should be I run a JMS client that send mess

[JBoss-user] [Persistence & CMP/JBoss] - CMR with optimal caching

2004-04-16 Thread alwyn
Hi, I'm trying to implement a 1 to * CMR between 2 beans making optimal use of caching. The system is used to map specific SMS keywords to specific session beans and the parameters to certain variables. Bean A fields: Keyword (keyword coming from phone), ServiceCode (application identifier), H

[JBoss-user] [EJB/JBoss] - Re: NoSuchObjectLocalException

2004-04-16 Thread nraghuram
What is your container configuration. Are you using Instance Per Transaction ?? and what is the lock ? Raghu View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3830906#3830906 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=

[JBoss-user] [EJB/JBoss] - Re: org.jboss.deployment.DeploymentException: No ejb-relatio

2004-04-16 Thread sesques
You must declare the relationship on both sides: Your forgot the declaration in your Party bean, something like : | /** | * @ejb.relation | * name = "PersonParty" | * role-name = "PartyHavePerson" | * target-ejb = "Person"

[JBoss-user] [EJB/JBoss] - Jboss reuse the EJB java object

2004-04-16 Thread petterahlgren
Hi When I moved from 3.2.1 to 3.2.3 I got a problem with my BMP entity beans. In 3.2.3 jboss seems to reuse the java object for different entity beans. The result is that the values of member variables is transfered from one entity bean to another. I tested it by adding an member variable to my

[JBoss-user] [Installation & Configuration] - Re: My first servlet can't run! Help me!

2004-04-16 Thread calffin
Hi,ManneF,thank you for your help! I only had one servlet in my project . My web module is called"WebModule". My web.xml is below: accountlet server.web.Accountlet accountlet /*.account

[JBoss-user] [HTTPD, Servlets & JSP] - Re: WAR not deploying properly, despite logging showing so

2004-04-16 Thread ahardy66
It's not a JSP. Both times involved struts action subclasses, being called by the struts action servlet. However this sounds like it would cause exactly the problem I am seeing, if it also affects other classes rather than just JSPs. But I can't see any other classes being cached anywhere like

[JBoss-user] [Security & JAAS/JBoss] - Re: 2 Apps, but just 1 wants security-manager on clientside

2004-04-16 Thread Frank Lemke
Hi Scot, you're right. That was the problem. Thank you very much! Frank View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3830914#3830914 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3830914 ---

[JBoss-user] [Installation & Configuration] - JNDI problems mail services tests

2004-04-16 Thread kabkhan
Hi, I am working on unit tests for the mail services. They run JBoss 3.2.4RC1 "embedded", by calling the following from their setup() method: | //Start JBoss |ServerImpl impl = new ServerImpl(); |System.out.println("got the server impl"); |Properties prop =

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: JMS Ping Timeout

2004-04-16 Thread [EMAIL PROTECTED]
I'll bet if you debug it, you'll see something like: thread1 - exceptionListener.onException() thread1 - thread2.start(); thread2 - connection.close() thread2 - exceptionListener.onException() thread2 - thread3.start() etc. Try doing oldConnection.setExceptionListener(null) before closing so th

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: auto reconnection of JMS server after a network failure

2004-04-16 Thread [EMAIL PROTECTED]
javax.jms.Connection.onException() View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3830917#3830917 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3830917 --- This SF.Ne

[JBoss-user] [Installation & Configuration] - Re: My first servlet can't run! Help me!

2004-04-16 Thread ManneF
You should use an url ending in .account (e.g: /WebModule/edit.account)to access the servlet. Your class file should be in WEB-INF/classes/server/web or somewhere else on the classpath; if not you'll not be able to find it. It may be a good idea to read up a bit on how servlets work before ask

[JBoss-user] [EJB/JBoss] - Re: Jboss reuse the EJB java object

2004-04-16 Thread [EMAIL PROTECTED]
3.2.3 is correct - 3.2.1 was inefficient in the pooling of beans Add the following to your bean: | public void ejbPassivate() | { | System.out.println("Returning to the pool - reset state here"); | } | You also need to do similar processing in ejbRemove() View the original post : ht

[JBoss-user] [EJB/JBoss] - Re: Jboss reuse the EJB java object

2004-04-16 Thread [EMAIL PROTECTED]
When I say state - I don't mean your persistent state - I mean your implementation state like this your count or jms/jdbc connections Persistent state will get reset by your ejbLoad() View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3830920#3830920 Reply to the

[JBoss-user] [Persistence & CMP/JBoss] - Re: Informix-serial, auto-increment and discrete value

2004-04-16 Thread dirkniemeierde
Hi, I described, that I use "informix-serial" with unknown-pk already. And it works. The problem is to insert an known value in that "auto-increment" field. Example the next new Value of the serial value will be 1000. And in the column there are wholes of values below that new value 1000. Perhap

[JBoss-user] [EJB/JBoss] - Re: org.jboss.tm.JBossTransactionRolledbackException:

2004-04-16 Thread [EMAIL PROTECTED]
"env not bound" means you have broken your jndi configuration View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3830922#3830922 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3830922 ---

[JBoss-user] [Beginners Corner] - Re: Problem starting service jboss.jmx:name=SnmpAgent

2004-04-16 Thread [EMAIL PROTECTED]
Nothing View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3830923#3830923 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3830923 --- This SF.Net email is sponsored by: IB

[JBoss-user] [Beginners Corner] - Re: JBoss pausing then restarting at random periods

2004-04-16 Thread [EMAIL PROTECTED]
Right click your console window and turn off quick edit View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3830924#3830924 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3830924 -

[JBoss-user] [Beginners Corner] - Re: SessionBean / SOAP

2004-04-16 Thread [EMAIL PROTECTED]
http://www.csd.abdn.ac.uk/~bscharla/teaching/mtp_software/jboss/jboss-net-EJB-example.shtml It is old, but the ideas are the same. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3830925#3830925 Reply to the post : http://www.jboss.org/index.html?module=bb&op=

[JBoss-user] [Persistence & CMP/JBoss] - Re: grrr: simple 1-1 relation - no foreign key column

2004-04-16 Thread ops
Oh, I got that wrong... Now it works! Thanks for your help! Oliver View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3830926#3830926 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3830926 --

[JBoss-user] [Nukes User] - Re: [News] some news

2004-04-16 Thread itchiban
jjae77, if my changes work fine and doing more than display the latest items I will sent you that. Thanks for your time. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3830927#3830927 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mo

[JBoss-user] [Nukes User] - [topics]topic image doesn't display!

2004-04-16 Thread itchiban
Since I have made a CVS update I can't add a topic image in Topic manager when I create a topic. Any idea. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3830928#3830928 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=383

[JBoss-user] [Installation & Configuration] - Re: JNDI problems mail services tests

2004-04-16 Thread [EMAIL PROTECTED]
Please re-state what your problem is. All I see is there is no provider url, which is to be expected since you are not using any network connection to access jndi. If you are trying to get the host name you should use the system property jboss.bind.address Why are you registering mbeans yourself

[JBoss-user] [Installation & Configuration] - Re: SU jbossuser temporary file problem

2004-04-16 Thread [EMAIL PROTECTED]
When you say you are using su are you using the -l option to run the user's profile script? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3830930#3830930 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3830930 -

[JBoss-user] [Persistence & CMP/JBoss] - EJB-QL query for selecter in n:m relation??

2004-04-16 Thread ops
Hi everybody, If I made an unidirectional n:m relationship between, letÂs say, a CustomerBean and a AddressBean bean (customer has a getter and a setter for his addresses). The mapping is made by a relational table. Both beans work. And after that I want to implement an ejbSelectStreets method

[JBoss-user] [Installation & Configuration] - browsing CVS web interface?

2004-04-16 Thread ahardy66
I need to find out whether there were any changes to the config files that I changed, i.e. log4j.xml, hsqldb-ds.xml, server.xml, login-config.xml etc, in the last few weeks since I checked out & built JBoss last time (it had a bugfix I needed). In the CVS web interface, I can't find the jboss-3

[JBoss-user] [Persistence & CMP/JBoss] - Re: Informix-serial, auto-increment and discrete value

2004-04-16 Thread sesques
As far I I know, I think it's impossible to do that. You cannot operate in both modes simulteanously. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3830934#3830934 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=38309

[JBoss-user] [EJB/JBoss] - Re: Jboss reuse the EJB java object

2004-04-16 Thread petterahlgren
Thanks for your quick answer /Petter View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3830935#3830935 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3830935 --- This SF

[JBoss-user] [Messaging, JMS & JBossMQ] - Using a queue as a request container

2004-04-16 Thread DarkLord
Hello list, I would like to use a JMS queue as a request container and I have some questions about this architectural choice. Basically the queue will contain request messages. They could have multiple consumers: - onMessage fired when the request should be processed (using the scheduled delive

[JBoss-user] [Messaging, JMS & JBossMQ] - JBoss 3.2.3 JMS Q for A

2004-04-16 Thread northwhite
Browsing all kind of forums and official JBoss document, we still cannot find answes for certain questions. Please help. 1. jms-ds.xml The JMS provider is configured as DefaultJMSProvider org.jboss.jms.jndi.JBossMQProvider java:/XAConnectionFactory java:/XAConnec

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: Using a queue as a request container

2004-04-16 Thread [EMAIL PROTECTED]
This forum is for technical questions not architectural questions. If you want somebody to design your app, hire a consultant. "DarkLord" wrote : | My questions: | | - What if a component is processing the request (doing some stuff with it in a TX and then repost on TX commit) and, AT THE

[JBoss-user] [Persistence & CMP/JBoss] - Executed SQL on findAll()

2004-04-16 Thread stscit04
Hi, I have an findAll() query in my entityBean. I select large numbers of beans with this method (up to 30k). The bean has an compound PK (id (String) + date (Date)). The server.log shows the following query: Executing SQL: SELECT blz, changeDate, flagDeletion, bankId FROM ShadowBLZ WHERE (blz

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: JBoss 3.2.3 JMS Q for A

2004-04-16 Thread [EMAIL PROTECTED]
Didn't look very hard did you. I know all these questions are answered in this forum, because I answered them. I'm surprised you couldn't figure out the first two questions from the FAQ topic where it explains how to configure jms-ds.xml for remote access. You also didn't "READ THIS FIRST" or at

[JBoss-user] [Management, JMX/JBoss] - Calling a MBean from the server side.

2004-04-16 Thread sturiot
Hi all, I would like to know which is the best approach to call a MBean from a component server like an EJB or another MBean. Should I use the RMIAdaptor ? Does the RMIAdaptor have optimizing calls (ref calls) when we are in the same VM ? Or is there another road ... I haven't found anything ab

[JBoss-user] [Installation & Configuration] - class local to jar not found when deployed on 3.2.4, but is

2004-04-16 Thread Martin0
Hi, I've 1 ear file with a jar in it. The jar has a class in it that refers to another class - exists in the same jar. In 3.2.3 it's fine. In 3.2.4 built from CVS on 5 May 2004, I get NoClassDefFound exception!! What's going on? Thanks Martin View the original post : http://www.jboss.org/

[JBoss-user] [Installation & Configuration] - Failed to find META-INF/jboss-service.xml

2004-04-16 Thread stm23
hi, i'm trying to install & configure jboss3.2.3 on redhat 9. after logging in as root, & executing run.sh i get a whole lot of error messages, all of which contain the line "Failed to find META-INF/jboss-service.xml. for example: 18:20:33,308 ERROR [MainDeployer] Could not initialise deloyment:

[JBoss-user] [Installation & Configuration] - URGENT: Classloading issue: No class found even that the cla

2004-04-16 Thread [EMAIL PROTECTED]
Hi all I am still fighting around my classloading problems. Acutally I use JDom and Dom4j with Xerxes as parser... When I try to load some classes I get a class not found exception. The following is the call Stack: JXML Helper (myEAR) calls... XPath (Jdom.jar contained in myEAR but uses the o

[JBoss-user] [Installation & Configuration] - Re: URGENT: Classloading issue: No class found even that the

2004-04-16 Thread [EMAIL PROTECTED]
"[EMAIL PROTECTED]" wrote : | | | | 14:27:22,793 ERROR [LogInterceptor] Unexpected Error: | java.lang.NoClassDefFoundError: org/saxpath/SAXPathException | at java.lang.Class.forName0(Native Method) | at java.lang.Class.forName(Class.java:141) | at org.jdo

[JBoss-user] [Installation & Configuration] - how to configure the logging level in JBOSS

2004-04-16 Thread cari34
Hi guys, I would like to configure the logging in JBOSS. The server.log file in the %JBOSS_HOME%\server\default directory is too big. How could I control the size of this file. I would like to minimize the logging put in this file. Is there a mean that allows doing that. Any idea ? Thank you

[JBoss-user] [EJB/JBoss] - Re: Caused by: java.rmi.ServerException: RuntimeException; n

2004-04-16 Thread isurunishan2000
"sesques" wrote : Post more logs and more code snippet, not just saying IT NOT WORK. | Unable to investigate without infos. | This is the client code I used (auto generated by eclipse) /* * Created on Apr 16, 2004 * * To change the template for this generated file go to * Window>Preferenc

[JBoss-user] [Installation & Configuration] - Re: how to configure the logging level in JBOSS

2004-04-16 Thread darranl
Logging for JBoss is provided using Log4J View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3830949#3830949 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3830949 --- Thi

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: Using a queue as a request container

2004-04-16 Thread DarkLord
Adrinan, "This forum is for technical questions not architectural questions. If you want somebody to design your app, hire a consultant. " I described only my architecture to help people understand the problem. I think my questions are technichal, right? Regards, Stephane View the original p

[JBoss-user] [Installation & Configuration] - Re: class local to jar not found when deployed on 3.2.4, but

2004-04-16 Thread Martin0
Doesn't work with 3.2.4RC1 either, so it's not a faulty cvs build. Martin View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3830952#3830952 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3830952

[JBoss-user] [HTTPD, Servlets & JSP] - Re: JBoss 3.2.2/Tomcat - No Session cookies--URL rewrite

2004-04-16 Thread sverker
false in jboss-web.xml should do the trick View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3830951#3830951 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3830951 --- Th

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: Using a queue as a request container

2004-04-16 Thread [EMAIL PROTECTED]
I only got as far as "I have some questions about this architectural choice" before skipping over to the real questions. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3830953#3830953 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mod

[JBoss-user] [Installation & Configuration] - Re: SU jbossuser temporary file problem

2004-04-16 Thread erik777
In a word, yes. I was using su - jbossuser And the man pages say that - is the same as -l. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3830954#3830954 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3830954 ---

[JBoss-user] [Installation & Configuration] - Re: Jboss shutdown

2004-04-16 Thread darranl
Isn't this being discussed elsewhere on the forums? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3830955#3830955 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3830955 -

[JBoss-user] [Installation & Configuration] - Re: URGENT: Classloading issue: No class found even that the

2004-04-16 Thread [EMAIL PROTECTED]
Adrian Thanks a lot for your fast reply. Acutally I relly did not recognize that is using Class.forName()... This is an indepent library out of my control, that actually JBoss is also using. Do I have any chance to influence the behaviour of Class.forName() in a way that it will use the righ

[JBoss-user] [EJB/JBoss] - Re: org.jboss.deployment.DeploymentException: No ejb-relatio

2004-04-16 Thread troypoppe
"sesques" wrote : You must declare the relationship on both sides: | Your forgot the declaration in your Party bean, something like : | | | | /** | | * @ejb.relation | | * name = "PersonParty" | | * role-name = "Pa

[JBoss-user] [Installation & Configuration] - Re: Jboss shutdown

2004-04-16 Thread monu
hi darranl, Ya it is being discussed but in EJB/JBoss forum which wasn't a proper place for it. Actually we wanted to move it to proper forum. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3830960#3830960 Reply to the post : http://www.jboss.org/index.html

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: Using a queue as a request container

2004-04-16 Thread [EMAIL PROTECTED]
FYI: http://www.jboss.org/index.html?module=bb&op=viewtopic&t=46188 If you want to discuss the implementation of this feature. No user questions on that thread please. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3830959#3830959 Reply to the post : http://ww

[JBoss-user] [Performance Tuning] - Re: JBOSS CMP No Select Before Insert

2004-04-16 Thread doshiaj
how can we avoid these select before insert in jboss 2.4? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3830962#3830962 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3830962 ---

[JBoss-user] [Installation & Configuration] - Re: URGENT: Classloading issue: No class found even that the

2004-04-16 Thread [EMAIL PROTECTED]
JBoss doesn't try to plugin user land classes. Put your class in a jar inside $JBOSS_HOME/lib then start jboss with | ./run.sh -L myjar.jar | Or get the jdom project to fix it. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3830961#3830961 Reply to the

[JBoss-user] [Nukes User] - Re: [topics]topic image doesn't display!

2004-04-16 Thread jae77
the code in cvs is far from stable, and definately has issues like this. i do have this fixed and working on my local machine, but that code isn't ready to be checked in yet. if memory serves, it may be a path issue w/ the images. i know in the code that i am working on, i've removed the hard

[JBoss-user] [Installation & Configuration] - Re: how to configure the logging level in JBOSS

2004-04-16 Thread cari34
Hi darranl, Thanks for the reply. Do you know what should I do to minimize the size of the loggings in the server.log file ? Carri View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3830965#3830965 Reply to the post : http://www.jboss.org/index.html?module=bb&op

[JBoss-user] [EJB/JBoss] - Re: org.jboss.deployment.DeploymentException: No ejb-relatio

2004-04-16 Thread sesques
Hi, What you want to do is possible and correct regarding the ejb spec. But XDoclet is bugged and do not allow a relationship declaration without the associated methods. When you do that, XDoclet forget to put a tag in ejb-jar.xml, and in jbosscmp-jdbc.xml, the tag exists but is empty. So, yo

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: Using a queue as a request container

2004-04-16 Thread DarkLord
Adrian, I would like to contribute. Let me know if I can help in any way (I don't know yet the JBossMQ codebase yet). Regards, Stephane View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3830968#3830968 Reply to the post : http://www.jboss.org/index.html?modul

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: Using a queue as a request container

2004-04-16 Thread ricardoarguello
DarkLord, Read this: Asynchronous queries in J2EE: http://www.javaranch.com/newsletter/200403/AsynchronousProcessingFromServlets.html View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3830970#3830970 Reply to the post : http://www.jboss.org/index.html?module=bb

[JBoss-user] [EJB/JBoss] - Re: Caused by: java.rmi.ServerException: RuntimeException; n

2004-04-16 Thread sesques
Are you sure you can access the InitialContext.INITIAL_CONTEXT_FACTORY wihout an Initial context instance ? No more idea with this code snippet. Perhaps with the full log. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3830971#3830971 Reply to the post : ht

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: Using a queue as a request container

2004-04-16 Thread [EMAIL PROTECTED]
If you want to help you can either discuss implementation ideas on that thread or just submit a patch. If you submit good patches you will get CVS R/W The source tree is explained on the wiki: http://jboss.org/wiki/Wiki.jsp?page=JBossMQ Regards, Adrian View the original post : http://www.jboss

[JBoss-user] [EJB/JBoss] - Re: Caused by: java.rmi.ServerException: RuntimeException; n

2004-04-16 Thread sesques
Forget my previous comment. Its ridiculous. I have really no idea. Sorry. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3830973#3830973 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3830973 --

[JBoss-user] [Persistence & CMP/JBoss] - JBOSS QL Information

2004-04-16 Thread Zapa
Hello , I've been writting EJB's for some time and one of the biggest problems i have with them is the limited functionality of the EJB QL . I have heard in a few places of JBOSS QL , and I have tried a few internet searches for more info . I am looking for at least a detailed list of what fu

[JBoss-user] [JBoss.NET & SOAP] - Re: WSDL error - simpleType

2004-04-16 Thread claude.glauser
I have the same problem too (mono wsdl tool). View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3830975#3830975 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3830975 ---

[JBoss-user] [Installation & Configuration] - Re: URGENT: Classloading issue: No class found even that the

2004-04-16 Thread [EMAIL PROTECTED]
Adrian Thanks again... With the -L switch I got it running... Cool end for a friday... Nice weekend -t View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3830976#3830976 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3830

[JBoss-user] [JBoss.NET & SOAP] - xdoclet tag reference, parameter reference ?

2004-04-16 Thread claude.glauser
Hi, does anybody know a link to the documentatoin of the x-doclet tags for the JBoss.net-module and the parameter description of "web-service.xml" for JBoss.net ? Thanks View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3830978#3830978 Reply to the post : http

[JBoss-user] [EJB/JBoss] - Re: EJBException: null

2004-04-16 Thread Berritxu
Hello! I found the problem, but I don't know how to solve it. Reserva EJB's primary key is java.sql.Timestamp This source code -- Reserva objReserva2 = (Reserva)i.next(); DatosReserva datos = objReserva2.getDatos();

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: JBoss 3.2.3 JMS Q for A

2004-04-16 Thread northwhite
Thanks for providing "definite" answers. For question 3, we are using MySQL as persistence manager, and water marks are set properly (350/400) I think for Xmx1024. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3830981#3830981 Reply to the post : http://www

[JBoss-user] [JCA/JBoss] - Connection program names

2004-04-16 Thread Lee_x_Francis
Would really like to use Tora to help monitor Jboss Websrvice connection usage. Can any body tell me how to pass through a program name to my oracle connection so that I see more than just JDBC-1.0-Client? Outside of jboss and its managed connections this is simply a matter of : props.put("v$sess

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: JBoss 3.2.3 JMS Q for A

2004-04-16 Thread [EMAIL PROTECTED]
That should be: You potentially have no messages in memory at 400M if that 400M of heap is used by something other than JBossMQ View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3830984#3830984 Reply to the post : http://www.jboss.org/index.html?module=bb&op=pos

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: JBoss 3.2.3 JMS Q for A

2004-04-16 Thread [EMAIL PROTECTED]
So at 400M you have no messages in memory and 600M of free heap. Regards, Adrian View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3830983#3830983 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3830983 -

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: JMS Ping Timeout

2004-04-16 Thread yxyang
Hi Adrian I don't think this will be the case. Anyway, i am testing it now. It need more than one day to get the result. According to the JMS specification, the exceptions delivered to ExceptionListener are those which don't have any other place to be reported (such as network problem). Closi

[JBoss-user] [JCA/JBoss] - Re: Connection program names

2004-04-16 Thread [EMAIL PROTECTED]
docs/dtd/jboss-ds_1_0.dtd and search for connection-property View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3830986#3830986 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3830986

[JBoss-user] [Installation & Configuration] - Re: Doesn't log to console, log4j.xml seems fine... please h

2004-04-16 Thread [EMAIL PROTECTED]
This log4j.xml display to the console fine for me with jboss-3.2.3 so you need to describe the os, jdk and method of starting jboss. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3830988#3830988 Reply to the post : http://www.jboss.org/index.html?module=bb&o

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: JBoss 3.2.3 JMS Q for A

2004-04-16 Thread northwhite
Or, the most part of 400M are messages, then processing logic kick in which begins to comsume the heap left. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3830987#3830987 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3

[JBoss-user] [Security & JAAS/JBoss] - Avoiding Principal and credential check for unchecked method

2004-04-16 Thread jburugupalli
Hi All, I have athe following scenario were one should login and then proceed for a client. So i declared the login() method of the respective facade bean as unchecked. My problem is i want to make only this login method unsecure and others secure. From my login dialog i borrowed the username a

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: JMS Ping Timeout

2004-04-16 Thread [EMAIL PROTECTED]
It is not closed yet, that is the work you are doing. All that has happened is that the connection has informed of a potential error, what you do is up to you. Closing and recreating the connection is usually the solution. Also from the spec: | JMSException - if the JMS provider fails to clos

[JBoss-user] [HTTPD, Servlets & JSP] - Re: SSL in JBoss 3.2.2 and Tomcat

2004-04-16 Thread [EMAIL PROTECTED]
http://jboss.org/wiki/Wiki.jsp?page=SSLSetup View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3830992#3830992 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3830992 ---

[JBoss-user] [HTTPD, Servlets & JSP] - Re: JBoss HTTP Service not responding

2004-04-16 Thread [EMAIL PROTECTED]
There is a well known problem with rh9 linux due to issues with the NTPL thread library. To work around it set the LD_ASSUME_KERNEL=2.4.1 env variable to revert to the previous behavior. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3830994#3830994 Reply to

[JBoss-user] [Beginners Corner] - Configuring JBoss to existing tomcat

2004-04-16 Thread choepeter
i have just got jboss 3.2.3 to run with tomcat. but is there way to specify jboss to use another instance of tomcat as opposed to the one that came with jboss. if so, what do i need to configure in jboss and tomcat to have them work together? View the original post : http://www.jboss.org/inde

[JBoss-user] [HTTPD, Servlets & JSP] - Re: Crazy: moving JBoss installation helps find precompiled

2004-04-16 Thread [EMAIL PROTECTED]
Yes, its a win32 issue for which I have not found a workaround other than shorting the installation path since I have not found how to expand the win32 pathlength. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3830996#3830996 Reply to the post : http://www.j

[JBoss-user] [JCA/JBoss] - Re: Connection program names

2004-04-16 Thread Lee_x_Francis
Thanks for the quick response.. Lee. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3830997#3830997 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3830997 --- This SF

[JBoss-user] [Messaging, JMS & JBossMQ] - Applying security policy - slow on windows

2004-04-16 Thread jdepons
I am creating temporary queues at run time, and am using an MBean call to apply the security policy. On windows sytems the server.invoke() call can take anywhere from 10-30 seconds. I don't see the same issue on Linux. Is there an alternative (native) way to make this call, or a way to spee

[JBoss-user] [Performance Tuning] - Re: Serious performance issue using Oracle 9.2.0.4 and RAC/T

2004-04-16 Thread bie-developer
Um, are you sure you have enough information to provide an answer? The original post said nothing about ISPs or bandwith, and he would be seeing java.lang.OutOfMemory errors if he had a memory problem. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3831000#383

[JBoss-user] [Installation & Configuration] - Re: Separate log4j.properties not allowed?

2004-04-16 Thread lyc1
"[EMAIL PROTECTED]" wrote : scope your classloader | What does that mean ? I'm using several EARs with their own CL, with a log4JService in each, but, as usual, just one log4j configuration is used for the whole server (the last loaded is used !) What to do to have separated log4j instance ?

[JBoss-user] [HTTPD, Servlets & JSP] - Re: JBoss HTTP Service not responding

2004-04-16 Thread sverker
Hi Scott, sounds like that could be the issue in my case since the server with problems is a RH9 machine. I will set the env variable you suggested and report back if it works. Many thanks Sverker View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3831001#383100

[JBoss-user] [HTTPD, Servlets & JSP] - Re: Virtual Mapping in JBoss?

2004-04-16 Thread [EMAIL PROTECTED]
http://jboss.org/wiki/Wiki.jsp?page=ExternalDirectories View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3831002#3831002 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3831002

[JBoss-user] [Installation & Configuration] - Re: class local to jar not found when deployed on 3.2.4, but

2004-04-16 Thread [EMAIL PROTECTED]
Show a stacktrace, or better yet, create a but report on sourceforge with the ear. Else you have to debug the class loading by enabling logging: http://jboss.org/wiki/Wiki.jsp?page=EnableClassloaderLogging View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3831003

[JBoss-user] [J2EE Compliance] - J2EE Specification

2004-04-16 Thread timkk
Hi all, J have a common question about the J2EE-Specification, perhaps somebody can give me a short answer: The J2EE-Specification describes the features of an J2EE application server, ob what the server has to do. Where are the major differences between J2EE application server or better what c

  1   2   >