[JBoss-user] [JBoss Seam] - How to access Seam components in a Filter class?

2006-05-28 Thread evanzeng
I have defined a Seam components like the following:

@Stateless
@Name("userManager")
public class UserManagerImpl implements UserManager {
..
}

How can I access the "userManager" component in a Filter class ?

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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Persistence,JBoss/CMP, Hibernate, Database] - Jboss 4.0.4 not closing SessionFactory? Redeploy fails

2006-05-28 Thread Duffcase
Is anybody else having problems with redeploying on 4.0.4? 
My application works fine on 4.0.3, but fails miserably on 4.0.4GA. I've traced 
down the problem to having something to do with not closing the sessionfactory. 
So it's propably either a problem with the undeploy process or cglib? 



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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Remoting] - Using JBoss Remoting with Sateful session beans

2006-05-28 Thread yair.zaslavsky
Good  day,
I would like to know if it is possible to write a JBoss remoting client that 
will address a sateful session bean.

Thanks,

Yair


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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: Help needed ! Adding SelectItems Tag in the home.jsp pa

2006-05-28 Thread kukeltje
is the new bean active? Could there be an old version somewhere on the 
classpath?

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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: how to do jbpm run on tomcat?

2006-05-28 Thread kukeltje
please no thread-hijacking and double postings. Keep postings in thread related 
to the subject the have

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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: jBPM and Exception problem

2006-05-28 Thread [EMAIL PROTECTED]
created jira issue http://jira.jboss.com/jira/browse/JBPM-666 to fix the hiding 
if the original cause.

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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB 3.0] - Extended EntityManager

2006-05-28 Thread echon
Hi,

is there a way, to share an Extended EntityManager between Stateful 
SessionBeans (SFSBs)?

If i inject an SFSB B in another A with an injected EM in both the lifecycle of 
A and B are bind together, but not the transaction. So if A is removed B is 
also removed but both synchronizations together with the Database are not 
atomic. So if B works and A fails, changes made in B were not rolledback.

If i try to write somethink like a Factory SFSB A which has an injected 
EntityManager and gives out another SFSB B were A initialized B with A's 
EntityManager i get an Exception (it looks like it is unfortunatelly not 
possible to give out the EntityManager).

Another alternative is implemented via Command-Pattern, where only SFSB A has 
an Injected EntityManager and B creates only Commands which were executed in A. 
This works, but is not very efficient.

So someone has a hint how to solve this problem?

Regards

Peter

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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Re: jboss-4.0.4.GA administration console problem

2006-05-28 Thread adrienogee
Heeelp 
I have 2 weeks to get to know ejb3, please tell me how to fix this bug !
Thanks!

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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Advanced Documentation] - Virtual Hosting

2006-05-28 Thread rohithadg
Hi all,

I'm new to jboss.

Any body know how to configure virtual hosts in jboss 4.0.3.

please let me know which file(s) should I edit, and how to add or change 
configuration properties. 

Thanks 
Rohitha

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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: how to do jbpm run on tomcat?

2006-05-28 Thread LeeMeg420
How about running jbpm on openxava.

My environment list:
jbpm-3.0.1;
eclipse 3.1.2; 
jdk 1.5.0_01; 
mysql-5.0.18-win32; 
apache-ant-1.6.5;
openxava-2.0-jetspeed2

Thax

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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Clustering/JBoss] - Re: HAPartition not bound

2006-05-28 Thread misge
I'm using AS 4.0.4GA and this is my cluster-service.xml file

  | 
  | 
  | 
  | 
  | 
  | 
  | 
  | 
  | 
  | 
  |
  |
  |
  | 
  |
  |  
  |   
  |   ${jboss.partition.name:DefaultPartition}
  | 
  |   
  |   ${jboss.bind.address}
  | 
  |   
  |   False
  |  
  |   
  |   3
  | 
  |   
  |   
  |  
  |  
  |  
  |  
  | 
  | 
  | 
  | 
  | 
  | 
  | 
  | 
  | 
  |  
  | 
  |   
  |   jboss:service=Naming
  |
  | 
  |
  |
  |
  | 
  |
  |   jboss:service=Naming
  |   
  |   jboss:service=${jboss.partition.name:DefaultPartition}
  |   
  |   /HASessionState/Default
  |   
  |   0
  |
  | 
  |
  |
  |
  | 
  |
  |   
  |   jboss:service=${jboss.partition.name:DefaultPartition}
  |   
  |   ${jboss.bind.address}
  |   
  |   1100
  |   
  |   1101
  |   
  |   50
  |   
  |   jboss.system:service=ThreadPool
  | 
  |   
  |   false
  |   
  |   ${jboss.bind.address}
  |   
  |   ${jboss.partition.udpGroup:230.0.0.4}
  |   1102
  |   
  |   16
  |   
  |   org.jboss.ha.framework.interfaces.RoundRobin
  |   
  |   
  |   
  |
  | 
  |
  |   ${jboss.bind.address}
  |   4447
  |   
  |   jboss:service=Naming
  |
  | 
  |
  |
  |   1
  |   300
  |   300
  |   6
  |   ${jboss.bind.address}
  |   4446
  |   ${jboss.bind.address}
  |   0
  |   false
  |   jboss:service=TransactionManager
  |   jboss:service=Naming
  |
  | 
  |
  | 
  |
  |
  |
  | 
  |
  |   
  |   jboss:service=${jboss.partition.name:DefaultPartition}
  |   jboss.cache:service=InvalidationManager
  |   jboss.cache:service=InvalidationManager
  |   DefaultJGBridge
  |
  | 
  | 
  | 

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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: how to assign a task with multiple users?

2006-05-28 Thread kpavan_8
Ronald,
I am using jBPM 3.1.1
I dont think the tasks assigned to group are automatically assigned to the 
individual users in the group, i tried it in the websale example. i could not
find the tasks in the UI for the individual users.

Mathew,
I think I should also do the same thing, write my own assignment handler or
compute the tasks whenever the user tries to login.
can u post u'r assignment handler code?


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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: JBPM deployment problem

2006-05-28 Thread kanishkavatsa
Koen


sorry for late reply.
Is it what you were looking for.
Can you please tell me where the stack is stored. 
I am new to this so please bear with me.

regards 
kanishk


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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - how to do jbpm run on openxava?

2006-05-28 Thread LeeMeg420
Hi,

I wan to jbpm run on openxava,but failed. 
my environment list: 
jbpm-3.0.1;
eclipse 3.1.2; 
jdk 1.5.0_01; 
mysql-5.0.18-win32; 
apache-ant-1.6.5;
openxava-2.0-jetspeed2

I've already put 
mysql.jar,hibernate-2.1.1.jar,c3p0.jar,dom4j.jar,cglib2.jar,ehcache.jar, 
odmg.jar,commons-collections.jar,commons-logging.jar,commons-beanutils.jar,commons-lang.jar
 in the lib,
jbpm.properties in the WEB-INF/classes.

But still it doesnt work.  I dont know how to fix it.

Thax



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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Security & JAAS/JBoss] - Re: Problem in persisting session data

2006-05-28 Thread Er. Ashish
Hi Cgriffith,

Thanks alot for your reply. Please find my reply inline,  MARKED AS RED. 

The flow should occur like this...

  1 User A is on page 1 

  2 User A's session expires

  3 Your session listener is invoked and does some majic to save the 
session stored objects.
  
  This is where the problem arises. We don't have any unique key here to 
store session object. If I keep the userId as key, thats not right as the same 
user can have multiple browsers open. Also I thought to keep Request object as 
the key, but unfortunately that also won't work, as the complete request object 
is changed. A new request is created (although the old parameters are kept but 
not the attributes or other information). Thus there is no unique key to store 
the session object. Also, if assume that somehow we manage to store the session 
object, what abt the request attributes. There is no way to determine those 
attributes. Page2 may expect lots of attributes in request and session to paint 
the page. 
  

  4 User A requests page 2.

  5 The container determines user A's is not authenticated/authorized 
(becuase no Principal stored in session), stores the request (and all it's 
contents) in new session, and forwards user to login page

Small correction, It stores only requets parameters not all its contents.


  6 User authentciates/authorizes, a new session is created by container, 
user is forward to original request page 2.

  7 your session listener was invoked as part of step 6, which majically 
restores session stored object.

Again the same problem of key


  If this is not what is happening, please explain where it is going wrong. 
And more importantly, how did you implement the majic? 


Hope, u have now understood my problem. Now I got the impression that this is 
something not possible and logical too. If u really want to implement this 
scenario where the application flow should be maintained even after Session 
time out, u should not keep any required information in Session or request 
attributes. otherwise it doesn't seems to be possible to again store all 
session/request attributes and put them into new session/request.

Please correct me, if u feel I am wrong.

regards,

Ashish


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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Re: Standalone client for JBoss hosted Web Service [using JB

2006-05-28 Thread vink
Still the non J2EE client is not running, it is raising the same exception 
which it is raising earlier.

Is there anybody who has tested this scenario on Jboss AS 4.0.4.GA. I think it 
is not yet in usable state for the web service clients.


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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB 3.0] - Re: @GeneratedValue for non-PK fields

2006-05-28 Thread epbernard
yes,
this case is rare enough for being left out of the spec

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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB 3.0] - Re: persistence.xml parsing

2006-05-28 Thread epbernard
Please post a JIRA issue

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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB 3.0] - Re: cache problem

2006-05-28 Thread epbernard
if you can post a minimal reproducable test case, please post a JIRa issue, 
that will help us.

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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB 3.0] - Re: Malformed URL Exception trying to access EJB 3.0 remote

2006-05-28 Thread epbernard
"kimbaltrue" wrote : I may have found my answer, but I'm not sure I like it. 
Apparently, you can't eagerly fetch OneToMany relationships. I had two such 
fetchs because I'm using disconnected entites, and had to make sure record sets 
were available.
  | 
  | How do I eagerly fetch OneToMany relationships?
use @Fetch(subselect)

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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB 3.0] - Re: @Lob doesn't clean up large objects on PostgreSQL?

2006-05-28 Thread epbernard
so doing delete from MyTable does not delete lobs on postgreSQL?!

Then PostgreSQL needs to be fixed

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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB 3.0] - Re: EJB3 Specification...

2006-05-28 Thread epbernard
you shouldn't see much difference with the RC7

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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB 3.0] - Re: Error with @EntityListeners

2006-05-28 Thread epbernard
dunno, you either have some old ejb3 annotations in your CP or the vm is going 
crazy

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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB 3.0] - Re: Change the default value to Eager

2006-05-28 Thread epbernard
1. simulate the transaction boudaries / session lifecycle in your test boudaries
2. use JBoss Embeddable eJB3  in your unit test

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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Persistence,JBoss/CMP, Hibernate, Database] - Re: redeploy har without restarting server?

2006-05-28 Thread LiuHaibin
1.delete your har file and the hibernate session factory will be closed;

2.copy your new har file in the ../deploy, then server will start the service.

if you find more convinent way,please tell me! 
thank you!


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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: How to Deploy my process?

2006-05-28 Thread LeeMeg420
single click the *.par, there will be a option window, u will find "Deploy 
Process Archive" option. 

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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Security & JAAS/JBoss] - Re: ModelLoginModule vs DatabaseServerLoginModule

2006-05-28 Thread cpegwilliam
fine. I do a post on the JBoss Portal

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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB 3.0] - Can not deploy EJB3.0 application in jboss-4.0.4.GA

2006-05-28 Thread mpaltanwale
When deployed i get the following error message:

2006-05-28 19:07:29,718 DEBUG [org.jboss.deployment.MainDeployer] Begin 
deployment start 
file:/C:/jboss-4.0.4.GA/server/default/tmp/deploy/tmp36404VCCSecurity.ear-contents/vcc_security_ejb.ejb3
2006-05-28 19:07:29,718 DEBUG [org.jboss.deployment.MainDeployer] Still no 
deployer for package in start step: vcc_security_ejb.ejb3
2006-05-28 19:07:29,734 DEBUG [org.jboss.system.ServiceController] starting 
service jboss.j2ee:service=EARDeployment,url='VCCSecurity.ear'
2006-05-28 19:07:29,734 DEBUG [org.jboss.deployment.EARDeployment] Starting 
jboss.j2ee:service=EARDeployment,url='VCCSecurity.ear'
2006-05-28 19:07:29,734 DEBUG [org.jboss.deployment.EARDeployment] Started 
jboss.j2ee:service=EARDeployment,url='VCCSecurity.ear'
2006-05-28 19:07:29,734 DEBUG [org.jboss.system.ServiceController] Starting 
dependent components for: 
jboss.j2ee:service=EARDeployment,url='VCCSecurity.ear' dependent components: []
2006-05-28 19:07:29,734 INFO  [org.jboss.deployment.EARDeployer] Started J2EE 
application: file:/C:/jboss-4.0.4.GA/server/default/deploy/VCCSecurity.ear
2006-05-28 19:07:29,734 DEBUG [org.jboss.deployment.MainDeployer] End 
deployment start on package: VCCSecurity.ear
2006-05-28 19:07:29,734 DEBUG [org.jboss.deployment.MainDeployer] Deployed 
package: file:/C:/jboss-4.0.4.GA/server/default/deploy/VCCSecurity.ear
2006-05-28 19:07:29,734 DEBUG 
[org.jboss.deployment.scanner.URLDeploymentScanner] Watch URL for: 
file:/C:/jboss-4.0.4.GA/server/default/deploy/VCCSecurity.ear -> 
file:/C:/jboss-4.0.4.GA/server/default/deploy/VCCSecurity.ear
2006-05-28 19:07:29,734 ERROR 
[org.jboss.deployment.scanner.URLDeploymentScanner] Incomplete Deployment 
listing:

--- Packages waiting for a deployer ---
[EMAIL PROTECTED] { 
url=file:/C:/jboss-4.0.4.GA/server/default/tmp/deploy/tmp36404VCCSecurity.ear-contents/vcc_security_ejb.ejb3
 }
  deployer: null
  status: Starting
  state: START_SUBDEPLOYMENTS
  watch: 
file:/C:/jboss-4.0.4.GA/server/default/tmp/deploy/tmp36404VCCSecurity.ear-contents/vcc_security_ejb.ejb3
  altDD: null
  lastDeployed: 1148868447843
  lastModified: 1148868447359
  mbeans:

The same VCCSecurity.ear works fine in jboss-4.0.3SP1.

Is there any change in the EJB 3.0 deployment from 4.0.3SP1 to 4.0.4GA ?


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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB 3.0] - Re: Performance EJB2 v EJB3

2006-05-28 Thread [EMAIL PROTECTED]
Also, you shouldn't take in consideratio any warm up times. Start measuring 
after some time after.

On the beggining of these tests usually JIT kicks on, pooles are being filled, 
and that kind of thing.

Also, make sure your test is fair to EJB2 and EJB3. they both have to be under 
the same caching circunstances. (usually for these scenarios it's better to not 
use caching at al).



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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB 3.0] - Re: Performance EJB2 v EJB3

2006-05-28 Thread [EMAIL PROTECTED]
Don't you want to contribute your tests?

That would help IMO.

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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation, Configuration & Deployment] - Re: 4.0.4GA bug port conflict snmp

2006-05-28 Thread chrisbitmead
In case you don't understand the ed editor syntax, all I did was uncomment the 
ServiceBinding section.

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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation, Configuration & Deployment] - Re: 4.0.4GA bug port conflict snmp

2006-05-28 Thread chrisbitmead

But a brand spanking new 4.0.4GA instance has the problem. Below is an actual 
cut and paste session showing the exact edits down to a new installation. This  
example is when run from the command line with run.bat, but the exact same 
thing happens running under eclipse debug mode:

/cygdrive/c/download$ rm -rf jboss-4.0.4.GA/
/cygdrive/c/download$ unzip -q ../downloads/jboss-4.0.4.GA.zip
/cygdrive/c/download$ cd jboss-4.0.4.GA/server/
/cygdrive/c/download/jboss-4.0.4.GA/server$ mkdir all2
/cygdrive/c/download/jboss-4.0.4.GA/server$ cd all2
/cygdrive/c/download/jboss-4.0.4.GA/server/all2$ (cd ../all ; tar cf - . ) | ta
r xf -
/cygdrive/c/download/jboss-4.0.4.GA/server/all2$ ed conf/jboss-service.xml
27072
/ServiceBindingManager
   
.
p
-->

   

 ports-01

 ${jboss.home.url}/docs/examples/binding-manager/
sample-bindings.xml

 

   org.jboss.services.binding.XMLServicesStoreFactory

 

   

   -->
d
w
27069
q
cd ../../bin
cmd /c run.bat -c all


and now in another window.

cd jboss-4.0.4GA/bin
cmd /c run.bat -c all2
===
.
  JBoss Bootstrap Environment
.
  JBOSS_HOME: c:\download\jboss-4.0.4.GA\bin\\..
.
  JAVA: c:/Program Files/Java/jdk1.5.0_04\bin\java
.
  JAVA_OPTS:  -Dprogram.name=run.bat -Xms128m -Xmx512m -Dsun.rmi.dgc.client.gcIn
terval=360 -Dsun.rmi.dgc.server.gcInterval=360
.
  CLASSPATH: c:/Program Files/Java/jdk1.5.0_04\lib\tools.jar;c:\download\jboss-4
.0.4.GA\bin\\run.jar
.
===
.
12:13:39,687 INFO  [Server] Starting JBoss (MX MicroKernel)...
12:13:39,687 INFO  [Server] Release ID: JBoss [Zion] 4.0.4.GA (build: CVSTag=JBo
ss_4_0_4_GA date=200605151000)
12:13:39,687 INFO  [Server] Home Dir: C:\download\jboss-4.0.4.GA
12:13:39,687 INFO  [Server] Home URL: file:/C:/download/jboss-4.0.4.GA/
12:13:39,687 INFO  [Server] Patch URL: null
12:13:39,687 INFO  [Server] Server Name: all2
12:13:39,703 INFO  [Server] Server Home Dir: C:\download\jboss-4.0.4.GA\server\a
ll2
12:13:39,703 INFO  [Server] Server Home URL: file:/C:/download/jboss-4.0.4.GA/se
rver/all2/
12:13:39,703 INFO  [Server] Server Log Dir: C:\download\jboss-4.0.4.GA\server\al
l2\log
12:13:39,703 INFO  [Server] Server Temp Dir: C:\download\jboss-4.0.4.GA\server\a
ll2\tmp
12:13:39,703 INFO  [Server] Root Deployment Filename: jboss-service.xml
12:13:40,062 INFO  [ServerInfo] Java version: 1.5.0_04,Sun Microsystems Inc.
12:13:40,062 INFO  [ServerInfo] Java VM: Java HotSpot(TM) Client VM 1.5.0_04-b05
,Sun Microsystems Inc.
12:13:40,062 INFO  [ServerInfo] OS-System: Windows 2000 5.0,x86
12:13:40,453 INFO  [Server] Core system initialized
12:13:42,265 INFO  [ServiceBindingManager] Initializing store
12:13:42,265 INFO  [ServiceBindingManager] Using StoreURL: file:/C:/download/jbo
ss-4.0.4.GA/docs/examples/binding-manager/sample-bindings.xml
12:13:42,890 INFO  [WebService] Using RMI server codebase: http://PCL0003215:818
3/
12:13:42,921 INFO  [Log4jService$URLWatchTimerTask] Configuring from URL: resour
ce:log4j.xml
12:13:43,156 INFO  [NamingService] JNDI bootstrap JNP=/0.0.0.0:1199, RMI=/0.0.0.
0:1198, backlog=50, no client SocketFactory, Server SocketFactory=class org.jbos
s.net.sockets.DefaultSocketFactory
12:13:46,609 INFO  [SubscriptionManager] Bound event dispatcher to java:/EventDi
spatcher
12:13:47,531 WARN  [ServiceController] Problem starting service jboss.jmx:name=S
nmpAgent,service=snmp,type=adaptor
java.net.BindException: Address already in use: Cannot bind
at java.net.PlainDatagramSocketImpl.bind0(Native Method)
at java.net.PlainDatagramSocketImpl.bind(PlainDatagramSocketImpl.java:82
)
at java.net.DatagramSocket.bind(DatagramSocket.java:368)
at java.net.DatagramSocket.(DatagramSocket.java:210)
at java.net.DatagramSocket.(DatagramSocket.java:261)
at org.opennms.protocols.snmp.SnmpPortal.(SnmpPortal.java:295)
at org.opennms.protocols.snmp.SnmpPortal.(SnmpPortal.java:257)
at org.opennms.protocols.snmp.SnmpAgentSession.(SnmpAgentSession.j
ava:369)
at org.jboss.jmx.adaptor.snmp.agent.SnmpAgentService.startAgent(SnmpAgen
tService.java:587)
at org.jboss.jmx.adaptor.snmp.agent.SnmpAgentService.startService(SnmpAg
entService.java:506)
at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanS
upport.java:289)
at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMB
eanSupport.java:245)
at sun.reflect.GeneratedMethodAccessor4.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
sorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:585)
at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatch
er.java:155)
at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
  

[JBoss-user] [Security & JAAS/JBoss] - what ist what: jaas, jbossSX, httpAuth

2006-05-28 Thread paper
Hi All,

I've a big problem. I developed a JBoss / Seam / JSF / EJB3 App for my 
mastethesis. everything works fine, but now i've write about and to describe 
how it works. 
the security parts are my problem, i don't exactly know, what are the basic 
technologies (jaas, jbossSX, httpAuth, ...) for the different parts.

I use FormAuth on the web layer, and fetch the userprincipal on ejb layer from 
ejb-context. everything that follows is in my own datamodel, which i know to 
describe ;)

Any hints wellcome!
Thanks fr help


my login service conf:


  | 
  | META-INF/termtimerSecurity-config.xml
  | 
  | 
  | jboss.security:service=XMLLoginConfig
  | 
  | 
  | 
  | jboss.security:service=JaasSecurityManager
  | 
  | 
  | 

and
my login config:

  | 
  | 
  | 
  | 
  | 
  | guest
  | 
  | 
  | java:/TermTimerDatabaseDS
  | 
  | 
  | select password from user where 
username=?
  | 
  | 
  | select userrole.rolename as 
userRoles,"Roles" from userrole, user_userrole, user where
  | 
userrole.id=user_userrole.roles_id
  | and
  | user_userrole.user_id=user.id
  | and
  | user.username=?
  | 
  | 
  | 
  | 
  | guest
  | 
  | 
  | 
  | 
  | 

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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: CMS access for any registered user.

2006-05-28 Thread johnpoole
Thanks for the reply Silicio. 
Is there a security link in the CMS admin portlet? I can't find it.

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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Management, JMX/JBoss] - Re: org.jboss.varia - Where is it?

2006-05-28 Thread nvanevski
Yes, that's it.

I was actually looking at the client libraries (at least, the ones that Borland 
JBuilder automatically loads in the classpath). 

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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - CMS portlet and file privileges like Unix FS

2006-05-28 Thread Silicio
I'm serching for a portlet (or servlet or something else) that permit upload 
for register users for integrating into Jboss Portal. Every user has own home 
directory where files begin uploaded and other users cannot read (see too) or 
edit them if they not have correct rights, like unix file system... something 
like this -rwxrw-r--
My users shold be able to change privileges for each file, I'm interested only 
in read and write privilege, not matter about execute privilege or 
directory/link status. 
Has someone ever heard existence of portlet helpful to me?

Thanks in advance.

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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Help needed ! Adding SelectItems Tag in the home.jsp page

2006-05-28 Thread ssquare
Hi,

 In jbpm demo environment,  I am trying to add two checkboxes for languages 
using SelectManyCheckBox in the home.jsp file and its associated details in the 
homeBean.java. 

private String[] lang =null;

  public String[] getLang(){
return lang;  
 }

 public void setLang(String[] s) {
lang=s;
 }
 
 public SelectItem[] getLangItems() {
 return langItems;
  }


  private static SelectItem[] langItems = new SelectItem[]{
  new SelectItem("ENGLISH"),
  new SelectItem("GERMANY"),
  };


JSP side:


  
  


When I access localhost:8080/jbpm/faces.home.jsp I get the folowing exception: 
I modified the deployed home.jsp file as I could not make the changes made in 
resources/home.jsp into the deployed home.jsp. Could anyone tell me what I am 
missing here?


javax.servlet.ServletException: Bean: org.jbpm.webapp.bean.HomeBean, property: 
lang
javax.faces.webapp.FacesServlet.service(FacesServlet.java:109)

org.jbpm.webapp.filter.AuthenticationFilter.doFilter(AuthenticationFilter.java:25)

org.jbpm.webapp.filter.PersistenceFilter.doFilter(PersistenceFilter.java:28)
org.jbpm.webapp.filter.ContextFilter.doFilter(ContextFilter.java:19)
org.jbpm.webapp.filter.LogFilter.doFilter(LogFilter.java:38)

org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:81)


Thanks for your help

-Siv


  

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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB 3.0] - Re: EntityManager and exceptions

2006-05-28 Thread tzablock
Ok maybe I'll specify the question in a different way:

How can I use a non-injected entity manager?

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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - return attachment example?

2006-05-28 Thread omatzura
Hi!

are there any examples/tutorials available on how to return attachment(s) from 
a POJO or EJB? the user-guide only shows how to send them.. 

thanks for any help!

/Ole

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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Remoting] - Re: ServerThread never dies

2006-05-28 Thread [EMAIL PROTECTED]
I thought this had been fixed.  A test case would be great, but obviously 
having one for something like this is close to impossible.  Can you create a 
jira issue for this and will look into it again.

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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - cant get the 404GA running from eclipse IDE

2006-05-28 Thread woodmawa1
Just starting out and have run into a problem

run the install for jboss 404 ga.

if i go to the bin dir and run by hand it starts fine.  Kill server.

go into eclipse with 1.6GA IDE 

I try and setup a server on the bottom line of the screen

vm options are 

  | -Dprogram.name=run.bat -Djava.endorsed.dirs=C:/Program 
Files/jboss-4.0.4.GA/bin/../lib/endorsed -Xms128m -Xmx512m 
  | 

and working directory 

  | C:/Program Files/jboss-4.0.4.GA/bin
  | 

when i try and start the server from within the IDE it fails and I get 

console error 
[list=]
java.lang.NoClassDefFoundError: Files/jboss-4/0/4/GA/binlib/endorsed
Exception in thread "main" 

  | 
  | and the server wont run.
  | 
  | 
  | If i run the server by hand outside of eclipse and try - it claims 
(correctly ) that port 8080 is in use.
  | 
  | what am i missing - this is most frustrating.  EJB3 may be the way to go 
but i cant get past the first hurdle.  
  | 

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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Remoting] - Re: InvokerLocator: Why always resolve(host) ?

2006-05-28 Thread [EMAIL PROTECTED]
There is already a forum thread on this 
(http://www.jboss.com/index.html?module=bb&op=viewtopic&t=82345&start=0&postdays=postDays&postorder=postOrder&highlight=highlight)
 and a jira issue (http://jira.jboss.com/jira/browse/JBREM-497).

Although I still perfer to resolve a host name only once (and not per call) I 
can certainly see there are cases in which delaying the resolution until 
reaches the client would be beneficial.  So the jira issue basically states 
that if someone configures to use host name, it will be used.

However, one of the real problems with this is what to do about the 
InvokerLocator's equals() method. Currently it compares the hash code of the 
internal uri value. So if have 'socket://localhost:1234' and 
'socket://127.0.0.1:1234' they will not evaluate as being equal. One way to get 
around this would be to during runtime, check the ip value of the host name and 
evaluate that way. However this will make things like putting a InvokerLocator 
in a HashMap very expensive as will have to do a resolution on the host name 
each time.

If have any suggestions on how to solve this problem, will make resolution of 
this issue come much faster.

Thanks.

-Tom


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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Remoting] - Re: how to know if a transport requires SSL configuration?

2006-05-28 Thread [EMAIL PROTECTED]
To provide this functionality, I would prefer to have the invoker 
implementations provide the flag needed to determine if is secured by ssl so 
that if another transport is added, this can be determined during runtime.  
Then maybe have another method within InvokerRegistry that can also do the up 
front check as well.

http://jira.jboss.com/jira/browse/JBREM-499

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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Remoting] - Re: ssl key alias and key password configurable only on one

2006-05-28 Thread [EMAIL PROTECTED]
Originally, the idea was that the SSLSocketBuilder would be only used on the 
server side (for ssl server socket creation) and thus only needed keystore 
info.  The RemotingSSLSocketFactory was intended only for use on the client 
side (thus only needed truststore info).  

Recently, it has become clear that this separation of the two is not always 
possible (or needed).  So SSLSocketBuilder will be changed to support client 
(ssl socket) and server (ssl server socket) operations and will then make so 
the RemotingSSLSocketFactory is not needed (think John has just finished this 
work, but am trying to catch up on my backlog of e-mails and forum postings).

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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Remoting] - Re: error while shutting down multicast detector

2006-05-28 Thread [EMAIL PROTECTED]
http://jira.jboss.com/jira/browse/JBREM-498

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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Getting Started Documentation] - Re: JBoss Eclipse IDE TrailBlazer with EJB 3.0?

2006-05-28 Thread grosensteel
Can someone comment to when the JBoss Eclipse IDE TrailBlazer with EJB 3.0 will 
be ready? I am looking for a tutorial that shows how to create AND deploy the 
EJB 3.0 project using the JBoss Eclipse IDE. The EJB 3.0 Trail only shows how 
to create the java files, not configure a project,compile, and deploy. Is there 
some other place this information is at?   Thanks in advance, Gregory

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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Security & JAAS/JBoss] - Re: problem 'timing out' JAAS jboss login

2006-05-28 Thread afjochnick
Junkie, 

yeah, you got it right, user basically gets a popup window, app first 
authenticates directly against our LDAP, then uses jboss clientloginmodule to 
put params in, which then are used when client app uses EJB's on the jboss 
server. EJB's are setup so that access is secured through LDAP, i.e. the jboss 
server then makes the authentication to the same LDAP server, with the 
credentials provided in the EJB call. Hope that explained it... :) 

So, since i wasn't 100% in the loop on how the LDAP protocol worked, i had 
hoped on some handle/session ID that would be sent back and forth after the 
"initial LDAP login" against the jboss server which then would be cached, 
session like, but that apparently is not how it works, unfortunately. 

If you have any other idea, I'm all ears!

Cheers



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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: jBPM and Exception problem

2006-05-28 Thread drapierwim
"[EMAIL PROTECTED]" wrote : Looks like jBPM is being naughty and swallowing the 
underlying exception. Bad jBPM! 
  | 
  | What version of jBPM is this?
  | 
  | But a breakpoint in addBooking() and find the real exception.

Ok something wierd happend here, i've restarted my AS marked my method with a 
breakpoint and started debugging... result everything worked well.

The only thing I've done was making the transaction(entity) class a non seam 
component again, don't know if that was the problem. I will surely test this 
again later on, Thanks

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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: Files Uploaded in CMS

2006-05-28 Thread Silicio
Downloading problem not yet resolved.
I try to download jboss_logo.gif putting in the browser 
http://localhost:8086/portal/content/default/images/jboss_logo.gif as specified 
in the portal reference guide, it works. I see this gif by CMSAdminportlet in:
+\
  |   +default
  |  +images
  | +jboss_images.gif

Now I have other files, uploaded by CMS, for example prova.txt in the root 
directory:
+\
  |   +prova.txt
I've tried the same, putting in the address bar of the browser 
http://localhost:8086/portal/content/prova.txt, but without success.
Where's my fault?

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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Security & JAAS/JBoss] - Combination of LdapExtLoginModule and BaseCertLoginModule

2006-05-28 Thread logankiefer
I'm currently using LdapExtLoginModule to take advantage of ldap searches 
features.  This works great.   However, our apps also use certificates so our 
user does not need to login if they have a cert.  I was looking for something 
like CertRolesLoginModule or DatabaseCertLoginModule but one for LDAP (e.g. 
something like LdapExCertLoginModule).  I don't see anything like this in the 
api and wanted to see if anyone had either come across this problem or if their 
was a solution done the road before I implement a custom module that will do 
this for me.

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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: jBPM and Exception problem

2006-05-28 Thread [EMAIL PROTECTED]
seems that this is a problem copied from el:  the root cause is a special 
member instead of using the exception cause.  

public class ELException
  |   extends Exception
  | {
  |   private static final long serialVersionUID = 1L;
  | 
  |   //-
  |   // Member variables
  |   //-
  | 
  |   private Throwable mRootCause;
  | 
  |   //-
  |   /**
  |* Creates an ELException with no detail message.
  |**/
  |   public ELException ()
  |   {
  | super ();
  |   }
  | 
  |   //-
  |   /**
  |* Creates an ELException with the provided detail message.
  |*
  |* @param pMessage the detail message
  |**/
  |   public ELException (String pMessage)
  |   {
  | super (pMessage);
  |   }
  | 
  |   //-
  |   /**
  |* Creates an ELException with the given root cause.
  |*
  |* @param pRootCause the originating cause of this exception
  |**/
  |   public ELException (Throwable pRootCause)
  |   {
  | super( pRootCause.getLocalizedMessage() );
  | mRootCause = pRootCause;
  |   }
  | 
  |   //-
  |   /**
  |* Creates an ELException with the given detail message and root cause.
  |*
  |* @param pMessage the detail message
  |* @param pRootCause the originating cause of this exception
  |**/
  |   public ELException (String pMessage,
  |   Throwable pRootCause)
  |   {
  | super (pMessage);
  | mRootCause = pRootCause;
  |   }
  | 
  |   //-
  |   /**
  |* Returns the root cause.
  |*
  |* @return the root cause of this exception
  |*/
  |   public Throwable getRootCause ()
  |   {
  | return mRootCause;
  |   }
  | }
  | 



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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: java.lang.NullPointerException at at org.jboss.seam.con

2006-05-28 Thread [EMAIL PROTECTED]
Then I don't know. Perhaps you have two SeamPhaseListeners registered.

Use your debugger.

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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: java.lang.NullPointerException at at org.jboss.seam.con

2006-05-28 Thread MmarcoM
hello gavin,
 but problem here is that i am not clicking at all...
i am  just loading a page..


  | http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
  | http://www.w3.org/1999/xhtml";>
  | 
  | 
  | 
  | Untitled Document
  | 
  | 
  | 
  | 
  | 
  | 

it is while this page is getting loaded that everythings falls over  :(

is thtere any workaround that you can suggest?

thanks and regards
 marco

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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: jBPM and Exception problem

2006-05-28 Thread [EMAIL PROTECTED]
Looks like jBPM is being naughty and swallowing the underlying exception. Bad 
jBPM! 

What version of jBPM is this?

But a breakpoint in addBooking() and find the real exception.

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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: java.lang.NullPointerException at at org.jboss.seam.con

2006-05-28 Thread [EMAIL PROTECTED]
This can sometimes happen if you double-click.

You might need some solution to serialize requests.

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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation, Configuration & Deployment] - Problem with JNDI EJB3

2006-05-28 Thread wikey
Hi,

I've followed the tutorial from
http://www.laliluna.de/ejb-3-tutorial-jboss.html

and created a jar file FirstEJB3Tutorial.jar. But, when when deployed the jar 
file to the JBOSS 4.0.4, the jmx-console does not show the JNDI deployed 
service. Please help.

The jar file available at
http://www.laliluna.de/download/first-ejb3-tutorial.zip

Thanks in advance.


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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: dvdstore app fails on JBOSS4.0.4GA / solved

2006-05-28 Thread MmarcoM
hi all,
 my mistake. i guess i was using an older version, 
everything looks fine as of now..

thanx and regards 
marco

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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: dvdstore app fails on JBOSS4.0.4GA

2006-05-28 Thread MmarcoM
Hello,
 i forgot to mention that i am using seam from CVS and jboss-4.0.4.GA...

will it make any difference (in better or worse :) ?

regards
 marco

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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB 3.0] - Re: querying with persited enums throws class cast exception

2006-05-28 Thread binario
Seeing as no one seems to be able to help me with this, I'd like to try to 
debug through ejb3 to see where the actual problem is. Can someone point me to 
a source download so I can debug it in eclipse please?

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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - java.lang.NullPointerException at at org.jboss.seam.context

2006-05-28 Thread MmarcoM
Hi all,
 i m trying to write a small app using jboss-seam
i am using latest seam from CVS and i am deplolying on jboss-4.0.4.GA.
i am getting this exception while accessing a index.html page (similar to those 
of examples...), and i am using facelets...

here's exception

  | 17:14:48,781 ERROR [SeamExceptionFilter] uncaught exception handled by Seam
  | javax.servlet.ServletException
  | at javax.faces.webapp.FacesServlet.service(FacesServlet.java:125)
  | at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl
  | icationFilterChain.java:252)
  | at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF
  | ilterChain.java:173)
  | at 
org.jboss.seam.servlet.SeamRedirectFilter.doFilter(SeamRedirectFilter
  | .java:45)
  | at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl
  | icationFilterChain.java:202)
  | at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF
  | ilterChain.java:173)
  | at 
org.jboss.seam.servlet.SeamExceptionFilter.doFilter(SeamExceptionFilt
  | er.java:89)
  | at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl
  | icationFilterChain.java:202)
  | at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF
  | ilterChain.java:173)
  | at 
org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFi
  | lter.java:96)
  | at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl
  | icationFilterChain.java:202)
  | at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF
  | ilterChain.java:173)
  | at 
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperV
  | alve.java:213)
  | at 
org.apache.catalina.core.StandardContextValve.invoke(StandardContextV
  | alve.java:178)
  | at 
org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(Securit
  | yAssociationValve.java:175)
  | at 
org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValv
  | e.java:74)
  | at 
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.j
  | ava:126)
  | at 
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.j
  | ava:105)
  | at 
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineVal
  | ve.java:107)
  | at 
org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.jav
  | a:148)
  | at 
org.apache.coyote.http11.Http11Processor.process(Http11Processor.java
  | :869)
  | at 
org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.p
  | rocessConnection(Http11BaseProtocol.java:664)
  | at 
org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpo
  | int.java:527)
  | at 
org.apache.tomcat.util.net.MasterSlaveWorkerThread.run(MasterSlaveWor
  | kerThread.java:112)
  | at java.lang.Thread.run(Unknown Source)
  | 17:14:48,796 ERROR [[Faces Servlet]] Servlet.service() for servlet Faces 
Servlet
  |  threw exception
  | java.lang.NullPointerException
  | at 
org.jboss.seam.contexts.PageContext.getCurrentReadableMap(PageContext
  | .java:123)
  | at org.jboss.seam.contexts.PageContext.get(PageContext.java:103)
  | at org.jboss.seam.core.Manager.restoreConversation(Manager.java:907)
  | at 
org.jboss.seam.jsf.AbstractSeamPhaseListener.restoreAnyConversationCo
  | ntext(AbstractSeamPhaseListener.java:81)
  | at 
org.jboss.seam.jsf.SeamPhaseListener.afterPhase(SeamPhaseListener.jav
  | a:63)
  | at 
org.jboss.seam.jsf.SeamExtendedManagedPersistencePhaseListener.afterP
  | hase(SeamExtendedManagedPersistencePhaseListener.java:109)
  | at 
org.apache.myfaces.lifecycle.LifecycleImpl.informPhaseListenersAfter(
  | LifecycleImpl.java:536)
  | at 
org.apache.myfaces.lifecycle.LifecycleImpl.restoreView(LifecycleImpl.
  | java:164)
  | at 
org.apache.myfaces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java
  | :66)
  | at javax.faces.webapp.FacesServlet.service(FacesServlet.java:106)
  | at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl
  | icationFilterChain.java:252)
  | at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF
  | ilterChain.java:173)
  | at 
org.jboss.seam.servlet.SeamRedirectFilter.doFilter(SeamRedirectFilter
  | .java:45)
  | at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl
  | icationFilterChain.java:202)
  | at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF
  | ilterChain.java:173)
  | at 
org.jboss.seam.servlet.SeamExceptionFilter.doFilter(SeamExceptionFilt
  | er.java:89)
  | at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl
  | icationFilterChain.java:202)
  | at 
org.apache.catalina.c

[JBoss-user] [JBoss jBPM] - Re: Problems with jbpm-starters-lit

2006-05-28 Thread hosierdm
Here is your problem:
19:44:02,593 ERROR [Http11Protocol] Error initializing endpoint
  | java.net.BindException: Address already in use: JVM_Bind:8080 

You have something already running on port 8080.  Find what that is and shut it 
down.

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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - jBPM and Exception problem

2006-05-28 Thread drapierwim
I have a SFSB method that is a part of my jBPM pageflow, when the 
UnValidBookingExeption is thrown i get an error, what is wrong here?


  | public void addBooking() {
  | if(transaction == null)
  | createTransaction();
  | try {
  | transaction.add(booking);
  | bookings = transaction.getBookings();
  | } catch (UnValidBookingException e) {
  | 
facesMessages.add(FacesMessage.SEVERITY_WARN,"#{messages['missing.account']}");
  | } catch (ImmutableTransactionException e) {
  | // TODO Auto-generated catch block
  | e.printStackTrace();
  | }
  | 

The error



  | 2006-05-28 18:31:47,442 DEBUG 
[org.jboss.resource.connectionmanager.IdleRemover] run: IdleRemover notifying 
pools, interval: 45
  | 2006-05-28 18:32:23,193 DEBUG 
[org.jboss.seam.interceptors.RemoveInterceptor] Stateful component was removed: 
journalPost
  | 2006-05-28 18:32:23,203 ERROR [org.jbpm.graph.def.GraphElement] action 
threw exception: couldn't evaluate expression '#{journalPost.addBooking}'
  | org.jbpm.JbpmException: couldn't evaluate expression 
'#{journalPost.addBooking}'
  | at 
org.jbpm.jpdl.el.impl.JbpmExpressionEvaluator.evaluate(JbpmExpressionEvaluator.java:37)
  | at org.jbpm.graph.def.Action.execute(Action.java:119)
  | at org.jbpm.graph.def.GraphElement.executeAction(GraphElement.java:235)
  | at org.jbpm.graph.def.GraphElement.executeActions(GraphElement.java:212)
  | at 
org.jbpm.graph.def.GraphElement.fireAndPropagateEvent(GraphElement.java:182)
  | at org.jbpm.graph.def.GraphElement.fireEvent(GraphElement.java:166)
  | at org.jbpm.graph.def.Transition.take(Transition.java:106)
  | at org.jbpm.graph.def.Node.leave(Node.java:382)
  | at org.jbpm.graph.exe.Token.signal(Token.java:174)
  | at org.jbpm.graph.exe.Token.signal(Token.java:137)
  | at org.jbpm.graph.exe.ProcessInstance.signal(ProcessInstance.java:229)
  | at org.jboss.seam.core.Pageflow.navigate(Pageflow.java:183)
  | at 
org.jboss.seam.jsf.SeamNavigationHandler.handleNavigation(SeamNavigationHandler.java:31)
  | at 
org.apache.myfaces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:84)
  | at javax.faces.component.UICommand.broadcast(UICommand.java:106)
  | at 
javax.faces.component.UIViewRoot._broadcastForPhase(UIViewRoot.java:90)
  | at 
javax.faces.component.UIViewRoot.processApplication(UIViewRoot.java:164)
  | at 
org.apache.myfaces.lifecycle.LifecycleImpl.invokeApplication(LifecycleImpl.java:316)
  | at 
org.apache.myfaces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:86)
  | at javax.faces.webapp.FacesServlet.service(FacesServlet.java:106)
  | at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
  | at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
  | at 
org.jboss.seam.servlet.SeamRedirectFilter.doFilter(SeamRedirectFilter.java:23)
  | at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
  | at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
  | at 
org.jboss.seam.servlet.SeamExceptionFilter.doFilter(SeamExceptionFilter.java:45)
  | at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
  | at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
  | at 
org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)
  | at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
  | at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
  | at 
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
  | at 
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
  | at 
org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:175)
  | at 
org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:432)
  | at 
org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:74)
  | at 
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
  | at 
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
  | at 
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
  | at 
org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
  | at 
org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869)
  | at 
org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:664)
  | at 
org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(P

[JBoss-user] [JBoss Portal] - Re: CMS access for any registered user.

2006-05-28 Thread Silicio
Select CMSAdmin instance, than security, than allow users to view the istance.

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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB 3.0] - Re: Circular @EJB annotation can not deploy.

2006-05-28 Thread javierpedrido
Hi,
I also had this problem. The solution is here:
http://www.jboss.com/index.html?module=bb&op=viewtopic&t=83327

Regards,
Javier

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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: JBoss Portal Webinar - May 24th 1PM EST

2006-05-28 Thread sverker
Will a recording of the webinar be made availible?

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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: dvdstore app fails on JBOSS4.0.4GA

2006-05-28 Thread [EMAIL PROTECTED]
works for me

Make sure you use "ant build" to build seam, not "ant jar".

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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: Web services and Seam

2006-05-28 Thread [EMAIL PROTECTED]
Not really correct.

For example, if I call a Seam component via RMI, Seam can set up an event 
context and application contect for me. It just cant do a session or 
conversation context because RMI can't propagate conversation or session ids.

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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: Scoping for events

2006-05-28 Thread [EMAIL PROTECTED]
No it is not clear.


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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: Injection via abstract getters

2006-05-28 Thread [EMAIL PROTECTED]
By the way, it is utterly irrelevant whether it is "conceptually" or actually 
abstract. In either case my arguments apply.

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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: Injection via abstract getters

2006-05-28 Thread [EMAIL PROTECTED]
It is difficult to test because

new ComponentA().doStuff() throws an UOE. I have to subclass the class before I 
can call its methods.

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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - dvdstore app fails on JBOSS4.0.4GA

2006-05-28 Thread MmarcoM
HI ALL,
i just got Seam from CVS and tried to compile and runt hedvdstore application 
and deploy it on Jboss4.0.4GA (installed with ejb3 profile)

i got followiing exception:

  | 8:45,437 ERROR [org.apache.myfaces.util.ClassUtils] Class 
org.jboss.seam.debug.jsf.SeamDebugPhaseListener not found
  | java.lang.ClassNotFoundException: No ClassLoaders found for: 
org.jboss.seam.debug.jsf.SeamDebugPhaseListener
  | at org.jboss.mx.loading.LoadMgr3.beginLoadTask(LoadMgr3.java:212)
  | at 
org.jboss.mx.loading.RepositoryClassLoader.loadClassImpl(RepositoryClassLoader.java:511)
  | at 
org.jboss.mx.loading.RepositoryClassLoader.loadClass(RepositoryClassLoader.java:405)
  | at java.lang.ClassLoader.loadClass(Unknown Source)
  | at java.lang.ClassLoader.loadClassInternal(Unknown Source)
  | at java.lang.Class.forName0(Native Method)
  | at java.lang.Class.forName(Unknown Source)
  | at org.apache.myfaces.util.ClassUtils.classForName(ClassUtils.java:138)
  | at 
org.apache.myfaces.util.ClassUtils.simpleClassForName(ClassUtils.java:157)
  | at org.apache.myfaces.util.ClassUtils.newInstance(ClassUtils.java:265)
  | at 
org.apache.myfaces.config.FacesConfigurator.configureLifecycle(FacesConfigurator.java:622)
  | at 
org.apache.myfaces.config.FacesConfigurator.configure(FacesConfigurator.java:133)
  | at 
org.apache.myfaces.webapp.StartupServletContextListener.initFaces(StartupServletContextListener.java:63)
  | at 
org.apache.myfaces.webapp.StartupServletContextListener.contextInitialized(StartupServletContextListener.java:46)
  | at 
org.apache.catalina.core.StandardContext.listenerStart(StandardContext.java:3729)
  | at 
org.apache.catalina.core.StandardContext.start(StandardContext.java:4187)
  | at 
org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:759)
  | at 
org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:739)
  | at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:524)
  | at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  | at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
  | at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
  | at java.lang.reflect.Method.invoke(Unknown Source)
  | at 
org.apache.commons.modeler.BaseModelMBean.invoke(BaseModelMBean.java:503)
  | at 
org.jboss.mx.server.RawDynamicInvoker.invoke(RawDynamicInvoker.java:164)
  | at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
  | at 
org.apache.catalina.core.StandardContext.init(StandardContext.java:5116)
  | at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  | at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
  | at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
  | at java.lang.reflect.Method.invoke(Unknown Source)
  | at 
org.apache.commons.modeler.BaseModelMBean.invoke(BaseModelMBean.java:503)
  | at 
org.jboss.mx.server.RawDynamicInvoker.invoke(RawDynamicInvoker.java:164)
  | at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
  | at 
org.jboss.web.tomcat.tc5.TomcatDeployer.performDeployInternal(TomcatDeployer.java:297)
  | at 
org.jboss.web.tomcat.tc5.TomcatDeployer.performDeploy(TomcatDeployer.java:103)
  | at org.jboss.web.AbstractWebDeployer.start(AbstractWebDeployer.java:371)
  | at org.jboss.web.WebModule.startModule(WebModule.java:83)
  | at org.jboss.web.WebModule.startService(WebModule.java:61)
  | at 
org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:289)
  | at 
org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:245)
  | at sun.reflect.GeneratedMethodAccessor3.invoke(Unknown Source)
  | at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
  | at jav
  | 

anyone could tell me what am i missing?

thanks and regards
 marco

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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: Layout, theme, renderSet, strategy usage property name

2006-05-28 Thread wlchung
Oh, I found the answer.   The document I used was the one comes with the portal 
2.2 src download.  It was not up-to-date.  The one in the following link is

http://labs.jboss.com/portal/jbossportal/docs



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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossCache] - Re: Distributed Transactions in Standalone Mode

2006-05-28 Thread u_arunkumar
Hi Manic,

I was messing around with all the different Isoloation levels and Node locking 
schemes. So I do think I tried Optimistinc locking. But I'll give it another 
shot and let you know the result.

Thanks,
Arun

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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: Web services and Seam

2006-05-28 Thread abirkmanis
I stand corrected - Seam does not require JSF.
But all the operation modes I've seen - JSF, servlet, remoting - assume that 
the client is HTTP-based.
Is this statement more correct? Will the next version (probably in addition to 
SOA layer, and the already existing client technology adapters) expose Seam 
functionality as plain old Java object to allow custom client technology?

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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: Scoping for events

2006-05-28 Thread abirkmanis
An application-wide instance of Init contains a map from event names to 
ObserverMethod. While each ObserverMethod certainly has a reference to 
component to be notified, this is not the feature I miss.

My problem is that this mapping from event names to observers is 
application-wide (read: monolithic), which is not consistent with value 
mappings (I mean, e.g., Component.getInstanceToInject) that use a kind of 
lexical scoping and thus it is possible to have different values bound to the 
same name.

Thus the natural workaround sounds to just store observers as values 
(bijection) and thus piggyback one feature on another, but unfortunately the 
nature of observers requires multiple independent components to contribute 
their observers to the same event name, and I do not see how to do that with 
bijection. I hope I am more clear now.

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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Security & JAAS/JBoss] - Re: getting the role name after form login

2006-05-28 Thread bezdomny
Does anyone think this code is off-base? It seemed to me that the only way to 
get the role, once the correct group was discovered, was to loop over the 
Enumeration of members. For me this will be ok since the users of my app won't 
have multiple roles assigned to them. Unless someone has a better way or there 
is a problem with this, I'm going to use it for now. Thanks again for the 
replies and help.

B

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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: Injection via abstract getters

2006-05-28 Thread abirkmanis
I might have not stressed that enough in the previous posts, but I meant the 
methods to be conceptually abstract, not formally, e.g.:
@Name("a")
public class ComponentA
{
  @In("b")
  protected IComponentB getB()
  {
throw new UnsupportedOperationException();
  }

  public void doStuff()
  {
getB().doSomeOtherStuff();
// more stuff
  }
}

Note that both class ComponentA and method getB should be abstract, but are not.

Is it against the EJB spec to have such SFSB?
Also, I do not see how this class is difficult to test.

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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: One portlet - two window

2006-05-28 Thread PMO
You could have two instances on the same portlet, one per window. Then adding 
preferences to each, so one is using controller 1 and the other controller 2.

see instance descriptor to add preferences.

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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: Problems with jbpm-starters-lit

2006-05-28 Thread beth_queiroga
The log archieve have more information.
I think this is not the better way to send the log for you.
I put the log full version in this URI:
http://www.tidbitweb.com.br/jbpm/log
Thank you.


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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JCA/JBoss] - Re: Caused by: javax.naming.NameNotFoundException: env not b

2006-05-28 Thread Niki600
I have got the same problem, and I don't know how to solve it, so if you find 
out what is the solution I will be gratefull if you post it.

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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossCache] - Re: Distributed Transactions in Standalone Mode

2006-05-28 Thread [EMAIL PROTECTED]
Have you tried optimistic locking in the JBC 1.3.x series?

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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB 3.0] - Re: PersistenceContext and EntityManager

2006-05-28 Thread rmic
In fact, I think I'm really doing something wrong ... the @EJB annotation 
doesn't work either ... 

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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Persistence,JBoss/CMP, Hibernate, Database] - Is this a Java Or JBoss bug?

2006-05-28 Thread bentins
On EJbPostCreate I get an
"IndexOutOfBoundsexception: Index: 0, Size: 0"

The following is the complete EjbPostCreate method code that fails:
public void ejbPostCreate(StatusLocal statusLocal, Long userId) 
  | throws javax.ejb.CreateException, ApplicationException {
  | Iterator relations;
  | relations = statusLocal.getReasons().iterator();
  | while (relations.hasNext()) {
  | ReasonLocal reasonLocal = (ReasonLocal) 
relations.next();
  | ReasonLocalHome reasonLocalHome = (ReasonLocalHome) 
reasonLocal.getEJBLocalHome();
  | 
this.getReasons().add(reasonLocalHome.create(reasonLocal, userId));
  | }
  | 
  | }

The dump points to the second line:
relations = statusLocal.getReasons().iterator();

here is a part of the Dump:
 java.lang.IndexOutOfBoundsException: Index:0, Size:0
  | at java.util.ArrayList.RangeCheck(ArrayList.java:546)
  | at java.util.ArrayList.get(ArrayList.java:321)
  | at com.emi.framework.bo.model.StatusBean.ejbPostCreate(StatusBean.java:120)
  | ...
  | 

This code was written a long time ago with JDK 1.4.2 and is now running under 
JDK1.5.0_06 on Solaris.

Thnx

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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: cancelling remoting requests

2006-05-28 Thread sbryzak2
I've checked into CVS support for cancelling a remote call.  Now when you 
execute your remote method, you will be returned a Call object, which has the 
following properties:

data - contains the call in serialized XML form
id - the ID of the call
callback - the callback method reference
asyncReq - the XMLHttpRequest object

There is also a new method, Seam.Remoting.cancelCall() which takes the call ID 
as a parameter.  So, if you want to cancel a call that's been executed you'd do 
something like this:


  | var myCall = Seam.Component.getInstance("myActionBean").foo();
  | // Cancel the call
  | Seam.Remoting.cancelCall(myCall.id);
  | 

Make sure you cancel the call this way, and not via the asyncReq's abort() 
method.  Also I haven't had time to test this stuff so let me know if there's 
any problems.

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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [J2EE Design Patterns] - Re: boss is not creating pool for stateless session bean

2006-05-28 Thread balellu
Even im facing the same problem i am not getting help any where in the web...iw 
onder if there is something to it.

Thanks

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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Messaging] - Re: A simple JMS Client won't work - Errors with different j

2006-05-28 Thread timfox
Is this a stand-alone client?


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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB 3.0] - Re: PersistenceUnitInfo.getNewTempClassLoader() is null.

2006-05-28 Thread jjklappenbach
I'm using EJB3.0 on jboss-4.0.4.GA and am getting this error and I am *not* 
using ORM.xml files.

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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: Passing request paramter between page

2006-05-28 Thread craig1980
Hi.
Infact this is my requirement i must change portal layout by user choice. But i 
think this is a very normal requirement. So is it possible that nobody has had 
it? If anybody has resolved this problem can he/she give me a little sample?
Thanks again for your pacience.
Regards Angelo.

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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: Actions and Tasks

2006-05-28 Thread hosierdm
You should read these two sections of the User Guide to get a feeling for the 
differences bewteen Tasks and Actions:
http://docs.jboss.org/jbpm/v3/userguide/processmodelling.html#actions
http://docs.jboss.org/jbpm/v3/userguide/taskmanagement.html#tasks

As far as your second question, there can be many transitions leaving a given 
node.  So you could assign an action on the leave-node event that you want to 
happen, regardless of which transition is taken.  Then you could take 
transition specific action depending on which transition is traversed from the 
node.  I hope that helps.

-David

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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation, Configuration & Deployment] - Re: 4.0.4GA bug port conflict snmp

2006-05-28 Thread [EMAIL PROTECTED]
Works for me.

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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Management, JMX/JBoss] - Re: org.jboss.varia - Where is it?

2006-05-28 Thread [EMAIL PROTECTED]
server/default/lib/scheduler-plugin.jar

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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user