[jboss-user] [Tomcat, HTTPD, Servlets JSP] - Re: Tomcat 6 comet support in 4.2.2

2008-06-17 Thread jonasb
Ok, thanks for your time. / Jonas View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4158620#4158620 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4158620 ___ jboss-user mailing list

[jboss-user] [Tomcat, HTTPD, Servlets JSP] - Re: Tomcat 6 comet support in 4.2.2

2008-06-16 Thread jonasb
Thanks for answering. You're referring to org.jboss.web.comet.CometProcessor, right? But that interface is not available in 4.2.2, I can only find org.apache.catalina.CometProcessor in the jbossweb jar. Also, the rename was made in january this year according to some svn commit log I found, so

[jboss-user] [Tomcat, HTTPD, Servlets JSP] - Re: Tomcat 6 comet support in 4.2.2

2008-06-14 Thread jonasb
It works with jboss-4.2.0.CR1, but not with 4.2.1 GA... / Jonas View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4158132#4158132 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4158132

[jboss-user] [Tomcat, HTTPD, Servlets JSP] - Re: Tomcat 6 comet support in 4.2.2

2008-06-13 Thread jonasb
Hi, I'm experiencing the same, did you ever get this working? / Jonas View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4158107#4158107 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4158107

[jboss-user] [Messaging, JMS JBossMQ] - stop/startDelivery not present in JCA

2008-04-09 Thread jonasb
I'm using MDB's on JBoss 4.2. From what I understand the start/stopDelivery management methods that where available in MDB MBeans in previous JBoss versions is no longer available now that JBoss is using JCA to connect to JMS servers

[jboss-user] [EJB 3.0] - start/stopDelivery not present in JCA mbeans

2008-04-09 Thread jonasb
I'm using MDB's on JBoss 4.2. From what I understand the start/stopDelivery management methods that where available in MDB MBeans in previous JBoss versions is no longer available now that JBoss is using JCA to connect to JMS servers

[jboss-user] [Messaging, JMS JBossMQ] - Re: stop/startDelivery not present in JCA

2008-04-09 Thread jonasb
Thanks. I take it that it is this post you are referring to: http://www.jboss.com/index.html?module=bbop=viewtopict=125845 . I'll try and see what happens. / Jonas View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4142939#4142939 Reply to the post :

[jboss-user] [EJB 3.0] - Re: MDB destination issues

2007-03-18 Thread jonasb
Thanks for the quick response! So, (I'm quite new to JBoss) is there a way to dynamically and programmatically create such deployments? In that case I could read my config with queue names and such when JBoss starts up and create the deployments accordingly, and voilá - home safe. / Jonas

[jboss-user] [Javassist user questions] - What is the best way to a add parameters to a method?

2006-11-18 Thread jonasb
Hello. I'm using javassist 3.1, and I want to add parameters to an existing method. I haven't found anything in the API that supports that, so I've tried to create a new method with the new parameters, and copy the method body over from the old method to the new (by copying over the

[jboss-user] [Javassist user questions] - Re: What is the best way to a add parameters to a method?

2006-11-18 Thread jonasb
Maybe it's a bug in how ExprEditor.edit(NewExpr e) handles $args, because I got it working by declaring new local variables at the top of the new method and assigning them to the new parameters (using $args), and then I used the those variables in the ExprEditor.edit code instead of $args. /

[jboss-user] [EJB 3.0] - Strategy for handling rolled back exceptions

2006-11-13 Thread jonasb
Hello. I posted a question in the transaction forum, see http://www.jboss.com/index.html?module=bbop=viewtopict=94678 , where I asked whether transactions should be rolled back on java.lang.Error or not. I understand that they should, but my real question is rather; should the normal strategy