[JBoss-user] [JBoss Seam] - Re: Possible to list all sessions currently active and then

2006-05-19 Thread kcounsell
If this is just for management purposes or your own entertainment, you might 
try Lambda Probe: http://www.lambdaprobe.org/d/latest.shtml

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3944896#3944896

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3944896


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: jBPM and the back button

2006-03-30 Thread kcounsell
I'm all for removing ambiguity.  Backwardable seems clear enough.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3933688#3933688

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3933688


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: how to use a different persistence-unit for testing?

2006-03-30 Thread kcounsell
Always use bookingDatasource.  Just set up your production deployment 
environment so that it has a datasource with the same name that points to MySQL.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3933698#3933698

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3933698


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: jBPM and the back button

2006-03-28 Thread kcounsell
[EMAIL PROTECTED] wrote : 
  | When I finish checking this into CVS, all you'll need to do is:
  | 
  | page view-id=/foo.jsp backable=true
  |   |...
  |   | /page
Using backable might be a little confusing only because we have backing beans 
floating around in JSF world.  Would revisitable be more descriptive?

It'll be a useful addition either way -- thanks for implementing this.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3933094#3933094

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3933094


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: Injection in interceptors

2006-03-22 Thread kcounsell
Thanks for the clarification.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3931858#3931858

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3931858


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: SEAM configuration problem

2006-03-22 Thread kcounsell
How are you building the EAR/WAR?  The Class-Path entry might not be populated 
in the manifest for your web app.  Make sure that this line appears:
Class-Path: jboss-seam.jar

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3931863#3931863

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3931863


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Injection in interceptors

2006-03-21 Thread kcounsell
Is it possible to use bijection in interceptors?

I would like to use the @In annotation to get a reference to the built-in actor 
component in an interceptor derived from the LoggedInInterceptor used in the 
examples.  I have tried a few combinations of interception annotations in the 
interceptor class without any luck.

This does not inject, but Actor.instance() works when the interceptor is called:
@Around({BijectionInterceptor.class,
  | ValidationInterceptor.class, 
  | ConversationInterceptor.class,
  | BusinessProcessInterceptor.class})
  | @Within(RemoveInterceptor.class)
Removing the @Around and @Within annotations produces the same behavior.

This prevents the interceptor from being called:
@Around({ValidationInterceptor.class, 
  | ConversationInterceptor.class,
  | BusinessProcessInterceptor.class})
  | @Within({BijectionInterceptor.class,
  | RemoveInterceptor.class})

I am trying to inject actor with this code in all cases:
@In(create=true)
  | Actor actor = null;

Actor.instance() does provide the correct reference so this is not a 
show-stopper for me, but I would be grateful for any tips on where I am going 
wrong.  Is bijection even a reasonable thing to attempt in an interceptor?

Many thanks,
Keith

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3931703#3931703

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3931703


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - ExceptionListener in MDB application

2005-10-27 Thread kcounsell
I have an MDB connecting to a remote Queue.  It would be useful to have 
something functionally equivalent to an ExceptionListener for the remote 
connection so that I could email a trouble report (or whatever).

Is there a J2EE-compliant or JBoss-specific way to do this?

A ServletContextListener might be able to get and monitor its own Connection 
using an actual ExceptionListener, but that is forbidden in the J2EE 1.4 spec 
and would be non-portable even if it did work.

I think that for JBoss I might be able to add an Interceptor to the JMS stack.  
That's JBoss-only, though, which is less than ideal.  Also, I have very little 
clue on how to do that :)

Any ideas or suggestions would be deeply appreciated.   Thanks!

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3903875#3903875

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3903875


---
This SF.Net email is sponsored by the JBoss Inc.
Get Certified Today * Register for a JBoss Training Course
Free Certification Exam for All Training Attendees Through End of 2005
Visit http://www.jboss.com/services/certification for more information
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - Re: ExceptionListener in MDB application

2005-10-27 Thread kcounsell
Adrian,

Thanks for the pointer.  The thing to do seems to be following along with the 
Wiki at:

http://www.jboss.org/wiki/Wiki.jsp?page=SubscriptionList
http://wiki.jboss.org/wiki/Wiki.jsp?page=ListenerServiceMBeanSupport

to create a MBean to handle my needs in the handleNotification2 method, and 
then to subscribe to notifications emitted by the JMSContainerInvoker in my 
deployment descriptor.

Is that at all reasonable?

Thanks again,
Keith

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3903902#3903902

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3903902


---
This SF.Net email is sponsored by the JBoss Inc.
Get Certified Today * Register for a JBoss Training Course
Free Certification Exam for All Training Attendees Through End of 2005
Visit http://www.jboss.com/services/certification for more information
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - Re: Checking whether the queue down

2005-10-27 Thread kcounsell
I asked a similar question over at 
http://www.jboss.com/index.html?module=bbop=viewtopict=71622.  So far it 
looks like you can do this specifically in JBoss but not generally in other app 
servers.  On the other hand, it doesn't look too difficult.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3903903#3903903

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3903903


---
This SF.Net email is sponsored by the JBoss Inc.
Get Certified Today * Register for a JBoss Training Course
Free Certification Exam for All Training Attendees Through End of 2005
Visit http://www.jboss.com/services/certification for more information
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Strange MDB behavior inside an EAR

2005-10-18 Thread kcounsell
I have an EAR that consists of a few utility JARs and an MDB.  The EAR deploys 
without any error messages or warnings, but it is never invoked when messages 
hit the Queue.  As far as I can tell no connection is ever made to the Queue in 
this configuration.

The MDB happily receives messages from the Queue when it is deployed without 
the EAR wrapper and the utility JARs are in $JBOSS_HOME/lib/endorsed.  
Unfortunately, this is not a practical production strategy.

For what it's worth, the Queue lives on another JBoss installation.

Is there something obviously wrong or perhaps missing with what I'm doing?  The 
only JBoss-specific deployment descriptor that I have is a jboss-xml in the 
MDB's META-INF directory.  I'd appreciate any hints or pointers.

Many thanks,
Keith

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3901753#3901753

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3901753


---
This SF.Net email is sponsored by:
Power Architecture Resource Center: Free content, downloads, discussions,
and more. http://solutions.newsforge.com/ibmarch.tmpl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Re: Strange MDB behavior inside an EAR

2005-10-18 Thread kcounsell
jaikiran wrote : Do you mean, the MDB is listening to a remote-queue? If so 
how have your configured your MDB? Please post your jboss.xml contents

Yes, sorry.  My jboss.xml is:

?xml version=1.0?
  | jboss
  | enterprise-beans
  | message-driven
  | ejb-nameFormConsumer/ejb-name
  | 
destination-jndi-namequeue/ProvidentDemoQueue/destination-jndi-name
  | resource-ref
  | res-ref-namejms/ConnectionFactory/res-ref-name
  | jndi-nameConnectionFactory/jndi-name
  | /resource-ref
  | !-- Remote connection to the queue. --
  | invoker-bindings
  | invoker  
  | 
invoker-proxy-binding-namemy-outside-mdb-invoker/invoker-proxy-binding-name
  | /invoker
  | /invoker-bindings
  | /message-driven
  | /enterprise-beans
  | /jboss

I have the corresponding invoker-proxy-binding element in 
server/default/conf/standardjboss.xml and provided an mbean for the queue in 
server/default/deploy/jms/remote-jms-ds.xml.  Would it be useful to post those 
as well?

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3901760#3901760

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3901760


---
This SF.Net email is sponsored by:
Power Architecture Resource Center: Free content, downloads, discussions,
and more. http://solutions.newsforge.com/ibmarch.tmpl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Re: Strange MDB behavior inside an EAR

2005-10-18 Thread kcounsell
Thanks also for such a quick reply, jaikiran!

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3901761#3901761

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3901761


---
This SF.Net email is sponsored by:
Power Architecture Resource Center: Free content, downloads, discussions,
and more. http://solutions.newsforge.com/ibmarch.tmpl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Re: Strange MDB behavior inside an EAR

2005-10-18 Thread kcounsell
My remote-jms-ds.xml in the deploy/jms directory is very similar to what you 
suggest adding to jms-ds.xml, though I used the improved ProviderAdapterClass 
mentioned on the Wiki page.

?xml version=1.0 encoding=UTF-8?
  | !-- Provides a link to the remote JNDI service provider. --
  | server
  | mbean code=org.jboss.jms.jndi.JMSProviderLoader
  | 
name=jboss.mq:service=JMSProviderLoader,name=RemoteJMSProvider,server=localhost
  | !-- ProviderName specifies the default JNDI lookup name. --
  | attribute name=ProviderNameMyOutsideJMSProvider/attribute
  | attribute name=ProviderAdapterClass
  | org.jboss.jms.jndi.JNDIProviderAdapter
  | /attribute
  | attribute name=FactoryRefjava:/XAConnectionFactory/attribute
  | attribute 
name=QueueFactoryRefjava:/XAConnectionFactory/attribute
  | attribute 
name=TopicFactoryRefjava:/XAConnectionFactory/attribute
  | attribute name=Properties
  | 
java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory
  | java.naming.factory.url.pkgs=org.jnp.interfaces
  | java.naming.provider.url=localhost:1099
  | /attribute
  | /mbean
  | /server

The snippet that I added to standardjboss.xml is:

invoker-proxy-binding
  | namemy-outside-mdb-invoker/name
  | invoker-mbeandoes-not-matter/invoker-mbean
  | 
proxy-factoryorg.jboss.ejb.plugins.jms.JMSContainerInvoker/proxy-factory
  | proxy-factory-config
  | 
JMSProviderAdapterJNDIMyOutsideJMSProvider/JMSProviderAdapterJNDI
  | 
ServerSessionPoolFactoryJNDIStdJMSPool/ServerSessionPoolFactoryJNDI
  | MinimumSize1/MinimumSize
  | KeepAliveMillis3/KeepAliveMillis
  | MaximumSize15/MaximumSize
  | MaxMessages1/MaxMessages
  | MDBConfig
  | ReconnectIntervalSec10/ReconnectIntervalSec
  | DLQConfig
  | DestinationQueuequeue/DLQ/DestinationQueue
  | MaxTimesRedelivered10/MaxTimesRedelivered
  | TimeToLive0/TimeToLive
  | /DLQConfig
  | /MDBConfig
  | /proxy-factory-config
  | /invoker-proxy-binding

The Wiki page is useful, and I actually followed it to get up and running 
initially.  The strange part (to me, at least) is that this works as long as 
the MDB is deployed by itself, but not when it is in an EAR.

Thanks again,
Keith

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3901785#3901785

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3901785


---
This SF.Net email is sponsored by:
Power Architecture Resource Center: Free content, downloads, discussions,
and more. http://solutions.newsforge.com/ibmarch.tmpl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Re: Strange MDB behavior inside an EAR

2005-10-18 Thread kcounsell
I evidently had something wrong in the EAR for half of the day.

When I deployed a fully exploded version on 4.0.2 it worked as expected, and 
when I deployed an archived version on 4.0.3 it worked, too.  For the sake of 
completeness I deployed the archive on 4.0.2 again, and it now works, too.

Now if only I can figure out what I did wrong the first time through...

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3901820#3901820

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3901820


---
This SF.Net email is sponsored by:
Power Architecture Resource Center: Free content, downloads, discussions,
and more. http://solutions.newsforge.com/ibmarch.tmpl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user