[jboss-user] [JBoss Messaging] - EJB3 MDB and 1.2.0.Beta2

2007-02-06 Thread asturn
I switched from 1.0.1.SP2 to 1.2.0.Beta2 and now my test application does not deploy any more: | 08:50:29,395 WARN [JmsActivation] Failure in jms activation [EMAIL PROTECTED]([EMAIL PROTECTED] destination=/queue/testQueue isTopic=false tx=true durable=false reconnect=10

[jboss-user] [JBoss Portal] - Re: How do I edit User Portlet?

2007-02-06 Thread dleerob
Thanks PeterJ for the responses. Nice to see you so actively participating in the forums. You've responded to a few of my posts already, much appreciated. I did find the REGISTER_REGISTER propery in the login.jsp file thanks. And yes I can simply remove that and it will disappear. Jimisola,

[jboss-user] [JBoss Seam] - SelectItems with objects?

2007-02-06 Thread SmokingAPipe
Simple problem: I want to have a selectonemenu where the labels are strings (as usual) and the values are objects. For example, let's say that the user can go to a checkout page and select a shipping address: home, business, or other. Those have labels, but the value is an Address object.

[jboss-user] [JBoss Seam] - Re: exceptions.xml

2007-02-06 Thread petemuir
AFAIK this needs to be done http://jira.jboss.com/jira/browse/JBSEAM-718 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4011773#4011773 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4011773

[jboss-user] [JBossWS] - Interop with WCF

2007-02-06 Thread stone_42
Hello, can you tell me how good the interoperability between JBossWS and Microsofts WCF web service implementation is? Currently, I am using the ws4ee stack and I'm even not able to call a hello world wcf web service, because ws4ee and wcf (configured to use soap 1.1) both do not understand

[jboss-user] [JBoss Getting Started Documentation] - Cant Compile Duke's Bank

2007-02-06 Thread amitvad
package com.sun.ebank.ejb.account does not exist error. Not able to find com.sun.* anywhere. Kindly help View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4011776#4011776 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4011776

[jboss-user] [JBoss Seam] - Re: A time picker?

2007-02-06 Thread petemuir
The nicest time picker I've seen is the one from Dojo (but you'll probably want to JSFize that - someone suggested jmaki is good for that). View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4011777#4011777 Reply to the post :

[jboss-user] [JBoss Seam] - Re: SelectItems with objects?

2007-02-06 Thread SmokingAPipe
COOL! That's exactly what I'm talking about. A select menu where the values are entities. This is a pretty common usage but it's not something which is handled well in any of the existing systems (whether JSP, JSF, or even PHP or whatever). If there's a good Seam solution that would be

[jboss-user] [JBoss Seam] - Multiple DataModels in an SFSB

2007-02-06 Thread lightbulb432
I have multiple DataModels with corresponding DataModelSelections in an SFSB. The problem is that every time one is injected based on a selection, the other seems to get injected into its DataModelSelection as well (a default value of the first in the row of that other DataModel, because no row

[jboss-user] [JBoss Seam] - Re: SelectItems with objects?

2007-02-06 Thread petemuir
Wel, the wiki version should work fine with 1.1.0 I think. The entityconverter is there so that you can reference a list of objects, which have @Id fields/methods and uses that as the value to write to the page - take a look at the wiki - it explains it all. View the original post :

[jboss-user] [JBoss Seam] - Re: SelectItems with objects?

2007-02-06 Thread SmokingAPipe
Ok I may go ahead and try that. Btw here's the link: http://wiki.jboss.org/wiki/Wiki.jsp?page=SeamSelectItemsNewDesign View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4011780#4011780 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Multiple DataModels in an SFSB

2007-02-06 Thread SmokingAPipe
I have had multiple DataModels in SFSBs and had no problems, but I have always used @DataModel on a variable, not on a method. Also I would think that @Factory and @DataModel should not be on the same thing. Try putting your @DataModels as variables, and leave your @Factorys on the

[jboss-user] [JBoss AOP] - Re: InterfaceIntroduction with Dynamic AOP

2007-02-06 Thread stalep
hi, im afraid its impossible to use introduction with dynamic aop. the reason is that for introduction, the class is altered (which is impossible to do when the class is already loaded by the jvm). for pointcuts its not needed to alter the class after its been prepared. so im afraid you have to

[jboss-user] [JBoss Seam] - Re: A time picker?

2007-02-06 Thread SmokingAPipe
I'm just going to do this in the simple way, which is setting components in the SFSB and then having the SFSB handle it when persist() or whatever is called. At some point when a time picker is packaged and ready to go I'll try it. View the original post :

[jboss-user] [JBoss Seam] - Re: Remoting: premature end of file

2007-02-06 Thread [EMAIL PROTECTED]
The request looks fine to me - well formed, no obvious problems, and your other code seems pretty straight forward too. If you post a working example of the issue to jira I'd be glad to take a look at it for you. View the original post :

[jboss-user] [JBoss Seam] - Re: SeamSelectItems - 1.1.1beta4

2007-02-06 Thread Frippe
May I add aquestion in this discussion? I am trying to get S.S.I. to work with a stateless backingbean. The code below renders just fine, and my current value is set correctly as well. My problem arise when I submit the form with the selectOneMenu. I get the follwing exception: 09:31:46,386

[jboss-user] [JBoss Seam] - Re: SelectItems with objects?

2007-02-06 Thread SmokingAPipe
Quick question: I'm using SMPC but my EntityManager is not named entityManager. What do I put in my components.xml to fix that? I'm eager to try this now because it looks like exactly the right way to do this. I guess I will switch to 1.1.5 in the near future so I'll try that also. View the

[jboss-user] [JBoss Seam] - Re: SelectItems with objects?

2007-02-06 Thread petemuir
selectitems:config entity-manager=#{entityManager} / - you'll also need to add the namespace for the selectitems prefix. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4011792#4011792 Reply to the post :

[jboss-user] [Clustering/JBoss] - Re: Clustering Issue / SEAM

2007-02-06 Thread mikepkp17
Thank you for this, since both issues are already closed, is there any way I can test this already? Some Nightly Build of EJB3 project which I can include in my JBossAS 4.0.5.GA or build it somehow myself (which I already tried but the manifest.mf in the ejb3-jars state that it is RC7?) I

[jboss-user] [JBoss Seam] - Re: SeamSelectItems - 1.1.1beta4

2007-02-06 Thread petemuir
Can you post the exception (the whole of it) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4011794#4011794 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4011794 ___ jboss-user

[jboss-user] [JBoss Seam] - Problem with @Logger

2007-02-06 Thread kristof.devos
Hi, I was trying to convert my old logger initialization code to the new logger annotation, but when I have a logger annotation in an abstract superclass and the implementing class I always get a null logger object. In other cases it works fine. I tried private and protected restrictions but

[jboss-user] [JBoss Seam] - Re: SeamSelectItems - 1.1.1beta4

2007-02-06 Thread Frippe
Here it is: | 10:40:25,921 ERROR [PhaseListenerManager] Exception in PhaseListener RESTORE_VIEW(1) afterPhase | java.lang.NullPointerException | at org.apache.myfaces.renderkit.html.util.AutoScrollPhaseListener.afterPhase(AutoScrollPhaseListener.java:52) | at

[jboss-user] [JBoss Portal] - Re: Portal With LDAP rquires Users in 2 places, LDAP and Por

2007-02-06 Thread dleerob
I am having a similair issue. Pity no one has replied to your post. Hopefully someone can help me. I have setup portal 2.4.1 to use LDAP authentication. However, it only authenticates with LDAP and allows access to portal. It doesn't pull in any user information. So I have to create a local

[jboss-user] [JBoss Seam] - Re: Problem with @Logger

2007-02-06 Thread sbublava
Can you show us your code? Using @Logger in an abstract super-class works fine for me. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4011800#4011800 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4011800

[jboss-user] [JBoss Seam] - Re: Problem with @Logger

2007-02-06 Thread kristof.devos
really basic in abstract class @Logger private Log log same in implementation class, also same name but should not be problem as it is private in debug I see 2 log instances -- null View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4011801#4011801 Reply to the

[jboss-user] [JBoss Seam] - Re: SeamSelectItems - 1.1.1beta4

2007-02-06 Thread petemuir
Frippe wrote : javax.servlet.ServletException: Could not restore StateHolder of type com.omxgroup.lap.acl.actions.ACLListActionImpl$1 (missing no-args cons | | tructor?) Do you have one? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4011802#4011802 Reply

[jboss-user] [JBoss Seam] - Re: Problem with @Logger

2007-02-06 Thread sbublava
Ahh, I'm using something like this: | abstract class Foo { | @Logger | private Log log; | | protected Log getLog() { | return this.log; | } | } | | class Bar extends Foo { | public foobar() { | getLog().debug(...); | } | } |

[jboss-user] [Security JAAS/JBoss] - Re: Audit Facilities

2007-02-06 Thread jc7442
It looks like a security audit service will be included in JBoss 5; http://wiki.jboss.org/wiki/Wiki.jsp?page=SecurityAuditService View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4011804#4011804 Reply to the post :

[jboss-user] [JBoss Seam] - Re: SeamSelectItems - 1.1.1beta4

2007-02-06 Thread Frippe
I have a stateless bean with that name as below. I've removed a few things from this class which has no bearing on the current problem. @Stateless | @Name(aclList) | public class ACLListActionImpl implements ACLListAction { | | @PersistenceContext | private EntityManager

[jboss-user] [JBoss Portal] - Re: How do I edit User Portlet?

2007-02-06 Thread [EMAIL PROTECTED]
Removing the link, will not remove the feature on the back-end. So if a user wants, he can still type the correct URL to register himself. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4011806#4011806 Reply to the post :

[jboss-user] [JBoss Seam] - Re: SeamSelectItems - 1.1.1beta4

2007-02-06 Thread petemuir
Well for a start the @SelectItems annotation isn't even in 1.1.1beta4 - so you've certainly got some packaging problems. Further you don't really seem to understand how the package helps you with conversion. I really suggest you follow the getting started guide on the wiki and look at the

[jboss-user] [JBoss Portal] - Re: Is header content injection coded in portal 2.4.0 ?

2007-02-06 Thread [EMAIL PROTECTED]
no, it's a we should add support for raw content View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4011810#4011810 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4011810 ___ jboss-user

[jboss-user] [JBoss Seam] - Re: SeamSelectItems - 1.1.1beta4

2007-02-06 Thread Frippe
...just when I thought I've begun to understand things. :-/ Well, you're probable right. I've been battling this for some time now, and however I do I can't get my selectOneMenues to work. Thank you for your time. View the original post :

[jboss-user] [JCA/JBoss] - How do you set a boolean property in an XA datasource?

2007-02-06 Thread apill
I'm using Jboss 5 Beta1. I have an XA datasource to DB2 on an AS400. I need to set a property on the datasource called translate binary, to the boolean value true. Previously the local-tx-datasource specified this in the connection URL. i.e. | local-tx-datasource |

[jboss-user] [JBoss Messaging] - Re: Messaging works in stand-alone client but not in Enterpr

2007-02-06 Thread timfox
Sure, the versions are different, this is why you have to do a scoped deployment. Substituting the versions may work, but is not recommended. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4011814#4011814 Reply to the post :

[jboss-user] [EJB 3.0] - Re: EJB client: NullPointerException in StatelessLocalProxy

2007-02-06 Thread eiben
ALRubinger wrote : @EJB injection into Servlets isn't yet supported, Yannik. I have a similar problem; for one I also wanted to inject a stateless bean into a servelt, but since that doesn't seem to work. So next I tried injecting the same bean in a normal app, but I get the same problem :(

[jboss-user] [JBossWS] - Re: (wstools/jbossws) problem generating WSDL from Java with

2007-02-06 Thread centecbertl
The same thing happens with jboss 4.0.5.GA (installed using JEMS installer - thus including jbossws-1.0.3.SP1 (date=200609291417) when defining WebServices using JSR 181 annotations applied to EJB3 Stateless Session Beans. Seems like any parameter of a type defined within an inheritence

[jboss-user] [JBoss Portal] - Re: Showing a secured page when user is logged in

2007-02-06 Thread dleerob
Did you solve this? I am having a similair issue. Pity no one has replied to your post. Hopefully someone can help me. I have setup portal 2.4.1 to use LDAP authentication. However, it only authenticates with LDAP and allows access to portal. It doesn't pull in any user information from LDAP.

[jboss-user] [JBoss Messaging] - Re: Messaging works in stand-alone client but not in Enterpr

2007-02-06 Thread timfox
See http://wiki.jboss.org/wiki/Wiki.jsp?page=ClassLoadingConfiguration Also http://wiki.jboss.org/wiki/Wiki.jsp?page=JBossMessagingUser_Enabling_access_to_remote_JBoss_Messaging_instance may be useful depending on your deployment scenario. You don't need jboss-messaging-client.jar if

[jboss-user] [JBoss Seam] - JBSEAM-317 s:link tag creates url with double '?' mark

2007-02-06 Thread S0d0
Hi, I just upgraded from 1.0 to 1.1.5GA and I'm still having problems with s:link. It still generates urls with two ? marks. Any idea? Br, Juha View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4011823#4011823 Reply to the post :

[jboss-user] [Messaging, JMS JBossMQ] - Re: org.jboss.mq.SpyJMSException: Could not store message

2007-02-06 Thread htrivedi
We have resolved this issue by clearing up JMS_messages and JMS_transactions table in HSQLDB, by deleting the records in these table. We can delete the records by adding the delete statement in hsqldb-jdbc2-servcie.xml file and then starting the JBoss again. This will delete all the pending

[jboss-user] [JBoss Portal] - Re: JBoss Portal LDAP Setup

2007-02-06 Thread dleerob
This is a great thread for LDAP integration, and I used your Wiki to setup my LDAP integration successfully...well...almost. I have a problem, and I've found two other posts from different people with the same/similair problem, however they never got any replies. You guys seem clued up, lets

[jboss-user] [JCA/JBoss] - Re: How do you set a boolean property in an XA datasource?

2007-02-06 Thread [EMAIL PROTECTED]
We should be able to determine the type automatically from the underlying XADataSource class. Can you confirm that the XADataSource has a get method corresponding to the set? In other words, they API should have a getTranslateBinary method that returns a boolean. View the original

[jboss-user] [JBoss Portal] - Re: JBoss Portal LDAP Setup

2007-02-06 Thread [EMAIL PROTECTED]
Can you please stop cross-posting ? It's the 3 email that you hijack with the same text. You also started a thread here that seems related: http://www.jboss.com/index.html?module=bbop=viewtopicp=4009914#4009914 But never came back on it. We need good behavior from the forum user to keep it as a

[jboss-user] [JBossWS] - Re: org.jboss.ws.WSException: No wrapped types available

2007-02-06 Thread heapifyman
Okay, thanks. I'll try it. Is there already a date when version 1.2.0 will be officially released? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4011829#4011829 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4011829

[jboss-user] [JCA/JBoss] - Re: How do you set a boolean property in an XA datasource?

2007-02-06 Thread apill
It has public boolean isTranslateBinary() not public boolean getTranslateBinary() View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4011831#4011831 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4011831

[jboss-user] [JBoss Eclipse IDE (users)] - Eclipse 2.0.0.Beta2 doesn't keep server on Eclipse restart

2007-02-06 Thread damianharvey
Hi, I'm using JBossIDE for Eclipse 2.0.0.Beta2 on Mac OS X 10.4.8 with Eclipse 3.2.1 Build id: M20060921-0945 and running JBoss 4.0.5GA. When I create a server in the JBoss Server View it will start and run fine (aside from the eventual OutofMemoryException from Perm Gen). However, when I

[jboss-user] [JCA/JBoss] - Re: How do you set a boolean property in an XA datasource?

2007-02-06 Thread [EMAIL PROTECTED]
Yep, just looked at the JTOpen doc. We don't allow for this in the current implementation. We only use the get form. I will file a JIRA request. I should be able to get to it for 4.2 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4011834#4011834 Reply to the

[jboss-user] [JCA/JBoss] - Re: How do you set a boolean property in an XA datasource?

2007-02-06 Thread apill
Ok, thanks. In the meantime I'll see if wrapping the xa datasource class and adding the getter method to call the isTranslateBinary works for us. Cheers for the quick reply. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4011836#4011836 Reply to the post :

[jboss-user] [JCA/JBoss] - Re: How do you set a boolean property in an XA datasource?

2007-02-06 Thread [EMAIL PROTECTED]
http://jira.jboss.org/jira/browse/JBAS-4072 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4011837#4011837 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4011837 ___ jboss-user

[jboss-user] [JNDI/Naming/Network] - Listen to binding events: EventContext

2007-02-06 Thread justkeys
Does jboss have some context-implementation that implements EventContext? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4011838#4011838 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4011838

[jboss-user] [JBoss Portal] - problem in logout

2007-02-06 Thread jaime1985
Hi,i am trying to deploy my own portal and my problem is that when a user logout, the page that appears is the default page of the default portal. I want that the shown page when a user logout is the default page of my own portal (MyPortal). How can I do this??? Thanks for your help !!! View

[jboss-user] [JBossCache] - Re: Configuration problems For PojoCache under JBoss AS

2007-02-06 Thread Naxo
Thanks Ben for your replies, The document written by Jamie Reifsnyder is just what i was looking for. I didn't know exactly how to use and installed JBoss Cache inside JBoss AS. And I think you should do something like that in the documentation, cause there are lots of examples about

[jboss-user] [JCA/JBoss] - Re: How do you set a boolean property in an XA datasource?

2007-02-06 Thread apill
I fixed the issue until you have implemented the fix by subclassing the XA datasource. See below for anyone else wanting to do this. | import com.ibm.as400.access.AS400JDBCXADataSource; | | /** | * This class is a work around for a JBoss JCA datasource missing feature. For | *

[jboss-user] [Installation, Configuration Deployment] - I deploy my old portlets - raise error

2007-02-06 Thread VitalyV
Hello! I deploy my old portlets (for release jboss-portal-2.4.1 - without error) - raise error on jboss-portal-2.6-ALPHA*. My xml-file is very simple: jboss-app.xml jboss-app app-nametestHeaderApp/app-name /jboss-app jboss-portlet.xml portlet-app

[jboss-user] [JBoss Seam] - Re: Seam Maven2

2007-02-06 Thread fabricio.lemos
I decided to try it out on an existing project. I removed all my dependencies and added jboss.seam.profiles:seam-facelets one. Maven downloaded a lot of jars, but it seems that there is not, among them, a (transitive) dependency for javax.ejb package. View the original post :

[jboss-user] [EJB 3.0] - Inheritance - ClassCastException after upgrade to BEA JRocki

2007-02-06 Thread CarstenRudat
Hi all, I have an entity NaturalPerson extends Person with singe table inheritance. @Inheritance(strategy = InheritanceType.SINGLE_TABLE) There is a defined column @DiscriminatorColumn(name = INHERITANCETYPE, discriminatorType = DiscriminatorType.STRING) which is edited with the correct

[jboss-user] [Installation, Configuration Deployment] - Re: java.net.BindException: Address already in use: JVM_Bind

2007-02-06 Thread rohit1183
I encountered this problem after I once restarted my system. I did a netstat found that Microsoft Office communicator (Which I started before eclipse) was using port 1098. Below is the output from netstat: TCP172.21.50.11:1098 192.168.200.37:5060ESTABLISHED 2528

[jboss-user] [JBossWS] - Problem with ws4ee stack and wsdl description using xsd:impo

2007-02-06 Thread stone_42
Hello, I have a very simple WCF web service and a ws4ee client running in Jboss 4.0.3sp1, but using the ws4ee stack delivered with JBoss 4.0.4. The WSDL of the WCF service is separated into two documents. The main document contains the following wsdl:types definition wsdl:types | xsd:schema

[jboss-user] [JBoss Seam] - Re: Quick deployment during development

2007-02-06 Thread rmemoria
Yes... I was using netbeans and I've never tried seam-gen before. Now I'm moving my project to Eclipse... Thanks View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4011887#4011887 Reply to the post :

[jboss-user] [JBossCache] - Re: Problems while using JBoss Cache Replication in Cluster

2007-02-06 Thread nirajal
I was able to solve the problem by upgrading to Jgroups 2.4 version. But now I am facing the following problem: Caused by: java.lang.IllegalArgumentException: Marshaller.extractFqn(): Unknown method call id: -1 I have been trying to solve the problem since yesterday evening. Any help in this

[jboss-user] [JBoss Seam] - Re: A suggestion for improvements in Remember me (JBSEAM-735

2007-02-06 Thread petemuir
That's a mistake I think, it is to do with the security. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4011885#4011885 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4011885 ___

[jboss-user] [JBoss Seam] - Re: JBSEAM-317 s:link tag creates url with double '?' mark

2007-02-06 Thread S0d0
Yes, I know.. :) I can try to create one. Here is my code where the problem occurs: | !DOCTYPE composition PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd; | ui:composition xmlns=http://www.w3.org/1999/xhtml; |

[jboss-user] [JBoss jBPM] - Re: State machine

2007-02-06 Thread sanne
Hi Koen, Thanks for your reply. The question was meant to be rhetorical! No serious. A workflow is about process state. A state machine in its minimalist form is an object state. The state of the object is changed according to the type of event that occurs. Say the object is in state s1. On

[jboss-user] [Beginners Corner] - Performance tuning in JBoss

2007-02-06 Thread nb123
What performance tuning methods can be applied to the programs to ensure faster secure View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4011879#4011879 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4011879

[jboss-user] [JBoss Seam] - Re: A suggestion for improvements in Remember me (JBSEAM-735

2007-02-06 Thread petemuir
I suggest you add this to the JIRA issue as a comment. Thanks :) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4011877#4011877 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4011877

[jboss-user] [JBoss Seam] - Re: JBSEAM-317 s:link tag creates url with double '?' mark

2007-02-06 Thread petemuir
It would probably help if you were able to add a testcase to the jira issue View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4011882#4011882 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4011882

[jboss-user] [Beginners Corner] - Re: JBoss Queries

2007-02-06 Thread nb123
How do i go about creating those users you mentioned. please help. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4011875#4011875 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4011875

[jboss-user] [JBoss Seam] - A suggestion for improvements in Remember me (JBSEAM-735)

2007-02-06 Thread berserksangr
First of all, thank you for your hard work! Watching comments on the new Remember me functionality I have a suggestion to replace current basic (in my opinion not sufficient) user-name-cookie approach by the following, far more secure scenario: Create Rembember me Cookie: 1.1. get: username,

[jboss-user] [JBossWS] - Unscuring wsdl definition

2007-02-06 Thread tremalnaik
Hello, I'm using jboss 4.0.2 I have deployed a simple web service, trying now to secure it. I added the following definitions in the web.xml | security-constraint | web-resource-collection | web-resource-nameProtected service/web-resource-name | descriptionno

[jboss-user] [EJB/JBoss] - Re: Stateless session bean cyclic reference

2007-02-06 Thread vstoyanov
Yes, you are right. There is a call to the create() method of the home interface. I am aware that it is not a good practice but it would require a lot of refactoring to move it out of the ejbCreate() method, because there are many SLSBs. So, I am asking if someone has an idea how can we just

[jboss-user] [JBoss jBPM] - Re: State machine

2007-02-06 Thread [EMAIL PROTECTED]
Sanne, You can think of jBPM as a 'sophisticated' state machine. In most cases a workflow has the need to keep track of what is going on at a particular moment in time (i.e. manage state). OTOH pure state machines cannot deal with e.g. multiple concurrent paths of execution and automatically

[jboss-user] [JBoss Seam] - Re: Seam 1.1.5.GA released-problem with upload pictures

2007-02-06 Thread JoviJojo
Hi, i have posted a message few days back concerning upload pictures in seam space application. now i just tried again to load images and below is one of the exceptions i got: (the picture i tried to load is one of the png from seam 1.1.5, its not at all big) can somebody from seam team please

[jboss-user] [JBoss Portal] - Re: JBoss Portal LDAP Setup

2007-02-06 Thread dleerob
My appologies. I did find 2 other threads where they asked the same question, and no body replied. So I posted my question there too in hopes that the original creators of the thread may have found a solution, and they would get a topic reply notification, in which case they could help me. It

[jboss-user] [JBossWS] - Re: Unscuring wsdl definition

2007-02-06 Thread tremalnaik
I forgot to say that mine is a JAX-RPC service endpoint View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4011897#4011897 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4011897 ___

[jboss-user] [JBoss jBPM] - Re: BPEL extension in a cluster

2007-02-06 Thread SergStone
And once again. Does jBPM BPEL work in a clustered environment? Does it support failover and automatic continuation of a process execution? How do timers and loops work in cluster environment? I hope the answers are as simple as yes/no. Thanks, Serg View the original post :

[jboss-user] [JBoss Seam] - Re: A suggestion for improvements in Remember me (JBSEAM-735

2007-02-06 Thread berserksangr
Comment to JBSEAM-735 added (although it has status closed). View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4011905#4011905 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4011905

[jboss-user] [EJB 3.0] - How to get the JNDI binding within an EJB?

2007-02-06 Thread apill
Is it possible, from within an EJB to lookup its JNDI name for its local interface? Thanks View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4011906#4011906 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4011906

[jboss-user] [JBoss/Spring Integration] - Re: ClassCastException

2007-02-06 Thread zaidatheer
Well, I had same problem, however it was SIMPLY solved by putting the (or jboss-spring-jdk5.jar) in the default/lib. Never ever put jboss-spring-jdk5.jar in your spring or deployer, this is the problem. Regards, Zaid View the original post :

[jboss-user] [JBoss Portal] - Re: JBoss Portal LDAP Setup

2007-02-06 Thread [EMAIL PROTECTED]
Thanks, no harm done. i Hope you will find your way htrough your issue View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4011907#4011907 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4011907

[jboss-user] [JBoss Seam] - Re: Problem with @Logger

2007-02-06 Thread [EMAIL PROTECTED]
Actually, yeah, this is a silly limitation. I need to allow multiple logger fields after all. Sillyme. I'll implement that. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4011909#4011909 Reply to the post :

[jboss-user] [JBoss Messaging] - Re: JBoss Messaging thread BLOCKED at method org.jboss.jms.c

2007-02-06 Thread sathish_06
Hi, Does Jboss Connection factory (org.jboss.jms.client.JBossConnectionFactory class) provides any kind of pooling mechanism, which pools TopicConnection/TopicSession objects ? The reason for asking this is, in our Producer piece of code, we do create multiple TopicConnection objects and

[jboss-user] [JBoss Messaging] - Re: JBoss Messaging thread BLOCKED at method org.jboss.jms.c

2007-02-06 Thread timfox
sathish_06 wrote : Hi, | Does Jboss Connection factory (org.jboss.jms.client.JBossConnectionFactory class) provides any kind of pooling mechanism, which pools TopicConnection/TopicSession objects ? | If you use the JMS JCA resource adaptor, it will provide pooling:

[jboss-user] [EJB 3.0] - Using own Classes as member for ManyToMany-Assotiations

2007-02-06 Thread micho
I defined a class public class UsergroupList extends ArrayListUsergroup | {} | The class user is public class User implements Serializable | { ... | private UsergroupList mUsergroupList; | | @ManyToMany ( targetEntity = Usergroup.class ) | public Collection

[jboss-user] [JBoss Seam] - multiple component instances in one page

2007-02-06 Thread soudmaijer
Allright, I might be asking something dumb, but: I have build a simple helloworld application. Below is the component: | @Name(helloworld) | public class Helloworld { | | private DumbUser dumbUser; | | public String sayHello() { |

[jboss-user] [JBossCache] - TreeCache: Retrieveing multiple entries under a node

2007-02-06 Thread arvinder
JBoss Cache Version: 1.4.1.G.A Assuming I store entries such as: treecache.put(/a/b/c, 1, new Object(1)); treecache.put(/a/b/c, 2, new Object(2)); treecache.put(/a/b/c, 3, new Object(3)); This means I have 3 entries under /a/b/c. If this is correct, Is this the correct way to retrieve all the

[jboss-user] [JBoss Portal] - Re: Packaging of portlet-instances.xml

2007-02-06 Thread legolas
Peter thank you for clarifying that, and Julian thank you for showing how to get hold of the instance container. We will work on an MBean based solution that inserts its definitions using the instance container. Grtz, Marcel View the original post :

[jboss-user] [Clustering/JBoss] - Re: Clustering Issue / SEAM

2007-02-06 Thread [EMAIL PROTECTED]
You can try checking out the AS 4.2 code at http://anonsvn.jboss.org/repos/jbossas/branches/Branch_4_2/ and building the AS (go into build dir and execute build.bat or build.sh.) Under build/output a JBoss distribution with recent EJB3 code will be built. You'd then have to figure out how to

[jboss-user] [JBoss jBPM] - Re: change database

2007-02-06 Thread fuligj
I think jbpm-jpdl-3.2.Beta1's documentation is not correct, because for example there is no jbpm.sar in deploy directory, refered by the documentation section 8.1.5. So has anybody a working solution to change the db in jbpm-jpdl-3.2.Beta1? best regards! View the original post :

[jboss-user] [JBoss Seam] - Re: multiple component instances in one page

2007-02-06 Thread soudmaijer
I forgot to mention, when I remove the line: h:inputText value=#{helloworld.dumbUser.name}/ everything works fine. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4011932#4011932 Reply to the post :

[jboss-user] [JBoss Seam] - Re: multiple component instances in one page

2007-02-06 Thread sbublava
Well dumbUser is null, so the value you enter cannot be assigned to dumbUser.name. Don't you see a NullPointerException in the log file? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4011933#4011933 Reply to the post :

[jboss-user] [JBoss Seam] - Re: multiple component instances in one page

2007-02-06 Thread soudmaijer
sbublava wrote : Well dumbUser is null, so the value you enter cannot be assigned to dumbUser.name. | | Don't you see a NullPointerException in the log file? OMG, i`m an idiot, been working to long today I guess... Indeed this was the problem, but no nullpointers in the log (strange).

[jboss-user] [JBoss Seam] - Re: multiple component instances in one page

2007-02-06 Thread sbublava
soudmaijer wrote : | Indeed this was the problem, but no nullpointers in the log (strange). | Then it's probably a regular error message. Try adding: h:messages / View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4011939#4011939 Reply to the post :

[jboss-user] [JBoss jBPM] - Re: Adding JBPM to existing JBOSS 4.0.4 AS

2007-02-06 Thread crussell42
For jbpm.3.2beta1 I have had some success but still get some exceptions related to transaction management when I try to signal a process to its end state. In a nutshell assuming you are deploying jbpm-enterprise.ear. 1. Configure jboss with jms messaging as per jboss instructions. 2. Config your

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Perfomance issues with CMP entity beans with JBOSS server

2007-02-06 Thread mayaVkumar
We are using CMP entity beans in our application deployed on Jboss3.2.7 server with commit Option ?A? for container Configuration in StandardJboss.xml on jboss conf folder. Whenever any getter method is called on entity bean, ejbStore () method is called. This causes performance drain in our

[jboss-user] [JBoss Seam] - Re: multiple component instances in one page

2007-02-06 Thread soudmaijer
Alright, this works, but now to another problem. Lets say my simple object looks like this: | @Name(dumbUser) | public class DumbUser { | | private String name; | | public DumbUser() { | } | | public String getName() { | return

[jboss-user] [JBoss jBPM] - Ready Made tasks

2007-02-06 Thread mar268
Hi All, I am new to jBPM. Can someone please tell me if jBPM comes with any ready made tasks/activities such as sending Notifications via email, reading from JMS queues, waiting for manual input etc.?. I have see some other workflow products come with such features. I just want to find out

[jboss-user] [EJB 3.0] - Annotated MDB not detected/deployed

2007-02-06 Thread lpmon
Symptom: Annotated MDB is not detected (apparently). It is not deployed. No [EJBContainer] STARTED EJB: in log for the MDB. The related JMS topic is not created automatically. more info: I can place the exact same MDB into another ear and it works. I did this experiment as a debug test.

[jboss-user] [JBoss Seam] - Re: multiple component instances in one page

2007-02-06 Thread sbublava
@Name(helloworld) | public class Helloworld { | | @In(dumbUser) | private DumbUser dumbUser1; | | @In(dumbUser) | private DumbUser dumbUser2; | } I believe the second one should be @In(dumbUser2). View the original post :

[jboss-user] [JBoss jBPM] - Re: change database

2007-02-06 Thread estaub
As you probably know, there is a .sar file in the 3.1.2 deploy directory. In 3.1.2, you have to run antfile build.deploy.xml after running build.xml to build the deployment. (I haven't tried 3.2 - I just thought these might point you at something you might have forgotten.) -Ed Staub View

  1   2   3   >