[jboss-user] [JBoss jBPM] - Re: How can I split storage scheme JBPM and general?

2007-06-20 Thread slogger
"fady.matar" wrote : It is not recommended to use two JNDI for the same physical database. | | Use different JNDI names for different databases and update your persistence configuration accordingly Hmmm... "not recommended" In that way, it is impossible just to split schemes? If it's possi

[jboss-user] [Messaging, JMS & JBossMQ] - DLQHandler javax.naming.NameNotFoundException: XAConnectionF

2007-06-20 Thread timjer
Good Morning, can anybody help me? At the moment i have this Exception in my server.log 2007-06-20 08:57:20,792 ERROR [org.jboss.ejb.plugins.jms.DLQHandler] Initialization failed DLQHandler javax.naming.NameNotFoundException: XAConnectionFactory at org.jboss.ha.jndi.TreeHead.lookup(Tree

[jboss-user] [EJB 3.0] - Re: Client accessing EJB3 via RMIoverHTTTP on Port 80

2007-06-20 Thread itsme
In addition to my last post is here the exception stack trace when calling from client side: | Exception in thread "AWT-EventQueue-0" java.lang.ClassCastException: java.lang.String | at org.jboss.aspects.remoting.InvokeRemoteInterceptor.invoke(InvokeRemoteInterceptor.java:62) | at

[jboss-user] [JBoss jBPM] - Sorry!

2007-06-20 Thread slogger
In any case, fady.matar thank you very much for your answer! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4055898#4055898 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4055898 __

[jboss-user] [JBoss jBPM] - Re: How can I split storage scheme JBPM and general?

2007-06-20 Thread fady.matar
Are you using the web console or creating your own application from scratch? The configuration can be specified in different ways. Elaborate more so I can assist you in this. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4055899#4055899 Reply to the post :

[jboss-user] [JCA/JBoss] - Re: ejb server socket connection

2007-06-20 Thread teodoro21
I'd want to know if a JCA outbound adapter to connect my ejb to an external C application (by socket) is the right solution. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4055901#4055901 Reply to the post : http://www.jboss.com/index.html?module=bb&op=po

[jboss-user] [JBoss Seam] - Re: EL enhancement does not work in pages.xml

2007-06-20 Thread BerndMueller
no one to reply? too stupid question ? (i apologize) greetings Bernd View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4055902#4055902 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4055902 ___

[jboss-user] [JBoss jBPM] - Re: How to access process variables?

2007-06-20 Thread fuligj
I say thank you for it your answer. I believe it, you misunderstood a small one. I would like to attain the variables of the process, apart from a process from a web page. But in the external page, the var[] data map does not live. I think, this the taskInstanceBean's job. A solution would be ne

[jboss-user] [JBossWS] - how to specify version of WSDL?

2007-06-20 Thread gardon
Hello, is it possible to specify version of WSDL to be generated in wstools or via JBossWS annotations? I haven't found it. I need WSDL version 1.1 to be generated. Thanks for any advice. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4055907#4055907 Reply t

[jboss-user] [JNDI/Naming/Network] - RMI on HTTP with PROXY

2007-06-20 Thread indigeno314
Good morning, i have a j2ee client (swing) and server (EJB) application and have set up jndi.properties so that rmi works via http modifying this two properties: java.naming.factory.initial=org.jboss.naming.HttpNamingContextFactory and java.naming.provider.url=:t.http://localhost:8080/invoker/JN

[jboss-user] [JBoss jBPM] - Re: Unable to start websale process

2007-06-20 Thread jbosslim
I'm a newbie too, I've played around the web console, and I'm able to deploy the new process definition using the Eclipse plug-in. It is simple and easy to deploy the new process definition. All GUI based. Howver, I'm still stuck with the correct procedure on how to add this jbpm into my curr

[jboss-user] [JBoss jBPM] - Re: How to access process variables?

2007-06-20 Thread fady.matar
Why don't you create a map of variables at your application context level and store it there. Moreover you can have this variable in an external database and create the hibernate mapping for it and make it accessible for all of your requirements View the original post : http://www.jboss.com/in

[jboss-user] [JBossWS] - Re: how to specify version of WSDL?

2007-06-20 Thread gardon
I use JBoss 4.2.0-GA and JBossWS 1.2.1GA View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4055913#4055913 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4055913 ___ jboss-user mai

[jboss-user] [JBoss jBPM] - Re: How to access process variables?

2007-06-20 Thread dabd
"cristian_e" wrote : You can try executionContext.getVariable("quant") directly. At least this is the way we have worked with variables in ActionHandlers (with the appropriate cast). In our case the variables have been set programatically, but I think it's the same thing with your scenario. |

[jboss-user] [JBoss jBPM] - I created my own app

2007-06-20 Thread slogger
I created my own application. Jbpm included to my ear with his console war. In addition, ear consists of my ejbs (by EJB3 spec + hiber). Thus, this ear has two hibernate.cfg.xml. The first one is used for own mappings of business data. View the original post : http://www.jboss.com/index.html?

[jboss-user] [JBoss jBPM] - Re: How can I split storage scheme JBPM and general?

2007-06-20 Thread mputz
anonymous wrote : It is necessary for application to guarantee execution in single transaction (jbpm and general). If you want to access the jBPM and the application data from within the same Hibernate session you could inject the Hibernate session into the jbpmContext (jbpmContext.setSession(

[jboss-user] [JBoss jBPM] - Re: How can I split storage scheme JBPM and general?

2007-06-20 Thread slogger
"mputz" wrote : anonymous wrote : It is necessary for application to guarantee execution in single transaction (jbpm and general). | | If you want to access the jBPM and the application data from within the same Hibernate session you could inject the Hibernate session into the jbpmContext

[jboss-user] [EJB 3.0] - Re: Client accessing EJB3 via RMIoverHTTTP on Port 80

2007-06-20 Thread itsme
After a bit more investigating I've a solution here http://wiki.jboss.org/wiki/Wiki.jsp?page=Accessing_EJB3s_over_HTTP_HTTPS This works so far but the next step is to eliminate the JBoss specific annotation @RemoteBinding(clientBindUrl="0.0.0.0:80/servlet-invoker/ServerInvokerServlet") by using a

[jboss-user] [JBoss Seam] - Re: Ajax4jsf UnboundedFifoBuffer

2007-06-20 Thread [EMAIL PROTECTED]
Post the full stack trace. But really, I would suggest using Seam 1.2.1.GA with AS 4.0.5.GA and the jars with it. If you want JBoss AS 4.2 use Seam 1.3 (the big part is upgrading to JSF 1.2 which you are doing anyway). View the original post : http://www.jboss.com/index.html?module=bb&op=view

[jboss-user] [JBoss Seam] - Re: EL enhancement does not work in pages.xml

2007-06-20 Thread [EMAIL PROTECTED]
This should work in Seam 1.3. Post the stack trace. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4055923#4055923 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4055923 ___ jb

[jboss-user] [Beginners Corner] - package org.apache.axis.client does not exist for DUKE BANK

2007-06-20 Thread laknair
Hi, i am trying to follow the installation procedure as in jboss begineer's guide ..i get this error when i try to compile using >ant -f jboss-build.xml compile.my classpath is C:\jdk\bin;C:\jdk\;C:\apache-ant-1.6.5\;C:\apache-ant-1.6.5\lib\ant.jar;C:\apache-ant-1.6.5\lib\xercesImpl;C

[jboss-user] [EJB 3.0] - Interceptor binding to a package

2007-06-20 Thread [EMAIL PROTECTED]
Is there any way to bind an interceptor to all session beans in a package? I have tried package.name.* but it does not work? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4055928#4055928 Reply to the post : http://www.jboss.com/index.html?module=bb&op

[jboss-user] [JNDI/Naming/Network] - javax.naming.CommunicationException

2007-06-20 Thread adoorsarath
sir, I got the javax.naming.CommunicationException when I started writing my first JMS program. The code snippet is given below Properties properties = new Properties(); properties.put(Context.INITIAL_CONTEXT_FACTORY, "org.jnp.interfaces.NamingContextFactory"); properties.put(Context.P

[jboss-user] [EJB 3.0] - Re: How to provide the identity in the annotation for MDB?

2007-06-20 Thread wolfc
Here you can find all supported properties: http://wiki.jboss.org/wiki/Wiki.jsp?page=ConfigJMSMessageListener View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4055933#4055933 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4

[jboss-user] [JBoss Seam] - Re: Ajax4jsf UnboundedFifoBuffer

2007-06-20 Thread baz
Hello Peter, thanks for the answer. We are planning to migrate to seam1.3 when the first beta is ready. Since Michael has succeded in porting seam1.2.1 apps to jboss 4.2.0 we have tried the same:-( For the meantime we will stay with JBoss AS 4.0.5 BTW The stacktrace is nearly the same as in the fi

[jboss-user] [JBoss jBPM] - Re: How to access process variables?

2007-06-20 Thread fuligj
Because the data would turn up duplicated then. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4055935#4055935 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4055935 ___ jboss-u

[jboss-user] [Installation, Configuration & Deployment] - Re: 4.0.5 to 4.2.0 upgrade and JBossTS

2007-06-20 Thread jhalliday
Dave I'm not able to reproduce that. What you should get at startup is: 10:30:07,036 INFO [TransactionManagerService] JBossTS Transaction Service (JTA version) - JBoss Inc. 10:30:07,036 INFO [TransactionManagerService] Setting up property manager MBean and JMX layer 10:30:07,297 INFO [Transa

[jboss-user] [JBoss Seam] - Exception sending context initialized event to listener inst

2007-06-20 Thread mailmustu
Hi, I am deploying a Seam 1.2.1 application on JBoss 4.2.0 As mentioned in the migration guide http://www.michaelyuan.com/blog/2007/05/29/seam-book-examples-updated-to-jboss-as-420-ga/ I have removed "el-ri.jar" and "el-api.jar" from my EAR I have also removed apache myfaces jars from my EAR si

[jboss-user] [JCA/JBoss] - Re: Listening Database Failover

2007-06-20 Thread vickyk
Adrian , Yes I made these changes for the http://jira.jboss.com/jira/browse/JBAS-3707 I have plans to make wiki on this and also this would now result in lot of changes in the Jboss Admin docs as ha related rar's would go off now . Let me take http://jira.jboss.com/jira/browse/JBAS-4490 if you ha

[jboss-user] [JBoss Seam] - seam app and external ejb DB service (entities problem)

2007-06-20 Thread leezard
Hi all again, I've strange problem with Seam design. My Seam application beans use external beans to invoke database operations. I don't have any DB-related logic in my Seam app. The external application provides set of entities I can use, and here my problem begins. I have form in my applica

[jboss-user] [JBoss Seam] - s:formattedText doesn't render anything

2007-06-20 Thread demetrio812
Hi I changed the seam-gen generated code to use the s:formattedText tag but it doesn't render anything...what's wrong? That's the code I use: | | Text | | | Thanks! Demetrio View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4055946#40

[jboss-user] [JBossWS] - Re: ClassCastException - jaxws webservice in jboss1.2.0

2007-06-20 Thread molson_m
hiI had similar issuesthe same exception...truly the exception is not atall helpful to find out the cause...thanks to this post...then i noticed in one of my classes, i was using java.sql.Date...i changed it to java.util.Dateand i could deploy the bean successfully...so santhoshi

[jboss-user] [JBossCache] - Initial state transfer failed: Channel.getState() returned f

2007-06-20 Thread karnivas
I'm using fetchInMemoryState as true. When i'm trying to restart(stop and startService of the treecache) cache i get this message. What is possibly causing this problem ? Error Message org.jboss.cache.CacheException: Initial state transfer failed: Channel.getState() returned false at

[jboss-user] [JBoss Seam] - Which view handler JBoss 4.2 needs for facelets ?

2007-06-20 Thread mailmustu
Which view handler is to be used in JBoss 4.2 with Seam 1.2.1 for facelets ? org.jboss.seam.ui.facelet.SeamFaceletViewHandler or com.sun.facelets.F­aceletViewHandler Please tell me what changes will have to be made in faces-config.xml and web.xml, and what jars are needed to use these view hand

[jboss-user] [JBoss Seam] - Re: Which view handler JBoss 4.2 needs for facelets ?

2007-06-20 Thread [EMAIL PROTECTED]
That post is old (pre 1.2). In 1.2.1.GA use either of the below (SeamFaceletViewHandler to get the EL extension). In 1.3 you only have FaceletViewHandler. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4055957#4055957 Reply to the post : http://www.jboss.c

[jboss-user] [JBoss Portal] - log4j classcastexception with alfresco WAR

2007-06-20 Thread advaittrivedi
Hi, I have alfresco war deployed. When I start server it gives following exception: = 16:03:29,799 ERROR [STDERR] log4j:ERROR Could not create level [TRACE]. Reported error follows. 16:03:29,799 ERROR [STDERR] java.lang.ClassCastException: org.jboss.loggin

[jboss-user] [JBoss Seam] - Re: s:formattedText doesn't render anything

2007-06-20 Thread [EMAIL PROTECTED]
?! It's an output tag and it looks like you are using it as an input text tag? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4055959#4055959 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4055959

[jboss-user] [JBossWS] - Re: JBossWS 1.2.x Tools Overview (wstools, wsprovide, wscons

2007-06-20 Thread sdwfxsf
How to use the wsconsume tool?I can't open the links you write.Could you speek in detail?Thanks. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4055961#4055961 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4055961 _

[jboss-user] [JBoss Seam] - Re: s:formattedText doesn't render anything

2007-06-20 Thread demetrio812
Sorry I misunderstood the use... now it is clear! Thanks Demetrio View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4055964#4055964 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4055964 ___

[jboss-user] [JBoss Seam] - Re: jsf iteration and seam scopes

2007-06-20 Thread gothmog
Yep, thanks, really easy when you know!! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4055965#4055965 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4055965 ___ jboss-user ma

[jboss-user] [JBossWS] - Re: JBossWS 1.2.x Tools Overview (wstools, wsprovide, wscons

2007-06-20 Thread davideling
Example: wsconsume.sh -k -s src/ http://myContext/myService?wsdl where: -k : keep artifact sources from deletion -s: source folder Bye View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4055966#4055966 Reply to the post : http://www.jboss.com/index.html?modu

[jboss-user] [JBoss Seam] - Re: JSF f:subview rendered attribute ignored

2007-06-20 Thread Fishface
Could you paste a little more detailed piece of the code, because with tags Here's my code: Thanks View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4055967#4055967 Reply to the post : http://www.jboss.com/index.html

[jboss-user] [JBoss Seam] - Re: Which view handler JBoss 4.2 needs for facelets ?

2007-06-20 Thread mailmustu
hi Pete, Thanks for the quick reply. I get a "java.lang.UnsupportedOperationException" in both cases. Can you please tell me which jars "should be there" and "should not be there" (to avoid duplicate references) in the EAR. Also what changes my web.xml and faces-config.xml files need to use th

[jboss-user] [JBoss Seam] - Re: Which view handler JBoss 4.2 needs for facelets ?

2007-06-20 Thread [EMAIL PROTECTED]
Post the web.xml and faces-config.xml. You need the jars as for JBoss 4.0.5.GA (seam-gen a simple app to find out what), with the changes described by Michael http://www.michaelyuan.com/blog/2007/05/29/seam-book-examples-updated-to-jboss-as-420-ga/ You need to post full exceptions as well plea

[jboss-user] [JBoss Seam] - Seam Custom Validation and Ajax4JSF v1.1.1

2007-06-20 Thread rhardy5014
Hi, I am using JBOSS 4.2.0 and Seam 1.2.1GA. I have a web application which performs some ajax-based validation of form elements using custom seam (hibernate) validators e.g. | | |

[jboss-user] [JBossWS] - MS Soap toolkit and Jboss are understanding wsdl differently

2007-06-20 Thread sandello
MS Soap client sends a message to JBossWS Server looks like | | http://www.w3.org/2001/XMLSchema"; | xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance"; | xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/"; | xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/";>

[jboss-user] [JBoss jBPM] - How to associate a decision handler with a decision node?

2007-06-20 Thread dabd
Hi, How do I associate a DecisionHandler to a Decision Node in the process designer? I tried adding an action but the designer only lists the ActionHandlers. Thanks. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4055972#4055972 Reply to the post : http:

[jboss-user] [Installation, Configuration & Deployment] - Re: reg IP Address instead of the localhost

2007-06-20 Thread rsuser
"jaikiran" wrote : Which version of JBoss are you using? If its 4.2 then have a look at http://www.jboss.com/index.html?module=bb&op=viewtopic&t=40 Hi JaiKiran, You are correct . :) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4055973#4055973 R

[jboss-user] [JBoss Seam] - Re: Which view handler JBoss 4.2 needs for facelets ?

2007-06-20 Thread mailmustu
oh ok, I am using Jboss 4.2.0 with Seam 1.2.1 I have removed the jars "el-ri.jar" and "el-api.jar" as mentioned by Michael I want to know which jars should be added for facelets support faces-config.xml: | http://java.sun.com/xml/ns/javaee"; |xmlns:xsi="http://www.w3.org/2001/XMLSchema-i

[jboss-user] [JBoss Seam] - Seam 1.3 Alpha and Basic Authentication

2007-06-20 Thread aidan_b5
Hello, I'm relatively new to Seam and am trying to want to integrate an application using seam into an existing ear. The other apps in the ear use basic authentication therefore I have been trying to use the AuthenticationFilter in Seam 1.3 Alpha. My components.xml: http://jboss.com/products/

[jboss-user] [JBoss jBPM] - Re: JBPM Database Cleaning

2007-06-20 Thread ax666
you can remove process instances that have ended, that should cleanup a lot. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4055977#4055977 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4055977 __

[jboss-user] [JBoss jBPM] - Re: async pain

2007-06-20 Thread ax666
I fulfilled Ronalds request and added a version of the test case that uses an action handler. Our project state is, that jBPM allows only single thread execution which isn't something we can live with, but I don't have the time to investigate further. And yes, this should be fixed, right now I'm

[jboss-user] [JBoss Messaging] - issue with bridge while JBoss starting

2007-06-20 Thread JasonHsu
I defined a bridge in (xxx-bridge-service.xml) to conection two queues (let's say queueA and queueB) on the same JBoss to test. I'll move the queueB to a remote JBoss. I had the error message while starting JBoss where the bridge deployed. It looks like that the queueA or even queueB hasn't

[jboss-user] [Beginners Corner] - Newbie trying to run some code!

2007-06-20 Thread rodgerca
I'm getting the following error trying to run a client app. JBoss server running fine. javax.naming.CommunicationException: Could not obtain connection to any of these urls: localhost:1099 and discovery failed with error: java.security.AccessControlException: access denied (java.net.SocketPerm

[jboss-user] [JBoss Messaging] - Re: issue with bridge while JBoss starting

2007-06-20 Thread timfox
This is not really a question specific to JBM or the bridge, it's more of a question of "How do I ensure one MBean deploys before another". This is done in JBoss by declaring a dependency in the MBean deployment descriptor, and is heavily used throughout JBoss. In the example bridge config. for

[jboss-user] [JBoss Messaging] - Re: issue with bridge while JBoss starting

2007-06-20 Thread timfox
This is all explained in detail in the JBoss AS guide http://docs.jboss.org/jbossas/jboss4guide/r4/html/ch2.chapter.html#ch2.servicedep.fig View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4055986#4055986 Reply to the post : http://www.jboss.com/index.html?modu

[jboss-user] [JBoss Seam] - Upgrading to Seam1.3.1a/JBossAS4.2.0ga Significant performan

2007-06-20 Thread kosiakk
I have an app working with Seam 1.2.1ga / JbossAS 4.0.5ga, Java1.5.0_11 and mysql. Application works okay and very fast. All pages are completely rendered in less than a second. I decided to upgrade to Seam 1.3.1a / JBossAS 4.2.0ga. I've updated all configuration files, componets.xml, build.xm

[jboss-user] [JNDI/Naming/Network] - Re: javax.naming.CommunicationException

2007-06-20 Thread adoorsarath
I understood the problem.JBoss serever was down View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4055988#4055988 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4055988 ___ jboss-u

[jboss-user] [JBoss jBPM] - Re: How can I split storage scheme JBPM and general?

2007-06-20 Thread estaub
fady.matar wrote: anonymous wrote : It is not recommended to use two JNDI for the same physical database. I'm no expert here, but I don't think this is exactly correct. Accessing different databases (schemas) in the same physical database using different JNDI names is perfectly fine, except

[jboss-user] [JBoss jBPM] - jboss 4.0.5 clustering

2007-06-20 Thread djphatmix
i am trying to setup a jboss cluster using 2 application servers. i have managed to establish a connection but my problem is that when one server shuts down the other one stays running, now when i redeploy the other one will the currently running server also be redeployed or not? View the origi

[jboss-user] [Clustering/JBoss] - question!

2007-06-20 Thread djphatmix
with farming deployment, suppose i got 2 application servers n i shut down the other while the other remains running. when i redeploy the other one will the other one get redeployed or not. I need more info on this. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic

[jboss-user] [Installation, Configuration & Deployment] - Re: 4.0.5 to 4.2.0 upgrade and JBossTS

2007-06-20 Thread djr667
I cannot reproduce it either - it works! This is strange since it failed twice previously and all I did now was re-enable the code that previously failed. I hope it was simply a typo. Thank you for your patience and help Dave View the original post : http://www.jboss.com/index.html?module=bb&

[jboss-user] [JBoss Seam] - Re: Upgrading to Seam1.3.1a/JBossAS4.2.0ga Significant perfo

2007-06-20 Thread kosiakk
My application was built using Seam app-gen. Examples are running okay, without performance issues. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4056001#4056001 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4056001 __

[jboss-user] [JBoss Seam] - tiles and facelets simultaneously

2007-06-20 Thread kgoedert
Hi, I know this is off-topic since this is not directly related to seam. But I have tried the facelets forums and had no luck, so I decided to try it here... I have an app using tiles + jsf + ejb3 and I´d like to migrate to seam and facelets. Is it possible to have tiles and facelets working in

[jboss-user] [JBoss Seam] - trace logging for log4j

2007-06-20 Thread matt.drees
Hi Gavin & team, Could you put http://jira.jboss.com/jira/browse/JBSEAM-1247 in 1.3? It should be dirt simple. Thanks -Matt View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4056009#4056009 Reply to the post : http://www.jboss.com/index.html?module=bb&op=post

[jboss-user] [Installation, Configuration & Deployment] - Re: JBoss on Linux HELLPPPPPP!!!

2007-06-20 Thread sheila lety
Hi Sandor! I'm ne will try to explain but I need to configure te source of JBoss server on Redhat Enterprise Edition. So i configure JDK-1.5.0_05 on /usr/local/java and setup the following environment variables in to a script on vi /etc/profile.d JAVA_HOME="/usr/local/java" JRE_HOME="/usr/l

[jboss-user] [JBoss Seam] - Re: Seam jBPM: use annotation or pages.xml to get next task?

2007-06-20 Thread bsmithjj
the seam nightly builds are still 'stuck' on 06.14.2007 as the last build - any chance the nightly builds will resume being posted regularly? Thanks, Brad View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4056002#4056002 Reply to the post : http://www.jboss.com

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Re: the never ending flow of optimistic locking questions

2007-06-20 Thread beligum
Hi Fernando, thanks for your response. Please let me recapitulate to check if I understand everything correctly. So I have a JSF form with a submit-button, linked to the POJO action method. This action has an (TransactionAttributeType.REQUIRES_NEW) annotation, so it will start a new transaction.

[jboss-user] [JBoss AOP] - failed to transform $Proxy29: ConcurrentModificationExceptio

2007-06-20 Thread bartvh
I am running some custom jmx beans inside a jboss-4.2 running on jdk1.5. With load time weaving enabled, I get to see the following exception: java.util.ConcurrentModificationException | at java.util.LinkedHashMap$LinkedHashIterator.nextEntry(LinkedHashMap.java:365) | at jav

[jboss-user] [JNDI/Naming/Network] - javax.naming.CommunicationException

2007-06-20 Thread adoorsarath
sir, I got the javax.naming.CommunicationException when I started writing my first JMS program. The code snippet is given below Properties properties = new Properties(); properties.put(Context.INITIAL_CONTEXT_FACTORY, "org.jnp.interfaces.NamingContextFactory"); properties.put(Context.PRO

[jboss-user] [JBoss jBPM] - Re: How to access process variables?

2007-06-20 Thread kukeltje
w lots of wrong assumptions here pressing save does save the variables, just not make the task finish and the process take an transition The taskinstancebean is for the console, but can be reused. If you want to combine data from your own system with processdata, you'll have to de

[jboss-user] [JBoss jBPM] - Re: jboss 4.0.5 clustering

2007-06-20 Thread kukeltje
wrong forum.. use the AS forum View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4056027#4056027 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4056027 ___ jboss-user mailing list

[jboss-user] [JBoss jBPM] - Re: async pain

2007-06-20 Thread kukeltje
The reason I asked for a scriptless version is that I'm not the scripted version can run async very wel.. I assume the non-scripted version shows the same (for you unwanted) behaviour? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4056034#4056034 Reply to t

[jboss-user] [JBoss jBPM] - Re: How to associate a decision handler with a decision node

2007-06-20 Thread kukeltje
for the moment (afaik) by editing the xml by hand. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4056036#4056036 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4056036 ___ jbos

[jboss-user] [EJB 3.0] - jboss-EJB-3.0_RC9-FD SSL example and jboss-4.2.0.GA

2007-06-20 Thread mat
Environment: jboss-4.2.0.GA EJB3 Windows JDK 5 Deploying an EJB3 SSL application on jboss-4.0.5 works fine. However same application gives exceptions on jboss-4.2.0.GA. Same excpetion: | java.net.MalformedURLException: no protocol: org/jboss/remoting/transport/Connector.xml | occurs wh

[jboss-user] [Installation, Configuration & Deployment] - Re: StackOverflow in deployment

2007-06-20 Thread charlieparker2k7
note: my version of jboss is 4.0.5 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4056028#4056028 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4056028 ___ jboss-user mailing l

[jboss-user] [JBoss Seam] - Re: seam generate-entities problem

2007-06-20 Thread sirmyth
fix the problem by inserting my driver file into Jboss lib and any lib directories under seam. Not sure which one did it View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4056031#4056031 Reply to the post : http://www.jboss.com/index.html?module=bb&op=postin

[jboss-user] [JBoss jBPM] - Re: Unable to start websale process

2007-06-20 Thread kukeltje
it was not arrogance, it was frustration (and it still is) STFF first, make good reports (what you did, why, what not, what you found etc...etc...etc...etc...) doing that is a sign of wisdom oh and jbosslim... please do not hijack thereads about a different subject View the original post :

[jboss-user] [Management, JMX/JBoss] - Default MBeans viewable wit jConsole?

2007-06-20 Thread Gambling
Hi Folks, is it possible to see and manage all implemented MBeans of the application server itself with jConsole? if I use the jmx-web-console I can see them all, but not if I use jConsole. Here I can only manage the subscriptionManager and the ServiceEndpointManager. thanks View the original

[jboss-user] [JBossWS] - Re: Endpoint does not contain operation meta data for: getAc

2007-06-20 Thread Maffewl
i found out some more iinfo and have new questions. as it turns out , i had to do | | ... | | to get it to hit my code. I'm still in the position where I want to try to avoid messing up existing clients, so what are my options at this point? modify the orinigal wsdl? or can

[jboss-user] [JBoss jBPM] - Re: async pain

2007-06-20 Thread kukeltje
Now I come to think of it I/we overlooked something. AFAIR, the async mechanism in the WAR version of jBPM was for simple environments. For enterprise grade solutions, a switch should be made to JMS. More than one MDB can be deployed there which can process the async actions. (not scripted

[jboss-user] [JBoss Portal] - portlets and struts

2007-06-20 Thread habicht
Hi I'm developing a phonebook using portlets and struts. For the form I used the struts-html taglib. As soon as I hit submit the url changes from localhost:8080/portal/portal/Phonebook/default to localhost:8080/Phonebook/search.do and the next page overwrites the whole portal. Is there a way

[jboss-user] [JBoss Portal] - Re: Portlet printing

2007-06-20 Thread glarenzie
I understand the first part but how would I accomplish the second part - "You may need to add some things in the layout and theme, so the header etc does not show"?? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4056044#4056044 Reply to the post : http://ww

[jboss-user] [JBoss AOP] - Re: failed to transform $Proxy29: ConcurrentModificationExce

2007-06-20 Thread waynebaylor
sounds like your modifying a collection while iterating over it. for example: | Collection stuff = someObject.getCollection(); | for(Object obj : stuff) | { | ... | stuff.remove(obj); | ... | } | View the original post : http://www.jboss.com/index.html?module=bb&op=viewto

[jboss-user] [Management, JMX/JBoss] - Re: Default MBeans viewable wit jConsole?

2007-06-20 Thread Gambling
solved with: http://wiki.jboss.org/wiki/Wiki.jsp?page=JBossMBeansInJConsole google is your friend... View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4056039#4056039 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4056039

[jboss-user] [JBoss jBPM] - Re: Setting Variable Types

2007-06-20 Thread kukeltje
the thing britt posted is full... there is nothing more to it View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4056040#4056040 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4056040 _

[jboss-user] [JBoss Messaging] - cluster messaging error

2007-06-20 Thread snecu001
I have 2 JB servers set up as described in the guide for a development cluster. I have a scheduler running every minute that I deploy using farming and have set up using the example-cluster-service.xml in the farm folder. When I stop one server I get the error below but he scheduler still runs.

[jboss-user] [JBossWS] - Re: Multiple WSDL bindings warning

2007-06-20 Thread tperrigo
Any ideas on this one? This has really got me stuck... View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4056045#4056045 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4056045 __

[jboss-user] [JBoss Seam] - Topics and Publishing !

2007-06-20 Thread aditya0211
I am using the chatroom example provided with seam to build my application. My problem is that I need to differentiate between the clients. Currently the chatroom app has all clients subscribing to a single topic and getting all the messages that the server publishes. I need a filtering mechanis

[jboss-user] [JBoss Seam] - Re: Which view handler JBoss 4.2 needs for facelets ?

2007-06-20 Thread mailmustu
in essence it has something to do with "JBossJSFConfigureListener" it says.almost in english... Exception sending context initialized event to listener instance of class org.jboss.web.jsf.integration.config.JBossJSFConfigureListener javax.faces.FacesException: java.lang.UnsupportedOperationE

[jboss-user] [JBoss Messaging] - Re: JBoss Messaging & Persistence (Failed to route Reference

2007-06-20 Thread Stephen.Campbell
Hi Tim, Ok, so I have given up on getting 1.2.0sp1 working and moved onto 1.3.0. The other config remains the same, just to recap Jboss version - 4.0.4 (we are a part of a bigger project and the other components use 4.0.4 so we cant move) JBM version - 1

[jboss-user] [JBoss Seam] - Method binding with context variable as a parameter - parser

2007-06-20 Thread dkane
Hello In example 1.23 listing of Seam documentation I see the code : | | Name | #{hot.name} | | | Address | #{hot.address} | | | City, State | #{hot.city}, #{hot.state}, #{hot.country} | | |

[jboss-user] [Advanced Documentation] - Re: Upgrade from Jboss 2.4 to Jboss 4.0

2007-06-20 Thread Tobias
There are some migration hints at http://wiki.jboss.org/wiki/Wiki.jsp?page=JBossReleaseNotes View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4056062#4056062 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4056062 _

[jboss-user] [Clustering/JBoss] - farm deployment

2007-06-20 Thread checkmate
hi, i have an very strange behavior during deployment of our *.ear in the farm directory of our jboss4.0.5CR1. the deployer tries to deploy an service twice!? an deployment in the normal deploy directory works pretty fine, without any errors. hope that someone can point me to the righ

[jboss-user] [JBoss AOP] - Re: JBoss 4.2.0 EnableLoadtimeWeaving true prevents server s

2007-06-20 Thread bartvh
I too have a situation where the 4.2.0 with loadtime weaving server fails to start from time to time. It does not occur every time. I am running on Linux, using sun jdk 1.5. I did a stack trace (kill -3) of the java process and these two interesting parts are printed: "main" prio=1 tid=0x2a

[jboss-user] [Messaging, JMS & JBossMQ] - Re: Connecting to remote queue.

2007-06-20 Thread [EMAIL PROTECTED]
Another FAQ: http://wiki.jboss.org/wiki/Wiki.jsp?page=JBossVersionCompatibilityMatrix View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4056067#4056067 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4056067 _

[jboss-user] [JBoss Seam] - Re: Method binding with context variable as a parameter - pa

2007-06-20 Thread [EMAIL PROTECTED]
You need to be using SeamFaceletViewHandler - check the faces-config.xml of the booking example (assuming you are on Seam 1.2) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4056068#4056068 Reply to the post : http://www.jboss.com/index.html?module=bb&op=post

[jboss-user] [JBoss Seam] - Re: Will Woodstock works with Seam some day? :)

2007-06-20 Thread [EMAIL PROTECTED]
http://jira.jboss.com/jira/browse/JBSEAM-1473 - beyond that, I'm not aware of any. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4056070#4056070 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4056070 ___

[jboss-user] [JBoss Seam] - Re: Upgrading to Seam1.3.1a/JBossAS4.2.0ga Significant perfo

2007-06-20 Thread quintenjiang
kosiakk, I also try to migrate Jboos from 4.0.5 to 4.2.0. It works fine in 4.0.5, but it keep to get error message on DatabasePersistencePolicy. I use seam 1.3.0, where did you get 1.3.1a? by the way, may I know how do you configure mysql, just change file hsqldb-ds or replace new one mysql-ds.

[jboss-user] [JBoss Seam] - Re: Will Woodstock works with Seam some day? :)

2007-06-20 Thread dajevtic
Are there any news related to this topic? I've tried using a seam-gen(erated) project together with woodstock and gave up after ajax4jsf erros turned out longer than their source-code ;-) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4056058#4056058 Reply to

  1   2   3   >