[JBoss-user] [JBoss Seam] - Re: .seam welcome-file

2006-03-20 Thread pgmjsd
That's a lot of work to avoid writing a JSP with a redirect in it.  ;)

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3931315#3931315

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3931315


---
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=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: Why do we need Interfaces

2006-03-20 Thread pgmjsd
If your 'stateful actions' are EJBs, then that's why.   


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3931314#3931314

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3931314


---
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=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Management, JMX/JBoss] - Re: AttributeNotFoundException in UIL2 when using ServiceBin

2004-07-01 Thread pgmjsd
I removed the entry for UIL in jboss-bindings.xml, and this seems to have resolved the 
problem.  Got the idea from the sample-bindings.xml file that comes with the JBoss 
examples.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3840700#3840700

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3840700


---
This SF.Net email sponsored by Black Hat Briefings & Training.
Attend Black Hat Briefings & Training, Las Vegas July 24-29 - 
digital self defense, top technical experts, no vendor pitches, 
unmatched networking opportunities. Visit www.blackhat.com
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Management, JMX/JBoss] - AttributeNotFoundException in UIL2 when using ServiceBinding

2004-07-01 Thread pgmjsd
I'm using JBoss 3.2.3 with the example from chapter 10 (in the JBoss admin devel 
documentation) as the basis for running multiple instances on the same machine.  After 
configuring conf/jboss-service.xml and jboss-bindings.xml appropriately, JBoss always 
seems to throw an AttributeNotFoundException when deploying the JMS 'UIL2' service.

Question 1:
I'm storing the jboss-bindings.xml file in the servername/conf directory.  Would that 
cause a problem?

Question 2:
It seems like having service elements in jboss-bindings.xml for services that are 
disabled or not deployed results in some odd behavior.  Is this expected?

Question 3: (the real one)
What is wrong with my configuration and bindings?  I can't seem to find any 
significant differences from the example in chapter 10.

This is the relevant part of conf/jboss-service.xml:

  |   
  | default
  | ${jboss.server.home.url}/conf/jboss-bindings.xml
  | 
  |   org.jboss.services.binding.XMLServicesStoreFactory
  | 
  |   
  | 

This is the UIL2 service binding in jboss-bindings.xml:

  |   
  |  
  |  
  |   
  | 

Here's the exception:

  | 2004-07-01 19:35:47,796 [main] INFO org.jboss.deployment.MainDeployer - Starting 
deployment of package: 
file:/C:/java/platform/jboss-3.2.3/server/dev4/deploy/jms/uil2-service.xml
  | 2004-07-01 19:35:47,890 [main] WARN org.jboss.system.ServiceConfigurator - Failed 
to apply service binding override
  | javax.management.AttributeNotFoundException: Writable attribute 'ServerBindPort' 
not found
  | at 
org.jboss.mx.capability.ReflectedMBeanDispatcher.setAttribute(ReflectedMBeanDispatcher.java:190)
  | at 
org.jboss.mx.server.MBeanServerImpl.setAttribute(MBeanServerImpl.java:500)
  | at 
org.jboss.services.binding.AttributeMappingDelegate.applyConfig(AttributeMappingDelegate.java:95)
  | at 
org.jboss.services.binding.ServiceBindingManager.applyServiceConfig(ServiceBindingManager.java:174)
  | at sun.reflect.GeneratedMethodAccessor2.invoke(Unknown Source)
  | at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
  | at java.lang.reflect.Method.invoke(Method.java:324)
  | at 
org.jboss.mx.capability.ReflectedMBeanDispatcher.invoke(ReflectedMBeanDispatcher.java:284)
  | at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:546)
  | at 
org.jboss.system.ServiceConfigurator.configure(ServiceConfigurator.java:438)
  | at 
org.jboss.system.ServiceConfigurator.internalInstall(ServiceConfigurator.java:172)
  | at 
org.jboss.system.ServiceConfigurator.install(ServiceConfigurator.java:114)
  | at org.jboss.system.ServiceController.install(ServiceController.java:225)
  | at sun.reflect.GeneratedMethodAccessor31.invoke(Unknown Source)
  | at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
  | at java.lang.reflect.Method.invoke(Method.java:324)
  | at 
org.jboss.mx.capability.ReflectedMBeanDispatcher.invoke(ReflectedMBeanDispatcher.java:284)
  | at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:546)
  | at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:177)
  | at $Proxy4.install(Unknown Source)
  | at org.jboss.deployment.SARDeployer.create(SARDeployer.java:183)
  | at org.jboss.deployment.MainDeployer.create(MainDeployer.java:786)
  | at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:641)
  | at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:605)
  | at sun.reflect.GeneratedMethodAccessor25.invoke(Unknown Source)
  | at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
  | at java.lang.reflect.Method.invoke(Method.java:324)
  | at 
org.jboss.mx.capability.ReflectedMBeanDispatcher.invoke(ReflectedMBeanDispatcher.java:284)
  | at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:546)
  | at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:177)
  | at $Proxy6.deploy(Unknown Source)
  | at 
org.jboss.deployment.scanner.URLDeploymentScanner.deploy(URLDeploymentScanner.java:302)
  | at 
org.jboss.deployment.scanner.URLDeploymentScanner.scan(URLDeploymentScanner.java:476)
  | at 
org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.doScan(AbstractDeploymentScanner.java:201)
  | at 
org.jboss.deployment.scanner.AbstractDeploymentScanner.startService(AbstractDeploymentScanner.java:274)
  | at org.jboss.system.ServiceMBeanSupport.start(ServiceMBeanSupport.java:192)
  | at sun.reflect.GeneratedMethodAccessor7.invoke(Unknown Source)
  | at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
  | at java.lang.reflect.Method.invoke(Method.java

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: Infinite loop inside SpyConnectionFactoryObjectFactory w

2004-03-20 Thread pgmjsd
Please ignore this post... the problem was entierly in my code.

Sorry!

http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3826706#3826706";>View 
the original post

http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3826706>Reply 
to the post


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS & JBossMQ] - Infinite loop inside SpyConnectionFactoryObjectFactory when

2004-03-20 Thread pgmjsd
A very simple JMS example I have made is going into infinite recursion when trying to 
look up ConnectionFactory in the InitialContext.   Has anyone heard of this?

The code is something like this:


// ... get initial context ...
QueueConnectionFactory factory = initialContext.lookup("ConnectionFactory");
// ... do the usual stuff with JMS ...


My classpath contains: jbossall-client.jar, log4j.jar, and jndi.properties along with 
my test classes.

The log messages look like this:

2004-03-20 21:45:35,015 [main] DEBUG 
org.jboss.mq.referenceable.SpyConnectionFactoryObjectFactory -
 Extracting SpyConnectionFactory from reference
2004-03-20 21:45:35,046 [main] DEBUG 
org.jboss.mq.referenceable.SpyConnectionFactoryObjectFactory - 
The GenericConnectionFactory is: GenericConnectionFactory:
[EMAIL PROTECTED],connectionProperties={OIL_TCPNODELAY_KEY=yes, PingPeriod=6, 
OIL_PORT_KEY=8090, ClientILService=org.jboss.mq.il.oil.OILClientILService, 
OIL_ADDRESS_KEY=192.168.0.5}]
2004-03-20 21:45:35,062 [main] DEBUG 
org.jboss.mq.referenceable.SpyConnectionFactoryObjectFactory - 
Extracting SpyConnectionFactory from reference
2004-03-20 21:45:35,062 [main] DEBUG 
org.jboss.mq.referenceable.SpyConnectionFactoryObjectFactory - 
The GenericConnectionFactory is: GenericConnectionFactory:
[EMAIL PROTECTED],connectionProperties={OIL_TCPNODELAY_KEY=yes, PingPeriod=6, 
OIL_PORT_KEY=8090, ClientILService=org.jboss.mq.il.oil.OILClientILService, 
OIL_ADDRESS_KEY=192.168.0.5}]


These two messages repeat infinitely.

http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3826705#3826705";>View 
the original post

http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3826705>Reply 
to the post


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user