[jboss-user] [JBoss Seam] - Re: Force method to be run before page redirect (no pages.xm

2008-01-28 Thread w17chm4n
Using interceptor didn`t help :| | @Interceptor | public class QuestionRemovedInterceptor { | | @AroundInvoke | public Object aroundInvoke(InvocationContext invocation) throws Exception { | Contexts.removeFromAllContexts(questionCategoryList); | return

[jboss-user] [JBoss Seam] - Re: JBoss Seam problem with download file big file

2008-01-28 Thread GregTk
Please somebody explain me how organize downloading big files from filesystem, with Jboss Seam. Is that real? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4123942#4123942 Reply to the post :

[jboss-user] [JBoss Seam] - Re: JBoss Seam problem with download file big file

2008-01-28 Thread svadu
The default memory settings from JBoss is likely not enough for a production application anyway. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4123944#4123944 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4123944

[jboss-user] [JBoss Seam] - Re: Beginner: Bind SelectOneMenu to @onetoone entity object

2008-01-28 Thread nickarls
What version of Seam are you running? Are there any errors in the log from not being able to create the persitence units? In 2.0 the link should be something like a deployed Foo-ds.xml with a | jndi-nameFooDatasource/jndi-name | a persistence.xml with |

[jboss-user] [JBoss jBPM] - mail node issue

2008-01-28 Thread debnathm
Hi I have written the following code: ProcessDefinition processDefinition = ProcessDefinition.parseXmlString( | process-definition + | start-state name='start' + | transition to='mailnode1' name='to_mailnode'/transition + | /start-state + | mail-node

[jboss-user] [JBoss Seam] - Re: Beginner: Bind SelectOneMenu to @onetoone entity object

2008-01-28 Thread lazar.mihai
To be honest I'm glad you opened up the discussion regarding h:selectOneMenu ... I'm trying to do something like this h:selectOneMenu id=idCurs value=#{cursHome.instance.idcurs} | s:selectItems value=#{cursList.resultList} label=#{curs.nume} |

[jboss-user] [JBoss Seam] - Re: Maven2 example application for Seam2

2008-01-28 Thread svadu
We've come to similar conclusion (regarding source of the problem): http://jira.jboss.com/jira/browse/JBSEAM-2371 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4123950#4123950 Reply to the post :

[jboss-user] [JBossWS] - Attachments with SOAP

2008-01-28 Thread sidgod
Hi, I am kind of new to Web Services and this is what i am using right now : JBOSS AS 4.0.4.GA, JBoss WS 1.2 and jdk 1.5.12. I am trying to get SOAP with attachments working. I saw one MTOP example that comes with JBOSS WS 1.2 and was trying to do the same. I am taking DataHandler as

[jboss-user] [JBoss jBPM] - Performance issue accessing process variables

2008-01-28 Thread Johan.Parent
Hi all, I run into a performance problem here. My app creates an inbox-like task list. To populate that list with relevant information I retrieve the process variables assoc'd with each of the tasks. Unfortunately this lookup takes around 40ms per task (cummulated time of all the required

[jboss-user] [JBossWS] - Re: Attachments with SOAP

2008-01-28 Thread sidgod
Hi i forgot to specify bean i am using, Wrapped Bean looks like: public class WrappedBean { private String name = null; private DataHandler legacyData = null; // getters and setters for name and legacyData } View the original post :

[jboss-user] [JBoss Seam] - Re: JBoss Seam problem with download file big file

2008-01-28 Thread [EMAIL PROTECTED]
Also note that what you want to has nothing to do with Seam. It's just a normal servlet that is supposed to stream a file from the filesystem to an HTTP client. There should be hundreds of examples of this on the net. View the original post :

[jboss-user] [JBossWS] - jbossws-2.0.3 released

2008-01-28 Thread [EMAIL PROTECTED]
As of this post I am happy to announce that jbossws-2.0.3.GA is released. This is a fully certified JAX-WS web services implementation. It runs on jboss-5.0.0, jboss-4.2.2, jboss-4.2.1, jboss-4.0.5 JAXWS brings to web services what EJB3 brings to EJB. With its greatly simplified programming

[jboss-user] [JBoss Seam] - Re: Beginner: Bind SelectOneMenu to @onetoone entity object

2008-01-28 Thread nickarls
Hmmm, if you have a list of entities, why don't you just bind the selected one to the home.instance? the dropdown with entityconverter + smpc is a handy way of taking a list of entities and having the selected entity inserted into another component. Instead of having to write object -

[jboss-user] [JBossWS] - Re: Requirements for JBWS-1813 ?

2008-01-28 Thread [EMAIL PROTECTED]
Yes, it did require changes to the container integration code that resides with the AS. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4123953#4123953 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4123953

[jboss-user] [JBoss Seam] - Re: JBoss Seam problem with download file big file

2008-01-28 Thread [EMAIL PROTECTED]
| String id = request.getParameter(fileId); | file = new File(c:/arch/ + id); | You realize that this is a big security hole? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4123954#4123954 Reply to the post :

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Sharing persistence between different jar files in ear ?

2008-01-28 Thread Interista
Hi, imagine that you have an ear project containing one business/db jar, one gui-layer jar and a gui-war. The business jar contains business operations and database access. But from the gui jar you dont want to use the business jar for standard operations such as entityManager.persist(object),

[jboss-user] [JBossWS] - Re: jbossws-2.0.3 released

2008-01-28 Thread [EMAIL PROTECTED]
What's new in jbossws-2.0.3.GA -- Bug * [JBWS-1217] - WSDLtoJava Namespace to package mapping does not support multiple namespaces * [JBWS-1324] - JMS Endpoint - Message delivery starts before endpoint is ready. * [JBWS-1762] - web.xml modified to

[jboss-user] [JBoss Messaging] - Warnings with 1.4.1Beta1

2008-01-28 Thread Juergen.Zimmermann
Using JBossMessaging 1.4.1Beta1, JGroups 2.6.1 and JBossAS 4.2.2 I get these warnings at startup. Are they serious? 2008-01-28 10:36:22,034 WARN [org.jgroups.protocols.UDP] down_thread was deprecated and is ignored | 2008-01-28 10:36:22,034 WARN [org.jgroups.protocols.UDP] up_thread was

[jboss-user] [JBoss Seam] - Re: Beginner: Bind SelectOneMenu to @onetoone entity object

2008-01-28 Thread lazar.mihai
Can u be a bit more explicit please ? I only need it to set studentHome.instance.idcurs to the correct value from the dropdown. Maybe if u do a quick example :) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4123968#4123968 Reply to the post :

[jboss-user] [Management, JMX/JBoss] - Re: Jboss mbean server (vs) JVM Platform mbean server

2008-01-28 Thread [EMAIL PROTECTED]
Answer is no. Think of it like this: by doing -Djboss.platform.mbeanserver, the only thing that changes is a couple of JVM mbeans appearing under the java.lang... JMX domain, along the jboss ones. That's all. View the original post :

[jboss-user] [JBoss Seam] - Re: SFSB vs. JavaBean

2008-01-28 Thread [EMAIL PROTECTED]
EricJava wrote : Waitaminute, looking at the JBoss Seam book (an official JBoss publication), by Michael Yuan and Thomas Heute, on page 320: | | anonymous wrote : However, Seam POJO components are stateful and have a conversational scope by default. | | When you say request scoped

[jboss-user] [EJB 3.0] - Re: Detect client disconnection

2008-01-28 Thread cogauthier
Hi, Nobody has a long treatment in a stateless session bean and who wishes to stop if the customer closes the page jsp? Charles View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4123974#4123974 Reply to the post :

[jboss-user] [Security JAAS/JBoss] - Logout from a WebService application

2008-01-28 Thread baeurlem
Hi, We have a Flex Client which communicates via WebServices. I wrote a custom LoginModule which performs the authentication. This works well without problems. But how to logout the user? The LoginModule has a logout() method but how should this be called? Do we need a WebService with a

[jboss-user] [JBoss Seam] - Re: JBoss Seam problem with download file big file

2008-01-28 Thread GregTk
Of course this is a security hole but, I did that only for example and tryed for working. I found one example but it doesn't work because some of Seam Filter or AJAX4J Filter trying buffer that stream. When I try without Seam, everything is OK. Maybe it sounds like lamers words, maybe I'm

[jboss-user] [JBoss Seam] - Re: JBoss Seam problem with download file big file

2008-01-28 Thread [EMAIL PROTECTED]
So why are you using the Seam filter for that request? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4123971#4123971 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4123971 ___

[jboss-user] [JBoss Messaging] - Re: Warnings with 1.4.1Beta1

2008-01-28 Thread timfox
JBoss Messaging 1.40/1.4.1 is tested against JGroups 2.4.1.SP3 which is the version of JG in the AS 4.2/4.3 We simply don't know if it will work with other versions of JG since it's not a supported/tested configuration. For AS 5, version JG 2.6 is used, so for this we will upgrade our

[jboss-user] [JBoss Messaging] - Re: Warnings with 1.4.1Beta1

2008-01-28 Thread timfox
Several stack config settings have been deprecated in 2.6, which is why JGroups is producing those warnings. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4123973#4123973 Reply to the post :

[jboss-user] [Security JAAS/JBoss] - How to read users/roles from a database?

2008-01-28 Thread deAppel
Hi, I;ve managed to create a loginModule with hardcoded users, although it works i want to be able to read the users and roles from a database but i'm not sure how to proceed. I've read the tutorials but it doesnt work for me. my loginconfig: DOCTYPE policy PUBLIC -//JBoss//DTD JBOSS

[jboss-user] [JBoss Seam] - Re: Cancel application loading in @Startup component

2008-01-28 Thread [EMAIL PROTECTED]
What does gracefully cancel involve? IIRC, throw an exception in the @Create, it will propagate up the stack and cause the deployment to fail. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4123980#4123980 Reply to the post :

[jboss-user] [JBoss Seam] - Re: s:fileUpload and immediate attribute

2008-01-28 Thread [EMAIL PROTECTED]
s:fileUpload doesn't support immediate=true, file a feature request in JIRA. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4123984#4123984 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4123984

[jboss-user] [JBoss Seam] - Re: NoClassDefFoundException in seam-gen generated code !!!

2008-01-28 Thread [EMAIL PROTECTED]
Post the application.xml and the output of ls -R on the exploded ear. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4123983#4123983 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4123983

[jboss-user] [JBoss Seam] - Re: Exceptions ending conversations

2008-01-28 Thread [EMAIL PROTECTED]
If you can upload an example with complete reproduction steps it will make it easier for us to look at. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4123985#4123985 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4123985

[jboss-user] [JBoss Seam] - Re: Ajax polling of a conversation Bean

2008-01-28 Thread [EMAIL PROTECTED]
Alter the concurrent request timeout in components.xml. You can't have concurrent requests to convesation scoped components. Its currently not possible to set the concurrent request timeout on a finer grain than this :( View the original post :

[jboss-user] [JBoss Seam] - Re: Multiple Domains

2008-01-28 Thread [EMAIL PROTECTED]
You should be able to get the domain name in use using FacesContext.getCurrentInstance().getExternalContext().get... You can then use this to know which site the user is visiting for your login. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4123989#4123989

[jboss-user] [JBoss Seam] - Re: Transaction recovery

2008-01-28 Thread [EMAIL PROTECTED]
After an exception occurs in the persistence layer, the transaction is unusable. You need a new transaction at this point. You should pre validate your data probably. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4123991#4123991 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Facelets ui:include bean param became null in s:link tag

2008-01-28 Thread [EMAIL PROTECTED]
Known issue: http://jira.jboss.com/jira/browse/JBSEAM-666 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4123992#4123992 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4123992 ___

[jboss-user] [JBoss Seam] - Re: Beginner: Bind SelectOneMenu to @onetoone entity object

2008-01-28 Thread nickarls
Well, if you bind the entity to studenthome.instance then the id should also be automagically populated, no? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4123998#4123998 Reply to the post :

[jboss-user] [Remoting] - How can a .Net client know if there is any JBoss server avai

2008-01-28 Thread viguera79
Hello everybody, I am not sure if this is the right place for this question. I have a .Net client that calls to EJBs deployed in a JBoss4.0.5GA server via iiop. Now, the client has to know the server ip address server for looking for the EJBs. Are there any way to find all available JBoss

[jboss-user] [JBoss Seam] - Re: How to get out of pageflow conversation?

2008-01-28 Thread [EMAIL PROTECTED]
Return an outcome that is outside the pageflow. Seam will pick it up and use it before the default navigation. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4123977#4123977 Reply to the post :

[jboss-user] [JBoss jBPM] - Unable to close jbpmContext - help !

2008-01-28 Thread francis1970
Dear all, I have a web application which is front-end for a JBPM process. When a Task Node is reached, an assignment handler is fired. This simply persist some information on the DataBase to keep track of the assignment. The problem is that, when JbpmContext is closed() an exception is

[jboss-user] [JBoss Seam] - Re: Security: How to override messages

2008-01-28 Thread [EMAIL PROTECTED]
yes. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4123978#4123978 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4123978 ___ jboss-user mailing list jboss-user@lists.jboss.org

[jboss-user] [JBoss jBPM] - Re: mail node issue

2008-01-28 Thread anuragpaliwal
Hi, I have copied your processdefinition.xml and wrote junit to parse it. I didnot get any parse error or exception. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4124002#4124002 Reply to the post :

[jboss-user] [JBoss jBPM] - Re: Unable to close jbpmContext - help !

2008-01-28 Thread anuragpaliwal
Hi Francesco Recomended way of using jbpmContext is to put it inside try{}finally{} block. try{ //Do Stuff }finally{ //Close context } I gues you donot need to demarcate transaction boundry here. jbpmContext.close() would commit and close the session as well. Shout if it doesn't work

[jboss-user] [JBossCache] - JBoss Cache GUI Demo

2008-01-28 Thread [EMAIL PROTECTED]
Please see my blog about the new JBoss Cache GUI demo application - a Swing-based application that demonstrates the formation of clusters, replication of data and gravitation of state from buddy backups. http://jbosscache.blogspot.com/2008/01/gui-demo-for-jboss-cache.html Cheers Manik View

[jboss-user] [JBossCache] - failed setting transient state - in a Tree Cache Cluster

2008-01-28 Thread nan2k_sweety
Hi, I have a Tree Cache working in cluster. I wrote a Stand alone client which will create a new Tree Cache Instance which joins the cluster and gets the data through replication. When I start it, its able to find out other instances. But during state transfer it fails and there is no data in

[jboss-user] [JBoss Seam] - Re: FacesContext is null in Identity.initCredentialsFromCook

2008-01-28 Thread joaobmonteiro
When invoked by a JSF Action, FacesContext.getCurrentInstance() returns a valid instance. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4123999#4123999 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4123999

[jboss-user] [JBoss Seam] - Re: Web Beans Sneak Peek

2008-01-28 Thread parszab
This sounds really promising, however I have some concerns, that probably come from the not thorough enough understanding I have at the moment. It seems to me that with webbeans business logic and wiev related logic get mixed up in the session/backing beans. That also makes developing a

[jboss-user] [JBoss Seam] - Re: Web Beans Sneak Peek

2008-01-28 Thread nickarls
Well, if it follows the ideaology of Seam (as I have understood it does), there is nothing stopping you from writing service locators returning abstract facade-factories etc... View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4124014#4124014 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Beginner: Bind SelectOneMenu to @onetoone entity object

2008-01-28 Thread nickarls
http://docs.jboss.com/seam/latest/reference/en/html_single/ The rest is left as an exercise for the reader ;-) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4124028#4124028 Reply to the post :

[jboss-user] [JBoss Tools (users)] - Re: 2.0 GA tools bug on eclipse with jboss 4.2.2 : error add

2008-01-28 Thread wiggy
thanks mark is that at next point release or next major release? At present I havent moved onto jboss as 5, as server support is limited to basic server. is jboss tools next release to include jboss 5 as well as 4.2. Cant remeber seeing a timetable/roadmap for tools View the original

[jboss-user] [Security JAAS/JBoss] - Re: How to read users/roles from a database?

2008-01-28 Thread deAppel
nevermind, i manged to get it working. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4124029#4124029 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4124029 ___ jboss-user mailing

[jboss-user] [JBoss Messaging] - Re: Clustered environment with non persistent messages ?

2008-01-28 Thread [EMAIL PROTECTED]
Hello, I didn't say that it doesn't support clustering of non-persistent messages. It is possible to cluster them but the message can be lost! kemp40 said that this is unacceptable to him... View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4124025#4124025 Reply

[jboss-user] [JBoss Getting Started Documentation] - Re: Duke's Bank Application Problem

2008-01-28 Thread 123fun
Okay. I give up. Could somebody kindly give me the URL of the correct zip file (jbossj2ee-src.zip or whatever) that contains the JBoss-4.x-specific build files for Duke's Bank? The documentation links to a download page with a large number of links, none of which seems to be the right one.

[jboss-user] [JBoss Seam] - Re: Exceptions ending conversations

2008-01-28 Thread alessandrolt
Yes Pete. Uploded in JIRA: http://jira.jboss.org/jira/browse/JBSEAM-2524 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4124019#4124019 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4124019

[jboss-user] [JBoss Tools (users)] - Re: code completion not working

2008-01-28 Thread rodrigotico
yes Max, it's jboss tools editor. Here are the steps that I made: 1- download and unzip: eclipse-jee-europa-fall2-win32.zip JBossTools-2.0.0.GA-ALL-Win32.zip 2- With Seam 2.0.0.GA I created a new project using the command: seam new-project 3- Open the project with eclipse and turn on the Seam

[jboss-user] [JBoss Seam] - Re: Beginner: Bind SelectOneMenu to @onetoone entity object

2008-01-28 Thread lazar.mihai
I have no ideea how to do that binding thing. I did manage to reverse engineer the database from my entities and it generated something pretty cool :D, but I would like to be able to do that binding thing u talked about :) View the original post :

[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: at browser, cannot load jboss using http://ip address:80

2008-01-28 Thread myatthu1986
Hello Jaikiran, I use -b option as you said. now all is ok. thank for your help. thank you View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4124024#4124024 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4124024

[jboss-user] [JBoss Messaging] - Re: Clustered environment with non persistent messages ?

2008-01-28 Thread timfox
The point with non persistent messages, is they are not persisted, == they do not survive failure. Users use non persistent messages when they want higher performance but they can cope with message loss. If we had to persist non persistent messages too, that would kind of defeat the purpose

[jboss-user] [JBoss Seam] - Re: Beginner: Bind SelectOneMenu to @onetoone entity object

2008-01-28 Thread lazar.mihai
Thanks, I can live with that :) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4124038#4124038 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4124038 ___ jboss-user mailing list

[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: Exception

2008-01-28 Thread jaikiran
Let's continue this discussion in your other post at http://www.jboss.com/index.html?module=bbop=viewtopict=128665 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4124047#4124047 Reply to the post :

[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: EjbcaDS not bound exception when starting JBoss

2008-01-28 Thread jaikiran
anonymous wrote : javax.naming.NameNotFoundException: EjbcaDS not bound Have you deployed your -ds.xml (the EjbcaDS datasource) by placing it in the deploy folder? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4124044#4124044 Reply to the post :

[jboss-user] [JBoss Seam] - Re: NPE in Param.validateConvertedValue

2008-01-28 Thread pgmjsd
Okay, I think I've figured out why this NPE only happens sometimes. The .page.xml file in this case binds a simple expression to the parameter value. For example: | param name=windowType value=#{windowType}/ | This value is intended to be passed down through the Facelets templates

[jboss-user] [JBoss Tools (users)] - Re: 2.0 GA tools bug on eclipse with jboss 4.2.2 : error add

2008-01-28 Thread [EMAIL PROTECTED]
the fix is targeted to 2.1.0. The next release is 2.0.1, so it will not be in our very next release, but rather the one after that. Hope that helps =] For now, a workaround (crappy, I know) is to shut down the server, republish (clicking the publish icon), and restarting it. But, that

[jboss-user] [JBoss jBPM] - Re: mail node issue

2008-01-28 Thread debnathm
Hi I have run the following test case and used the jbpm-starters-kit-3.1.4. Under this environment it shows the parse warning as mentioned in my post. The test case is: package com.jbpm.tutorial.mailtest; | | import junit.framework.TestCase; | import org.jbpm.graph.def.ProcessDefinition;

[jboss-user] [JBoss Messaging] - Re: JBM 1.4.0.SP3 JMSX properties bug

2008-01-28 Thread timfox
Thanks for the report. :) We'll get in fixed in the next release http://jira.jboss.org/jira/browse/JBMESSAGING-1224 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4124039#4124039 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Invoke action on ENTER with h:commandLink

2008-01-28 Thread [EMAIL PROTECTED]
Correction: As the docs say, it does not work on *:commandLink. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4124084#4124084 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4124084

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Re: Sharing persistence between different jar files in ear ?

2008-01-28 Thread lorenz.fischer
i'm also looking for a solution ;) hope somebody can help us out.. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4124076#4124076 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4124076

[jboss-user] [EJB 3.0] - Re: Persistence in EJB3

2008-01-28 Thread [EMAIL PROTECTED]
Hi, I updated my mysql-ds.xml to ?xml version=1.0 encoding=UTF-8? !-- $Id: mysql-ds.xml 41016 2006-02-07 14:23:00Z acoliver $ -- !-- Datasource config for MySQL using 3.0.9 available from: http://www.mysql.com/downloads/api-jdbc-stable.html -- local-tx-datasource

[jboss-user] [JBoss Seam] - Re: Multiple Domains

2008-01-28 Thread etaham
Thank you for your reply. Follow up question: Can I access FacesContext.getCurrentInstance().getExternalContext() within a drule security rule? Thanks, Eli View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4124064#4124064 Reply to the post :

[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: EjbcaDS not bound exception when starting JBoss

2008-01-28 Thread jaikiran
Also, though not related to this exception, JBoss is not yet fully qualified to run with JDK 1.6. I would recommend switching to JDK 1.5. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4124046#4124046 Reply to the post :

[jboss-user] [Beginners Corner] - Hi everybody need of big help...

2008-01-28 Thread j2jo
..Hi am so ashamed am a 100..naa 99% newbie with programming and it's just that i don't know were to begin with jboss cause the company am working with is trying to convince or more like has convinced 2 to 3 banks to move to jboss middleware but they wnat to nknow more about it all i know is

[jboss-user] [JBoss Seam] - Re: Ajax polling of a conversation Bean

2008-01-28 Thread [EMAIL PROTECTED]
Hi Francois Have you looked into RichFaces? They have a poll component which is very easy to use. Not sure your problem is solved by this, just an fyi :) Docs here: http://labs.jboss.org/file-access/default/members/jbossrichfaces/freezone/docs/devguide/en/html_single/index.html Live demo

[jboss-user] [EJB 3.0] - Re: Persistence in EJB3

2008-01-28 Thread [EMAIL PROTECTED]
I did as you had suggested bu I get the following error when I deploy the jar file 10:48:41,965 INFO [EJB3Deployer] Deployed: file:/C:/jboss-4.2.0.GA/server/default/deploy/DPDS-Server.jar 10:48:42,418 ERROR [URLDeploymentScanner] Incomplete Deployment listing: --- MBeans waiting for other

[jboss-user] [Security JAAS/JBoss] - Re: InstanceNotFoundException in jboss.security:service=Jaas

2008-01-28 Thread benoitx
Hi Claudemir, I have exactly the same issue http://jboss.org/index.html?module=bbop=viewtopict=128691 Have you found a solution to your issue? Thanks a lot Benoit[/url] View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4124103#4124103 Reply to the post :

[jboss-user] [JBoss jBPM] - how to define global variables for process in xml

2008-01-28 Thread inxaoc
Hi! How to add variables in process-definition.xml to whole process (to make it as global variable which will be visible in any node)? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4124086#4124086 Reply to the post :

[jboss-user] [JBoss Messaging] - Application Isolation in JBoss4.2.2 Messaging instance

2008-01-28 Thread sudhakarg
Can somebody tell me how do I mention the application isolation in JBoss4.2.2 Messaging instance? I have tried doing the following in Jboss-service.xml which is packed part of the sar file. loader-repositoryistay.classloader:loader=CoreServices_istay2.ear/loader-repository During deploying,

[jboss-user] [JBoss Seam] - hardcoded parameter value

2008-01-28 Thread gersonk
what's the best way to send a hardcoded value (String literal) from the page to a seam component without using submit method parameter? would it be a input type=hidden ..? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4124070#4124070 Reply to the post :

[jboss-user] [JBoss Seam] - Invoke action on ENTER with h:commandLink

2008-01-28 Thread piotr.walczyszyn
How to invoke an action specified in h:commandLink when user presses ENTER button in text a field (enclosed in the same form). This works right with h:commandButton but doesn't with link. I know there is a s:defaultAction tag for s:link and s:button but it doesn't work for h:* tags. View the

[jboss-user] [EJB 3.0] - Re: Problem with simple example of @ManyToMany

2008-01-28 Thread tsirel84
Any ideas? Should I put it to JIRA as a bug or I'm doing something wrong? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4124100#4124100 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4124100

[jboss-user] [JBoss jBPM] - Assigment task

2008-01-28 Thread rodosa
Hello!! I've try websale process definition and I could see that thougth a task is assignated to a determinated person when you're in the web console you can access to this task login like a different person. Could someone tell me how I could restrict the access to this task?

[jboss-user] [JBoss Seam] - Get feedback from the process of scanning classpath

2008-01-28 Thread vladimir.kovalyuk
As long as Seam scans classpath in order to build list of components I'm wondering whether it's possible to get involved into the process instead of introducing third one (in addition to EJB and Seam). Ideally I'd like to get feedback for each class. View the original post :

[jboss-user] [JBoss Portal] - Re: Clear/reset render parameters or re-initialise all portl

2008-01-28 Thread Antoine_h
Hi, in the JSR-168, the portlets of a portal are not supposed to know what the other portlets are doing... so, this cannot be done with the jboss portal (or any) that is compliant with jsr 168. well, you can go further than the jsr. looking at the api of jboss portal may be a way. but looks

[jboss-user] [JBoss Seam] - Re: Invoke action on ENTER with h:commandLink

2008-01-28 Thread [EMAIL PROTECTED]
It should work ONLY with h:commandButton/Link, because s:link/button does ANYWAY NOT submit the form. The documentation says that you need to nest it. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4124080#4124080 Reply to the post :

[jboss-user] [Management, JMX/JBoss] - Re: Avoid service to start at startup

2008-01-28 Thread rotula
OK! I've create a very simple test project similar to ExampleHelloWorldService: The Management Interface: | package com.demo; | | public interface HelloWorldServiceMBean extends ServiceMBean{ |public void perform(Date now, long remainingRepetitions); | } | The Service

[jboss-user] [JBoss Seam] - Re: NPE in Param.validateConvertedValue

2008-01-28 Thread pgmjsd
I was able to fix this by initializing the 'invalidValues' field to a zero length array inside Validators.ValidatingResolver's constructor. I added it to my application, overriding the existing Seam component: | package com.foo.seam; | | import org.hibernate.validator.ClassValidator;

[jboss-user] [JBoss Seam] - Re: SFSB vs. JavaBean

2008-01-28 Thread jacob.orshalick
EricJava wrote : However, Seam POJO components are stateful and have a conversational scope by default. Yes, the book is wrong here. This is one of quite a few revisions for the Second Edition. A preview is coming soon. Stay tuned! View the original post :

[jboss-user] [Security JAAS/JBoss] - Flushing the credential cache == InstanceNotFoundException

2008-01-28 Thread benoitx
Hi We're using the DatabaseServerLoginModule but for all intent, when my user decides to change its password, I would like to flush the cache. We're using JBoss-4.0.5-GA I'm trying to follow the code on: http://wiki.jboss.org/wiki/Wiki.jsp?page=CachingLoginCredentials Unfortunately, I know

[jboss-user] [JBoss jBPM] - Re: Assigment task

2008-01-28 Thread kukeltje
STFF, and the Jira *known issue* ! View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4124114#4124114 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4124114 ___ jboss-user

[jboss-user] [JBossWS] - javax.xml.ws.WebServiceException: Unable to create Provider:

2008-01-28 Thread mgk
Hi, I've been trying to create a stub for Stock quote web service and am having trouble with that. It says 21:40:54,812 ERROR [[action]] Servlet.service() for servlet action threw exception javax.xml.ws.WebServiceException: Unable to create Provider: org.jboss.ws.core.jaxws.spi.ProviderImpl

[jboss-user] [JBoss Seam] - Re: Testing with Seam managed Hibernate sessions

2008-01-28 Thread hubaghdadi
No help amigos? :( View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4124056#4124056 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4124056 ___ jboss-user mailing list

[jboss-user] [JBoss Seam] - Re: old RichFaces bug: MethodNotFoundException back?

2008-01-28 Thread beligum
Did some more work on this: When (in the bean), I use this function: | public Boolean adviseFileSystemTreeNodeOpened(UITree tree) | { | Inode inode = ((FileSystemTreeNode)tree.getRowData()).getInode(); | if (this.getSelectedSpaceMember()!=null) { |return

[jboss-user] [JBoss Seam] - Re: NPE in Param.validateConvertedValue

2008-01-28 Thread pgmjsd
Should I file this as a bug? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4124129#4124129 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4124129 ___ jboss-user mailing list

[jboss-user] [JBoss jBPM] - Exception the close jbpm context.

2008-01-28 Thread danieltamiosso
Hello guys, When I use only one signal, the process works normally. It has all the three nodes. If I use two signals followed the following error occurs: | 14:07:06,937 ERROR [JDBCTransaction] exception calling user Synchronization | org.hibernate.QueryParameterException: could

[jboss-user] [JCA/JBoss] - connect jboss to db2 on IMS (mainframe)

2008-01-28 Thread leier
I am looking for some documentation on how to configure a datasource to connect to db2 on IMS from Jboss 4.2.2 on linux. Is this possible? If there is info already posted, pls let me know as there seems to be no applicable information. View the original post :

[jboss-user] [JBoss jBPM] - Re: Exception the close jbpm context.

2008-01-28 Thread danieltamiosso
Indeed I would something like: | while (!token.hasEnded()){ | token.signal(); | } | To go walking by nodes to the end of the process. Ronald, What is the best way to do this? Thanks! View the original post :

[jboss-user] [JBoss Seam] - Seam + Informix

2008-01-28 Thread anisith
I am trying to generate a project through the gen-seam 2.0 using the INFORMIX database, but the what kind of database are you using? field does not have the INFORMIX as an option. Is there a way that I can use this database? View the original post :

[jboss-user] [JBoss Tools (users)] - Re: code completion not working

2008-01-28 Thread [EMAIL PROTECTED]
does your entity have a seam component annotation or not ? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4124148#4124148 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4124148 ___

[jboss-user] [Beginners Corner] - Re: Hi everybody need of big help...

2008-01-28 Thread j2jo
please atleast tell me where to startthx for your answers in advance. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4124143#4124143 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4124143

[jboss-user] [JBoss jBPM] - Fork with no states in branches Throws exception

2008-01-28 Thread mckanth
Hi, I have a process which has a fork with two branches . In each branch I have a decision nodes based on the condition if true it will create a tasknode or else will transit to JOIN node. The problem is whenever the condition is false as soon as it goes to join it throws exception

[jboss-user] [JBoss Seam] - Packaging EAR with multiple WARs

2008-01-28 Thread reind
How should EARs with multiple WARs be packaged? How'bout if they share the same JAR? my-application.ear/ | jboss-seam.jar | lib/ | jboss-el.jar | META-INF/ | MANIFEST.MF | application.xml | | a.war/ | META-INF/ |

  1   2   3   >