[JBoss-user] [Installation & Configuration] - how to intall and build tomcat 5 in jboss 4.0 and where to

2004-10-12 Thread devox
Hi, Once again come back to same problem to start use Tomcat with JBoss I can't find any detail installation / build help to combine these two platforms. Is there someone that could help to build detail support document how to combine these platforms. Step by step orders how to do it ? A

[JBoss-user] [Beginners Corner] - Any tutorial showing usage of XDoclets with Entity Beans (CM

2004-10-12 Thread winckler
I have seen the JBOSS-IDE tutorial showing the creation of a session bean using jboss-ide and xdoclets. Now I want to continue this path. Where can I learn how to use other xdoclets and other features of jboss-ide to develop entity beans? Any hints for documentation, even commercial, are welcome

[JBoss-user] [EJB/JBoss] - Re: Stateful Bean removal detection from client side

2004-10-12 Thread manawajaws
Hi Frito, Thanx for reply, but we've chosen a solution that keeps the Stateful bean alive: the client launches a thread that periodically calls a method on the bean to avoid passivation and removal. Thanx anyhow Fab View the original post : http://www.jboss.org/index.html?module=bb&op=

[JBoss-user] [Management, JMX/JBoss] - Re: Looking up JMX server through JNDI poisons security

2004-10-12 Thread [EMAIL PROTECTED]
The connector providing the RMIAdaptor clears the calling thread security context so as not to leak this back to the invoking thread pool. This was only intended for use by remote clients and so there was no concern for maintaing any existing security context. Since people have been using the co

[JBoss-user] [Security & JAAS/JBoss] - Strange Situation after login

2004-10-12 Thread IanLipliavyi
Hi! I have strange situation after logon - config files and code below(Server \ JBoss 3.2.0/3.2.2/3.2.3, jdk141_05, j2eesdk-1_4_2004Q4-beta- windows.exe, JBuilder X) The first: After executing testLogin in log file I get: 22:23:41,968 INFO [STDOUT] Created LoginContext 22:23:42,000 INFO [STDOU

[JBoss-user] [Advanced Documentation] - Re: Roadmap for 4.0 Doco?

2004-10-12 Thread mhaglind
Thnx. Keep up the good work. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3851229#3851229 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3851229 --- This SF.net emai

[JBoss-user] [HTTPD, Servlets & JSP] - JMS Confiuration (XA) and Using it in web project

2004-10-12 Thread shaby775
Hi, I am working on a web application (no ejbs involve) and using jboss 3.2.5. Currently i am working on use cases which involves both databse and jms and i want to use XA compliant JMS configuration but unfortunately i dont know how to configure this. Can anybody help me how to do this and what

[JBoss-user] [Persistence & CMP/JBoss] - EJBException: CMR field value is already loaded

2004-10-12 Thread godboles
Hi all, I am trying to perform stress testing of my Customer beans. Every now and then even under light load, I get the following exception: javax.ejb.EJBException: CMR field value is already loaded at org.jboss.ejb.plugins.cmp.jdbc.bridge.JDBCCMRFieldBridge$FieldState.loadRelations(JDB

[JBoss-user] [Management, JMX/JBoss] - Looking up JMX server through JNDI poisons security

2004-10-12 Thread craigdberry
I have an extraordinarily weird problem with an interaction between JMX, JNDI, and security in JBoss 3.2.5. In the working version of my app, we look up mbeans from servlets and EJBs using this code to get the mbean server: | return (MBeanServer) MBeanServerFactory.findMBeanServer(null).get(

[JBoss-user] [Installation & Configuration] - Re: jboss 4.0 + postgresql 7.4.5

2004-10-12 Thread plindsay
I have yet to get postgres 7.4 up and running as default data source. Done all the right things...arrrg. -phil View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3851219#3851219 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply

[JBoss-user] [Installation & Configuration] - deployment dependencies working differently in jboss4.0.0

2004-10-12 Thread berkgypsy
I am converting from jboss3.2.0 to jboss4.0.0. I have a war which references classes within an ear file. I have it set up so the ear deploys before the war. This works with jboss-3.2.0. When I try doing the same thing in jboss4.0.0, I see the ear deploying, and then the war, which is correc

[JBoss-user] [HTTPD, Servlets & JSP] - Re: context problem(using heavy files stored outside the jbo

2004-10-12 Thread alanmoor
Hi Raj, I don't think you'll be able to serve up files directly outside the jboss install structure on Windows. On linux you could set up a logical link. If it were me, I'd write a super simple servlet that serves it up. Post a file= parameter, then let the servlet go get the file and stream

[JBoss-user] [HTTPD, Servlets & JSP] - Deploying servlets inside a war inside an ear

2004-10-12 Thread alanmoor
I have a web application I am attempting to deploy inside an EAR. Everything works splendidly except for my servlets. The servlets do work when I deploy their jar files to server/default/lib by the way, so I know it's a config issue. Basic structure of EAR: MyEJB.jar MyWeb.war lib/myclasses.j

[JBoss-user] [Security & JAAS/JBoss] - JBoss 3.2.5 Will Not Load Embedded Obj Under JAAS & SSL & IE

2004-10-12 Thread sulfur
Hi I really hope somebody can help me on this one. The objs are Macromedia Flash .swf files, and I have a security-constraint in my web.xml protecting /flash/*. Everything was working great in 3.2.3, but as soon as I upgraded to 3.2.5, I ran into a very weird problem: a) If I connect via non-S

[JBoss-user] [EJB/JBoss] - Re: Beans Cashed?

2004-10-12 Thread grinch
Yes, I call the set method of the bean. Then the page loads as normal which does a findAll. Then I call the corresponding get Method and the new data is not retrieved. Maybe the bean is cashed before the set method and then calling the get method using the cashed bean that does not have the n

[JBoss-user] [Beginners Corner] - Re: jboss examples & errors

2004-10-12 Thread alanmoor
It's been my experience that you need to lose the first slash, i.e. instead of java:/comp/env use java:comp/env Also, as far as looking up EJB references, we use: LocalPaymentManager mgr = null; LocalPaymentManagerHome home = null; try {

[JBoss-user] [Persistence & CMP/JBoss] - Re: JBoss 3.2.3 -> 3.2.5 Referential Integrity

2004-10-12 Thread nebodin
Ok I have determined that cascade-delete is not the issue here, i do not want cascade delete on. The exception that I am getting now with 3.2.5 when i try to delete something that will damage referential integrity is a good thing - I am only interested in why I wasn't getting it before, i.e. was

[JBoss-user] [Nukes User] - Re: Deploy

2004-10-12 Thread theute
I don't understand your question, where do you see that one should use only two folders ? Anyway you don't have to worry too much you can package things your own way or use the existing build.xml if you use an existing one from any module, you will have to follow the same structure. (and put th

[JBoss-user] [Installation & Configuration] - Re: JBoss 4 + tomcat 5 clustering with TreeCache: can't conf

2004-10-12 Thread bwang00
JB4 now has Tomcat5 http session repl support. The file is tc5-clustering-service.xml. What are you trying to do here? -Ben View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3851209#3851209 Reply to the post : http://www.jboss.org/index.html?module=bb&op=postin

[JBoss-user] [Nukes User] - Deploy

2004-10-12 Thread pedrojosemartins
Why do people teach on this forum that we should use only two folders(the classes folder has several subfolders, and then there's the META-INF folder) packaged into a sar file for deployment? In the nukes source there's a lot more folders and i believe that the deployment file is an ear file, no

[JBoss-user] [Management, JMX/JBoss] - Re: 'env-entry'-like items in JNDI?

2004-10-12 Thread mcorey
Thanks, Scott -- that's what I needed to know... I've since implemented my own... M View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3851207#3851207 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3851207

[JBoss-user] [EJB/JBoss] - Re: JBoss 3.2.3 -> 3.2.5 Referential Integrity

2004-10-12 Thread nebodin
I think I posted this in the wrong forum, so I have re-posted it over in the persistence CMP/Jboss forum instead. However I can't delete this topic, so... sorry :S View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3851206#3851206 Reply to the post : http://www.

[JBoss-user] [Persistence & CMP/JBoss] - Re: JBoss 3.2.3 -> 3.2.5 Referential Integrity

2004-10-12 Thread nebodin
Ok... I have been doing some searching and reading and I think this is an example of cascade-delete not working and working. Unfortunately I couldnt really follow the solutions that were given to other people. Is there a setting which controls whether or not JBoss uses cascade delete, and in 3.

[JBoss-user] [Persistence & CMP/JBoss] - JBoss 3.2.3 -> 3.2.5 Referential Integrity

2004-10-12 Thread nebodin
Hi Im pretty new with all of this so I'm sorry if I'm not making myself clear, I'll do my best. Basically, I have two CMP 2.x entity beans - lets say they are Customer and Order. Order has a unidirectional relationship to Customer. Lets say I create a Customer and then I create an Order with

[JBoss-user] [EJB/JBoss] - InvalidClassException when passing obj to session bean.

2004-10-12 Thread rgc3679
I use JBoss 3.2.2 and JVM 1.4.2. My app is deployed as an EAR and uses RMI over HTTP to communicate between client and server. When trying to pass one of my objects from the client to the server so that it can be stored in the DB I am getting an InvalidClassException. The code snippet where th

[JBoss-user] [Advanced Documentation] - Re: Roadmap for 4.0 Doco?

2004-10-12 Thread nrichards
To be more specific, the getting started guide is available now and the complete admin guide should be completed in the November time frame. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3851201#3851201 Reply to the post : http://www.jboss.org/index.html?mo

[JBoss-user] [EJB/JBoss] - JBoss 3.2.3 -> 3.2.5 Referential Integrity

2004-10-12 Thread nebodin
Hi Im pretty new with all of this so I'm sorry if I'm not making myself clear, I'll do my best. Basically, I have two CMP 2.x entity beans - lets say they are Customer and Order. Order has a unidirectional relationship to Customer. Lets say I create a Customer and then I create an Order with a

[JBoss-user] [Beginners Corner] - Re: Session Bean Client hangs at Context Lookup

2004-10-12 Thread mlapolla
If I used java:comp/env it worked just fine when the bank-ejb.jar was part of the .ear. I am having trouble using the URL to look up other ejbs that are not part of a war or ear. (See my last posting.) Those ejbs that are, in the same JVM but not in the same project. The error I keep on getting

[JBoss-user] [EJB/JBoss] - Using ejbPassivate() to garbage collect Entity Bean attribut

2004-10-12 Thread keefie
Maybe I've misunderstood the spirit behind the ejbPassivate() and ejbActivate() mechanism but I thought these were primarily for the storage of stateful session bean state when the bean is moved out of memory and into temporary persistent storage. I thought the idea was that non serializable bea

[JBoss-user] [Beginners Corner] - Re: Session Bean Client hangs at Context Lookup

2004-10-12 Thread pgajria
similar issue with the jboss fibo example in your code you have initial.lookup("java:comp/env/ejb/Simple"); on the jboss examples they use context.lookup("java:/comp/env/ejb/Fibo"); is that leading / needed or not ? regardless i was never able to get their example to work also i get a lot o

[JBoss-user] [Beginners Corner] - jboss examples & errors

2004-10-12 Thread pgajria
as per an earlier post im still unable to get the tutorial 1.3.0 example working correctly so i decided to write my own example & now im running into the following error same as the jboss example error in my servlets init() unable to lookup "java:/comp/env/foo" where foo would be Fibo or any o

[JBoss-user] [Beginners Corner] - Re: turn off Unified Class Loader?

2004-10-12 Thread minmay
While the URL does cover issues with isolating classes in Ears and Web Apps, this is "neither" of that type of application. My application is merely a collection of Timer MBeans that perform routine JDBC calls. Thus, they are deployed as a jboss-service archive (sar). Thank you for the link, bu

[JBoss-user] [JBoss.NET] - Re: help deploying a web-service?

2004-10-12 Thread ptomsic
solved: I was deploying the EAR into the wrong spot. It should be deployed under JBOSS_HOME/server/all/deploy, NOT inside of the jboss-net.sar View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3851189#3851189 Reply to the post : http://www.jboss.org/index.html

[JBoss-user] [Management, JMX/JBoss] - Re: MBeanServer in client JAR

2004-10-12 Thread damien
Ok. Thanks for the input. I think the answer for me is only including the JARs that I need. Otherwise, we'll have to bring the dom4j.jar dependency into our client classpaths. That is actually how we found out about this - our client processes wouldn't start because of a NoClassDefFound erro

[JBoss-user] [Persistence & CMP/JBoss] - Re: using hibernate in jboss-4.0.0

2004-10-12 Thread berkgypsy
more changes to make this 4.0.0 compatible, and now it's working, for those interested: | | | jboss.jca:service=LocalTxCM,name=TxOracleDS | | java:/HibernateFactory | java:/TxOracleDS | net.sf.hibernate.dialect.Oracle9Dialect | net.sf

[JBoss-user] [Messaging, JMS & JBossMQ] - Using JMSXGroupID & JMSXSequenceNo

2004-10-12 Thread rajangupta
When a client creates multiple segments of a large message, it sets a unique groupID & sets a sequence number for each of the messages. e.g. Let us say that a client segments a 40MB datafile into 10 segments of 4MB each,. Now when a JMS Listener puts in a selector for a GroupID, how can it guaran

[JBoss-user] [Persistence & CMP/JBoss] - Re: using hibernate in jboss-4.0.0

2004-10-12 Thread berkgypsy
fixing this line corrected the problem: View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3851185#3851185 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3851185 --- Thi

[JBoss-user] [Security & JAAS/JBoss] - Always send user to specific page after login

2004-10-12 Thread djeverson
We are currently using J2EE Container managed security within our Struts web application deployed in JBoss 3.0.x/Tomcat. After a user's session timeouts, the user is (correctly) returned to the login page and prompted to re-login. After login, the user is redirected back to the page they where

[JBoss-user] [HTTPD, Servlets & JSP] - Re: JSF Challenge

2004-10-12 Thread treespace
No replies. Figures given that JSF is a noob on the technology scene. I can always trace the code in the reference implementation to see what's going on I suppose. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3851182#3851182 Reply to the post : http://ww

[JBoss-user] [HTTPD, Servlets & JSP] - How to require authentication for all web applications deplo

2004-10-12 Thread lshen
Hi: I want to provide a default authentications to all the web applications deployed under jboss tomcat. I can not find an easy solution. Right now, if I securied the \server\default\deploy\jbossweb-tomcat50.sar. Then it will prompts me login if I want to access http://localhost:8080/ Howev

[JBoss-user] [Security & JAAS/JBoss] - How to provide default authentication to all web application

2004-10-12 Thread lshen
Hi: I want to provide a default authentications to all the web applications deployed under jboss tomcat. I can not find an easy solution. Right now, if I securied the \server\default\deploy\jbossweb-tomcat50.sar. Then it will prompts me login if I want to access http://localhost:8080/ Howev

[JBoss-user] [Nukes User] - Re: how do links work under manage html?

2004-10-12 Thread cooper
if you link /a/b to /a/c, when you call for /a/b, you see the content of /a/c View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3851171#3851171 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3851171 ---

[JBoss-user] [Performance Tuning] - Re: JBOSS 3.2.6RC2 mySQL performance issues

2004-10-12 Thread tsnoke
This was very instructive, by looking at the traces we found a problem with our mySQL keep alive... instead of an "are you there" we were asking for a complete dump of the DB. so now we are trying to continue to squeeze every last bit of performance out of this solution, playing with the accept

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: Are JMS messages cached?

2004-10-12 Thread hitcher
The IONA support was engaged by the PROJECT team after I started the thread. I am responsible for the PRODUCT development and try to get answers from whereever I can. The guaranteed answers from official support teams are often enough "sorry, we don't know". I have more trust in the community th

[JBoss-user] [Nukes User] - Re: how do links work under manage html?

2004-10-12 Thread robmurtha
Under manage html choose link from the dropdown and then press the new page button. It asks for the following information File id: The file id represents the path under which the content is available, it must look like /dir1/dir2/file.html Link: The file id represents the path under which the

[JBoss-user] [Beginners Corner] - How stable ?

2004-10-12 Thread kosl
Hello, I'm planning to implement a quite big web based commercial application. It's complexity can be compared to this of ebay. In theory if it will be successful there could be a lot of users of it. Unfortunatelly me neither my team we don't have money for a commercial application server. Use

[JBoss-user] [Installation & Configuration] - Re: jboss 4

2004-10-12 Thread troublesome
i don't know is this is a problem with jboss and java 1.5. i assumed it was because i didn't touch jboss before running it and it gave me a lot of messages which the console ate up and didn't let me go back to. but i can tell u some errors it gave me | ava:118) | at org.apache.ca

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: Any news for JMS over JGroups ?

2004-10-12 Thread ovidiuf
The new JBossJMS implementation will replace JBossMQ and there are plans to integrate a JGroups-based transport as well. More details can be found at http://www.jboss.org/wiki/Wiki.jsp?page=JBossJMS, http://www.jboss.org/wiki/Wiki.jsp?page=JBossJMSDesign http://www.jboss.org/wiki/Wiki.jsp?page=

[JBoss-user] [Security & JAAS/JBoss] - Re: denying IP-Ranges

2004-10-12 Thread [EMAIL PROTECTED]
Not from the login module. You can do this with an existing tomcat valve like org.apache.catalina.valves.RequestFilterValve, org.apache.catalina.valves.RemoteAddrValve, or you own custom servlet filter. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3851159#3

[JBoss-user] [News & Announcements] - Re: 3.2.6RC2 Release Avaialble

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

[JBoss-user] [Persistence & CMP/JBoss] - Re: The devils advocate

2004-10-12 Thread calom
anonymous wrote : | 2) There should be a button where we can remove all the incompetent posts (mentioned | above) from the search index. Hear, hear. Will this question be a victim of that button? :-P No, I agree. There IS a lot of noise in this forum which is sadly drowning out a few impo

[JBoss-user] [Security & JAAS/JBoss] - Porting a WAR using JAAS to the JBoss 4 Tomcat

2004-10-12 Thread ralf.siedow
Hello guys, I've got a web application as a war which deploys fine on tc 5 using a custom jaas.config and a custom login module. When I deploy the same war the authentication doesn't work anymore as the LoginContext contains the JBoss provided login modules. I'd like to use my own. How can I sp

[JBoss-user] [HTTPD, Servlets & JSP] - Re: JSP compiles but doesn't run (NoClassDefFoundException)

2004-10-12 Thread [EMAIL PROTECTED]
Typically this is due to a class other than actually state which is referenced statically by the class given in the NoClassDefError. You can see more info about the class loading behavior by enabling trace level logging: http://www.jboss.org/wiki/Wiki.jsp?page=EnableClassloaderLogging View the

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: Are JMS messages cached?

2004-10-12 Thread hitcher
Adrian, thanks for your response. I am aware of the temp message in that version. But this is not original problem in my opinion. I configured a DurableSubscriber for the Topic to keep all the messages in the table. The system is definitely not using temporary topics. It seems that these messag

[JBoss-user] [Installation & Configuration] - Re: Out of Memory Error

2004-10-12 Thread trickard
We have plenty of free memory according to the UNIX monitor. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3851146#3851146 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3851146

[JBoss-user] [Installation & Configuration] - Re: Firewall - RmiPort - HTTP Tunneling

2004-10-12 Thread [EMAIL PROTECTED]
The RmiPort attribute is the correct one to fix the rmi service port used by the jndi naming service and this works fine for me to control this port. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3851143#3851143 Reply to the post : http://www.jboss.org/index

[JBoss-user] [News & Announcements] - Re: 3.2.6RC2 Release Avaialble

2004-10-12 Thread ericmolitor
We use and love JIRA (Shameless plug for the Aussies), however it would be nice to see JUnitReports exported from your build system(s) as well. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3851134#3851134 Reply to the post : http://www.jboss.org/index.html

[JBoss-user] [Persistence & CMP/JBoss] - Re: The devils advocate

2004-10-12 Thread [EMAIL PROTECTED]
I don't know about Scott, but I hardly ever answer questions in the forums anymore, although I have probably answered the most out of anybody in my time. That was certainly true when we had statistics about it. The only reason I check the forums, is because I am looking for that very infrequent po

[JBoss-user] [HTTPD, Servlets & JSP] - request.getRemoteAddr()

2004-10-12 Thread chrismalan
Dear All, How does one get the IP Address of whoever initiated the request? I tried: if (request.getHeader("HTTP_X_FORWARDED_FOR") == null) IPAddr = request.getRemoteAddr(); else IPAddr = request.getHeader("HTTP_X_FORWARDED_FOR"); This should check for proxies and return

[JBoss-user] [Installation & Configuration] - Re: Log4j problem on jboss3.2.3!!!!

2004-10-12 Thread [EMAIL PROTECTED]
There is some problem resolving the property references from the log4j.properties file in the run.jar. The boot.log is placed under the ${jboss.server.home.dir}/log/boot.log where jboss.server.home.dir is a system property initialized by the startup layer if it has not been set externally. |

[JBoss-user] [Installation & Configuration] - Re: Unable to run Jboss on linux

2004-10-12 Thread [EMAIL PROTECTED]
This is a very low level failure that indicates either the installation is totally screwed up or the mechanism by which your starting it is resulting in an invalid classpath. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3851139#3851139 Reply to the post :

[JBoss-user] [Persistence & CMP/JBoss] - Re: The devils advocate

2004-10-12 Thread calom
If you take a look at page 4 of this forum, not a single post there has been answered (dating as far back as Sept 30th). So I guess if t0 is more than 2 weeks then thats ok. Anyway this is an observation, not a flame. After all we do perform the task of beta testing JBoss (for free too). At th

[JBoss-user] [Installation & Configuration] - Re: Out of Memory Error

2004-10-12 Thread [EMAIL PROTECTED]
Unix platform report an out of memory error when running out of threads as well so that is what has to be happening here. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3851138#3851138 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&m

[JBoss-user] [Persistence & CMP/JBoss] - Re: Future of Hibernate / JDO??

2004-10-12 Thread [EMAIL PROTECTED]
Not currently, but its probably better to ask on the hibernate forums: http://forum.hibernate.org/ View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3851136#3851136 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3851136 -

[JBoss-user] [Installation & Configuration] - Re: Stand-alone JNDI config for JMS

2004-10-12 Thread [EMAIL PROTECTED]
There is no notion of a java:comp/env jndi naming environment for a pojo in the current jboss releases. Look at the ejb3 preview for an alternate. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3851133#3851133 Reply to the post : http://www.jboss.org/index.ht

[JBoss-user] [Management, JMX/JBoss] - Re: 'env-entry'-like items in JNDI?

2004-10-12 Thread [EMAIL PROTECTED]
No, there is no current mbean for binding strings into JNDI so you will have to write your own mbean to do this. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3851132#3851132 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply

[JBoss-user] [Management, JMX/JBoss] - Re: MBeanServer in client JAR

2004-10-12 Thread [EMAIL PROTECTED]
There are objects that can be pulled down via jmx calls that need the jboss jmx implementation classes. Not all of the org.jboss.mx classes in the jbossall-client.jar are actually needed so it can be trimmed down depending on your usage. View the original post : http://www.jboss.org/index.html?

[JBoss-user] [Persistence & CMP/JBoss] - Re: The devils advocate

2004-10-12 Thread [EMAIL PROTECTED]
The question answered depend strictly on time. If you expecting an answer at time t0 and this conicides with busy people, your going to be waiting longer. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3851128#3851128 Reply to the post : http://www.jboss.org/

[JBoss-user] [EJB/JBoss] - concurrency issue NoSuchEntityException

2004-10-12 Thread hmae
To all, I created a web application where I add a new data using CMT. The web page has a table where I can click on a link so I can edit the data. (I'm sure alot of people have done something similar). I have Servlet->Facade->CMP. My web page has a table with a link which contains the primary

[JBoss-user] [Installation & Configuration] - Re: JBoss 3.2.3 + Java 5

2004-10-12 Thread [EMAIL PROTECTED]
Both jboss-3.2.5 and jboss-4.0.0 work fine with java5. jboss-3.2.3 will not work due to conflicts with the java5 jmx version. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3851125#3851125 Reply to the post : http://www.jboss.org/index.html?module=bb&op=post

[JBoss-user] [Installation & Configuration] - Re: jboss 4

2004-10-12 Thread [EMAIL PROTECTED]
Accessing the jmx-conslole using the release version of java5 works fine for me with jboss-4.0.0 | [EMAIL PROTECTED] bin]$ run.sh | = | | JBoss Bootstrap Environment | | JBOSS_HOME: C:\cvs\Releases\jboss-4.

[JBoss-user] [Security & JAAS/JBoss] - denying IP-Ranges

2004-10-12 Thread bo_hari
Hello! I'm using JBoss 3.2.2 and a Database Login-Module for a WebApplication. Is it possible to deny connections for IP ranges additionally? Marc View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3851123#3851123 Reply to the post : http://www.jboss.org/index.

[JBoss-user] [Advanced Documentation] - Re: Roadmap for 4.0 Doco?

2004-10-12 Thread [EMAIL PROTECTED]
The doc team is scheduled to have something by next month. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3851122#3851122 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3851122 --

[JBoss-user] [Persistence & CMP/JBoss] - Re: The devils advocate

2004-10-12 Thread calom
Perhaps its our fault. Maybe we should start taking a closer look at Geronimo or JOnAS. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3851120#3851120 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3851120 ---

[JBoss-user] [JCA/JBoss] - Re: JBOSS 3.2.5: JMS fails to start during server restart

2004-10-12 Thread [EMAIL PROTECTED]
Not a JCA question. jdbc3 is experimental and should not be used in production without proper testing Read the JMS FAQ about HSQLDB View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3851119#3851119 Reply to the post : http://www.jboss.org/index.html?module=bb&op=

[JBoss-user] [JCA/JBoss] - Re: deploy 3rd party RAR for JBoss 3.2.x in JBoss4

2004-10-12 Thread [EMAIL PROTECTED]
Read the FAQ View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3851118#3851118 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3851118 --- This SF.net email is sponsored

[JBoss-user] [JCA/JBoss] - Re: Ingres 3.0 DataSource with JBoss 3.2.5 gives ArrayIndexO

2004-10-12 Thread [EMAIL PROTECTED]
Use the CMP forums. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3851117#3851117 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3851117 --- This SF.net email is spon

[JBoss-user] [Installation & Configuration] - Re: CAN'T JBOSS DEPLOY EXPLODED EAR?

2004-10-12 Thread [EMAIL PROTECTED]
Exploded ears work fine from within the deploy directory. Describe how you are deploying this ear outside of the default server structure. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3851116#3851116 Reply to the post : http://www.jboss.org/index.html?modul

[JBoss-user] [JCA/JBoss] - Re: Does JBOSS 4.0 support the

2004-10-12 Thread [EMAIL PROTECTED]
This question is in the JMS FAQ. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3851115#3851115 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3851115 --- This SF.net

[JBoss-user] [JCA/JBoss] - Re: How to configure the transaction timeout on an XAResourc

2004-10-12 Thread [EMAIL PROTECTED]
There is currently no way to do this. Perhaps you would care to provide a patch, it should be a property on the ManagedConnectionFactory. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3851114#3851114 Reply to the post : http://www.jboss.org/index.html?module=

[JBoss-user] [JCA/JBoss] - Re: Connections - close them yourself - but - I am trying to

2004-10-12 Thread [EMAIL PROTECTED]
beforeCompletion is not invoked if the transaction rollsback View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3851113#3851113 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3851113

[JBoss-user] [News & Announcements] - Re: 3.2.6RC2 Release Avaialble

2004-10-12 Thread [EMAIL PROTECTED]
There are a couple of cache test failures that need to be resolved. The sourceforge bug tracking system is not adequate for assigning bugs to releases so its not usable for tacking issues. We will be moving to jira to better manage the tasks associated with a release. View the original post :

[JBoss-user] [JCA/JBoss] - Re: dsdotxml in -ejb.jar

2004-10-12 Thread [EMAIL PROTECTED]
jar -tf myejb.jar if you put it in META-INF, it will be ignored View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3851112#3851112 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3851112

[JBoss-user] [JCA/JBoss] - Re: Trying to open java:/mssqlds from the Client

2004-10-12 Thread [EMAIL PROTECTED]
Moderated: FAQ View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3851109#3851109 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3851109 --- This SF.net email is sponsored

[JBoss-user] [JCA/JBoss] - Re: How to Declaratively set autoCommit to false

2004-10-12 Thread [EMAIL PROTECTED]
Moderated: HIJACK View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3851110#3851110 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3851110 --- This SF.net email is sponso

[JBoss-user] [JCA/JBoss] - Re: Oracle with Jboss 3.2.5

2004-10-12 Thread [EMAIL PROTECTED]
This was a bug that has been fixed. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3851108#3851108 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3851108 --- This SF.n

[JBoss-user] [Management, JMX/JBoss] - Re: sar archive deployment dependency

2004-10-12 Thread [EMAIL PROTECTED]
Either move the servlet-api.jar into the server lib directory or move your session listener into a war. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3851106#3851106 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=385110

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: graceful shut down of JMS

2004-10-12 Thread [EMAIL PROTECTED]
Connection.setExceptionListener, the MDB already has one. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3851105#3851105 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3851105 ---

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: COnfigure MDB- Durable subscription

2004-10-12 Thread [EMAIL PROTECTED]
you need an mdb-subscription-id View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3851104#3851104 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3851104 --- This SF.net

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: ClassCastException on SpyXAConnection.createSession

2004-10-12 Thread [EMAIL PROTECTED]
You do not use XAConnections directly and you certainly don't use them that way. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3851103#3851103 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3851103

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: Are JMS messages cached?

2004-10-12 Thread [EMAIL PROTECTED]
You'll need to upgrade. This problem was caused by an error in the SQL where the "T" messages were not deleted at restart on Oracle and other dbs. This SQL has been replaced with a DELETE_TEMPORARY_MESSAGES in the recent versions. View the original post : http://www.jboss.org/index.html?module=bb

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: XA Exception during high volume with JDBC2 persistnce on

2004-10-12 Thread [EMAIL PROTECTED]
This is just a misconfiguration of Oracle and is in the FAQ. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3851101#3851101 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3851101

[JBoss-user] [News & Announcements] - Re: 3.2.6RC2 Release Avaialble

2004-10-12 Thread ericmolitor
Since I've pestered about this too, In general I wish their was a better way to track the status of a release. JBoss, as an opensource project, has done a good job about this, however I when using tracker I wish their was a way to categorically look at the open issues that had been assigned to 3

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

2004-10-12 Thread [EMAIL PROTECTED]
The JBoss forums are not for support. That is what support contracts are for. The JBoss forums are for answering technical questions, not hand holding time wasters who don't want to do their own thinking/work. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3851

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: Configuring XA Compliant JMS Connection Factory

2004-10-12 Thread [EMAIL PROTECTED]
Use resource-ref and its jboss-web.xml You'll get more help if you ask your question (about war deployment) in the correct forum (httpd) View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3851097#3851097 Reply to the post : http://www.jboss.org/index.html?module=

[JBoss-user] [Messaging, JMS & JBossMQ] - Does anyone know of a file called jbossmq.xml and its format

2004-10-12 Thread VV
Im using jboss 3.2.5 and am unable to locate this file. I have to work with MDB's and in a tutorial its mentioned that this file is a prerequisite to deployment of MDBs. If anyone knows about its format or location pleas elet me know. Thanks View the original post : http://www.jboss.org/ind

[JBoss-user] [Messaging, JMS & JBossMQ] - JNDI API lookup failed

2004-10-12 Thread VV
JNDI API lookup failed: javax.naming.NameNotFoundException: jms not bound This jms is specified in my ejb-jar.xml as http://java.sun.com/dtd/ejb-jar_2_0.dtd'> Hello examples.MDB.MessageBean Container javax.jms.Queue

[JBoss-user] [Security & JAAS/JBoss] - Re: JMX-Console Security in Jboss 4.0

2004-10-12 Thread PSUGirlInPA
Here are the two files. Please let me know if you see something wrong. Just to note, if you got an error saying that you were missing the roles.properties file and user.properties file you are actually using the default "other" realm instead of the jmx-console realm. The other realm works just

[JBoss-user] [Security & JAAS/JBoss] - Re: JMX-Console Security in Jboss 4.0

2004-10-12 Thread b2bw35
I upgraded to 4.0.0 and the JMX console security works fine after uncommenting the jboss-web.xml and web.xml files. I would check them again to make sure the changes were saved or you didn't uncomment everything needed. View the original post : http://www.jboss.org/index.html?module=bb&op=view

[JBoss-user] [Performance Tuning] - Re: Start Up Performance

2004-10-12 Thread sathish_alwar
Dear Genman, Thanks for your reply. JProbe is used for profiling .Following classes takes more time. These readings are taken without any ear deployment.

  1   2   >