[JBoss-user] [JBossCache] - Re: remove leaves the caches consistent in clustered environ

2005-05-12 Thread twundke
Actually, I have a possible bug to report. I thought I'd check here first. The 
bug occurs when using TreeCacheAOP.

I put an object into the cache, which is then replicated to other nodes. This 
all works fine. One node then calls removeObject(), which removes the FQN and 
cache interceptor on the local cache instance. The remove operations are 
replicated on the other nodes, but the cache interceptors are not removed from 
their objects. Therefore, if another node uses the object, the cache simply 
assumes that the object was evicted and re-creates it, which re-replicates it!

I'm assuming that the fix just involves TreeCacheAOP overriding _remove() and 
doing something appropriate.

Should I raise a JIRA issue for this, or have I just missed something obvious?

Tim.


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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Security & JAAS/JBoss] - Re: jboss4.0.2 web-service auth and non-java clients

2005-05-12 Thread singular_droid
Everything is ok. I have found an answer in the source of 
org.jboss.webservice.handler.ClientLoginHandler. 

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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Re: 4.0.2 and Spring and hot deployment of SLSB

2005-05-12 Thread cg24
They are in a jar file in the application's ear file. ehcache is also in a jar 
in the same ear.

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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Re: 4.0.2 and Spring and hot deployment of SLSB

2005-05-12 Thread worldheart
where have you placed spring-related jars?

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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - problem with 4.0.2 and standalone tomcat

2005-05-12 Thread fmorton
Previously happily running standalone tomcat 5.0.18 with jboss 3.2.3.

Upgraded jboss to 4.0.2. That transition was smooth and easy (hats off to jboss 
developers).

But, replaced the jbossall-client.jar in the standalone tomcat common/lib 
directory with the new version. Would not start up, complaining about a 
dependency on dom4j (org.dom4j.Element).

Added that (which shouldn't be needed, right?) and got these complaints:

SEVERE: Error registering Catalina:serviceName=Catalina,type=Service
RuntimeOperationsException: null Cause: java.lang.IllegalArgumentException: 
Invalid role, for operation 'setContainer' expected 'setter' but got: operation
at 
javax.management.modelmbean.ModelMBeanOperationInfo.isOperationDescriptorValid(ModelMBeanOperationInfo.java:217)
at 
javax.management.modelmbean.ModelMBeanOperationInfo.setDescriptor(ModelMBeanOperationInfo.java:198)
at 
org.apache.commons.modeler.OperationInfo.createOperationInfo(OperationInfo.java:267)
at 
org.apache.commons.modeler.ManagedBean.createMBeanInfo(ManagedBean.java:480)
at 
org.apache.commons.modeler.ManagedBean.createMBean(ManagedBean.java:424)
at 
org.apache.commons.modeler.Registry.registerComponent(Registry.java:862)
at 
org.apache.catalina.core.StandardService.initialize(StandardService.java:615)
at 
org.apache.catalina.core.StandardServer.initialize(StandardServer.java:2415)
at org.apache.catalina.startup.Catalina.load(Catalina.java:549)
at org.apache.catalina.startup.Catalina.load(Catalina.java:570)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:324)
at org.apache.catalina.startup.Bootstrap.load(Bootstrap.java:260)
at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:397)
Caused by: java.lang.IllegalArgumentException: Invalid role, for operation 
'setContainer' expected 'setter' but got: operation
... 16 more
May 12, 2005 9:26:13 PM org.apache.catalina.core.StandardService initialize
SEVERE: Error registering 

Started down the route of getting individual jar files, but ended up going in 
circles.

Anyone know what jar files are needed to run tomcat standalone with jboss 
4.0.2? Anyone done this with the new version? Appears to be a problem.

Glad to try any suggestions.

Running under MacOS X panther with java 1.4.2_05.


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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - J2EE Bookstore Tutorial Deployment Problem

2005-05-12 Thread lnorth
I am using JBoss 1.0.4sp1 to learn J2EE by doing the Sun's J2EE tutorial 
(http://java.sun.com/j2ee/1.4/docs/tutorial/doc/index.html).  All was going 
well until the bookstore1 and bookstore2 tutorials in chapter 12.  Each works 
if its WAR is deployed without the other's.  If both WARs are deployed, only 
the first one deployed works.  What I see happening is that, when the second 
WAR is deployed, the first servlet's ContextListerer is invoked, not the 
second's, which causes various problems because the servlet is not properly 
initialized.  The deployment order does not matter, whichever WAR is deployed 
second does not work.

Where should I look to fix this problem?

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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


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

2005-05-12 Thread Frank Morton
We ended up having to add the following to the startup on the server  
side as part of the JAVA_OPTS:

-Djava.rmi.server.useLocalHostname=true  
-Djava.rmi.server.hostname=appserver.domain.com

where "appserver.domain.com" is the hostname of the jboss server.
Then, on the client side added the following to the JAVA_OPTS for  
tomcat:

-Djava.rmi.server.hostname=appserver.domain.com
We ended up then defining appserver.domain.com in the hosts table on  
the client system to avoid a dns lookup.

An excellent way to check the configuration from the client side is to  
use telnet like:

telnet appserver.domain.com 1099
It should come back with something looking like:
Trying [ip address of appserver.domain.com]...
Connected to appserver.domain.com.
Escape character is '^]'.
??srjava.rmi.MarshalledObject|???c?>IhashlocBytest[BobjBytesq~xp)?&? 
ur[B??T?xp.??thttp://appserver.domain.com:8083/q~q~uq~Ç?sr  
org.jnp.server.NamingServer_Stubxrjava.rmi.server.RemoteStub???É? 
exrjava.rmi.server.RemoteObject?a??
 
a3xpw;
 
   
UnicastRef2appserver.domain.comJ???ËZ?xConnection closed by foreign  
host.

You should see buried in the response the hostname you expect to see.  
If it is there, cool. If an ip address or some other hostname, you have  
more to do.

Also, don't  forget to open all the required ports between these  
servers on the firewall.

Frank
On May 3, 2005, at 9:57 AM, ice wrote:
"darranl" wrote : Anyone asking how to get JBoss to use a different  
Tomcat has got their tiers back to front.
  |
  | The web tier should make use of the EJB tier, however the EJB tier  
should have no knowledge of the web tier.
  |
  | You should be asking how can I get a standalone Tomcat to make use  
of JBoss.
  |
  | Obtaining the Context should be the same as obtaining the context  
for any stand alone application. i.e.
  |
  | Context ctx = new InitialContext() and make sure that you have a  
jndi.properties on the classpath of the web app, alternatively pass in  
the connection properties to the contructor.
  |
  | As described earlier in this post you will need to copy soem JBoss  
jars to the Tomcat installation.

The problem here, is that we want to connect a standAlone TOMCAT to  
our  JBOSS (standing on a distant computer)  and that without changing  
the application's code. just working on the configuration files of  
JBOSS...

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

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

---
This SF.Net email is sponsored by: NEC IT Guy Games.
Get your fingers limbered up and give it your best shot. 4 great  
events, 4
opportunities to win big! Highest score wins.NEC IT Guy Games. Play to
win an NEC 61 plasma display. Visit http://www.necitguy.com/?r=20
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_ids93&alloc_id281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - 4.0.2 directory structure recommendation

2005-05-12 Thread jeichels
I just started learning JBoss (with 4.0.2) this last day or two and I am 
muddled in all the documents.  My biggest problem is understanding how a 
complex deployment should look.

I have a highly trafficed system currently in production using Tomcat 5.5.9, 
Struts, Velocity, OJB, MySql and some other items.  I am looking to convert to 
using JBoss 4.0.2's Tomcat, Hibernate, JBoss JMS, JBoss Cache, and JGroups.  I 
am hoping to do this for easy clustered growth over time.

I am lost in trying to understand how I need to reorganize my code tree 
structure to make all this work.   I am not currently using EJB Mbean aspects 
and am not going to use them right away.

If I can get help with one thing it would be to understand how I might lay out 
this messy directory structure so it can all be compiled into the correct 
*.ear, *.har, *.war files.  In what I have now for Tomcat 5.5.9 I just deploy 
in straight bursted form with my many OJB configuration files all under 
WEB-INF/classes directory.

I think understanding this will go a long way in helping me understand how to 
get from here to there.  In the meantime i am continuing to read the 
documentation.  If you have an example you can part with please send it to me 
or pass me a link to one.


Thanks so much.  I really think JBoss is on the right track.



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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - 4.0.2 and Spring and hot deployment of SLSB

2005-05-12 Thread cg24
We've just updgraded from jboss 4.0.0 to 4.0.2.

Previously in 4.0.0 hot deployment was working fine, but now it fails. When hot 
deploying the bean, the deployment seems fine. But when attempting to create 
it, everything falls over. Here is the relevant stack trace:

10:21:41,256 INFO  [SessionFactoryImpl] building session factory
  | 10:21:41,271 WARN  [Configurator] No configuration found. Configuring 
ehcache from ehcache-failsafe.xml found in the classpath: null
  | 10:21:41,271 INFO  [DefaultListableBeanFactory] Destroying singletons in 
factory {org.springframework.beans.factory.support.DefaultListableBeanFactory 
defining beans [...]; root of BeanFactory hierarchy}
  | 10:21:41,271 INFO  [DefaultListableBeanFactory] Destroying singletons in 
factory {org.springframework.beans.factory.support.DefaultListableBeanFactory 
defining beans [...]; root of BeanFactory hierarchy}
  | 10:21:41,287 ERROR [LogInterceptor] EJBException in method: public abstract 
com.some.Bean com.some.BeanHome.create() throws 
javax.ejb.CreateException,java.rmi.RemoteException:
  | javax.ejb.EJBException: Could not instantiate bean
  | at 
org.jboss.ejb.plugins.AbstractInstancePool.get(AbstractInstancePool.java:180)
  | at 
org.jboss.ejb.plugins.StatelessSessionInstanceInterceptor.invokeHome(StatelessSessionInstanceInterceptor.java:78)
  | at 
org.jboss.ejb.plugins.AbstractInterceptor.invokeHome(AbstractInterceptor.java:90)
  | at 
org.jboss.ejb.plugins.CallValidationInterceptor.invokeHome(CallValidationInterceptor.java:41)
  | at 
org.jboss.ejb.plugins.AbstractTxInterceptor.invokeNext(AbstractTxInterceptor.java:109)
  | at 
org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.java:335)
  | at 
org.jboss.ejb.plugins.TxInterceptorCMT.invokeHome(TxInterceptorCMT.java:146)
  | at 
org.jboss.ejb.plugins.SecurityInterceptor.invokeHome(SecurityInterceptor.java:116)
  | at 
org.jboss.ejb.plugins.LogInterceptor.invokeHome(LogInterceptor.java:121)
  | at 
org.jboss.ejb.plugins.ProxyFactoryFinderInterceptor.invokeHome(ProxyFactoryFinderInterceptor.java:93)
  | at 
org.jboss.ejb.SessionContainer.internalInvokeHome(SessionContainer.java:613)
  | at org.jboss.ejb.Container.invoke(Container.java:894)
  | at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  | at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
  | at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
  | at java.lang.reflect.Method.invoke(Method.java:324)
  | at 
org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:141)
  | at org.jboss.mx.server.Invocation.dispatch(Invocation.java:80)
  | at org.jboss.mx.server.Invocation.invoke(Invocation.java:72)
  | at 
org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:249)
  | at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:644)
  | at 
org.jboss.invocation.jrmp.server.JRMPInvoker$MBeanServerAction.invoke(JRMPInvoker.java:805)
  | at 
org.jboss.invocation.jrmp.server.JRMPInvoker.invoke(JRMPInvoker.java:406)
  | at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  | at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
  | at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
  | at java.lang.reflect.Method.invoke(Method.java:324)
  | at sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:261)
  | at sun.rmi.transport.Transport$1.run(Transport.java:148)
  | at java.security.AccessController.doPrivileged(Native Method)
  | at sun.rmi.transport.Transport.serviceCall(Transport.java:144)
  | at 
sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:460)
  | at 
sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:701)
  | at java.lang.Thread.run(Thread.java:534)
The interesting part is that it appears ehcache can't find its failsafe .xml. 
However, it is in the ehcache jar, so I can't figure out why it won't pick it 
up. When doing a fresh start of jboss, this file is picked up fine.

After ehcache fails all the spring beans are destroyed and I'm guessing this is 
why the create of the bean fails.

We are using Spring's SimpleRemoteStatelessSessionProxyFactoryBean to create 
the bean.

Any help much appreciated.

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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-us

[JBoss-user] [Beginners Corner] - WebCalendar version -1.orc3

2005-05-12 Thread kouriemn
What PHP and MySQL versions do I need to use with WebCalendar version -1.orc3 

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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Why is there a @5345345 on the end of my entity bean jndi na

2005-05-12 Thread gmatthews
Hi Guys,

I just tried upgrading from 4.0.1 to 4.0.2 and now my local entity beans have a 
@345354 or similar memory address attached to the end of their name.

Instead of local/myapp/mybean I see local/myapp/[EMAIL PROTECTED] in the 
jmx-console.

Why is the memory address being tacked on the end?

How do I get rid of it?

I tried putting a jndiName element in jboss.xml but it didn't change anything.

Using java1.5.03, JBoss 4.0.2 on WinXP.

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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [HTTPD, Servlets & JSP] - Servlet Database Access

2005-05-12 Thread Bertsura
Hi! I'm having trouble accessing a database from a servlet. I checked the log 
and I got this error:

2005-05-13 10:37:34,187 INFO  [STDOUT] java.lang.NullPointerException
2005-05-13 10:37:34,187 INFO  [STDOUT]  at java.lang.Class.forName0(Native 
Method)
2005-05-13 10:37:34,187 INFO  [STDOUT]  at 
java.lang.Class.forName(Class.java:164)

I am able to access the database using JSP. The servlet also works in Tomcat.

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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Security & JAAS/JBoss] - Re: Propagating Permissions, please help

2005-05-12 Thread [EMAIL PROTECTED]
The container has to be in control of authentication to allow propagation to 
other secured web resources. You would have to create a custom tomcat valve or 
authenticator to change the behavior at the container level. You probably just 
want to implement custom security in a standard filter though.

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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Workflow in Portal

2005-05-12 Thread Kavitha
We have a customer who needs the workflow in the portal.
When is the jBPM integration with portal available.
What are the alternatives until then.

Thanks
Kavitha

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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS & JBossMQ] - Re: Message selector performance

2005-05-12 Thread [EMAIL PROTECTED]
Contested Queues + messageSelector should have a surgeon general's
health warning in the spec.

It is a BAD anti-pattern.

Topics + messageSelectors works just fine.

I'm suprised this not an FAQ, it is now:
http://wiki.jboss.org/wiki/Wiki.jsp?page=IGetSlowPerformanceWithMessageSelectors
though the anti-pattern it is described here:
http://jira.jboss.com/jira/browse/JBAS-1348
and probably a dozen other posts in this forum (guess you didn't look that 
hard?)


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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: Workflow in Portal

2005-05-12 Thread [EMAIL PROTECTED]
unfortunately, it is not planned fro right now but is mentionned in the next 
items of the roadmap

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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JCA/JBoss] - Re: ManagedConnection shared by multiple Connections

2005-05-12 Thread [EMAIL PROTECTED]
What you really want is a custom pool which has a pooling strategy of
"Don't Pool - Share".

The only mechanism in JBoss to use your own custom pool is to deploy using the 
MBeans
directly rather than using the -ds.xml (see previous posts for examples).
But the MBean api is not guaranteed to be stable across releases.


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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS & JBossMQ] - Re: Fail to acknowledge a JMS message

2005-05-12 Thread [EMAIL PROTECTED]
Genman, the first part of your answer is correct. 
"Suck it and see", or just read the spec.
HINT: JMSMessage.getJMSRedelivered()

The second part is not correct/misleading.
Though it is quite hard for a BMT MDB to signal a NACK/rollback,
short of crashing the server :-)
See the FAQ or the dozens of previous posts where this is discussed in detail.

You can tell there are previous posts discussing this, because it is an FAQ.

Moderated: Lazy user

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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Clustering/JBoss] - Re: Session not replicated in JBoss 3.2.6

2005-05-12 Thread [EMAIL PROTECTED]
You need to have a loadbalancer to keep your session id the same during fail 
over. Check the wiki page for example of mod_jk.

-Ben

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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JCA/JBoss] - Re: ManagedConnection shared by multiple Connections

2005-05-12 Thread [EMAIL PROTECTED]
"camueller" wrote : According to the spec, chapter 6.5.4.2, multiple 
Connections sharing a ManagedConnection should be supported.
  | 

Yes, in the same transaction for example, the connection handles share the same
real managed connection:


  | UserTransaction ut = ...
  | ut.begin();
  | Connection c1 = connectionFactory.getConnection();
  | Connection c2 = connectionFactory.getConnection();
  | 

Absent a transaction how is the pooling to know that the connection can be 
shared?

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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: Bundle links not working

2005-05-12 Thread [EMAIL PROTECTED]
Its up again, but you need jdk5 until we can get it to work with jdk1.4

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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Clustering/JBoss] - Re: Can we use

2005-05-12 Thread [EMAIL PROTECTED]
You still need to run "all" and weed out the unnecessary services.

-Ben

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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: the link JBoss Portal RC1 + JBossAS 4.0.1sp1 Bundle => j

2005-05-12 Thread [EMAIL PROTECTED]
try it again. you will need jdk5 for now, until we can rebuild in jdk1.4

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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossCache] - Re: question on Node class

2005-05-12 Thread [EMAIL PROTECTED]
No, you should not. put(fqn, key, value) is all you need to care.

-Ben

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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Persistence & CMP/JBoss] - Re: Hibernate 3 unable to update or delete

2005-05-12 Thread garbett
I turned on debuging by editing the conf/log4j.xml file. I changed this:

  |   
  |   
  |   
  |   
  | 
To this:

  |   
  |   
  |   
  |   
  | 

Now there is volumes of output to look at. The 

  | 16:20:42,301 INFO  [STDOUT] class 
org.centerstone.admin.TupleSaveAction::execute()
  | 16:20:42,302 INFO  [STDOUT] HibernateUtil::getSession()
  | 16:20:42,302 INFO  [STDOUT] HibernateUtil::getSessionFactory()
  | 16:20:42,302 DEBUG [SessionFactoryObjectFactory] JNDI lookup: 
hibernate/AdminSessionFactory
  | 16:20:42,302 DEBUG [SessionFactoryObjectFactory] lookup: 
uid=8a828acf03d2c6bd0103d2c6c15e
  | 16:20:42,302 DEBUG [JDBCContext] successfully registered Synchronization
  | 16:20:42,302 DEBUG [SessionImpl] opened session at timestamp: 
4570860922068992
  | 16:20:42,302 INFO  [STDOUT] HibernateUtil::beginTransaction()
  | 16:20:42,303 INFO  [STDOUT] HibernateUtil::getSession()
  | 16:20:42,303 DEBUG [JTATransaction] begin
  | 16:20:42,303 DEBUG [JTATransaction] Looking for UserTransaction under: 
UserTransaction
  | 16:20:42,303 DEBUG [JTATransaction] Obtained UserTransaction
  | 16:20:42,303 INFO  [STDOUT] updateTuple(saveOrUpdate) [EMAIL 
PROTECTED],domain=Test,subDomain=Cartoon,label=Flintstones,value=1]
  | 16:20:42,303 DEBUG [Cascades] id unsaved-value: null
  | 16:20:42,303 DEBUG [AbstractReassociateEventListener] reassociating 
transient instance: [org.centerstone.admin.Tuple#1]
  | 16:20:42,303 DEBUG [AbstractSaveEventListener] persistent instance of: 
org.centerstone.admin.Tuple
  | 16:20:42,303 DEBUG [DefaultSaveOrUpdateEventListener] ignoring persistent 
instance
  | 16:20:42,303 DEBUG [DefaultSaveOrUpdateEventListener] object already 
associated with session: [org.centerstone.admin.Tuple#1]
  | 16:20:42,304 INFO  [STDOUT] updateTuple(saveOrUpdate) [EMAIL 
PROTECTED],domain=Test,subDomain=Cartoon,label=Ren and Stimpy,value=2]
  | 16:20:42,304 DEBUG [Cascades] id unsaved-value: null
  | 16:20:42,304 DEBUG [AbstractReassociateEventListener] reassociating 
transient instance: [org.centerstone.admin.Tuple#2]
  | 16:20:42,304 DEBUG [AbstractSaveEventListener] persistent instance of: 
org.centerstone.admin.Tuple
  | 16:20:42,304 DEBUG [DefaultSaveOrUpdateEventListener] ignoring persistent 
instance
  | 16:20:42,304 DEBUG [DefaultSaveOrUpdateEventListener] object already 
associated with session: [org.centerstone.admin.Tuple#2]
  | 16:20:42,304 INFO  [STDOUT] HibernateUtil::commitTransaction()
  | 16:20:42,304 INFO  [STDOUT] HibernateUtil::commitTransaction() actual call
  | 16:20:42,304 DEBUG [JTATransaction] commit
  | 16:20:42,304 INFO  [STDOUT] HibernateUtil::closeSession()
  | 16:20:42,304 DEBUG [SessionImpl] closing session
  | 16:20:42,304 DEBUG [CacheSynchronization] transaction before completion 
callback
  | 16:20:42,304 DEBUG [CacheSynchronization] automatically flushing session
  | 16:20:42,304 DEBUG [SessionImpl] automatically flushing session
  | 16:20:42,304 DEBUG [JDBCContext] before transaction completion
  | 16:20:42,305 DEBUG [SessionImpl] before transaction completion
  | 

Note the 'ignoring persistent instance'. What would cause this?

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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Persistence & CMP/JBoss] - Re: Hibernate 3 unable to update or delete

2005-05-12 Thread garbett
I got rid of the 'ignoring persistent instance' by removing a lock call and 
just calling saveOrUpdate. However the same problem still remains.

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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Persistence & CMP/JBoss] - Re: Hibernate 3 unable to update or delete

2005-05-12 Thread garbett
Similar problem on my configuration. I set ShowSqlEnabled to true and no SQL is 
being generated. I suspect something in the transaction management.

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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Timer for reloading properties?

2005-05-12 Thread hhendler
Hello,

My app loads properties from a '.properties' file, and I would like to set a 
timer with a configurable refresh period to reload without stopping/starting 
the entire app.

Is there a non-code way to do this, or must I look into something like what 
log4j does 
(http://www.cenqua.com/clover/eg/jboss/report/org/jboss/logging/Log4jService.html)
and write similar code?

Thanks

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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Persistence & CMP/JBoss] - Re: Hibernate 3 unable to update or delete

2005-05-12 Thread biteme
I'm having the same problem. Being a clueless newbie to JBoss/Hibernate, I'm 
poking around trying to find a debug mode that would produce some output about 
the state of things.

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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Re: Accessing the file system

2005-05-12 Thread efreed
Arg, never mind. My regex was causing an exception to be thrown before the file 
was even opened up, and I was silently dropping to caught exception.  So I 
thought I could not open the directory, and was thinking EJB (which can't 
access the file system through regular io)

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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Bundle links not working

2005-05-12 Thread sven.schulz
It looks like the links for the bundled packages (Portal RC + AS 4.0.1sp1) not 
working. Anybody knowing the correct URL?

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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - the link JBoss Portal RC1 + JBossAS 4.0.1sp1 Bundle => jboss

2005-05-12 Thread novice user
the link to download JBoss Portal RC1 + JBossAS 4.0.1sp1 Bundle => 
jboss_portal_2.0_RC1-jboss_4.0.1sp1.zip is broken...

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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Security & JAAS/JBoss] - How to obtain the user roles with DatabaseServerLoginModule

2005-05-12 Thread mstampella
I can autorize a user based in his roles.

But i cant obtain the list of his roles !!!

This is my login-config.xml

  


jboss.jca:service=LocalTxCM,name=OracleDS
java:OracleDS
Select Password 
from Principals where PrincipalID =?
Select Role Roles, 
RoleGroup RoleGroups from Roles where PrincipalID =?




and code:

SecurityAssociationHandler handler = new SecurityAssociationHandler();

SimplePrincipal user = new SimplePrincipal(userName);
handler.setSecurityInfo(user, password.toCharArray());
lc = new LoginContext("databasePolicy", handler);
lc.login();
subject = lc.getSubject();
} catch (javax.security.auth.login.LoginException e) {
throw new 
LoginException(ExceptionConstants.SECURITY_LOGIN, e.getCause());
} catch (Throwable e) {
throw new ProgramException(e);
}

thats ok, CAN I GET THE ROLES OF THE USER ("userName") ???



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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: JBoss Portal vs. LifeRay and eXo

2005-05-12 Thread scrut
Thanks

That was very helpful.

Looks like JBoss Portal can essentially do what I want. I will certainly 
consider using it for our project.

scrut

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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Accessing the file system

2005-05-12 Thread efreed
I know how to access files stored in my .sar file, but I need to read ( and 
delete) external files, and a directory. Specifically, I have a reg ex to match 
against the files in the directory, but I can't find a way to list the files in 
the directly. 

File f = new File("path"); 
String[] listOfFiles = f.list();

does not to work. 

I have tried various URI/URL ways with no success.

What is the solution?

Many thanks, 

Eric Freed

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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: JBoss Portal vs. LifeRay and eXo

2005-05-12 Thread [EMAIL PROTECTED]
"scrut" wrote : I need a portal system that provides me, out of the box, with
  | - a Wiki
  | - a Forum
  | - a News System
  | - a Blog
  | 

I don't have an ETA right now on the XWiki portlet. I was migrating it over, 
but had to drop it for this release cycle. Forums we have. News, someone needs 
to port from Nukes. Blog we have... kind of... its an rss reader that read from 
blojsom.

"scrut" wrote : 
  | 1. That I can specify roles such as "Guest is allowed to read all content 
in Wiki, Forum, Blog and News but not the content in my own portlet" and "user 
is allowed to read the content in my own portlet and read/write in forum and 
wiki" and so on. I want to define that in a central spot so that it effects all 
portlets installed. 
  | 

Our current permissions scheme supports this.

"scrut" wrote : 
  | 2. Once a user is logged in, he can navigate in the whole portal and use it 
according to the rights and restrictions associated with his user account. 
(Single sign on)
  | 

Also can be done presently.

"scrut" wrote : 
  | 3. I want to create a portal page with login field and menu on the left and 
my portlet and the news portlet in the centre. From the menu, a user can 
navigate to Wiki and Message Boards. Depeding on the logged in user, the menu 
has to change (e.g. if I am logged in I probably want a function to edit the 
content in my own portlet which a normal user can't do). 
  | 

Our page system and theme api allows you to do this.

"scrut" wrote : 
  | 4. I don't want the user to be able to change the layout of the portal page 
(eg. I don't want the user to be able to close the news portlet so it 
disappears)
  | 

Currently, the user cannot. How your portlet reacts to user actions, is up to 
the portlet though.

"scrut" wrote : 
  | 5. I want that my own portlet can access his own database which is disjoint 
from the portal database (I want to manage my own data)
  | 

This is up to your portlet, I believe.

"scrut" wrote : 
  | 6. I want that my own portlet can access the filesystem to read and write 
files it has to manage. (No, I don't want to use a DB-BLOB)
  | 

Again, up to your portlet.

"scrut" wrote : 
  | 7. That I can use a template-like technology to change the design and 
look&feel for all components involved
  | 

I'm working on the theme api documentation, currently. the theme api is already 
in the RC release.

"scrut" wrote : 
  | I can wait for the "out of the box" portlets for a few weeks or months 
(e.g. if you say "we are working on providing a super Wiki portlet but that 
won't be done until July" it would be fine with me.)
  | 

I can't promise anything, but the super XWiki portlet may be finished by then 
as it is needed for the JEMS site.


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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: does jboss 3.2.1 or 3.2.5 support portals

2005-05-12 Thread [EMAIL PROTECTED]
No. Use 4.0.0 or above. We recommend 4.0.1sp1, btw.

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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - AdminCMS portlet documentation - reply 1

2005-05-12 Thread guest
This is actually a reply to another post I made at 
http://www.jboss.org/index.html?module=bb&op=viewtopic&t=63885 but because I 
can't seem to post a reply to that thread I have to create a new one. (When I 
try to reply I get the following error message: "Cannot invoke the operation : 
the module threw an exception". Is this because I'm not registered?)

Anyway, I did not know if I was supposed to extract cms-content.zip when using 
JBoss Portal 2.0 RC1 bundled with JAS 4.0.1 SP1. With all the different zip 
files to download it's not clear if all the installation procedures apply to 
all the versions of the software!

I noticed some strange behavior in the AdminCMS portlet. When you edit and save 
a text/html file in the WYSIWYG editor it seems to strip all the HTML out of 
the document! Also, while editing the index.html file in the AdminCMS portlet I 
got the following stack trace:

org.apache.commons.httpclient.HttpException
  | at 
org.apache.webdav.lib.WebdavResource.propfindMethod(WebdavResource.java:3467)
  | at 
org.apache.webdav.lib.WebdavResource.propfindMethod(WebdavResource.java:3423)
  | at 
org.apache.webdav.lib.WebdavResource.setNamedProp(WebdavResource.java:967)
  | at 
org.apache.webdav.lib.WebdavResource.setBasicProperties(WebdavResource.java:912)
  | at 
org.apache.webdav.lib.WebdavResource.setProperties(WebdavResource.java:1894)
  | at 
org.apache.webdav.lib.WebdavResource.setHttpURL(WebdavResource.java:1301)
  | at 
org.apache.webdav.lib.WebdavResource.setHttpURL(WebdavResource.java:1320)
  | at 
org.apache.webdav.lib.WebdavResource.setHttpURL(WebdavResource.java:1408)
  | at 
org.apache.webdav.lib.WebdavResource.setPath(WebdavResource.java:1469)
  | at 
org.jboss.portal.core.portlet.cms.WebDAVUtil.setCurrentPath(WebDAVUtil.java:101)
  | at 
org.apache.jsp.WEB_002dINF.jsp.cms.admin.viewfile_jsp._jspService(viewfile_jsp.java:408)
  | at 
org.jboss.portal.core.servlet.jsp.PortalJsp.service(PortalJsp.java:140)
  | at 
org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:324)
  | at 
org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:292)
  | at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:236)
  | at javax.servlet.http.HttpServlet.service(HttpServlet.java:810)
  | at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:237)
  | at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:157)
  | at 
org.jboss.portal.portlet.impl.PortletRequestDispatcherImpl.execute(PortletRequestDispatcherImpl.java:71)
  | at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  | at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
  | at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
  | at java.lang.reflect.Method.invoke(Method.java:585)
  | at 
org.jboss.portal.server.servlet.CommandFilter.doFilter(CommandFilter.java:54)
  | at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:186)
  | at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:157)
  | at 
org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:704)
  | at 
org.apache.catalina.core.ApplicationDispatcher.doInclude(ApplicationDispatcher.java:590)
  | at 
org.apache.catalina.core.ApplicationDispatcher.include(ApplicationDispatcher.java:510)
  | at 
org.jboss.portal.portlet.impl.PortletRequestDispatcherImpl.include(PortletRequestDispatcherImpl.java:113)
  | at 
org.jboss.portal.core.portlet.cms.admin.AdminCMSPortlet.doView(AdminCMSPortlet.java:528)
  | at org.jboss.portlet.JBossPortlet.doDispatch(JBossPortlet.java:217)
  | at 
org.jboss.portal.core.portlet.cms.admin.AdminCMSPortlet.render(AdminCMSPortlet.java:1056)
  | at org.jboss.portlet.JBossPortlet.render(JBossPortlet.java:347)
  | at 
org.jboss.portal.portlet.invocation.DispatcherInterceptor.invokeRequest(DispatcherInterceptor.java:163)
  | at 
org.jboss.portal.portlet.invocation.DispatcherInterceptor.invoke(DispatcherInterceptor.java:195)
  | at 
org.jboss.portal.server.impl.invocation.InvocationImpl.invokeNext(InvocationImpl.java:213)
  | at 
org.jboss.portal.portlet.invocation.PreferencesInterceptor.invoke(PreferencesInterceptor.java:93)
  | at 
org.jboss.portal.server.impl.invocation.InvocationImpl.invokeNext(InvocationImpl.java:213)
  | at 
org.jboss.portal.server.invocation.component.ContextDispatcherInterceptor$InvokeNextCommand.execute(ContextDispatcherInterceptor.java:94)
  | at sun.reflect.GeneratedMethodAccessor200.invoke(Unknown Source)
  | at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
  | at java.lang.reflect.Method.invoke(Method.java:585)
  | at 
org.jboss

[JBoss-user] [Clustering/JBoss] - Can we use

2005-05-12 Thread [EMAIL PROTECTED]
We are migrating from Weblogic to JBoss 4.0.1SP1 but we get into a fail-over 
issue.

We have two Apache servers and two JBoss servers.  To setup fail-over between 
Apache and JBoss, we read 

"http://www.jboss.org/wiki/Wiki.jsp?page=UsingMod_jk1.2WithJBoss";

All we need is fail-over, NOT HTTP Session Replication, and NOT HAJMS.  In 
short, just fail-over, not clustering.

But we read the article 

"http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3872837#3872837"; 
which says we need the "all" config.

Our concern in using the "all" config is that it puts JMS in the 
deploy-hasingleton directory which requires all the complicated steps to set up 
 JMS to be shared from one JBoss server.  We don't need this.  

In Weblogic, we have both servers running their own JMS and the MDB's running 
on each server consumes messages from their respective JMS queues.

So my question is: Is it possible to use the "default" config to setup 
mod_jk_1.2 between Apache and JBoss?

If the answer is no and we have to use "all" config, then can we have each 
JBoss server running their own JMS, by copying 
C:\jboss-4.0.1SP1\server\default\deploy\jms\*.* into 
C:\jboss-4.0.1\server\all\deploy\jms?

Please advise as we can getting ready to production soon and this is becoming a 
major roadblock.



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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation & Configuration] - How can I deactivate Tomcat

2005-05-12 Thread yxcvb33
Hi,

I use JBoss3.2.3 and 3.2.7 and I want deactivate the Tomcat.

How can I do that?
Any suggestion ? 

Thanks

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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Testimonials] - Re: JBoss at ChemConnect

2005-05-12 Thread JeffGordon
- Original Post -

I know this is kind of an obscure area of the forums but these are questions 
and responses based on a request from the JBoss PR folks quite some time ago 
and since nothing ever became of it I thought I would share it here.

JBoss has been an absolutely outstanding product and I continue to look at new 
ways to integrate it into our architecture. Some of this sounds like 
advertising, but as I mentioned it's just the responses to questions posed and 
I figured it's best just to share them in full.


Jeff Gordon
[former]
Senior Application Architect
Connectivity Solutions
ChemConnect, Inc.



* Can you please provide an overview of your company, product, its target 
market, etc?

ChemConnect was founded in 1995, and has since established itself as a leader 
in helping companies optimize their purchasing and sales processes for chemical 
feedstocks, chemicals, plastics, and related products through the use of 
e-commerce. The company is committed to innovating and improving transaction 
processes for buyers and sellers in multiple industries around the world.

Using innovative ChemConnect Solutions -- based on a unique combination of 
market information, industry expertise, e-commerce tools and services, and an 
active network of trading partners -- more than 9,000 Member companies from 150 
countries can access reliable market information, reduce process 
inefficiencies, and improve profitability.


* What is your position/title? What are you responsible for?

I am the Senior Application Architect for the Connectivity Solutions and I'm 
responsible for architecture and design as well as a hefty amount of coding. 
The Connectivity Solutions consist of an XML messaging hub (Envera Hub) 
delivering supply chain documents to and from ERP systems or via an internal 
account for browser access through a web application called Envera Direct (ED). 
Additionally, another web application integrated in "ED" is called Customer 
Self-Serve (CSS) allows customers to see all documents they have sent and 
received through the Envera Hub.


* How long have you used JBoss and why did you start using it?

Our product is built entirely in Java and our development group has long been a 
fan of open source products. We have chosen and participated in many open 
source projects such as; Xerces, Xalan, BouncyCastle, Axis, DOM4J, Ant, Junit, 
and of course JBoss. We started early in our product life cycle (about 5 years 
ago) evaluating various application servers to deploy our product on, and at 
least for the past few years JBoss stood out as favorite among the developers. 
However, our corporate climate and customer expectations dictated that a "name 
brand" product be used, but a development version running on JBoss was always 
around and well tested.

Around 2 or 3 years ago we deployed our web application entirely on an early 
version of 2.x JBoss and it has been a rock solid performer ever since. The web 
application is now running 2.4.x on Solaris with an Apache front end and we 
have not had any problems to speak of.

The hub application consists of a set of DMZ and application servers all 
running JBoss 3.0.x under Java 1.4.1 on Solaris. This architecture has been in 
place in our QA environment since April 2003 and was in production four months 
later. In evaluating our DMZ needs, we wanted to use a Java-based web server 
that could use a standard keystore to provide client authentication for SSL. As 
digital certificates for new or existing customers change or get added to our 
"Certificate Store", new keystore files are generated and deployed to the DMZ 
boxes to drastically reduce the maintenance inherent in certificate-based 
systems. JBoss being bundled with Jetty was a perfect solution for our needs.

I also started a project to use JBoss to house an "information hub" for our 
on-line commodities trading application for distribution and retrieval of 
trading data. The event-driven hub consolidates and delivers information to a 
variety of subscribers in multiple protocols such as; e-mail and instant 
message to users watching trading activity, XML to ERP and risk management 
systems on deal completion, and binary to Bloomberg for real-time and 
summarized product pricing data. This system has been in production since 
September 2003 and to date we have had excellent performance and no problems 
with it.


* Was anyone else involved in the decision to use JBoss? Did you have to "sell" 
it to your management team? If so, how did you go about doing this?

Performance, cost, and ease of code deployment are the key factors that drove 
the decision to deploy JBoss. The management team was part of the decision, but 
the judgment of the technical team and problems with the old application server 
were the driving factors in finally getting JBoss initially deployed to 
production. Since our initial usage, it sells itself and I wouldn't consider 
deploying on anything else.


* What version of JBo

[JBoss-user] [Security & JAAS/JBoss] - AuthenticationCacheTimeout effecting one session bean but no

2005-05-12 Thread jeeads
JBoss 3.2.3 in production.  I have two session beans using the same 
SecurityDomain and AuthenticationCache.  After logging in under srp I allow the 
timeout period to expire.  The MapperBean is always called with a remote call 
and the calls to the FGMapperBean are always called from the MapperBean locally 
i.e. from the same container.  I then make a call to the first bean 
(MapperBean) and no security exception is thrown, however, the first call to 
the second bean (FGMapperBean) does throw a security exception.  Why doesn't 
the MapperBean throw the first exception?

The jboss.xml for each bean is as follows:
MapperBean

  | http://www.jboss.org/j2ee/dtd/jboss_3_0.dtd";>
  | 
  |
java:/jaas/MSSQLServer2000MetaDataSecurityRealm
  |Anonymous
  |
  |   
  |  MapperEJB
  |  IMapperHomeRemote
  |  
  | ejb/IVocabularyMgrHomeLocal
  | IVocabularyMgrHomeLocal
  |  
  |  
  | ejb/IVocabularyTranslationHomeLocal
  | IVocabularyTranslationHomeLocal
  |  
  |  
  | 
MSSQLServer2000MetaDataActivityGroupFgMapper
  | 
MSSQLServer2000MetaDataActivityGroupFgMapperRemote
  |  
  | 

FGMapperBean

  | http://www.jboss.org/j2ee/dtd/jboss_3_0.dtd";>
  | 
  | 
java:/jaas/MSSQLServer2000Sequencher_02DSecurityRealm
  | Anonymous
  | 
  | 
  | 
MSSQLServer2000Sequencher_02DAmbiguityFgMapper
  | 
MSSQLServer2000Sequencher_02DAmbiguityFgMapper
  | 
MSSQLServer2000Sequencher_02DAmbiguityFgMapperLocal
  | 
  | 
ejb/MSSQLServer2000Sequencher_02D_AmbiguityDataInfo
  | 
MSSQLServer2000Sequencher_02D_AmbiguityDataInfo
  | 
  | 
  | 
  | 
ejb/MSSQLServer2000Sequencher_02D_BlobData
  | 
MSSQLServer2000Sequencher_02D_BlobData
  | 
  | 
  | 
  | 

The ejb-jar.xml for each bean is:
MapperBean

  | 
  | 
  | http://java.sun.com/dtd/ejb-jar_2_0.dtd";>
  | 
  |
  |   
  |  MapperEJB
  |  com.genecodes.mapperremote.IMapperHomeRemote
  |  com.genecodes.mapperremote.IMapperRemote
  |  mapper.MapperBean
  |  Stateless
  |  Container
  |  
  | ejb/IVocabularyMgrHomeLocal
  | Session
  | vocabulary.IVocabularyMgrHomeLocal
  | vocabulary.IVocabularyMgrLocal
  | VocabularyMgrEJB
  |  
  |  
  | ejb/IVocabularyTranslationHomeLocal
  | Session
  | 
translation.IVocabularyTranslationHomeLocal
  | translation.IVocabularyTranslationLocal
  | TranslationEJB
  |  
  |  
  | 
  | 
MSSQLServer2000MetaDataActivityGroupFgMapper
  | Session
  | com.genecodes.mapper.IFineGrainedMapperRemoteHome
  | com.genecodes.mapper.IFineGrainedMapperRemote
  | 
com.genecodes.mapper.IFineGrainedMapperHome
  | com.genecodes.mapper.IFineGrainedMapper
  |  
  | ...
  |
  |   
  |  
  |  
  | MapperEJB
  | *
  |  
  |  
  | VocabularyMgrEJB
  | *
  |  
  |  
  | TranslationEJB
  | *
  |  
  |   
  |   
  |  
  | MapperEJB
  | *
  |  
  |  
  | VocabularyMgrEJB
  | *
  |  
  |  
  | TranslationEJB
  | *
  |  
  |  Required
  |   
  |
  | 

FGMapperBean

  | 
  | http://java.sun.com/dtd/ejb-jar_2_0.dtd";>
  | 
  |  
  | 
  | AmbiguityFgMapper
  | 
MSSQLServer2000Sequencher_02DAmbiguityFgMapper
  | com.genecodes.mapper.IFineGrainedMapperRemoteHome
  | com.genecodes.mapper.IFineGrainedMapperRemote
  | 
com.genecodes.mapper.IFineGrainedMapperHome
  | com.genecodes.mapper.IFineGrainedMapper
  | 
com.genecodes.mssqlserver2000sequencher_02d.mapper.sequencher.fgmap.AmbiguityFgMapperBean
  | Stateless
  | Container
  | 
  | 
  | AmbiguityDataInfo entity bean 
reference
  | 
ejb/MSSQLServer2000Sequencher_02D_AmbiguityDataInfo
  | Entity
  | 
com.genecodes.mssqlserver2000sequencher_02d.ambiguitydatainfo.AmbiguityDataInfoHome
  | 
com.genecodes.mssqlserver2000sequencher_02d.ambiguitydatainfo.AmbiguityDataInfo
  | 
MSSQLServer2000Sequencher_02D_AmbiguityDataInfo
  | 
  | 
  | 
  | BlobData entity bean reference
  | 
ejb/MSSQLServer2000Sequencher_02D_BlobData
  | Entity
  | 

[JBoss-user] [Testimonials] - Re: JBoss at ChemConnect

2005-05-12 Thread JeffGordon
Archives of the original post which somehow was deleted from the forum.

http://www.mail-archive.com/jboss-user@lists.sourceforge.net/msg42793.html

http://www.junlu.com/msg/72959.html

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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Portal navigation

2005-05-12 Thread guest
Why do I see the same page sometimes when I click the back button of my 
browser? Shouldn't I see the previous page? Instead I see the same portlet no 
matter what the URL says in my browser.

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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Persistence & CMP/JBoss] - Hibernate 3 unable to update or delete

2005-05-12 Thread fmaredia
We migrating from Hibernate 2 to Hibernate 3.  We upgraded JBoss to version 
4.02.  Our old version with Jboss 4.0.1 with Hibernate 2 worked fine with no 
errors.  When we migrated everything works fine, except that we can not update 
or delete.  It makes no sense!  There is no error produced either.  

Hibernate-service.xml is as Follows:


  |  
  | java:/MySqlDS 
  | org.hibernate.dialect.MySQLDialect 
  | java:/hibernate/HibernateFactory
  | org.hibernate.cache.TreeCacheProvider 
  | false
  | 
  |  




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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - AdminCMS portlet documentation

2005-05-12 Thread guest
Hi,

I am trying out JBoss Portal 2.0 RC1 and I can't find the AdminCMS portlet. The 
documentation at 
http://docs.jboss.org/jbportal/v2.0RC/user-guide/en/html/admincmsPortlet.html 
says to point your browser to http://localhost:8080/nukes/index.html?page=admin 
but this results in a 404 error. I'm interested in trying out the updated CMS 
capabilities but I can't seem to find them. 

Also, is the WYSIWYG editor based on Jakarta slides as well? Is it possible to 
include portlets within a CMS-managed page? I did not see any links to the CMS 
portlet in any of the portal pages and I had to read the web.xml files to find 
out which URL I'm supposed to use for WebDav access. Some more documentation on 
this would be appreciated.

Many thanks,
guest

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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: Novell's involvement in JBoss... What? When?

2005-05-12 Thread mholzner
anonymous wrote : What is the timeline for Novell to release this stuff to 
JBoss and the OSS community?
Novell is actively contributing to several JBoss projects. The contributions 
are primarily new code. This is a gradual process that will continue , and 
probably grow over time. 


anonymous wrote : Will the portlets they are contributing be available in the 
standard download of JEMS?
It's too early to determine how the Portlets will be distributed. Some Portlets 
are being migrated, others need to be re-written. We haven't finalized the list 
of Portlets yet, nor the contribution timeline.


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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: How to assemble portlet pages?

2005-05-12 Thread mholzner
As of 2.0 there is no such UI. Pages can only be created via xml files. This is 
in the feature list for the next version under the topc 'dynamicity'

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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Security & JAAS/JBoss] - Re: RunAsMDB

2005-05-12 Thread nitin888
Hi,

Thanks a lot. It worked for me.

Regards,
Nitin.

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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Re: 16:22:50,265 ERROR [SOAPElementAxisImpl] Cannot convert

2005-05-12 Thread danoakland
I ran into this same problem -- it occurs when parsing a SOAP response and 
there is an attribute with a URI. The JBoss code that causes the exception is 
in the org.jboss.axis.message.SOAPElementAxisImpl at line 724. The 4.0.2 source 
code I downloaded shows this (starting with line 712):


  | if (uri != null && uri.trim().length() > 0)
  | {
  |// filterring out the tricky method to differentiate the 
null namespace
  |// -ware case
  |if (uri.equals("intentionalNullURI"))
  |{
  |   uri = null;
  |}
  | 
  |if (qname.startsWith("xmlns:") == false && 
qname.startsWith("xsi:") == false)
  |   qname = "xmlns:" + qname;
  | 
  |Attr attr = doc.createAttributeNS(uri, qname);
  |attr.setValue(value);
  |domAttributes.setNamedItemNS(attr);
  | }
  | 

What happens is that any attribute with a URI, say for example, "POS:lineTotal" 
ends up being passed to the Document.createAttributeNS method as 
"xmlns:POS:lineTotal". It seems to be a bug. If I can find some time to create 
a test case, I'll submit it to JIRA.

By the way, commenting out lines 721 and 722 (where qname is set to "xmlns:" + 
qname) seems to correct the problem for me, but I'm not sure what consequences 
that would have in other cases.

Dan

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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS & JBossMQ] - Re: Cannot send a message to the JMS Server

2005-05-12 Thread bkmenon
Hi darranl,
I have to use JBoss 3.2.3 version, coz its a standard on which my framework has 
been built.

Hi genman,
I do have a clue. I think it is because of the hectic transfer of messages back 
and forth between the java client and the server. Apart from this I dont have a 
clue.

What Say?

Thanks for the response.
B. Krishna Menon.

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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS & JBossMQ] - Message selector performance

2005-05-12 Thread jplsaez22
Hello.

I've been searching for information about the possible drawbacks of using a 
message selector to consume some specific messages from a queue. I haven't 
found any clear answer to my doubts.

I'm thinking in two scenarios:

- Creating just one queue and configuring some mdbs with different message 
selectors to process every kind of message. In this case I'll set 2 or 3 
properties to configure the message selectors.

- Creating a sort of "failed to process message" queue.  When any mdb fails to 
process its message, it will produce a new message to this error queue, setting 
some properties to contain error related information. In this case threre will 
be about ten properties.

This error queue will be processed on demand. I will call a synchronous 
consumer, configuring a message selector with the appropiate property values to 
read just a subset of the messages on the error queue.

Regarding to performace, the question is: is it appropiate to use the message 
selector facility for the shown purposes?

Both scenarios can be changed to avoid using a message selector, but paying for 
some more desing complexity.  

Thank you very much.

Juan Pedro Lopez

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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Security & JAAS/JBoss] - Propagating Permissions, please help

2005-05-12 Thread optimusprime
Helo there. It's been almost a week that I've been reading tutorials, google, 
and jboss code...
I don't want to use j_security_check. So after my LoginModule log-me-in I'm 
unable to propagate the permission...

LoginContext lc = new LoginContext("myLogin",(CallbackHandler)myHandler);
lc.login(); //Ok
lc.getSubject(); //Super OK

now, how do I propagate this to the conteiner? When I go back to the caller 
Servlet it is forward to the login page, as it wasn't authenticated.

Please, someone help me out!

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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossCache] - Re: Problem with cluster under same VM

2005-05-12 Thread g.ambrozio
Some new tests: First, I modified the first sleep to:


  | //Util.sleep((long) (Math.random()*5000));
  | Util.sleep((long) (id*2000));
  | 

id is now an integer, rather than a String. So now I have the first thread 
starting after 2 seconds, the second after 4 and the third after 6. I also 
added this to the end of run():


  | for (Iterator iter = set.iterator(); iter.hasNext();)
  | {
  | System.out.println("end  "+iter.next()+" by "+id);
  | }
  | 

What I get is:

ended  1 24
end  1_982 by 1
end  1_584 by 1
end  3_415 by 1
end  1_762 by 1
end  1_658 by 1
end  1_395 by 1
end  1_61 by 1
end  3_86 by 1
end  1_415 by 1
end  1_783 by 1
end  3_21 by 1
end  3_938 by 1
end  1_135 by 1
end  1_299 by 1
end  1_924 by 1
end  3_566 by 1
end  1_222 by 1
end  3_251 by 1
end  1_81 by 1
end  3_197 by 1
end  1_239 by 1
end  3_63 by 1
end  1_777 by 1
end  1_324 by 1
ended  2 20
end  2_680 by 2
end  2_895 by 2
end  2_844 by 2
end  2_884 by 2
end  2_119 by 2
end  2_923 by 2
end  2_351 by 2
end  2_863 by 2
end  2_384 by 2
end  2_696 by 2
end  2_481 by 2
end  2_187 by 2
end  2_452 by 2
end  2_935 by 2
end  2_262 by 2
end  2_136 by 2
end  2_322 by 2
end  2_918 by 2
end  2_820 by 2
end  2_416 by 2
ended  3 24
end  1_982 by 3
end  3_415 by 3
end  1_762 by 3
end  1_658 by 3
end  1_395 by 3
end  1_61 by 3
end  3_86 by 3
end  1_783 by 3
end  1_415 by 3
end  3_21 by 3
end  3_10 by 3
end  3_938 by 3
end  1_299 by 3
end  1_135 by 3
end  1_924 by 3
end  1_222 by 3
end  3_566 by 3
end  3_251 by 3
end  1_81 by 3
end  3_197 by 3
end  1_239 by 3
end  3_63 by 3
end  1_777 by 3
end  1_324 by 3


Seems like threads 1 and 3 are on the same cluster, as thread 2 is all 
alone.

I got log4j configured to DEBUG, so I geet a lot of extra stuff. One I'm 
finding curious is:

creator of own vid (dcbnw225:1987)is different from creator of message's vid 
(dcbnw225:1984); discarding message !

Maybe that's a hint???

Thanks a lot

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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Persistence & CMP/JBoss] - EJBQL ORDER BY with boolean

2005-05-12 Thread [EMAIL PROTECTED]
I'm trying to use a dynamic EJBQL/JbossQL expresssion that involves an ORDER BY 
of a boolean CMP attribute:

 SELECT OBJECT(o) FROM UserBean AS o ORDER BY o.active

Where UserBean.active is a CMP2 boolean attribute (extract from UserBean.java, 
using XDoclet)

 /**
 * @ejb.persistent-field 
 * @ejb.interface-method view-type="local"
 * @ejb.persistence column-name="B_ACTIVE" 
 */
 public abstract boolean getActive();
 /** @ejb.interface-method view-type="local" */
 public abstract void setActive(boolean value);

I'm getting a FinderException when I execute the query:

javax.ejb.FinderException: Error compiling ejbql: 
org.jboss.ejb.plugins.cmp.ejbql.ParseException: Encountered "o.active" at line 
1, column 45.
Was expecting one of:
 ...
 ...
 ...

Are booleans supported in ORDER BY?  Are there any good workarounds if they are 
not?  

I'm currently using jboss3.2.5 and Oracle10g, but I'm open to migrating to a 
newer version for this support.

Thanks in advance.


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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossCache] - Re: Problem with cluster under same VM

2005-05-12 Thread g.ambrozio
Did you modify something else?? I'm running on my machine and I still geet 
inconsistent results:

ended  2 26
ended  1 29
ended  3 23

using vsync.xml:


  | 
  | 
  | 
  | 
  | 
  | 
  | 
  | 
  | 
  | 
  | 
  | 
  | 
  | 
  | 
  | 

Can it be because I'm running under windows? Would it help using a shared cache 
loader, even though I don't need it, because I only have to keep a lot of 
distributed agents in sync (everyone needs to know what the others are doing)

Thanks again.

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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Performance Tuning] - Re: Monitoring recommendations?

2005-05-12 Thread Traveldoo2
I believe JBoss WebConsole can do what you want, gshifrin.

You access it at the URL :
http://hostname/web-console

More info here :
http://jboss.org/wiki/Wiki.jsp?page=WebConsole

By the way, i'm also very interested into relevant MBeans to monitor :
for now I just monitor FreeMemory and ActiveThreadCount
There are just too many MBeans to manually search amongst the other trees.
Does anyone has a fair idea on this subject ?

Thanks in advance.

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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [HTTPD, Servlets & JSP] - Good advise about paging data !

2005-05-12 Thread warx_sg
Hi all,

i would need a good advise about paging data.
My application is made up of layers : presentation and business.
The presentation ( Struts ) calls method from business when it needs lists of 
data which are created executing SELECT queries.
All the list are put in the session and then it is used a tag to paging data.
I was wondering what could it happen if the List of data containes alot of data 
so i was wondering what is the right way to paging data.
I know that there some taglib like ValueList, but ValuList manages everything 
into the presentation layer and not in the business layer.
Any suggestion ?
Cheers.

  Stefano

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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - NoClassDefFoundError: org/jdom/Text jdk1.5 JB3.2.7

2005-05-12 Thread EricT2004
I was wondering if anyone has had problems with jaxen in ver 3.2.7.
I'm getting the following error:

root cause

java.lang.NoClassDefFoundError: org/jdom/Text
org.jaxen.jdom.JDOMXPath.(JDOMXPath.java:100)

Thanks,
Eric

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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Getting Started Documentation] - Re: Where is org.jboss.util.ChapterExRepository [JBoss Admin

2005-05-12 Thread [EMAIL PROTECTED]
You should use the provided any scripts to build the example code.

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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - jboss forums don't build

2005-05-12 Thread sviluppatorefico
II have a problem to build the last versions of jboss-forums .i've 
downloaded it from sourceforge and I had to configure the portal_home to build 
jboss-forums, then download the dbunit libraries and to configure in .ent of 
porta_thirdparty and now  I don't to find the class 
org.jboss.portal.test.core.Utils used in a test classes.. where I find it?




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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Re: Probs with SP2???

2005-05-12 Thread PeterJ
I have been using SP2 for a long time and have never experienced a BSOD when 
closing JBoss.  Out of curiousity, what DLLs are being loaded into the JVM?  
One way to find this out is to download and run the listdlls.exe program from 
www.sysinternals.com (at a command prompt, enter "listdlls java.exe".  My guess 
is that an errant DLL is being loaded into the JVM and that is causing the 
problem.

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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Javassist user questions] - Re: jdk 1.5 JBoss 3.2.7 / Error NoClassDefFoundError...

2005-05-12 Thread EricT2004
sorry.  i'll repost in another forum.

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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Probs with SP2???

2005-05-12 Thread smitz
Everytime i close JBoss i get a BSOD. Has anyone ever came across this before, 
its getting really annoying. Theres other people using XP Pro SP1 and they are 
fine, but theres a few of us got new machines with SP2 and its happening to us 
all.

Any help would be much appreciated!

D

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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Getting Started Documentation] - Re: Where is org.jboss.util.ChapterExRepository [JBoss Admin

2005-05-12 Thread solkwong
Where I can find org.jboss.util.ChapterExRepository? what is the jar file for 
this package? Please

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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Re: Stateless bean Deployment in Jboss4.0.1sp1

2005-05-12 Thread darranl
It means that an item you are attempting to lookup in JNDI is not bound to JNDI.

This could be caused by a failed deployment or possibly using the wrong name.

If this relates to using a session bean the exception is the wrong place to 
start diagnosing the problem, you should follow the following steps.

Undeploy everything that you have currently deployed and restart JBoss.
Check for any errors in the console.
Deploy your session bean.
Check for any errors in the console.
Use JMX Console and invoke the list operation on the JNDI View MBean to see 
what JNDI name was used.

It is only at this point that you are ready to run any client that tries to use 
the session bean.


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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation & Configuration] - Re: MissingResourceException calling ResourceBundle.getBundl

2005-05-12 Thread [EMAIL PROTECTED]
Issue report with an example deployment that illustrates the problem is the 
next step.

http://jira.jboss.com/jira/browse/JBAS

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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation & Configuration] - Re: MissingResourceException calling ResourceBundle.getBundl

2005-05-12 Thread karmen38
Scott, 

Thank you for your answer. I agree that the problem is in Tomcat. I realized 
that JBoss 4.0.2 has Tomcat 5.5 embedded while JBoss 4.0.1sp1 had Tomcat 5.0. 

Tomcat claims that JDK 1.5 should be used with 5.5. I switched the JDK to 1.5 
and still get the same problem with getBundle. I understand that this topic 
should be transferred to Tomcat group but if someone may help me here I would 
appreciate your help.

Also I tried to package version.property file into some application package so 
it would not be in the root of the classes directory and it did not help as 
well.

Thank you,
Mark


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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation & Configuration] - Installing beans with same name twice

2005-05-12 Thread fgutierrez
I have to deploy 2 applications (2 different ears) wich uses the same bean 
names.  

how can i achieve this? do i have to make another installation and change all 
ports used by the first one in order to avoid an "Address already in use 
Exception", if so, which files do i have to change?

thanks

Fabian

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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Clustering/JBoss] - javax.naming.CommunicationException: Failed to retrieve stub

2005-05-12 Thread ashankerdas
Hi,
 I am having a problem using InitialContext for lookup of EJB in a JBoss 
Cluster. The code works fine when clustering is not used. I am working on 
JBoss-3.2.3.

The problem is as follows:
 Context ctx = new  InitialContext();
Then i lookup some bean.
The code works fine in case clustering is NOT enabled.
However, when i switch on clustering, i get the following error:

javax.naming.CommunicationException: Failed to retrieve stub from server 
0.0.0.0:1100

My jndi.properties file is as follows:

java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory
java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces

Does anyone know any solution to this?

Thank you.





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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS & JBossMQ] - Re: Error in initialization of DLQ

2005-05-12 Thread MarkSigEp
check the hajndi-jms-ds.xml file in 
${jboss.home}/server//deploy/jms.

look at the Properties attribute of the 
jboss.mq:service=JMSProviderLoader,name=HAJNDIJMSProvider mbean.

 your Properties attribute probably has java.naming.provider.url=localhost:1100 
when it should look like below:


   java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory
   java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces
   java.naming.provider.url=${jboss.bind.address}:1100


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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Clustering/JBoss] - Re: Client code of Clustered EJB must run in ALL-module?

2005-05-12 Thread MarkSigEp
check the hajndi-jms-ds.xml file in 
${jboss.home}/server//deploy/jms.

look at the Properties attribute of the 
jboss.mq:service=JMSProviderLoader,name=HAJNDIJMSProvider mbean.

 your Properties attribute probably has java.naming.provider.url=localhost:1100 
when it should look like below:


   java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory
   java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces
   java.naming.provider.url=${jboss.bind.address}:1100


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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Stateless bean Deployment in Jboss4.0.1sp1

2005-05-12 Thread deepc
Hi,
Can anyone please tell me when does JNDI Not Bound exception occur?. and what 
are the possible solutions.
Thanks
Deep

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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS & JBossMQ] - Re: http-il servlet : can it be used to post a message via a

2005-05-12 Thread [EMAIL PROTECTED]
You need to write your own servlet to do this as the http invoker deals with 
marshalled java object streams, not a java agnostic format.


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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossCache] - Re: Problem with cluster under same VM

2005-05-12 Thread [EMAIL PROTECTED]
The XML fragment didn't show correctly. But if you download JGroups, you'll 
find vsync.xml in JGroups.conf.

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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossCache] - Re: Problem with cluster under same VM

2005-05-12 Thread [EMAIL PROTECTED]
Two things:

#1 Starting all instances at the same time might get you into merge situations. 
Merging different states is not (yet) implemented in JBossCache.

#2

You are running the default protocol. This is *not* using virtual synchrony, so 
at the end we're *not* running a flush to flush all pending messages out of the 
system.
If you take the XML code below (which is JGroups/conf/vsync.xml), then you will 
have virtual synchrony, and the program behaves is as expected.

XML:
















Output:
---
GMS: address is 192.168.0.2:4739
---

---
GMS: address is 192.168.0.2:4750
---

---
GMS: address is 192.168.0.2:4752
---
2: put(/a, 2_412, 412)
2: put(/a, 2_76, 76)
2: put(/a, 2_10, 10)
2: put(/a, 2_522, 522)
2: put(/a, 2_502, 502)
2: put(/a, 2_346, 346)
2: put(/a, 2_676, 676)
view for 2 is [192.168.0.2:4739|1] [192.168.0.2:4739, 192.168.0.2:4752]
view for 2 is [192.168.0.2:4739|2] [192.168.0.2:4739, 192.168.0.2:4752, 
192.168.0.2:4750]
2: put(/a, 2_365, 365)
1: put(/a, 1_292, 292)
1: put(/a, 1_60, 60)
3: put(/a, 3_386, 386)
1: put(/a, 1_272, 272)
3: put(/a, 3_466, 466)
3: put(/a, 3_254, 254)
1: put(/a, 1_724, 724)
3: put(/a, 3_288, 288)
2: put(/a, 2_708, 708)
1: put(/a, 1_521, 521)
1: put(/a, 1_46, 46)
1: put(/a, 1_35, 35)
3: put(/a, 3_684, 684)
2: put(/a, 2_603, 603)
2: put(/a, 2_93, 93)
3: put(/a, 3_371, 371)
2: put(/a, 2_227, 227)
1: put(/a, 1_865, 865)
3: put(/a, 3_320, 320)
1: put(/a, 1_70, 70)
2: put(/a, 2_796, 796)
2: put(/a, 2_274, 274)
3: put(/a, 3_970, 970)
1: put(/a, 1_927, 927)
2: put(/a, 2_499, 499)
3: put(/a, 3_398, 398)
3: put(/a, 3_94, 94)
1: put(/a, 1_488, 488)
1: put(/a, 1_3, 3)
1: put(/a, 1_20, 20)
3: put(/a, 3_199, 199)
3: put(/a, 3_72, 72)
2: put(/a, 2_545, 545)
1: put(/a, 1_444, 444)
2: put(/a, 2_716, 716)
3: put(/a, 3_813, 813)
1: put(/a, 1_672, 672)
3: put(/a, 3_264, 264)
2: put(/a, 2_608, 608)
1: put(/a, 1_824, 824)
2: put(/a, 2_469, 469)
3: put(/a, 3_999, 999)
1: put(/a, 1_470, 470)
1: put(/a, 1_87, 87)
2: put(/a, 2_799, 799)
2: put(/a, 2_22, 22)
3: put(/a, 3_947, 947)
2: put(/a, 2_327, 327)
1: put(/a, 1_723, 723)
2: put(/a, 2_136, 136)
2: put(/a, 2_15, 15)
3: put(/a, 3_313, 313)
3: put(/a, 3_117, 117)
1: put(/a, 1_480, 480)
2: put(/a, 2_322, 322)
2: put(/a, 2_350, 350)
3: put(/a, 3_971, 971)
1: put(/a, 1_853, 853)
2: put(/a, 2_567, 567)
2: put(/a, 2_68, 68)
2: put(/a, 2_14, 14)
1: put(/a, 1_328, 328)
2: put(/a, 2_650, 650)
3: put(/a, 3_930, 930)
1: put(/a, 1_699, 699)
2: put(/a, 2_545, 545)
ended  2 73
ended  1 73
ended  3 73

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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS & JBossMQ] - Re: Cannot send a message to the JMS Server

2005-05-12 Thread genman
bkmenon - You have "no clue" about OutOfMemoryError?  What part of 
OutOfMemoryError don't you understand?

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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS & JBossMQ] - Re: Fail to acknowledge a JMS message

2005-05-12 Thread genman
Well, obvious you test for this sort of case.

But AFAIK, JBoss won't send duplicate messages.

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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JCA/JBoss] - ManagedConnection shared by multiple Connections

2005-05-12 Thread camueller
We are developing a J2EE application where multiple clients (EJBs) can connect 
simultanously to a device connected via single TCP-style connection. The 
communication protocol _does_ support concurrent communication of clients over 
this single connection.
Using JCA (NoTransaction, Managed) we decided to manage the TCP connection 
inside a ManagedConnection. EJB clients would retrieve a Connection which 
possibly  uses the same ManagedConnection as another EJB client if both have to 
communicate with the same device. According to the spec, chapter 6.5.4.2, 
multiple Connections sharing a ManagedConnection should be supported.
However we experienced the following:
If one EJB requests an Connection a corresponding ManagedConnection is created 
and the EJB client then executes an Interaction. While the interaction is 
running, if another EJB client requests a Connection with the same 
ConnectionSpec, the JBoss ConnectionManager always calls 
createManagedConnection() on the ManagedConnectionFactory. Since the 
ManagedConnection represents the communication channel to the device we cannot 
create a second one. Instead we want to create a new Connection but for the 
already existing ManagedConnection.
How could we accomplish this?

Axel


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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - binding jboss to specific network interface

2005-05-12 Thread golubec
i have jboss runnig at host with several network interfaces(ip addresses) , so 
how could i choose interface jboss will listen to requests from ? By default , 
it start at localhost.

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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation & Configuration] - binding jboss to specific network interface

2005-05-12 Thread golubec
i have jboss runnig at host with several network interfaces(ip addresses) , so 
how could i choose interface jboss will listen to requests from ? By default , 
it start at localhost.

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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [News & Announcements] - Re: CVS/Forum/Mailing List Changes

2005-05-12 Thread [EMAIL PROTECTED]
Use the [EMAIL PROTECTED] mailing list given the CVSRepository wiki, not this 
forum. Problems reports here will be deleted.

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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Using MySql

2005-05-12 Thread jonghun95
I am trying to use MySql as DB. But I do not want CMP so there will be no 
jbosscmp-jdbc.xml. Then how do I configure to use MySql in my project? Which 
file should I modify and how?

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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Security & JAAS/JBoss] - jboss4.0.2 web-service auth and non-java clients

2005-05-12 Thread singular_droid
I have a merely simple web-service under jboss4.0.0 and now moving it on 4.0.2. 
this is the part of my login-config.xml:

  | 
  |
  |   
  |  java:/OracleDS
  |  SELECT PASS FROM 
trate.dilers_auth WHERE LOGIN=?
  |  SELECT role,'Roles' FROM 
WS_USERROLES WHERE USERNAME=?
  |   
  |
  | 
  | 
It works fine under 4.0.0 and after redeployment into 4.0.2 my clients can't 
login properly. I have tested my web service with some simple JUnit test and 
find out that now password in soap auth-header is encrypted. But I don't know 
with what algorithm. And I have found nothing about this in wiki.

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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossCache] - Problem with cluster under same VM

2005-05-12 Thread gustavo.ambrozio
I'm new to JBossCache and I can't see what I'm doing wrong.

Basically, I'm testing JBossCache to verify if it's behaviour can solve my 
problem. I wrote the following class (simplified):


  | public class TreeCacheTest implements Runnable
  | {
  | private static boolean testEnds = false;
  | private String id;
  | 
  | public static void main(String[] args)
  | {
  | new Thread(new TreeCacheTest("1")).start();
  | new Thread(new TreeCacheTest("2")).start();
  | new Thread(new TreeCacheTest("3")).start();
  | }
  | 
  | public TreeCacheTest(String id)
  | {
  | this.id = id;
  | }
  | 
  | public void run()
  | {
  | Util.sleep((long) (Math.random()*5000));
  | 
  | try
  | {
  | TreeCache tree = new TreeCache();
  | tree.setFetchStateOnStartup(true);
  | tree.setClusterName("Test");
  | tree.setClusterProperties("state_transfer.xml");
  | tree.setCacheMode(TreeCache.REPL_SYNC);
  | tree.createService();
  | tree.startService();
  | 
  | long end = System.currentTimeMillis() + 1 + (long) 
(Math.random()*5000);
  | while (end > System.currentTimeMillis())
  | {
  | long wait = (long) (Math.random()*1000);
  | Util.sleep(wait);
  | synchronized(TreeCacheTest.class)
  | {
  | if (testEnds) break;
  | }
  | tree.put("/a", id+"_"+wait, new Long(wait));
  | }
  | 
  | synchronized(TreeCacheTest.class)
  | {
  | testEnds = true;
  | }
  | 
  | Set set = tree.getKeys("/a");
  | System.out.println("ended  "+id+" "+set.size());
  | } catch (Exception e) {
  | e.printStackTrace();
  | }
  | }
  | }
  | 

This code starts 3 threads with different ids so I can track what everyone is 
doing. Each thread adds nodes to the cache for about 10 seconds. When the first 
one stops, all threads stop (using the static variable testEnds). So, when 
these threads stop, I think they should all have the same data, right?  Well, 
that's not the case I get the following lines at the end of the test:

ended  1 42
ended  3 44
ended  2 42

Well, it varies from test to test, but they never have the same number of 
members in their cache. What am I missing here?? Maybe my cluster 
configuration (state_transfer.xml):


  | 
  | 
  | 
  | 
  | 
  | 
  | 
  | 
  | 
  | 
  | 
  | 
  | 
  | 
  | 

Thanks for the help.

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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Javassist user questions] - Re: jdk 1.5 JBoss 3.2.7 / Error NoClassDefFoundError...

2005-05-12 Thread darranl
What is Javaassist?

Javassist (Java programming assistant) is a class library for editing Java 
bytecode in Java;

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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS & JBossMQ] - Re: Cannot send a message to the JMS Server

2005-05-12 Thread darranl
3.2.3 is quite an old version of JBoss, if you need the 3.2.x series have you 
tried this with the latest to see if it still a problem?

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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - JBoss 4.01 SP1 problem deploying war file

2005-05-12 Thread bconnell
I am trying to get an application called Vernon Browser working on JBoss 4.01 
SP1 running on a Windows 2003 server, with a SQL Server 2000 database behind it.

I have installed the JDK Version 1.5.0.02, SQL Server 2000 Driver for JDBC 
Service Pack 3, and JBoss 4.0.1 SP1.

JBoss is installed and it is running and I can see the console on 
http://localhost:8080/jmx-console.

I have also installed the isapi_redirector2.dll (from the tomcat website) so 
IIS will pass jsp requests to JBoss, and IIS Manager shows this as working i.e. 
I get a green arrow. (Although I have no way to test this is really working? 
Any suggestions?)

So now I just need some guidance as to the final steps to get the Vernon 
Browser running.

The instructions I have say to copy opac.ear directory from the CD to 
jboss\server\default\deploy, I have done this but it is not working.

I get the following messages

10:19:22,657 ERROR [URLDeploymentScanner] Incomplete Deployment listing:
Incompletely deployed packages:
[EMAIL PROTECTED] { url=file:/C:/jboss/jboss-4.0.1sp1
/server/default/deploy/opac.ear/opac-web.war/ }
  deployer: [EMAIL PROTECTED]
  status: Deployment FAILED reason: URL file:/C:/jboss/jboss-4.0.1sp1/server/def
ault/deploy/opac.ear/opac-web.war/ deployment failed
  state: FAILED
  watch: file:/C:/jboss/jboss-4.0.1sp1/server/default/deploy/opac.ear/opac-web.w
ar/WEB-INF/web.xml
  altDD: null
  lastDeployed: 1115889535197
  lastModified: 1115826829821
  mbeans:

[EMAIL PROTECTED] { url=file:/C:/jboss/jboss-4.0.1sp1
/server/default/deploy/opac.ear/ }
  deployer: [EMAIL PROTECTED]
  status: Deployment FAILED reason: URL file:/C:/jboss/jboss-4.0.1sp1/server/def
ault/deploy/opac.ear/opac-web.war/ deployment failed
  state: FAILED
  watch: file:/C:/jboss/jboss-4.0.1sp1/server/default/deploy/opac.ear/META-INF/a
pplication.xml
  altDD: null
  lastDeployed: 1115889535197
  lastModified: 1115826829921
  mbeans:

MBeans waiting for other MBeans:
ObjectName: jboss.web.deployment:war=opac-web.war,id=701403341
 state: FAILED
 I Depend On:
 Depends On Me: org.jboss.deployment.DeploymentException: URL file:/C:/jboss/jbo
ss-4.0.1sp1/server/default/deploy/opac.ear/opac-web.war/ deployment failed
ObjectName: jboss.j2ee:service=EARDeployment,url='opac.ear'
 state: CREATED
 I Depend On:
 Depends On Me:

MBEANS THAT ARE THE ROOT CAUSE OF THE PROBLEM:
ObjectName: jboss.j2ee:service=EARDeployment,url='opac.ear'
 state: CREATED
 I Depend On:
 Depends On Me:
ObjectName: jboss.web.deployment:war=opac-web.war,id=701403341
 state: FAILED
 I Depend On:
 Depends On Me: org.jboss.deployment.DeploymentException: URL file:/C:/jboss/jbo
ss-4.0.1sp1/server/default/deploy/opac.ear/opac-web.war/ deployment failed

10:19:23,758 INFO  [Http11Protocol] Starting Coyote HTTP/1.1 on http-0.0.0.0-808
0
10:19:24,359 INFO  [ChannelSocket] JK2: ajp13 listening on /0.0.0.0:8009
10:19:24,479 INFO  [JkMain] Jk running ID=0 time=0/320  config=null
10:19:24,609 INFO  [Server] JBoss (MX MicroKernel) [4.0.1sp1 (build: CVSTag=JBos
s_4_0_1_SP1 date=200502160314)] Started in 1m:32s:854ms

Does anyone know why the war deployment might fail? and what can I do to fix it?

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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Javassist user questions] - jdk 1.5 JBoss 3.2.7 / Error NoClassDefFoundError... org

2005-05-12 Thread EricT2004
I was wondering if anyone has had problems with jaxen in ver 3.2.7. 
I'm getting the following error:

root cause

java.lang.NoClassDefFoundError: org/jdom/Text
org.jaxen.jdom.JDOMXPath.(JDOMXPath.java:100)

Thanks,
Eric

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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS & JBossMQ] - Re: Cannot send a message to the JMS Server

2005-05-12 Thread bkmenon
Hello is there anyone, who is watching these posts? Or nobody is interested in 
replying for messages?

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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Empty web-console navigation tree

2005-05-12 Thread Hacki.Wimmer
Hi,
I have installed jboss-4.0.1sp1. Most will be fine. I can deploy EJBS, start 
and stop the server, an so on. But if if want to view the web-console 
(http://localhost:8080/web-console) the left navigation tree will be an empty 
gray frame (The right frame will be displayed correct).

Whats going wrong?

Many thanks . . . 

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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Re: .NET calling WebService

2005-05-12 Thread Scharlau
Hi,

here's the example as mentioned. It calls a basic hello world service, which 
returns a Person object with their name and age.

First, use wsdl.exe, which I call from a bat file, and which generates the 
appropriate cs file for me, which I then use in the client.

anonymous wrote : \..\..\Progra~1\Microsoft.NET\SDK\v1.1\Bin\wsdl 
/out:ws4eeProxy.cs http://localhost:8080/simple-ws4ee/exactpath/jse?wsdl

Second,  the client cs file, which you can see makes use of the generated 
objects.
anonymous wrote : using System;
  | 
  | namespace ws4ee
  | {
  | class MainClass
  | {
  | public static void Main(string[] args)
  | {
  | Console.WriteLine("ws4ee doc lit from jboss!");
  | HelloService ap = new ws4ee.HelloService();
  | 
  | Person p = new Person();
  | string s = "bill";
  | getHelloWorld ghw = new getHelloWorld();
  | ghw.String_1 = s;
  | getHelloWorldResponse ghwr = new getHelloWorldResponse();
  | ghwr = (getHelloWorldResponse)ap.getHelloWorld(ghw);
  | p = ghwr.result;
  | Console.WriteLine(p.age + " " + p.name);
  | }
  | }
  | }
  | 


That's all there is to it, and you then have your returned object to do with as 
you please.

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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation & Configuration] - Re: Mutual authentication with JBOSS (CLIENT-CERT configuart

2005-05-12 Thread HuntEthan
I've downloaded the source file jboss-4.0.2.tar.bz2 and extracted it. Then I've 
ececuted the file build.bat in the folder build. The build was succesfull after 
4 minutes calculating. What I've to do now? I've tried to execute the file 
build.bat in the testsuite folder, but build failed 
(...\testsuite\build.xml:290: Compile failed; see the compiler error output for 
details).
And what do you mean with run tomcat-ssl? Excuse I'm very new to JBoss and I 
realy don't know what to do. Please help me.

thanks

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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS & JBossMQ] - http-il servlet : can it be used to post a message via a non

2005-05-12 Thread elmizmo
Hi,

because the documentation about the http-il servlet is limited, I would like to 
ask whether or not this servlet can be used to post a message to a queue.
We need to connect non-java programs to the messaging system.  Via a url this 
would be easy.  I can write my own servlet that does this, but maybe it's 
already in jboss ?

thanks,

Henk

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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [HTTPD, Servlets & JSP] - JBoss4.0.2 use invalidated session id for new session

2005-05-12 Thread tsangcn
I am using firefox 1.0.3 on Fedora Core 3 linux.

I just try JBoss 4.0.2 and found that after I logout using session.invalidate() 
and revisit my webapp without closing the web browser, jbossweb is using the 
old session id for the newly created session.  In JBoss 4.0.1sp1, a new session 
id is generated for the newly created session.

Using the invalidated session id for the new session in JBoss 4.0.2 ruin my way 
of login.  Is there any parameter to configure JBoss to generated a new session 
id for a new session when the web browser is not closed.


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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Re: Invalid invocation, check your deployment packaging in J

2005-05-12 Thread adrian.bigland
I'm playing around with different approaches to dealing with isolated EARs, and 
I get this error when:

a) I've scoped the classloader for the EAR:



Cyrus.classloading:loader=application registry
 
java2ParentDelegation=true 
 



b) set JNDI to call-by-value (so the EJB home object is deserialized into the 
clients classloader context)

c) NOT enforced call-by-value on the EJB

I've tried one approach to enforcing call-by-value for the EJB, which makes 
everything work (as you would expect!). This is to change the standardjboss.xml 
invoker-proxy-binding to always use the marshalling invoker.
When I try setting ...true... in the EJBs 
jboss.xml instead of the proxy binding solution it doesn't seem to help. I'm 
trying to look up more info on the call-by-value attribute i.e. does it affect 
the EJB's client invoker stack or does it affect the EJB's calls out to other 
beans?

Anyway, I think that although the wiki and documentation covers the 
configuration of the classloading well, with good discussion of the issues, it 
is a bit confusing how and where you need to do semi-detyping using 
serialization to bridge the different classloaders. There seem to be several 
ways of doing this but its a bit difficult to figure out the 'best' way. Or 
perhaps I've got the wrong end of the stick...

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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Persistence & CMP/JBoss] - Re: Get the right result after an insert with an entity CMP

2005-05-12 Thread warx_sg
Hello,

reading the message with the title : "Mixed JDBC and CMP access within a single 
session method".
I cleared my mind about my doubts.
Cheers.

  Stefano

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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [News & Announcements] - Re: CVS/Forum/Mailing List Changes

2005-05-12 Thread garu
The anonymous CVS looks to have the same problems as before.
Update is still getting "No space left on device" messages related to /tmp dir 
where CVS allocates its temp files.

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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS & JBossMQ] - Fail to acknowledge a JMS message

2005-05-12 Thread jplsaez22
Hello everbody.

Just suppose a message-driven bean using bean-managed transactions, with the 
acknowledgment mode set to AUTO_ACKNOWLEDGE.

If the onMessage finish successfully, the consumed message should be 
acknowledged, so that it is removed from the queue. 

What will happen if the underlying acknowledgement process fails and the 
message is not really removed from the queue? 

Will that message be available in the future? 

In that case, is there any way to know it's a duplicated message?

Thank you very much

Juan Pedro Lopez

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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Clustering/JBoss] - Re: Tomcat-LoadBalancer-Jboss problem

2005-05-12 Thread cristibuta
Hello, maybe you can check your mod_jk log (I assume you have mod_jk for Apache 
- Tomcat load balancer). I think it would be useful if you post the jk.conf, 
workers.properties and the mod_jk log file.

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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


  1   2   >