[JBoss-user] [JBoss Seam] - Re: Does anyone know of an automatic Seam-JSF form generator

2006-07-10 Thread [EMAIL PROTECTED]
jtucker wrote : My understanding of the current hibernate application 
generation tool (I assume that's the one you are talking about) is that the 
generation happens at build-time, whereas I am talking about runtime 
generation. But perhaps in future the Seam application generator could generate 
this code :)
  | 
  | I think we could still get the information fairly portably at runtime using 
EL and the Seam or JSF VariableResolver.
  | 
  | As an example, something like this might wire up a property to display a 
menu with a list of options from a managed bean.
  | 
  | 
  |   | @UI(type=UIType.SelectOneMenu, items=#{selectItems.propOptions})
  |   | public String getProperty() {}
  |   | 

How I would approach this is to write a JSF control that can iterate over 
properties of a bean in the same way h:dataTable iterates over elements of a 
list.

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

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


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


[JBoss-user] [JBoss Seam] - Re: Can Seam be configured to support JSP and Facelets in an

2006-07-10 Thread [EMAIL PROTECTED]
right

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

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


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


[JBoss-user] [JBoss Seam] - Re: Can't get a conversational stateful bean to work

2006-07-10 Thread andrew.rw.robinson
I got it to work by starting the conversation with a factory method instead of 
just relying on the page load method.

I made the following adjustments:
  @Out(scope=ScopeType.CONVERSATION, value=adminUserList, required=false)
  |   private ListUser users;
  | 
  |   @Out(required=false, scope=ScopeType.CONVERSATION) @Valid
  |   private User editingUser;
  | 
  | ...
  |   @Begin(join=true)
  |   @Factory(adminUserList)
  |   public String onLoad() ...
  | 

And in the xhtml:
t:dataTable
  |   value=#{adminUserList}
  |   var=_user ...

That got me past my problem, but I'd still like to know what I am missing in 
terms of why the load method called from the pages.xml didn't cause a 
conversation to be started but the factory method did.


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

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


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


[JBoss-user] [JBoss Seam] - Re: @PreUpdate not being called on Seam @Entity

2006-07-10 Thread [EMAIL PROTECTED]
Emmanuel doesn't monitor this list. Ask in HEM or EJB3 forums.

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

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


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


[JBoss-user] [JBossWS] - Re: PLEASE HELP: JSR 181 EJB Endpoint (JBoss 4.0.4.GA)

2006-07-10 Thread knifegun
Anybody else?

The EJB Web Service appears to be deployed correctly and shows up in the 
http://:8080/jbossws page.  The WSDL listed in the console however still does 
not work (404).

Anything else I need to do? I am using JBoss 4.0.4 GA Patch 1.

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

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


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


[JBoss-user] [Messaging, JMS JBossMQ] - Re: Problem with ClassNotFoundException while trying to add

2006-07-10 Thread jaikiran
The LoggingService starts even before your application is deployed. As a 
result, the classes present in your application are not yet loaded by the 
classloader and hence the ClassNotFoundException. Place the jar/classes 
representing your wrapper logger in the %JBOSS_HOME%/server/default/lib 
directory so that they are visible to the classloader when the LoggingService 
is starting. For more details about classloading, have a look at:

http://wiki.jboss.org/wiki/Wiki.jsp?page=JBossClassLoadingUseCases 

http://wiki.jboss.org/wiki/Wiki.jsp?page=ClassLoadingConfiguration



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

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


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


[JBoss-user] [JBoss AOP] - Re: Interceptor ordering relative to EJB3 transaction interc

2006-07-10 Thread jnorris10
So are you suggesting I modify the main ejb3-interceptors-aop.xml or can I 
include a ejb3-interceptors-aop.xml like file in a deployable unit (ie: ear) 
that contains information on how to invoke my new aspects relative to the ejb3 
standard ones?  I have been looking at the aspectdomain test from the ejb 3 
testsuite for clues on how I might be able to do the latter, but it is unclear 
how any new aspect domains I create relate to the standard ejb3 aspects in 
terms of invocation ordering.

(Also, is there any documentation you can point me to which ties together the 
JBoss AOP stuff with how EJB3 is implemented using it?  That might help me 
understand how to extend it with my own aspects and yet still understand how my 
new aspects relate to the standard EJB3 ones).

Thanks for your patience!

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

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


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


[JBoss-user] [Clustering/JBoss] - Re: Changing Ports (two nodes, same machine, 4.0.4)

2006-07-10 Thread [EMAIL PROTECTED]
Do you see bindingservice-plugin.jar in your lib directory?

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

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


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


[JBoss-user] [Clustering/JBoss] - Re: Where to specify custom LoadBalancePolicy?

2006-07-10 Thread vishnu_vsv
Hello Kurt,

Thanks for your reply.

I don't want to send each request to the same node every time.
My requirement is like this:
Suppose first request from UserA is handled by NodeA, i want NodeA to handle 
all subsequent request from UserA. Similarly if NodeB handles first request 
from UserB, NodeB should handle all subsequent request from UserB. 

This is the constraint in our application. We are developing a application to 
create a meeting request in Microsoft Outlook directly using MAPI calls. For 
this all request from one user should be handled by one Node because of some 
profile creation problem.

To achieve this, i need to write my own LoadBalancePolicy class.
I want to know how to do this. Is it enough if i replace LoadBalancePolicy 
attribute in cluster-service.xml with my custom LoadBalancePolicy class or 
something else i need to do?

Thanks in advance.

Vishnu


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

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


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


[JBoss-user] [JBoss Seam] - Re: entity beans binding to stateless context

2006-07-10 Thread balamg
i have tried to use option (b) above. 
so in the code, i simply modified the entity bean hoping that the changes would 
get commited without explicitly invoking the entity manager, but this did not 
happen. 

i also annotated the method as @Destroy @Remove -- how can i cause the SFSB to 
be removed (from application code)

and also tried with @End. none of this commited changes to the DB. am i missing 
anything ?

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

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


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


[JBoss-user] [JBossWS] - Re: Servlet regarded as ServiceEndPoint

2006-07-10 Thread kdeboer
Thanks for the answer. I can fix this for our own code.
But we are also using novell extend portal code and we don not have control 
over this piece of software. 
I think it is a good idea to make this more 'elegant'



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

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


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


[JBoss-user] [JBoss Portal] - I have problem in starting JBoss portal application

2006-07-10 Thread Leonardpaul
Hi,

My Jboss server is starting fine and Jboss portal also get statring , tables 
are creating fine. Able to login also, but i have the message in console like 
Incompletely deployed packages 
--- Packages waiting for a deployer ---
[EMAIL PROTECTED] { url=file:/D:/Program 
Files/jboss-4.0.4.GA/server/default/deploy/jboss-portal-2.2.1-SP2-src/ }
  deployer: null
  status: null
  state: INIT_WAITING_DEPLOYER
  watch: file:/D:/Program 
Files/jboss-4.0.4.GA/server/default/deploy/jboss-portal-2.2.1-SP2-src/
  altDD: null
  lastDeployed: 1152510977073
  lastModified: 1152510072755
  mbeans:

--- Incompletely deployed packages ---
[EMAIL PROTECTED] { url=file:/D:/Program 
Files/jboss-4.0.4.GA/server/default/deploy/jboss-portal-2.2.1-SP2-src/ }
  deployer: null
  status: null
  state: INIT_WAITING_DEPLOYER
  watch: file:/D:/Program 
Files/jboss-4.0.4.GA/server/default/deploy/jboss-portal-2.2.1-SP2-src/
  altDD: null
  lastDeployed: 1152510977073
  lastModified: 1152510072755
  mbeans:



Thanks and regards
A.Peter


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

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


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


[JBoss-user] [EJB 3.0] - Re: Javassist throws SecurityException on new 4.0.4GA

2006-07-10 Thread phon
i noticed the following in my log : 

08:01:35,948 INFO  [Environment] Hibernate 3.2 cr2
08:01:35,957 INFO  [Environment] hibernate.properties not found
08:01:35,980 INFO  [Environment] Bytecode provider name : javassist

is there any way to disable javassist or to switch it back to CGLib maybe ?

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

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


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


[JBoss-user] [JBoss Seam] - Re: problem with running a Seam application

2006-07-10 Thread mnrz
[EMAIL PROTECTED] wrote : Looks OK. How about faces-config.xml?

this is my faces-config.xml

?xml version=1.0 encoding=UTF-8?
!DOCTYPE faces-config 
PUBLIC -//Sun Microsystems, Inc.//DTD JavaServer Faces Config 1.0//EN
http://java.sun.com/dtd/web-facesconfig_1_0.dtd;
faces-config

!-- Phase listener needed for all Seam applications --



phase-listenerorg.jboss.seam.jsf.SeamPhaseListener/phase-listener


/faces-config
--
component.xml




false
#{ejbName}/local





-
this is the code between body tag of index.jsp

Welcome to TestSeam

table border=0

Register

 

there is a link to a page namely register.jsp inside a folder with the name 
pages

the first page works properly but when I click on the link the exception occurs.

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

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


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


[JBoss-user] [JBoss Seam] - Re: problem with running a Seam application

2006-07-10 Thread mnrz
[EMAIL PROTECTED] wrote : Looks OK. How about faces-config.xml?

this is my faces-config.xml

  | ?xml version=1.0 encoding=UTF-8?
  | !DOCTYPE faces-config 
  | PUBLIC -//Sun Microsystems, Inc.//DTD JavaServer Faces Config 1.0//EN
  | 
http://java.sun.com/dtd/web-facesconfig_1_0.dtd;
  | faces-config
  | 
  | !-- Phase listener needed for all Seam applications --
  | 
  | lifecycle
  | 
phase-listenerorg.jboss.seam.jsf.SeamPhaseListener/phase-listener
  | /lifecycle
  | 
  | /faces-config
  | 
--
component.xml

  | components
  | 
  |component name=org.jboss.seam.core.init
  |property name=myFacesLifecycleBugfalse/property
  |property name=jndiPattern#{ejbName}/local/property
  | /component
  | 
  | component class=org.jboss.seam.core.Ejb 
  |installed=true/
  | 
  | /components
  | 
-
this is the code between body tag of index.jsp

  |   pWelcome to TestSeam/p
  |   table border=0
  |tr
  |tda href=pages/register.seamRegister/a/td/td
  | /tr
  |   /table
  | 

there is a link to a page namely register.jsp inside a folder with the name 
pages

the first page works properly but when I click on the link the exception occurs.

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

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


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


[JBoss-user] [JBoss jBPM] - Re: Using jBPM with EJB, Could you help me?

2006-07-10 Thread hien_2008
Thanks Ronald,

It's very useful to me and fixed my problem. I just replace ehcache-1.1.jar by 
using ehcache-1.2.jar and it worked

BTW: Why the servlet environment (I deployed in TOMCAT without EJB context) 
works well but EJB? what are differences between these environments?

Hien

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

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


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


[JBoss-user] [JBossCache] - Re: Eviction not working in JBossCache-1.2.4SP2

2006-07-10 Thread jaikiran
Is this behavior of Fqn correct? If yes, shouldnt this be documented through 
the javadocs? 

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

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


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


[JBoss-user] [Beginners Corner] - some questions about JBoss and Catalina

2006-07-10 Thread mika.fhdw
hello community,

i'd like to ask for some questions for getting a deeper clarity of JBoss.

the sence of this thread is to make the log4j not to log some loggings.

there are two logs (and more, but these two are important) i don't know the 
meaning of them.

these two logs are:
12:41:32,372 INFO  [WebappLoader] Dual registration of jndi stream handler: 
factory already defined
12:41:35,216 WARN  [SecurityCollection] Suspicious url pattern: /restricted/* 
- see 
http://java.sun.com/aboutJava/communityprocess/first/jsr053/servlet23_PFD.pdf  
section 11.2

in my researches i found out that there are more than one way of deniing these 
logs.

but as a first point i would like to know what they are standing for and why 
they occur. what do these want to tell me ?!?

the next is to deny them in the logging-process. therefor i found out that they 
occur in a method of the catalina.jar. the other way, i found, is the use of a 
log4j.properties file.

is there a way of modifiing the source-code of the catalina.jar?
what is the structure of the log4j.properties?

thanks for replies
mika

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

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


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


[JBoss-user] [JBossCache] - Re: Eviction not working in JBossCache-1.2.4SP2

2006-07-10 Thread jaikiran
Sorry, posted in the wrong topic



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

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


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


[JBoss-user] [JBossCache] - Re: Expected behavior of FQN?

2006-07-10 Thread jaikiran
Is this behavior of Fqn correct? If yes, shouldnt this be documented through 
the javadocs?  
 


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

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


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


[JBoss-user] [EJB 3.0] - Re: Interceptors not fired on methods called from within bea

2006-07-10 Thread abl
this is correct behavior. it IS in the spec - don't ask me exactly where. there 
have been posts here already related to that.

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

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


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


[JBoss-user] [EJB 3.0] - Re: Entity Bean behaves strangely with @OneToMany

2006-07-10 Thread abl
you cannot have more than one @OneToMany with EAGER fetching in a bean - 
change to LAZY. in JB4.0.4 GA you will not be able to deploy that anymore 
(deployment error).


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

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


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


[JBoss-user] [JBoss Seam] - Re: DataModelSelection without Outjection?

2006-07-10 Thread japplicoon
Thank you, petemuir, I'll experiment with that!

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

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


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


[JBoss-user] [JBoss Seam] - How to use JAX-WS with Seam?

2006-07-10 Thread mnrz
Hi 

I am going to using Seam framework with my JSF project and we have to using web 
services in our application. Is there any idea or article or something else 
about using JAX-WS inside the Seam framework. 
how to configure? how to match them with each other? 

any guide will be appreciated.

regards
Mohammad

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

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


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


[JBoss-user] [Messaging, JMS JBossMQ] - Re: DEBUG [org.jboss.mq.il.uil2.ServerSocketManagerHandler]

2006-07-10 Thread mswkk
Dear all,
  We have experience error at our JBoss 4.0.3 version, and I also capture the 
error from client side below. We suspected that  occurred under heavy loading 
on JMS MQ.


  | Jul 10, 2006 2:18:23 PM SGT Warning EJB Cmapp2 Server2 
ExecuteThread: '39' for queue: 'weblogic.kernel.Default' anonymous  
BEA-010065 MessageDrivenBean threw an Exception in onMessage(). The 
exception was:
  |  java.lang.OutOfMemoryError: unable to create new native thread.
  | java.lang.OutOfMemoryError: unable to create new native thread
  | at java.lang.Thread.start(Native Method)
  | at org.jboss.mq.il.uil2.SocketManager.start(SocketManager.java:131)
  | at 
org.jboss.mq.il.uil2.UILServerIL.createConnection(UILServerIL.java:666)
  | at 
org.jboss.mq.il.uil2.UILServerIL.getSocketMgr(UILServerIL.java:532)
  | at 
org.jboss.mq.il.uil2.UILServerIL.authenticate(UILServerIL.java:334)
  | at org.jboss.mq.Connection.authenticate(Connection.java:1160)
  | at org.jboss.mq.Connection.init(Connection.java:255)
  | at org.jboss.mq.Connection.init(Connection.java:332)
  | at org.jboss.mq.SpyConnection.init(SpyConnection.java:66)
  | at 
org.jboss.mq.SpyConnectionFactory.createConnection(SpyConnectionFactory.java:87)
  | at 
org.jboss.mq.SpyConnectionFactory.createQueueConnection(SpyConnectionFactory.java:124)
  | ...
  | 

  Appriecated if you could let me know any finding.
BR,
MK

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

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


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


[JBoss-user] [EJB/JBoss] - File Access with ejb's and MBean's

2006-07-10 Thread hoeft
Hi!

I must write files in my application. I read that file access in ejb's is 
forbidden, so i wrote a MBean which writes the files if it's methods are 
called. This methods are called by my ejb's. Is that allowed? If not, what can 
I do to write files?

Thanks
Meinert

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

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


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


[JBoss-user] [Installation, Configuration Deployment] - Re: JBoss 4.0.4 GA - JSDK version

2006-07-10 Thread visolvejboss
Hello,
 
Refer the following link.
http://wiki.jboss.org/wiki/Wiki.jsp?page=JDK1.5AnnotationsWithJDK1.4

This might be helpful.



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

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


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


[JBoss-user] [Remoting] - Re: Passing Object in RemoteCall, wich is unknown for AppSer

2006-07-10 Thread schulz
Recently I found out, that the implementation of ObjectInputStream in JBoss 
(MarshalledValueInputStream) avoids a remote-loading of client classes, because 
it ignores the information, added by 
sun.rmi.server.MarshalOutputStream.annotateClass(). I guess, that is not a bug 
but has been made by full intention (security reasons?), so finally my stuff 
will not work.

Thank you anyway for your efforts.

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

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


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


[JBoss-user] [JBoss jBPM] - Re: assigning a task to multiple users

2006-07-10 Thread mohan514
hi samid,
Thank u for ur reply.
Regards,
Mohan ch.

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

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


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


[JBoss-user] [JBoss Seam] - Re: Seam mailer component

2006-07-10 Thread [EMAIL PROTECTED]
Could you add a Wiki page with that ?

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

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


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


[JBoss-user] [JBoss jBPM] - vHost based Datasource

2006-07-10 Thread Becka
We are currently developing a jBPM Application and in the future we would like 
to host it for some customers on multiple Domains. For that we need a 
selection, that every vHost has it own Datasource.
Is such a feature already implemented or how can this be realized?

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

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


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


[JBoss-user] [JBoss Seam] - JBoss Seam IDE proposal

2006-07-10 Thread [EMAIL PROTECTED]
We are thinking about how to extend the JBoss Eclipse IDE to support Seam.

If you have interest with that and ideas to share, please look at and 
participate to this other post in the JBoss Eclipse IDE forum:
http://jboss.com/index.html?module=bbop=viewtopicp=3956511

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

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


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


[JBoss-user] [JBoss Portal] - portlet caching

2006-07-10 Thread brain101
i have installed jboss portal and included via an extra war a portlet. whenever 
i change some jsps or classes in my portlet war, portal is still keeping the 
old content and not refreshing it. 
is there a possibility to disable the caching of portlet content?

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

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


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


[JBoss-user] [JBossCache] - Re: Hibernate 2nd lvl Cache for EJB3

2006-07-10 Thread MarcReis
Hi Ben,
it shows up on both nodes, but I do have RoundRobin in use for the SFSB. It 
does not show up absoluteley simultaniously, one node starts shortly before the 
other.

I am not sure, but I thought I rather mention it, just in case it is related. 
(If not just ignore it). I still have a problem with Hibernate 3.2.0 CR3
(this was with 3.2.0CR2 
http://www.jboss.com/index.html?module=bbop=viewtopict=84650 
 and about http://opensource.atlassian.com/projects/hibernate/browse/HHH-1816)


  | 09:06:03,640 WARN  [SessionFactoryObjectFactory] Not found: 
2c9096850c573a72010c5741866f0002 // First invokation of the SFSB ( 
client ends after this)
  | 09:06:03,640 WARN  [SessionFactoryObjectFactory] Not found: 
java:Hibernate/MyHibernateSessionFactory // Second invokation of the SFSB 
(with a new instance of the client)
  | 

I just want to make sure this is not due to Hibernate. The prior mentioned 
error shows up no matter if I compile with Hibernate CR2 or CR3.
For the cache I only used the 1.4.CR1 (I will try the CR2 today)

Sincerly
Marc

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

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


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


[JBoss-user] [JBoss Portal] - How the code for event test in Test portal.

2006-07-10 Thread Leonardpaul
Hi

Any one knows the jsp file of Test A and Test B portlet of Test Portal.

Thanks 
A.Peter

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

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


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


[JBoss-user] [EJB 3.0] - Re: transactions and distributed transactions in ejb3

2006-07-10 Thread grdzeli_kaci

[EMAIL PROTECTED]

did u mean JBoss Transactions API named ArjunaTA ?


i removed this code from my program 

  | manager.getTransaction().begin();   
  | manager.getTransaction().commit();
  | manager.getTransaction().rollback();
  | 
but i get en error again :(
error 

  | javax.persistence.TransactionRequiredException: EntityManager must be 
access within a transaction
  | 23:19:47,281 ERROR [STDERR] at 
org.jboss.ejb3.entity.ManagedEntityManagerFactory.verifyInTx(ManagedEntityManagerFactory.java:149)
  | 23:19:47,281 ERROR [STDERR] at 
org.jboss.ejb3.entity.TransactionScopedEntityManager.persist(TransactionScopedEntityManager.java:174)
  | 

my bean looks like :



  | import [...]
  | @TransactionManagement(value = TransactionManagementType.BEAN)
  | @Remote(StudentFasade.class)
  | public @Stateless
  | class StudentFasadeBean implements StudentFasade {
  | 
  | @PersistenceContext
  | private EntityManager manager;
  | 
  | @TransactionAttribute(TransactionAttributeType.REQUIRES_NEW)
  | public Long addStudent(Student stbean)
  | throws MagtiException {  
  | try {
  | System.out.println(= Adding Student 
=);   
  | manager.persist(stbean);
  | return _student.getId();
  | 
  | } catch (Exception e) {
  | e.printStackTrace();
  | return 0L;
  | }
  | }
  | }
  | 
  | 
  | 

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

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


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


[JBoss-user] [Installation, Configuration Deployment] - No deployment of files in

2006-07-10 Thread BARC
Hi,

I was wondering why when deploying in the folder 
JBOSS_INSTALL/server/barc/deploy/BARC/core
the server does not find the files in there.

It doesn't matter whether I deploy an ear, par, jar, ... anything in thecore 
folder is skipped both on start up as on hot deployment.
Only when changing the foldername to_core the files are deployed.

I wasn't aware that core is a reserved word for JBoss. Is this described in 
the server guide, and if so where? 
(my apologies for not reading the complete guide ;-) )

BTW I'm currently using JBoss 4.0.3SP1

-- Pieter-Jan Savat

 

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

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


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


[JBoss-user] [JBoss jBPM] - Re: getting node Class type when getting process definition

2006-07-10 Thread gregoiredx
thank you, this work just fine.

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

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


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


[JBoss-user] [JBoss Portal] - Beta 2.4: Login Problem with IExplorer

2006-07-10 Thread yjusot
Hello,
I'm currently using Beta 2.4 of JBoss Portal, Login works fine with Firefox, 
but with Internet Explorer 6, I have the following error at submit time:
HTTP Status 408 - The time allowed for the login process has been exceeded. If 
you wish to continue you must either click back twice and re-click the link you 
requested or close and re-open your browser

Any idea about that?
How to solve it?

Thanks,
Have a good day,
Yv

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

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


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


[JBoss-user] [JBoss Portal] - Re: How to passing session varibles from Portlet to Servlet

2006-07-10 Thread derek_wen
Hi Tyler,

many thanks for your help. :)

Derek

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

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


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


[JBoss-user] [JBoss AOP] - Re: dynamic interceptor scope

2006-07-10 Thread [EMAIL PROTECTED]
Hi,

With the old API interceptors get appended to everything on the object. In 
this case you would need to do some filtering in the aspect. e.g.


  | Object invoke(Invocation inv) throws Throwable
  | {
  |if (inv instanceof FieldInvocation){
  |   //Do work
  |}
  |return inv.invokeNext();
  | }
  | 

With the new weaving in AOP 2, you can be more selective about what you 
attach.


  |   AdviceBinding binding2 = new AdviceBinding(get(* 
org.jboss.test.aop.dynamicgenadvisor.POJO-i), null);
  |   String name2 = binding2.getName();
  |   binding2.addInterceptor(MyInterceptor.class);
  | 
  |   Advised advised = ((Advised)obj);
  |   InstanceAdvisor advisor = advised._getInstanceAdvisor(); 
  |   advisor.getDomain().addBinding(binding2);
  | 

This code exists in head and will be released as an alpha in the 
not-too-distant future. The old API is still supported in AOP 2, but will 
probably be deprecated in the future, maybe in AOP 3?

BTW I want to make AOP 2 use JBoss 5 and use JBoss Retro to be able to support 
JDK 1.4. This means that the annotation compiler will be retired.

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

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


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


[JBoss-user] [JBoss Portal] - Re: JBoss Seam example working in JBoss Portal 2.4 BETA1

2006-07-10 Thread yjusot
Hello Ales,

I'm interesting on the deploy of  Seam, EJ3 and Portal 2.4 under AS 4.0.4.
What is the procedure to deploy all these modules without problems? I tried 
without success at this moment...

Do you have a working project that I can have a look?

Thanks for some infos.
Have a good day,
Yves

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

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


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


[JBoss-user] [Clustering/JBoss] - How to check which node is serving a request?

2006-07-10 Thread vishnu_vsv
Hi,

For some debug purpose, i want to monitor which node is serving a particular 
request. How to do this? Is there any api methods in JBoss Cluster to check 
this?

Thanks

Vishnu


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

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


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


[JBoss-user] [JBoss Seam] - Re: SEAM Booking demo on Glassfish (Appserver 9.0)

2006-07-10 Thread [EMAIL PROTECTED]
Yep, Roger Kitain from Sun has sent me a bunch of stuff to get Seam examples 
deploying out of the box on gf, using ant deploy.glassfish. Sorry I did not yet 
get a chance to integrate this stuff.

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

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


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


[JBoss-user] [JBoss Seam] - Re: entity beans binding to stateless context

2006-07-10 Thread [EMAIL PROTECTED]
balamg wrote : as per the documentation, entity beans may never be bound to 
stateless context. 
  | why is this so ? if i want to update an entity bean on a per-request basis 
then i could create a SLSB and inject the entity bean and update it from the 
action method of the SLSB. ?

You _can_ bind an entity bean to the request context.

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

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


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


[JBoss-user] [JBoss Seam] - Re: entity beans binding to stateless context

2006-07-10 Thread [EMAIL PROTECTED]
balamg wrote : thanks. are the cached entity beans (in the session 
/conversation context) attached to the underlying persistence session between 
requests.

Yes if

(a) the entity bean is conversation scoped
(b) you use a seam-managed PC or a conversation-scoped SFSB with an extended PC

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

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


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


[JBoss-user] [JBoss/Spring Integration] - Re: Creating a JMS Queue using Jboss

2006-07-10 Thread adandrew
Depending on the configuration you have made for your JBoss go to the 
respective folder.
For example JBOSS_HOME/server/default/deploy/jms if you have configured your 
JBoss for default operation.
In the folder open the jbossmq-destinations-service.xml file and put the entry 
for your JNDI name like given below.
depends 
optional-attribute-name=DestinationManagerjboss.mq:service=DestinationManager

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

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


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


[JBoss-user] [EJB 3.0] - Relationships destroyed at ManyToMany merge on owning side

2006-07-10 Thread squishy
Hello,
I have two Entities, User  Group, in an m:m relationship, User is the owning 
side, eager loading.
Problem: if i update a user entity, its relationships are destroyed. updating a 
group works.

How can i solve this ? 

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

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


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


[JBoss-user] [JBoss Portal] - Re: JBoss Seam example working in JBoss Portal 2.4 BETA1

2006-07-10 Thread [EMAIL PROTECTED]
You can use the JEMS installer with the portal configuration (instead of 
ejb3).

Then you can try the portal example of Seam.

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

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


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


[JBoss-user] [Security JAAS/JBoss] - Authenticating user in servlet

2006-07-10 Thread jochenb
Hi,

I have a proprietary client which sends a hardware ID in the http request for 
authenticating the device.

But we want to use the standard J2EE security mechanisms in our application and 
use the vendor neutral api request.isUserInRole() and getRemoteUser().

So I deveolped an Authenticator extending AuthenticatorBase. This authenticator 
takes the device identifier from the request and looks up a username and 
password in a device table in the database. So I have a mapping from the device 
id to a username and password.
These credentials are used to authenticate the user to the jboss security 
modules:

Principal principal = realm.authenticate(username, password);
  | if (principal == null) {
  | response.sendError(HttpServletResponse.SC_FORBIDDEN);
  | return false;
  | }
  | 
  | //Save the authenticated Principal in our session
  | session.setNote(Constants.SESS_USERNAME_NOTE, principal);
  | request.setUserPrincipal(principal);
  | request.setAuthType(PENSERIAL);
  | return true;

This approach works, if the device id comes in the request headers of the http 
request. But unfortunately the device identifier is stored in a multipart 
request body. So I would have to access the body of the request in the 
authenticator. But if I access the body in the authenticator the servlet will 
get streaming errors accessing the body after the authenticator was executed.

So the aproach with the authenticator does not help me. Is there a possibility 
to execute a login to the jboss container from inside the servlet so that the 
request is modified from the container to contain the principal and the 
isUserInRole method succeeds?

Something like 

JBossAPI.getSecurityRealm().authenticate(username,password);

Regards
Jochen

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

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


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


[JBoss-user] [JBoss Portal] - Re: JBoss Seam example working in JBoss Portal 2.4 BETA1

2006-07-10 Thread alesj
anonymous wrote : 
  | Do you have a working project that I can have a look? 
  | 
With that configuration - not yet.
But we have a working project with http://www.energetika.net - built on ejb3 
and jbp2.0.

anonymous wrote : 
  | What is the procedure to deploy all these modules without problems?
  | 
I did nothing special - simply deployed last versions of mentioned jems and 
that's it.


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

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


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


[JBoss-user] [JBoss AOP] - Re: dynamic interceptor scope

2006-07-10 Thread [EMAIL PROTECTED]
Ok, just to make sure I understand. Are you saying that I can do dynamic 
interception now without any prepare xml or prepare annotation?

For example, in PojoCache, I'd know exactly what is the POJO to attach and I 
want to intercept all the fields anyway. So in theory, I can construct the 
AdviceBinding at runtime.

Re: 1.4 compatibility, I am ok with it since this is purely for 2.0 (with 
JDK1.5 only).

Thanks!

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

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


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


[JBoss-user] [Clustering/JBoss] - Re: Changing Ports (two nodes, same machine, 4.0.4)

2006-07-10 Thread burakbayramli
Just looked, bindingservice-plugin.jar was not in the JBoss 4.0.4 installation. 

How should I install JBoss in order to get this jar? Or should I deploy this 
file manually (through Ant) from my project's development lib directory? Either 
way is fine, I just want to know the right method. 

Thanks, 

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

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


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


[JBoss-user] [JBoss Seam] - Post Again:File download dialog apprears instead of page red

2006-07-10 Thread smajima
I post it again. This time the deference is I used delivered seam-example 
folder to build my test program.

I copied registration build 
file,application.xml,ejb-jar.xml,jboss-app.xml,persistence.xml,faces-config.xml 
and web.xml.

I modified application.xml. I used eclipse and did build deploy.
It succeeded. I tried again my sample,but File download dialog of IE appeared 
and no page redirection.
The dialog asked me to donwload success.seam or not.

Does anybody have the same experience? 
Could you tell me what's wrong?


My code is

  | package seam.register;
  | 
  | import java.util.List;
  | 
  | import javax.annotation.Resource;
  | import javax.ejb.SessionContext;
  | import javax.ejb.Stateless;
  | import javax.persistence.EntityManager;
  | import javax.persistence.PersistenceContext;
  | 
  | import org.hibernate.validator.Valid;
  | import org.jboss.seam.annotations.IfInvalid;
  | import org.jboss.seam.annotations.In;
  | import org.jboss.seam.annotations.Name;
  | import org.jboss.seam.annotations.Outcome;
  | import org.jboss.seam.core.FacesMessages;
  | 
  | 
  | 
  | @Stateless
  | @Name(editcustomer)
  | public class EditCustomerAction implements EditCustomer {
  | 
  | 
  | @In
  | @Valid
  | private Customer customer;
  | 
  | @PersistenceContext
  | private EntityManager em;
  | 
  | @Resource
  | SessionContext ctx;
  | 
  | @IfInvalid(outcome=Outcome.REDISPLAY)
  | public String register() {
  | 
  |   List existing = em.createQuery(select customerId from Customer c 
where c.customerId=:cid)
  |  .setParameter(cid, customer.getCustomerId())
  |  .getResultList();
  |   if (existing.size()==0)
  |   {
  |  em.persist(customer);
  |  return /success.jsp;
  |   }
  |   else
  |   {
  |  FacesMessages.instance().add(Customer already exists);
  |  return null;
  |   }
  |
  | }   
  | }
  | 

JSP calls this session bean is

  | !--
  | entry.jsp
  | --
  | 
  | %@ page contentType=text/html;charset=WINDOWS-31J %
  | %@ taglib uri=http://java.sun.com/jsf/core; prefix=f %
  | %@ taglib uri=http://java.sun.com/jsf/html; prefix=h %
  | 
  | html
  | head/head
  | f:view
  | body
  |   h:form
  |   table
  | trtdID:/td
  | tdh:inputText value=#{customer.customerId}//td/tr
  | trtdFirstName:/td
  | tdh:inputText value=#{customer.firstName}//td/tr
  | trtdLastName:/td
  | tdh:inputText value=#{customer.lastName}//td/tr
  |/table
  |h:messages/
  |h:commandButton type=submit value=Register 
action=#{editcustomer.register} /
  |/h:form
  | 
  | 
  | /body
  | /f:view
  | 
  | /html
  | 

The JSP above was executed but dialog apeared.
I don't think the problem is not in build.xml.


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

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


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


[JBoss-user] [Beginners Corner] - java.util.zip.ZipException: error in opening zip file

2006-07-10 Thread mehboob123
Hi

i am using the tomcat that is bundled with JBOSS and for client side

I have my folder greeterapp as follows
C:\jboss-4.0.3\server\default\deploy\greeterapp

which contains the WEB-INF,greetServlet.html and web-app.xml
WEB-INF contains the classes(containing greetServlet.class) and lib(containg 
the .jars including the greet.jar file which consists of greetHome,greetRemote 
etc.) folder

But when i start the server i get the following log:

11:55:22,314 INFO  [EJBDeployer] Deployed: file:/C:/jboss-4.0.3/server/default/d
eploy/greeterapp/WEB-INF/lib/greet.jar
11:55:22,939 INFO  [TomcatDeployer] deploy, ctxPath=/jmx-console, warUrl=.../dep
loy/jmx-console.war/
11:55:23,423 WARN  [JARDeployer] Failed to add deployable jar: file:/C:/jboss-4.
0.3/server/default/tmp/deploy/tmp46702greetServlet.class
java.util.zip.ZipException: error in opening zip file
at java.util.zip.ZipFile.open(Native Method)
at java.util.zip.ZipFile.(ZipFile.java:112)
at java.util.jar.JarFile.(JarFile.java:117)
at java.util.jar.JarFile.(JarFile.java:55)
at org.jboss.deployment.SubDeployerSupport.processNestedDeployments(SubD
eployerSupport.java:362)
at org.jboss.deployment.SubDeployerSupport.init(SubDeployerSupport.java:
269)
at org.jboss.deployment.MainDeployer.init(MainDeployer.java:843)
at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:780)
at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:753)
at sun.reflect.GeneratedMethodAccessor27.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
sorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:324)
at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatch
er.java:141)
at org.jboss.mx.server.Invocation.dispatch(Invocation.java:80)
at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractIntercept
or.java:118)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:74)
at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelM
BeanOperationInterceptor.java:127)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:74)
at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.
java:245)
at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:644)
at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:176)
at $Proxy9.deploy(Unknown Source)
at org.jboss.deployment.scanner.URLDeploymentScanner.deploy(URLDeploymen
tScanner.java:319)
at org.jboss.deployment.scanner.URLDeploymentScanner.scan(URLDeploymentS
canner.java:507)
at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.
doScan(AbstractDeploymentScanner.java:192)
at org.jboss.deployment.scanner.AbstractDeploymentScanner.startService(A
bstractDeploymentScanner.java:265)
at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanS
upport.java:274)
at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMB
eanSupport.java:230)
at sun.reflect.GeneratedMethodAccessor3.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
sorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:324)
at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatch
er.java:141)
at org.jboss.mx.server.Invocation.dispatch(Invocation.java:80)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:72)
at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.
java:245)
at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:644)
at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceControl
ler.java:943)
at $Proxy0.start(Unknown Source)
at org.jboss.system.ServiceController.start(ServiceController.java:428)
at sun.reflect.GeneratedMethodAccessor8.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
sorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:324)
at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatch
er.java:141)
at org.jboss.mx.server.Invocation.dispatch(Invocation.java:80)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:72)
at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.
java:245)
at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:644)
at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:176)
at $Proxy4.start(Unknown Source)
at org.jboss.deployment.SARDeployer.start(SARDeployer.java:285)
at org.jboss.deployment.MainDeployer.start(MainDeployer.java:989)
at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:790)
at 

[JBoss-user] [Beginners Corner] - java.util.zip.ZipException: error in opening zip file

2006-07-10 Thread mehboob123
Hi

i am using the tomcat that is bundled with JBOSS and for client side

I have my folder greeterapp as follows
C:\jboss-4.0.3\server\default\deploy\greeterapp

which contains the WEB-INF,greetServlet.html and web-app.xml
WEB-INF contains the classes(containing greetServlet.class) and lib(containg 
the .jars including the greet.jar file which consists of greetHome,greetRemote 
etc.) folder

But when i start the server i get the following log:

11:55:22,314 INFO  [EJBDeployer] Deployed: file:/C:/jboss-4.0.3/server/default/d
eploy/greeterapp/WEB-INF/lib/greet.jar
11:55:22,939 INFO  [TomcatDeployer] deploy, ctxPath=/jmx-console, warUrl=.../dep
loy/jmx-console.war/
11:55:23,423 WARN  [JARDeployer] Failed to add deployable jar: file:/C:/jboss-4.
0.3/server/default/tmp/deploy/tmp46702greetServlet.class
java.util.zip.ZipException: error in opening zip file
at java.util.zip.ZipFile.open(Native Method)
at java.util.zip.ZipFile.(ZipFile.java:112)
at java.util.jar.JarFile.(JarFile.java:117)
at java.util.jar.JarFile.(JarFile.java:55)
at org.jboss.deployment.SubDeployerSupport.processNestedDeployments(SubD
eployerSupport.java:362)
at org.jboss.deployment.SubDeployerSupport.init(SubDeployerSupport.java:
269)
at org.jboss.deployment.MainDeployer.init(MainDeployer.java:843)
at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:780)
at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:753)
at sun.reflect.GeneratedMethodAccessor27.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
sorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:324)
at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatch
er.java:141)
at org.jboss.mx.server.Invocation.dispatch(Invocation.java:80)
at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractIntercept
or.java:118)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:74)
at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelM
BeanOperationInterceptor.java:127)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:74)
at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.
java:245)
at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:644)
at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:176)
at $Proxy9.deploy(Unknown Source)
at org.jboss.deployment.scanner.URLDeploymentScanner.deploy(URLDeploymen
tScanner.java:319)
at org.jboss.deployment.scanner.URLDeploymentScanner.scan(URLDeploymentS
canner.java:507)
at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.
doScan(AbstractDeploymentScanner.java:192)
at org.jboss.deployment.scanner.AbstractDeploymentScanner.startService(A
bstractDeploymentScanner.java:265)
at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanS
upport.java:274)
at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMB
eanSupport.java:230)
at sun.reflect.GeneratedMethodAccessor3.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
sorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:324)
at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatch
er.java:141)
at org.jboss.mx.server.Invocation.dispatch(Invocation.java:80)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:72)
at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.
java:245)
at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:644)
at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceControl
ler.java:943)
at $Proxy0.start(Unknown Source)
at org.jboss.system.ServiceController.start(ServiceController.java:428)
at sun.reflect.GeneratedMethodAccessor8.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
sorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:324)
at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatch
er.java:141)
at org.jboss.mx.server.Invocation.dispatch(Invocation.java:80)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:72)
at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.
java:245)
at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:644)
at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:176)
at $Proxy4.start(Unknown Source)
at org.jboss.deployment.SARDeployer.start(SARDeployer.java:285)
at org.jboss.deployment.MainDeployer.start(MainDeployer.java:989)
at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:790)
at 

[JBoss-user] [JBoss AOP] - Re: dynamic interceptor scope

2006-07-10 Thread [EMAIL PROTECTED]
You still need to prepare the joinpoints. The reason the introduced methods get 
intercepted is that when weaving in the introductions we weave in hooks for aop 
simpilar to AOP.

This should have read:
anonymous wrote : 
  | BTW I want to make AOP 2 use JDK 5 and use JBoss Retro to be able to 
support JDK 1.4. This means that the annotation compiler will be retired.
  | 

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

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


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


[JBoss-user] [JBoss Seam] - Ajax¤JSF with Seam

2006-07-10 Thread tobad
Hi
I've been using Seam for a while now.
I'm currently using 1.0.1 GA with the embedded container in Tomcat.

Right now I have one page with several datatables on it.
When a user clicks on  a selection on the first table the other two are updated.
This is currently done via a normal HTTP request but I would like to do this 
with Ajax4JSF or smiliar instead. 

The problem is that when I use Ajax4JSF I get a PropertyNotFoundException even 
though it worked with a normal s:link.

I read Michael Yuan's blog about problems when having an ejb3 jar but I'm not 
quite sure if it applies here (I got one general.jar with all ejb's including 
session beans and then views etc in the war).



The Exception

  | javax.el.PropertyNotFoundException: Bean: $Proxy158, property: 
getCategoryDetails
  | at 
com.sun.facelets.el.LegacyELContext$LegacyELResolver.getValue(LegacyELContext.java:146)
  | at com.sun.el.parser.AstValue.getValue(AstValue.java:117)
  | at 
com.sun.el.ValueExpressionImpl.getValue(ValueExpressionImpl.java:192)
  | at 
com.sun.facelets.el.ELText$ELTextVariable.toString(ELText.java:174)
  | at 
com.sun.facelets.el.ELText$ELTextComposite.toString(ELText.java:115)
  | at 
com.sun.facelets.compiler.CommentInstruction.write(CommentInstruction.java:38)
  | at 
com.sun.facelets.compiler.UIInstructions.encodeBegin(UIInstructions.java:39)
  | at 
org.apache.myfaces.shared_impl.renderkit.RendererUtils.renderChild(RendererUtils.java:433)
  | at 
org.apache.myfaces.shared_impl.renderkit.RendererUtils.renderChildren(RendererUtils.java:419)
  | at 
org.apache.myfaces.shared_impl.renderkit.RendererUtils.renderChild(RendererUtils.java:440)
  | at 
org.apache.myfaces.shared_impl.renderkit.html.HtmlTableRendererBase.renderColumnBody(HtmlTableRendererBase.java:212)
  | at 
org.apache.myfaces.shared_impl.renderkit.html.HtmlTableRendererBase.encodeColumnChild(HtmlTableRendererBase.java:181)
  | at 
org.apache.myfaces.shared_impl.renderkit.html.HtmlTableRendererBase.encodeInnerHtml(HtmlTableRendererBase.java:167)
  | at 
org.apache.myfaces.shared_impl.renderkit.html.HtmlTableRendererBase.encodeChildren(HtmlTableRendererBase.java:100)
  | at 
javax.faces.component.UIComponentBase.encodeChildren(UIComponentBase.java:524)
  | at 
com.sun.facelets.tag.jsf.ComponentSupport.encodeRecursive(ComponentSupport.java:234)
  | at 
com.sun.facelets.tag.jsf.ComponentSupport.encodeRecursive(ComponentSupport.java:239)
  | at 
com.sun.facelets.tag.jsf.ComponentSupport.encodeRecursive(ComponentSupport.java:239)
  | at 
com.sun.facelets.FaceletViewHandler.renderView(FaceletViewHandler.java:554)
  | at 
org.ajax4jsf.framework.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:100)
  | at 
org.jboss.seam.jsf.SeamViewHandler.renderView(SeamViewHandler.java:59)
  | at 
org.apache.myfaces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:384)
  | 

The HTML

  | h:form
  |  h:dataTable var=cat 
  | value=#{categoryList} 
rendered=#{categoryList.rowCount0}
  | styleClass=datatable 
  | headerClass=
  | rowClasses=
  | columnClasses=
  | 
  | h:column
  | f:facet name=header
  | h:outputText value=Name/
  | /f:facet
  | !--s:link view-id=../category/overview.html 
action=#{listCategoryAction.getCategoryDetails} value=#{cat.name}/--   
  
  | a4j:commandLink value=#{cat.name} 
action=#{listCategoryAction.getCategoryDetails} reRender=childTable /
  | /h:column 
  |  /h:dataTable
  | /h:form 
  | 
  |  h:form
  | h:dataTable var=cp 
  | value=#{childList} rendered=#{not empty 
childList}
  | styleClass=datatable 
  | headerClass=
  | rowClasses=
  | columnClasses= 
  | id=childTable
  | 
  | .
  | /h:dataTable 
  | /h:form

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

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


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

[JBoss-user] [JBoss Seam] - Re: Clean Seam installation - but errors, errors, errors...

2006-07-10 Thread bfo81
PS: The Seam Hibernate demo works great. So EJB3 is the scapegoat.

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

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


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


[JBoss-user] [EJB 3.0] - Re: Relationships destroyed at ManyToMany merge on owning si

2006-07-10 Thread squishy
I have a user with id 1 and name A and a group with id 24 and name B.
They're in a relationship with an entry in the Join-table. 
Then i update A by doing

  | User u = new User();
  | u.setId(1);
  | u.setName(Z);
  | manager.merge(u);
  | 

and after that the entry in the join-table is gone. I can change the group like 
this without destroying the relationship, though.

fundamental mistake on my side? :)


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

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


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


[JBoss-user] [Installation, Configuration Deployment] - Re: How to deploy a connector in an ear file

2006-07-10 Thread SchlauFuchs
Did you edit the application.xml in your ear file?

  | module
  | connectorJcaAdapter.rar/connector
  | /module
  | 

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

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


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


[JBoss-user] [JBoss jBPM] - Re: vHost based Datasource

2006-07-10 Thread Becka
how can i deploy the instances or what have i to deploy?

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

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


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


[JBoss-user] [Security JAAS/JBoss] - Re: Using JCE crypto in EJBs

2006-07-10 Thread [EMAIL PROTECTED]
wussykye-

Try accessing your cert file using a full system path to your cacert file 
within your EJB to make sure this is not an issue with locating the cacert file.

Also, did you try getting an input stream to the cert file in your EJB and make 
sure the file is actually being located and read.


AFAIK, JBoss does not specifically block access to any crypto related files

Thanks
Sohil

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

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


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


[JBoss-user] [JBoss jBPM] - Re: vHost based Datasource

2006-07-10 Thread kukeltje
you can find most of the information in the docs, wiki and by looking at the 
code

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

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


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


[JBoss-user] [Security JAAS/JBoss] - Re: Authenticating user in servlet

2006-07-10 Thread [EMAIL PROTECTED]
Jochen-

With your custom Authenticator approach,

did you try doing a browser redirect that sends back the same exact request 
information back maybe minus the deviceid information, once the authentication 
is successfull and the user's identity is sucessfully established within the 
Authenticator?

I am thinking once the user's identity is established in the container, 
re-sending the browser request should not break your servlet anymore with 
streaming issues



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

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


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


[JBoss-user] [JBoss jBPM] - Re: vHost based Datasource

2006-07-10 Thread Becka
i found a page in the wiki regarding to vHosts
http://wiki.jboss.org/wiki/Wiki.jsp?page=VirtualHosts

but this won't tells me how to deploy a DataSource for each vHost

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

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


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


[JBoss-user] [JBoss Seam] - Clean Seam installation - but errors, errors, errors...

2006-07-10 Thread bfo81
Well, I tried running some Seam examples. I proceeded like suggested in the 
getting started section 
(http://labs.jboss.com/portal/jbossseam/gettingstarted/index.html). But it 
didn't work out that easy, cause I'm running from one error into the other.

After installing JBoss 4.0.4 AS via the JEMS installer 
(jems-installer-1.2.0-BETA.jar) with EJB3 profile I deployed some of the Seam 
1.0.1 (fetched via CVS) examples (namely booking and blog - each one 
individually). But after starting the AS I get an exception and deployment 
fails:

java.lang.NoClassDefFoundError: Lorg/jboss/ejb3/embedded/EJB3StandaloneDeployer;

So I put jboss-ejb3-all.jar (8.019 KBytes for comparison) from EJB3.0 RC8 into 
$JBOSS_HOME/server/default/lib (as recommended here by Gavin: 
http://www.jboss.com/index.html?module=bbop=viewtopict=85604). Well, now 
there's a new very nice exception:

java.lang.NoSuchMethodError: 
org.jboss.resource.adapter.jdbc.local.LocalManagedConnectionFactory.getValidateOnMatch()Z

This one occurs 18 times in the logfile. And I found no solution for that, so I 
decided to ignore it for now.

However, another Exception told me there's no embedded-jboss-beans.xml. So I 
copied it from the Seam directory embedded-ejb/conf to 
$JBOSS_HOME/server/default/conf. After restarting the AS there's a new 
Exception:

java.lang.RuntimeException: org.jboss.xb.binding.JBossXBException: Failed to 
parse source file: file:/C:/Programme/jboss-4.0.4.GA/server/default/conf/[EMAIL 
PROTECTED],45
  | ...
  | Caused by java.lang.NullPointerException
  | at 
org.jboss.kernel.plugins.deployment.xml.BeanSchemaBinding.configureValueBindings(BeanSchemaBinding.java:1158)

Well, the embedded-jboss-beans.xml looks like this (where *** shows 5,45, the 
position where the error occured)

?xml version=1.0 encoding=UTF-8?  
  |
  |   deployment xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance;  
  |   xsi:schemaLocation=urn:jboss:bean-deployer 
bean-deployer_1_0.xsd  
  |   xmlns=urn:jboss:bean-deployer*** 
  |  bean name=Naming class=org.jnp.server.SingletonNamingServer/  
  | 
  | ...

And this is where I'm stuck.

Well, maybe I overlooked something in my procedure, and I must confess I'm not 
a JBoss AS expert... but I think this shouldn't be necessary just to get some 
Seam examples to work.

Maybe someone could tell me what's wrong.

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

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


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


[JBoss-user] [EJB 3.0] - Problem in Deployment in JBoss 4.0.4

2006-07-10 Thread kanthkr
Hello,
We are using Jboss 4.0.3 with EJB3.0 setup and the system is running 
fine. 
But when we migrated to JBoss 4.0.4, there were problems during compiling, it 
asked for unit name. We added the unit name and created a new persistence.xml 
with the details as shown. @PersistenceContext(unitName=phx4EJB) 
But We get the error as shown below. Does anyone have any idea?

17:57:19,453 INFO  [JmxKernelAbstraction] installing MBean: jboss.j2ee:jar=Phoen
ixServer.jar,name=PhxCommonBean,service=EJB3 with dependencies:
17:57:19,453 INFO  [JmxKernelAbstraction]   persistence.units:unitName=phx4E
JB
17:57:19,468 INFO  [JmxKernelAbstraction] installing MBean: jboss.j2ee:jar=Phoen
ixServer.jar,name=ComplexityDriverBean,service=EJB3 with dependencies:
17:57:19,468 INFO  [JmxKernelAbstraction]   persistence.units:unitName=phx4E
JB
17:57:19,468 INFO  [JmxKernelAbstraction] installing MBean: jboss.j2ee:jar=Phoen
ixServer.jar,name=PhxMonitorBean,service=EJB3 with dependencies:
17:57:19,812 INFO  [EJBContainer] STARTED EJB: com.bosch.in.phoenix.monitor.PhxM
onitorBean ejbName: PhxMonitorBean
17:57:19,921 INFO  [JmxKernelAbstraction] installing MBean: jboss.j2ee:jar=Phoen
ixServer.jar,name=ProjectBean,service=EJB3 with dependencies:
17:57:19,921 INFO  [JmxKernelAbstraction]   persistence.units:unitName=phx4E
JB
17:57:19,921 INFO  [JmxKernelAbstraction] installing MBean: jboss.j2ee:jar=Phoen
ixServer.jar,name=TreeObjectBean,service=EJB3 with dependencies:
17:57:20,031 INFO  [EJBContainer] STARTED EJB: com.bosch.in.phoenix.projects.Tre
eObjectBean ejbName: TreeObjectBean
17:57:20,140 INFO  [JmxKernelAbstraction] installing MBean: jboss.j2ee:jar=Phoen
ixServer.jar,name=PromicsBean,service=EJB3 with dependencies:
17:57:20,140 INFO  [JmxKernelAbstraction]   persistence.units:unitName=phx4E
JB
17:57:20,140 INFO  [JmxKernelAbstraction] installing MBean: jboss.j2ee:jar=Phoen
ixServer.jar,name=ResourceBean,service=EJB3 with dependencies:
17:57:20,140 INFO  [JmxKernelAbstraction]   persistence.units:unitName=phx4E
JB
17:57:20,140 INFO  [JmxKernelAbstraction] installing MBean: jboss.j2ee:jar=Phoen
ixServer.jar,name=SecurityBean,service=EJB3 with dependencies:
17:57:20,156 INFO  [JmxKernelAbstraction]   persistence.units:unitName=phx4E
JB
17:57:20,156 INFO  [JmxKernelAbstraction] installing MBean: jboss.j2ee:jar=Phoen
ixServer.jar,name=UserBean,service=EJB3 with dependencies:
17:57:20,156 INFO  [JmxKernelAbstraction]   persistence.units:unitName=phx4E
JB
17:57:20,156 INFO  [JmxKernelAbstraction] installing MBean: jboss.j2ee:jar=Phoen
ixServer.jar,name=UserManagerBean,service=EJB3 with dependencies:
17:57:20,156 INFO  [JmxKernelAbstraction]   persistence.units:unitName=phx4E
JB
17:57:20,171 INFO  [JmxKernelAbstraction] installing MBean: jboss.j2ee:jar=Phoen
ixServer.jar,name=WPBean,service=EJB3 with dependencies:
17:57:20,171 INFO  [JmxKernelAbstraction]   persistence.units:unitName=phx4E
JB
17:57:20,187 INFO  [EJB3Deployer] Deployed: file:/D:/tools/jboss-4.0.4.GA/server
/all/deploy/PhoenixServer.jar
17:57:20,234 INFO  [TomcatDeployer] deploy, ctxPath=/jmx-console, warUrl=.../dep
loy/jmx-console.war/
17:57:22,421 ERROR [URLDeploymentScanner] Incomplete Deployment listing:

--- MBeans waiting for other MBeans ---
ObjectName: jboss.j2ee:jar=PhoenixServer.jar,name=PhxCommonBean,service=EJB3
  State: NOTYETINSTALLED
  I Depend On:
persistence.units:unitName=phx4EJB

ObjectName: jboss.j2ee:jar=PhoenixServer.jar,name=ComplexityDriverBean,service=E
JB3
  State: NOTYETINSTALLED
  I Depend On:
persistence.units:unitName=phx4EJB

ObjectName: jboss.j2ee:jar=PhoenixServer.jar,name=ProjectBean,service=EJB3
  State: NOTYETINSTALLED
  I Depend On:
persistence.units:unitName=phx4EJB

ObjectName: jboss.j2ee:jar=PhoenixServer.jar,name=PromicsBean,service=EJB3
  State: NOTYETINSTALLED
  I Depend On:
persistence.units:unitName=phx4EJB

ObjectName: jboss.j2ee:jar=PhoenixServer.jar,name=ResourceBean,service=EJB3
  State: NOTYETINSTALLED
  I Depend On:
persistence.units:unitName=phx4EJB

ObjectName: jboss.j2ee:jar=PhoenixServer.jar,name=SecurityBean,service=EJB3
  State: NOTYETINSTALLED
  I Depend On:
persistence.units:unitName=phx4EJB

ObjectName: jboss.j2ee:jar=PhoenixServer.jar,name=UserBean,service=EJB3
  State: NOTYETINSTALLED
  I Depend On:
persistence.units:unitName=phx4EJB

ObjectName: jboss.j2ee:jar=PhoenixServer.jar,name=UserManagerBean,service=EJB3
  State: NOTYETINSTALLED
  I Depend On:
persistence.units:unitName=phx4EJB

ObjectName: jboss.j2ee:jar=PhoenixServer.jar,name=WPBean,service=EJB3
  State: NOTYETINSTALLED
  I Depend On:
persistence.units:unitName=phx4EJB

--- MBEANS THAT ARE THE ROOT CAUSE OF THE PROBLEM ---
ObjectName: persistence.units:unitName=phx4EJB
  State: NOTYETINSTALLED
  Depends On Me:
jboss.j2ee:jar=PhoenixServer.jar,name=PhxCommonBean,service=EJB3
jboss.j2ee:jar=PhoenixServer.jar,name=ComplexityDriverBean,service=EJB3

[JBoss-user] [JBossWS] - jndi lookup of JSR181 web service

2006-07-10 Thread heapifyman
Hello.

How do I make a lookup of a JSR 181 web service endpoint deployed on JBoss from 
a simple Java Client?
I followed the instructions of the JbossWS user guide on how to code the 
endpoint and got it deployed. But since there's no example of a JSR181 client, 
I'm stuck at how to code the client correctly. Whenever I try the lookup, I get 
a NameNotFoungException.

Any hints (to further information) are appreciated.
Thanks in advance,
Philip

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

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


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


[JBoss-user] [EJB 3.0] - Re: transactions and distributed transactions in ejb3

2006-07-10 Thread grdzeli_kaci
ok thanks u're rigth  it works but
what can i do when i wont work with multiple database ?
i think that i need to xml datasourse file (for example : oracle-xa-ds.xml and 
postgres-ds.xml) both of them configured corectly :
oracle ds file :

  | datasources
  |   xa-datasource
  | jndi-nameXAOracleDS/jndi-name
  | track-connection-by-tx/
  | isSameRM-override-valuefalse/isSameRM-override-value
xa-datasource-classoracle.jdbc.xa.client.OracleXADataSource/xa-datasource-class
  | xa-datasource-property 
name=URLjdbc:oracle:thin:@192.9.200.177:1521:devnbtwo/xa-datasource-property
  | xa-datasource-property name=Userpaata/xa-datasource-property
  | xa-datasource-property 
name=Password1982226/xa-datasource-property   
exception-sorter-class-nameorg.jboss.resource.adapter.jdbc.vendor.OracleExceptionSorter/exception-sorter-class-name
  | no-tx-separate-pools/
  |   metadata
  |  type-mappingOracle9i/type-mapping
  |   /metadata
  |   /xa-datasource
  |   mbean 
code=org.jboss.resource.adapter.jdbc.vendor.OracleXAExceptionFormatter 
  |  name=jboss.jca:service=OracleXAExceptionFormatter
  | depends 
optional-attribute-name=TransactionManagerServicejboss:service=TransactionManager/depends
  |   /mbean
  | /datasources
  | 
and  postgres ds file:


  | datasources
  |   local-tx-datasource
  | jndi-namePostgresDS/jndi-name
  |connection-urljdbc:postgresql://localhost:5432/Test/connection-url
  | driver-classorg.postgresql.Driver/driver-class
  | user-namepostgres/user-name
  | password1982226/password
  | new-connection-sqlselect 1/new-connection-sql
  |   metadata
  |  type-mappingPostgreSQL 7.2/type-mapping
  |   /metadata
  |   /local-tx-datasource
  | /datasources
  | 

and i want do operation wich inserts into one db and then into second db in one 
transaction 
how i can do it ? :( plz F1 :)

[EMAIL PROTECTED]  told me about JBossJCA 
but i didn't find any sample about it ... 
is there any simple example about distributed transactions ...




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

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


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


[JBoss-user] [Security JAAS/JBoss] - wrong principal although authenticated in 4.0.4 GA

2006-07-10 Thread TedCat
Hi,
Since we migrated our app from 4..0.3 to 4.0.4 GA, we are facing the following 
problem:
- some ejb2 sb are created with the right JAAS credentials but while getting 
the principal, the username is not the right one. It's usualy, anonymous (or 
null if module-option name=unauthenticatedIdentity is not set). I am saying 
with the right crédentials since I disabled the JAAS caching to be sure and I 
verified in that the JAAS Login module gets the rights info. Moreover, these 
beans have only checked methods that are accessed without any problem. The 
principal is got and is not null but username is either anonymous or null.

Has anybody else faced the same trouble?
 
It worked fine with earlier version, we shifted to 4.0.4 GA for supporting both 
ssl non-ssl in ejb3 through annotations

thanks,
Ted

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

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


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


[JBoss-user] [JBoss Eclipse IDE (users)] - running packaging for multiple projects

2006-07-10 Thread feijtel
Hi, 

I'm using JBoss IDE 1.5.1 and JBoss AS 3.2. In the JBoss IDE I have several 
projects which represent components from a software product I'm writing. All 
projects together make one big EAR file which is deployed on the JBoss AS.

Is it possible to run Packaging for several projects at the same time (one 
after another I mean)? Now I have to run Packaging for each project 
individually, and it would be nice if I can run Packaging for all the projects 
in one action. I haven't found a way to do that within the JBoss IDE. A last 
resort could be writing a ANT file myself, but I'd prefer not to.

Is there anybody who has a solution? Thanks!

Leon Feijtel


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

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


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


[JBoss-user] [JBoss Seam] - Re: Clean Seam installation - but errors, errors, errors...

2006-07-10 Thread petemuir
Perhaps you should try the 1.0.1.GA release of Seam? 
(http://labs.jboss.com/portal/jbossseam/download/index.html). I think no 
garuntees are made about CVS head being runnable.

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

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


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


[JBoss-user] [EJB 3.0] - Re: Bug? Transaction timeout....

2006-07-10 Thread modjoe23
Hi Peter,

No that hasn't solved it for me. Please let me know if you find a solution to 
this problem. Thanks.

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

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


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


[JBoss-user] [JBoss Eclipse IDE (users)] - JBossAS Adapter without JBoss IDE on plain WTP 1.5

2006-07-10 Thread edwind

Hello,

Should it be possible to run application build on plain WTP 1.5, so without the 
installation of JBoss IDE with the JBossAS Adapter ?

It tried downloading the Adapter plugin and installing it on plain WTP 1.5. 
However all seems wel, but I can not add my Enterprise Project with 'add/remove 
applications' to the JBoss 4.0 AS server. It tells me there are no modules to 
add.

Could it be done?

I only need the hot deployment feature to Jboss 4.0 because I am happy with 
plain WTP 1.5.

Edwin


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

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


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


[JBoss-user] [JBoss jBPM] - How to use arrays for columns with hibernate

2006-07-10 Thread infovaibhav
Hello,

I am using postgresql database. I am using ineger array ( int [] ) as a 
datatype for one column. Here is the schema for table.

CREATE TABLE sal_emp (
name text,
pay_by_quarter integer[],
);

My problem is how we can make use of arrays in Hibernate? How mapping file will 
look like ?

Thanks,
Vaibhav...

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

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


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


[JBoss-user] [JBoss Seam] - Re: Seam mailer component

2006-07-10 Thread petemuir
I added a link on the Wiki to the blog entry under a new heading - Components.  
Would you prefer a copy of the entry?

I've also added a JasperReports component that compiles (at the time Seam 
starts) reports designs defined in components.xml and makes them available for 
injection.

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

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


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


[JBoss-user] [JBoss jBPM] - Re: New jBPM Getting Started Documentation

2006-07-10 Thread n.belford
I have now also posted the getting started guide as a PDF. It is down at the 
bottom of the front page to the JBPM wiki.

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

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


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


[JBoss-user] [EJB 3.0] - Re: Javassist throws SecurityException on new 4.0.4GA

2006-07-10 Thread phon
thanks for the reply
i found the same solution in  the source of the Environment class where it 
stated that it has this parameter and accept the value javassist and cglib. 
Couldn't find this in any documentation though..

It solved my problem, so i'm happy :)

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

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


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


[JBoss-user] [JBoss Eclipse IDE (users)] - Re: JBoss Eclipse IDE 2.0.0.Alpha released! - NOT WORKING

2006-07-10 Thread kristof_taveirne
Hi,
Can somebody explain me how deployment should be done now with this new version?

with Eclipse 3.1.2 I used to have a menuitem when i click on the .ear file: 
Deploy to ... 

With the jBoss IDE 2.0.0a I can't find a way to deploy to my server.

I see the menu-item Add/Remove projects in the Jboss Server View, but then I 
get a dialog box saying: There are no projects that can be added or removed 
from the server.

Also I noticed that I can drag a .ear file to the serveritem in the Jboss 
Server View, and then select deploy and verify, but nothing seems to be 
happening. At least not in the console window.

Can somebody explain me what I'm doing wrong? If this stuff is simply not yet 
working, I will have to go back to eclipse 3.1.2 because I didn't get Jboss IDE 
1.6 to work on 3.2 with callisto.

Grtz,
Kristof.

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

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


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


[JBoss-user] [JBoss Seam] - Re: @In vs. @EJB

2006-07-10 Thread sebasfiorent
[EMAIL PROTECTED] wrote : For stateful beans they are very different.

Gavin, can you explain more precissely which is the difference with stateful 
beans between @In and @EJB, because I need to choose the correct annotation if 
they behave different.

Regards
Sebastian

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

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


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


[JBoss-user] [Installation, Configuration Deployment] - CODE WORKING ON TOMCAT DONT WORK ON JBOSS

2006-07-10 Thread amit.khosla
I am working on a project in which i am using AJAX  JSF.

I made the application. The application was running smoothly on the TOMCAT.

I made some calls using AJAX in some pages.

In TOMCAT it was working perfectly. But today i deployed same code to JBOSS. 
Now I am unable to run it. Whenever I try to do a AJAX call, it dont do it 
refreshes the page  all the data belonging to JSF distroyed.

Although the request has made the change in bean. If i go back, it shows the 
changes. But i am not getting it on page as it was showing on the TOMCAT.


PLZ help

Thanx in advance

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

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


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


[JBoss-user] [Beginners Corner] - CODE WORKING ON TOMCAT DONT WORK ON JBOSS

2006-07-10 Thread amit.khosla
I am working on a project in which i am using AJAX  JSF.

I made the application. The application was running smoothly on the TOMCAT.

I made some calls using AJAX in some pages.

In TOMCAT it was working perfectly. But today i deployed same code to JBOSS. 
Now I am unable to run it. Whenever I try to do a AJAX call, it dont do it 
refreshes the page  all the data belonging to JSF distroyed.

Although the request has made the change in bean. If i go back, it shows the 
changes. But i am not getting it on page as it was showing on the TOMCAT.


PLZ help

Thanx in advance

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

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


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


[JBoss-user] [JBossWS] - Re: PLEASE HELP: JSR 181 EJB Endpoint (JBoss 4.0.4.GA)

2006-07-10 Thread pablojavierpy
I guess that you are packaging a .war inside your EAR. Right?

If it is so, try changing the war's context root to anything but cm. I.E., 
cmweb.

Repackage your EAR.

Redeploy your EAR and you should be able to access the WebService.

Let me know if it works.

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

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


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


[JBoss-user] [JBoss jBPM] - Re: How to use arrays for columns with hibernate

2006-07-10 Thread kukeltje
please ask hibernate specific questions in the hibernate forum/mailinglist

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

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


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


[JBoss-user] [Tomcat, HTTPD, Servlets JSP] - CODE WORKING ON TOMCAT DONT WORK ON JBOSS

2006-07-10 Thread amit.khosla
I am working on a project in which i am using AJAX  JSF.

I made the application. The application was running smoothly on the TOMCAT.

I made some calls using AJAX in some pages.

In TOMCAT it was working perfectly. But today i deployed same code to JBOSS. 
Now I am unable to run it. Whenever I try to do a AJAX call, it dont do it 
refreshes the page  all the data belonging to JSF distroyed.

Although the request has made the change in bean. If i go back, it shows the 
changes. But i am not getting it on page as it was showing on the TOMCAT.


PLZ help

Thanx in advance

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

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


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


[JBoss-user] [Installation, Configuration Deployment] - Re: How to deploy a connector in an ear file

2006-07-10 Thread pegasenz
I didt it. In the META-INF directory i have the 2 following descriptors :

application.xml :
?xml version=1.0 encoding=UTF-8?
  | application id=Application_ID version=1.4 
xmlns=http://java.sun.com/xml/ns/j2ee; 
xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance; 
xsi:schemaLocation=http://java.sun.com/xml/ns/j2ee 
http://java.sun.com/xml/ns/j2ee/application_1_4.xsd;
  | display-nameJcaLaucher_EAR/display-name
  | module id=ConnectorModule_1152537779516
  | connectorJcaAdapter.rar/connector
  | /module
  | module id=EjbModule_1152537779546
  | ejbJcaMDBLauncher.jar/ejb
  | /module
  | /application

JcaAdapter-ds.xml
!DOCTYPE connection-factories PUBLIC 
  |   -//JBoss//DTD JBOSS JCA Config 1.5//EN
  |   http://www.jboss.org/j2ee/dtd/jboss-ds_1_5.dtd;
  | !--
  | AdocAdpater JBoss configuration File
  | --
  | connection-factories
  | no-tx-connection-factory
  | jndi-nameAdocAdapter/jndi-name
  | rar-nameJcaAdapter.rar/rar-name
  | connection-definition
  | javax.resource.cci.ConnectionFactory 
  | /connection-definition
  | /no-tx-connection-factory
  | /connection-factories

Everything works well if deploy outside an ear.  
Should not be a kind of specific jboss descriptor for an ear file ?

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

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


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


[JBoss-user] [JBoss jBPM] - Re: JBPM_LOG: who performed the transition?

2006-07-10 Thread m_ok
Thanks for replying. I'm not good at gymnastics and juggling either (but it's 
always good for a laugh ; ).

Could you elaborate on your view of what JBPM_LOG is for?

I don't see a point in reanalyzing every task of a process every time I want to 
provide a log to my users. I know I could store that info somewhere but then 
again isn't that what the JBPM_LOG table is for?

From my perspective, in a system, users do things and that is logged for 
reference/proof/audit, etc. 

Another word for this is audit trail. I think of logging (as in the case of 
JBPM_LOG and not log4j) as a synonym of audit trail and so I thought of logging 
in jbpm in that sense.
 
Am I wrong in my assumption of what JBPM_LOG is for?

(Sorry to the OP for thread-jacking a bit.)


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

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


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


[JBoss-user] [EJB 3.0] - Problem with inheritance and aop in MessageDrivenBeans (Bug?

2006-07-10 Thread jnerd
Hi there,

I am having a problem with inheritance, aop and message driven beans (using 
JBoss 4.0.4 GA with the EJB 3 option enabled).

I defined a couple of MDBs which listen to some topics and do nothing than log 
a little hello in the first instance. So my code looks something like:


  | @MessageDriven(
  | description=My Message driven bean to test JMS implementation. It does 
nothing but loggin the log4j.,
  | name=LogOneMDB,
  | activationConfig={
  | @ActivationConfigProperty(propertyName = destinationType, 
propertyValue = javax.jms.Topic)
  | ,@ActivationConfigProperty(propertyName = destination, 
propertyValue = topic/one) 
  | 
,@ActivationConfigProperty(propertyName=Durability,propertyValue=Durable)//subscription
  | 
,@ActivationConfigProperty(propertyName=subscriptionName,propertyValue = 
LogOneMDB)
  | ,@ActivationConfigProperty(propertyName=clientID,propertyValue = 
LogOneMDB)
  | }
  | )
  | public class LogOneMDB extends AbstractMDB implements MessageListener{}
  | 


  | @MessageDriven(
  | description=My Message driven bean to test JMS implementation. It does 
nothing but loggin the log4j.,
  | name=LogTwoMDB,
  | activationConfig={
  | @ActivationConfigProperty(propertyName = destinationType, 
propertyValue = javax.jms.Topic)
  | ,@ActivationConfigProperty(propertyName = destination, 
propertyValue = topic/two) 
  | 
,@ActivationConfigProperty(propertyName=Durability,propertyValue=Durable)//subscription
  | 
,@ActivationConfigProperty(propertyName=subscriptionName,propertyValue = 
LogTwoMDB)
  | ,@ActivationConfigProperty(propertyName=clientID,propertyValue = 
LogTwoMDB)
  | }
  | )
  | public class LogTwoMDB extends AbstractMDB implements MessageListener{}
  | 

and a (abstract) super class implementing the listener method:


  | class AbstractMDB {
  | public void onMessage(final Message message) {
  |  Logger.getLogger(this.getClass()).debug(Received a 
message.);
  | }
  | }
  | 

If you deploy something like this and send a message to the topic(s) you end up 
with following exception:


  | 3459235 [ERROR][JMS SessionPool Worker-58][org.jboss.ejb3.mdb.MDB] 
Exception in JMSCI message listener
  | java.lang.IllegalAccessException: Class 
org.jboss.aop.joinpoint.MethodInvocation can not access a member of class 
com.your.package.AbstractMDB with modifiers public
  | at sun.reflect.Reflection.ensureMemberAccess(Reflection.java:65)
  | at java.lang.reflect.Method.invoke(Method.java:578)
  | at 
org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:112)
  | at 
org.jboss.ejb3.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:166)
  | at 
org.jboss.ejb3.interceptor.EJB3InterceptorsInterceptor.invoke(EJB3InterceptorsInterceptor.java:63)
  | at 
org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:101)
  | at 
org.jboss.ejb3.entity.TransactionScopedEntityManagerInterceptor.invoke(TransactionScopedEntityManagerInterceptor.java:54)
  | at 
org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:101)
  | at 
org.jboss.ejb3.AllowedOperationsInterceptor.invoke(AllowedOperationsInterceptor.java:47)
  | at 
org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:101)
  | at org.jboss.aspects.tx.TxPolicy.invokeInCallerTx(TxPolicy.java:126)
  | at 
org.jboss.aspects.tx.TxInterceptor$Required.invoke(TxInterceptor.java:201)
  | at 
org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:101)
  | at 
org.jboss.ejb3.stateless.StatelessInstanceInterceptor.invoke(StatelessInstanceInterceptor.java:62)
  | at 
org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:101)
  | at org.jboss.ejb3.mdb.MDB.localInvoke(MDB.java:865)
  | at org.jboss.ejb3.mdb.MDB.localInvoke(MDB.java:844)
  | at 
org.jboss.ejb3.mdb.MDB$MessageListenerImpl.onMessage(MDB.java:1074)
  | at 
org.jboss.jms.asf.StdServerSession.onMessage(StdServerSession.java:266)
  | at 
org.jboss.mq.SpyMessageConsumer.sessionConsumerProcessMessage(SpyMessageConsumer.java:902)
  | at 
org.jboss.mq.SpyMessageConsumer.addMessage(SpyMessageConsumer.java:170)
  | at org.jboss.mq.SpySession.run(SpySession.java:323)
  | at org.jboss.jms.asf.StdServerSession.run(StdServerSession.java:194)
  | at 
EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:748)
  | at java.lang.Thread.run(Thread.java:595)
  | 

Am I overseeing something or is this a bug of the EJB3 MDB implementation?

Thanks in advance for your help and comments.
Cheers,

Patrick


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

Reply to the post : 

[JBoss-user] [Messaging, JMS JBossMQ] - Re: Problem with ClassNotFoundException while trying to add

2006-07-10 Thread blipsman
jaikiran!

Thanks a lot for your prompt help and advice.
Worked !
best.

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

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


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


[JBoss-user] [JBoss jBPM] - Re: vHost based Datasource

2006-07-10 Thread Becka
I think i have successfully created a vhost, but how can i set a deploy 
directory with a deployment scanner?


vhost1.moleman

 


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

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


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


[JBoss-user] [JBoss jBPM] - Re: New jBPM Getting Started Documentation

2006-07-10 Thread kbarfield
n.belford wrote : I have now also posted the getting started guide as a PDF. 
It is down at the bottom of the front page to the JBPM wiki.

Thanks!  I meant to do that after I finished the guide, but just forgot.

Kevin

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

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


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


[JBoss-user] [JBoss jBPM] - Re: vHost based Datasource

2006-07-10 Thread Becka

  | Host name=vhost1 autoDeploy=false
  |   deployOnStartup=false deployXML=false
  | Aliasvhost1.moleman/Alias
  | Valve className=org.apache.catalina.valves.AccessLogValve
  |prefix=vhost1 suffix=.log pattern=common
  |directory=${jboss.server.home.dir}/log/
  |  DefaultContext cookies=true crossContext=true 
override=true/
  | /Host

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

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


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


[JBoss-user] [EJB 3.0] - TrialBlazer is not working!

2006-07-10 Thread armita
Trying to deploy the trial blazer I am getting this error message ( AS is 
jboss-4.0.4.GA)

  | 18:57:14,594 WARN  [ServiceController] Problem starting service 
jboss.j2ee:service=EJB3,module=beans.jar
  | java.lang.TypeNotPresentException: Type javax.ejb.EJB not present
  | at 
sun.reflect.generics.factory.CoreReflectionFactory.makeNamedType(CoreReflectionFactory.java:98)
  | at 
sun.reflect.generics.visitor.Reifier.visitClassTypeSignature(Reifier.java:107)
  | at 
sun.reflect.generics.tree.ClassTypeSignature.accept(ClassTypeSignature.java:31)
  | at 
sun.reflect.annotation.AnnotationParser.parseSig(AnnotationParser.java:351)
  | at 
sun.reflect.annotation.AnnotationParser.parseAnnotation(AnnotationParser.java:175)
  | at 
sun.reflect.annotation.AnnotationParser.parseAnnotations2(AnnotationParser.java:69)
  | at 
sun.reflect.annotation.AnnotationParser.parseAnnotations(AnnotationParser.java:52)
  | at java.lang.reflect.Field.declaredAnnotations(Field.java:1002)
  | at java.lang.reflect.Field.getAnnotation(Field.java:989)
  | at 
org.jboss.aop.annotation.AnnotationElement.getVisibleAnnotation(AnnotationElement.java:75)
  | at org.jboss.aop.Advisor.resolveAnnotation(Advisor.java:388)
  | 

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

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


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


[JBoss-user] [JBoss Seam] - Re: Is Master-Detail possible in Seam

2006-07-10 Thread jcalvert
petemuir, can you elaborate on this? What does that do, 
TransactionType.NOT_SUPPORTED? Does it actually affect flushing?

I'm interested in potentially converting a Struts app backed by Hibernate to 
Seam. However we've had to set FlushMode.NEVER in many places because of the 
nature of our transactions. I'd like to believe there's a way to code around 
that, but I'd hate to start churning out code only to find it simply won't work.

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

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


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


[JBoss-user] [EJB 3.0] - Re: TrialBlazer is not working!

2006-07-10 Thread PeterJ
How did you install JBoss?  To use EJB3, you must either use the installer jar 
file, and select EJB3 from the installation options, or download the source 
package (tar.gz file) and compile it with a 5.0 JVM (it builds both the 
standrad distribution and the EJB3 distribution).  The EJB3 components are not 
part of the binary zip file.

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

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


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


[JBoss-user] [EJB 3.0] - Re: java.lang.ClassNotFoundException: No ClassLoadres found

2006-07-10 Thread PeterJ
Please post the contents of your ejb jar file by entering this command:

jar tf jar-file-name

My guess is that the class file is not in the correct location.

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

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


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


[JBoss-user] [JBoss Portal] - java.lang.ClassNotFoundException: org.jboss.portal.portlet.

2006-07-10 Thread ericmacau
I upgrade the JBoss Portal from 2.2 to 2.4 CR1, but it got the following 
exception. And my application cannot work any more. It worked fine in 2.2. I 
tried to search in the jbossportal.sar, no library contains the following 
missed class. Please help to solve.


  | 22:38:05,890 ERROR [PortletAppDeployment] Was not able to create service 
proxy
  | java.lang.ClassNotFoundException: 
org.jboss.portal.portlet.container.WebAppRegistry
  | at 
org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoa
  | der.java:1352)
  | at 
org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoa
  | der.java:1198)
  | at 
org.jboss.portal.core.deployment.jboss.PortletAppDeployment.injectSer
  | vices(PortletAppDeployment.java:108)
  | at 
org.jboss.portal.core.deployment.jboss.PortletAppDeployment.start(Por
  | tletAppDeployment.java:71)
  | at 
org.jboss.portal.server.deployment.jboss.PortalDeploymentInfo$Deploym
  | entContext.start(PortalDeploymentInfo.java:211)
  | at 
org.jboss.portal.server.deployment.jboss.ServerDeployer.start(ServerD
  | eployer.java:242)
  | at org.jboss.deployment.MainDeployer.start(MainDeployer.java:1007)
  | at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:808)
  | at sun.reflect.GeneratedMethodAccessor204.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.interceptor.AbstractInterceptor.invoke(AbstractIntercept
  | or.java:133)
  | at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
  | at 
org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelM
  | BeanOperationInterceptor.java:142)
  | at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
  | at 
org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.
  | java:264)
  | at 
org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
  | at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
  | at $Proxy124.deploy(Unknown Source)
  | at 
org.jboss.portal.server.deployment.jboss.ServerDeployer.deploy(Server
  | Deployer.java:296)
  | at sun.reflect.GeneratedMethodAccessor289.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)
  | at 
org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.
  | java:264)
  | at 
org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
  | at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
  | at $Proxy91.deploy(Unknown Source)
  | at 
org.jboss.portal.server.deployment.WebAppAdapter.deploy(WebAppAdapter
  | .java:54)
  | at 
org.jboss.portal.server.deployment.WebAppIntercepter.handleNotificati
  | on(WebAppIntercepter.java:145)
  | at sun.reflect.GeneratedMethodAccessor3.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.notification.NotificationListenerProxy.invoke(Notificati
  | onListenerProxy.java:153)
  | at $Proxy125.handleNotification(Unknown Source)
  | at 
org.jboss.mx.util.JBossNotificationBroadcasterSupport.handleNotificat
  | ion(JBossNotificationBroadcasterSupport.java:127)
  | at 
org.jboss.mx.util.JBossNotificationBroadcasterSupport.sendNotificatio
  | n(JBossNotificationBroadcasterSupport.java:108)
  | at 
org.jboss.deployment.SubDeployerSupport.emitNotification(SubDeployerS
  | upport.java:340)
  | at 
org.jboss.deployment.SubDeployerSupport.start(SubDeployerSupport.java
  | :308)
  | at 
org.jboss.web.AbstractWebContainer.start(AbstractWebContainer.java:48
  | 2)
  | at sun.reflect.GeneratedMethodAccessor251.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 

[JBoss-user] [EJB 3.0] - Re: Remote Client to EJB 3.0 fail .. :( javax.naming.Communi

2006-07-10 Thread PeterJ
Did you, by any chance, change the JNDI port?

What operating system are you running on?  Are you running a firewall and have 
your configured it properly?

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

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


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


[JBoss-user] [Installation, Configuration Deployment] - Re: NoClassDefFoundError:org/dom4j/xpath/DefaultXPath in dep

2006-07-10 Thread PeterJ
The dom4j jar file packaged with JBoss do not contain the xpath components (I 
recall reading the JIRA associated with this change (was it in 4.0.3???) but 
could not find it again).  You will have to package the dom4j jar file with 
your app (that is what I did).

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

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


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


  1   2   3   >