[jboss-user] [JBoss Portal] - Re: IdentityUserPortlet not picking up localized resource fi

2007-11-22 Thread jvence
emuckenhuber wrote : Basically not all portlets are translated in every language. And only adding supported-localefr/supported-locale does not help much if no French translation is present ;) | | Anyway - as far as i can remember someone from the community provided some translations for

[jboss-user] [JBossWS] - Re: javax.xml.rpc.JAXRPCException: Cannot create or send res

2007-11-22 Thread [EMAIL PROTECTED]
OK, I guess you're using the JBossWS that came with JBoss 4.0.4.GA that should be something like 1.0.0.GA. That version had a first implementation of JSR181; if you're going to extensively use JAX-WS, I suggest you upgrade both JBoss and JBossWS. In the mean time, try adding the operationName

[jboss-user] [EJB 3.0] - Size of method-ready pool for SLSB (CreateCount/RemoveCount)

2007-11-22 Thread jwcone
When viewing the MBean attributes for a SLSB (using the StatelessDelegateWrapper MBean in the jmx-console), I noticed that the CreateCount continues to increment over time, while RemoveCount is rarely incremented. For example, I may have a CreateCount in the tens-of-thousands while the

[jboss-user] [JBoss Portal] - Re: IdentityUserPortlet not picking up localized resource fi

2007-11-22 Thread [EMAIL PROTECTED]
Next time, please think about contributing, it would have save Luc some time to do the translation as well, he could have work on another portlet and everybody could have benefit from that. Anyway, Luc's contribution is already integrated and will be part of 2.6.3 View the original post :

[jboss-user] [Beginners Corner] - Can I use aspectj in jboss ?

2007-11-22 Thread umen
Hello all I like to use aspectJ with my application, now I put the aspectjrt.jar into my server - all - lib directory And the application is loaded with no exception but when I execute the class 's I don’t get any aspectJ prints ( I used system.out.println with the @Around annotation) . Wheni

[jboss-user] [JCA/JBoss] - Re: Opening connection from a marked rollback tx

2007-11-22 Thread oglueck
Thanks. I have already had a look at the TM code and saw that check. Trace logging is no option for me. This happens randomly and rarely on a production system. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4106985#4106985 Reply to the post :

[jboss-user] [JBoss Portal] - Re: SSL Login like old UserPortlet?

2007-11-22 Thread [EMAIL PROTECTED]
Done. http://jira.jboss.com/jira/browse/JBPORTAL-1813 I still need to document it though View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4106987#4106987 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4106987

[jboss-user] [JBossWS] - Re: Webservice not starting in AS 4.2.2

2007-11-22 Thread [EMAIL PROTECTED]
Hi, which version of JBossWS are you using? Just FYI there will be a new version of JBossWS 2.0.2 downloadable soon which is well tested on JBossAS 4.2.2. I suggest you to upgrade. Richard View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4106992#4106992

[jboss-user] [JBossWS] - Dynamic no. of attachments using MTOM

2007-11-22 Thread oskar.carlstedt
Hi! Has anyone made i possible to implement a web service that can receive or send multiple attachments using MTOM. All examples just have one DataHandler but this is not enough for what I want to do. I want to be able to use a dynamic number of attachments. XOP has support for several

[jboss-user] [JBoss Messaging] - Re: how to create new user fro durable topic in jms

2007-11-22 Thread mskonda
Vikas, it depends on where your login module is looking the authentication details. If you are working on the JBM defaults, it reads the users and roles from two files: messaging-roles.properties and messaging-users.properties. These files should be available under deploy/jboss-messaging.sar

[jboss-user] [JBoss Seam] - why does seam create two instances of my components?

2007-11-22 Thread koenhandekyn
test case : an entityQuery object. when I put a log statement in the constructor, i see that two instances get initiated, one pure and one 'stitched' version. anybody an idea of what's happening ? 09:47:35,382 INFO [STDOUT] CONSTRUCTOR class up.account.ManagedAccountsQuery | 09:47:35,408

[jboss-user] [JBoss jBPM] - Re: JBoss jBPM - BPeL - eclipse

2007-11-22 Thread Pebbels
Hi, thanks for your help but now eclipse is looking for C:\jboss\jbpm-jpdl-3.2.2\server\lib\jboss-boot.jar. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4106995#4106995 Reply to the post :

[jboss-user] [JBossWS] - Re: Is this possible to do somehow?

2007-11-22 Thread [EMAIL PROTECTED]
paoletto wrote : what i was wondering is: is it possible to expose-for example- a | public String foo() , but then the body of the method dont return anything, and, better, dont send back any soap response. This is not possible. You need to evaluate different communication patterns (asynch,

[jboss-user] [JBoss jBPM] - Re: jBPM BPEL Eclipse Process Designer interworking

2007-11-22 Thread agusgr
Well, I think it will be better to start with a syncrhonous process, withouth invocation. Something like this: http://wiki.jboss.org/wiki/Wiki.jsp?page=JbpmBpelDesigner It's an example about how to modify the simple Hello process, but it's a good point to start. The problem is that use an old

[jboss-user] [JBoss jBPM] - Re: JBoss jBPM - BPeL - eclipse

2007-11-22 Thread agusgr
Your are trying to deploy the bpel process from Eclipse?? I think that it is no possible by the moment, you should follow the user guide. Agus View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4107000#4107000 Reply to the post :

[jboss-user] [JCA/JBoss] - Re: Opening connection from a marked rollback tx

2007-11-22 Thread vickyk
oglueck wrote : This happens randomly and rarely on a production system. It then becomes difficult to identify the problem , the only option I can think right now is to simulate the test on the development system . If you are able to do it there with the TRACE logging enabled for JCA and TM it

[jboss-user] [JBoss Seam] - Ma generic do even more version of EntityQuery : MyEntityQue

2007-11-22 Thread koenhandekyn
i want to share with you this generic do-even-more version of EntityQuery with the below class it's even easier to write EntityQuery objects. the EJBQL is generated automatically (example FROM Account account). there is a getExample() method that returns an example instance (for search

[jboss-user] [JBossWS] - Re: Dynamic no. of attachments using MTOM

2007-11-22 Thread [EMAIL PROTECTED]
Hi, did you try to use List or DataHandler[] data object as your method argument? It should work as well. Richard View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4107003#4107003 Reply to the post :

[jboss-user] [JBossWS] - Re: Get time of request

2007-11-22 Thread abdujaparov
Hi Alessio, Can I get these datas from the log file? Where is the log file? With jmx can I get the response time of the last request? Thanks, bye bye. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4107004#4107004 Reply to the post :

[jboss-user] [JBoss Seam] - how to register jcaptcha module in WAR deployment?

2007-11-22 Thread chitcool
Please show me how to register ejb module in WAR deployment. in case of ear, jcaptcha.jar is needed to include in application.xml. jcaptcha.jar But in war deploy, can I include it somewhere in components.xml or web.xml file? View the original post :

[jboss-user] [JBoss Seam] - Re: formattedText with dynamic content - escaping

2007-11-22 Thread appendix
Hi Pete, thank you for showing interest. I gave the whole situation a brief thought and came to the conclusion that a generic approach that transparently escapes rich text tokens in s:formattedText would be hard to implement, because the method would have to differentiate somehow between

[jboss-user] [JCA/JBoss] - Re: Opening connection from a marked rollback tx

2007-11-22 Thread oglueck
That makes sense. I don't know if I can reproduce the problem in a reasonably small test case. I can try, but I currently lack the time. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4107011#4107011 Reply to the post :

[jboss-user] [JBoss Seam] - Re: approach using seam tests

2007-11-22 Thread mhinten
Not sure wether this thread is still active, but I have got a working testNG configuration: - RHDS CR1 - Seam 2.0.0.GA - Project generated with seam-gen - JDK 1.5 !! JDK 1.6 won't work !! Important: be sure to include lib/jboss-deployers.jar to the testNG class path. Now it works in both ant

[jboss-user] [EJB 3.0] - Re: Driver problems with Persistence.XML

2007-11-22 Thread breako
Hi, I got this working by updating my persistence.xml to include: persistence-unit name=h-source transaction-type=RESOURCE_LOCAL and redeploying application. Rgds View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4107014#4107014 Reply to the post :

[jboss-user] [JBoss Seam] - Problems with double clicks on command link

2007-11-22 Thread ivan.tufegdzic
Hi, I have one problem. On double click on link conversation is being ended. How to fix? Here example: | a4j:commandLink action=#{reportHandler.setTables} | reRender=myform |

[jboss-user] [JBoss Portal] - Re: It's Time for .... another UTF-8 Problem

2007-11-22 Thread [EMAIL PROTECTED]
You mean your username (not firsname, lastname) ? Is your username Arne Lüdtke ? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4107017#4107017 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4107017

[jboss-user] [JBoss jBPM] - Re: Multiple JBPM engines on one single JBoss instance

2007-11-22 Thread bfillon
Ok that did the trick : I've set attribute Isolated to true in ear-deployer.xml. The remaining question is : do I need to set CallByValue attribute to true ? If i understand correctly this setting, it is needed for remote calls. If my ears are standalone apps that embed everything needed and

[jboss-user] [JBossCache] - Query cache using 1.4.1

2007-11-22 Thread loumaus
hi there .. we are running into a query cache problem and need help: The log: /sql: select /*+ USE_NL(c d cd) */ c.document_id, c.title, c.label, c.released, c.cover_jpg_mid, c.ftm_containertype_id, c.full_artists, c.product_id, c.genre_id, cd.usr_rating_avg from j_ftm_container c, (select

[jboss-user] [JBoss Seam] - question about programmatically accessing seam component

2007-11-22 Thread gsegura
Hello, I'm in the need of programmatically accessing (I mean not using @In annotation) a component which is created with @Factory . But neither this: | Course course = (Course)Contexts.lookupInStatefulContexts(course) ; | nor this, is working: Course

[jboss-user] [JBoss Seam] - RichFaces binding problem

2007-11-22 Thread tjakopec
After start using JBOSS 4.2.2 GA and SEAM 2.0 GA I get following problem http://www.jboss.com/index.html?module=bbop=viewtopict=124284 Before I used JBOSS 4.2.0 GA and SEAM 2.0 CR and everything was working fine Any help is appreciated! View the original post :

[jboss-user] [EJB 3.0] - Re: ManyToMany relationship do not work properly

2007-11-22 Thread fla83tn
I'm working with Google Web Toolkit so Exception are not serialized..However I told hibernate to print sql queries and no insert was performed..however now I'll try to see the Exception and I'll report it on the forum! For the moment, do you see something wrong of declaration of relationships?

[jboss-user] [JBoss Seam] - Re: question about programmatically accessing seam component

2007-11-22 Thread paradigmza
I use | Component.getInstance(course); | Im not quite sure how the factory method works in your case... but you could always get courseManager... | CourseManager cm = (CourseManager) Component.getInstance(courseManager); View the original post :

[jboss-user] [JBoss jBPM] - Re: question about how to retrieve all tasks

2007-11-22 Thread mwohlf
This can be done with a hibernate query, you can even add some ordering: | DetachedCriteria taskCrit = DetachedCriteria.forClass(TaskInstance.class) | .add(Restrictions.eq(actorId, actorId) | .addOrder(Order.desc(start); | | ListTaskInstance taskList =

[jboss-user] [JBoss Seam] - Re: Seam 2 - Seamgen Project - Can't get simple Action to wo

2007-11-22 Thread wgaulke
Hello there, deploying as ear did solve the problem. I think it was a misunderstanding of the whole process from my side. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4107028#4107028 Reply to the post :

[jboss-user] [JBoss Seam] - Re: question about programmatically accessing seam component

2007-11-22 Thread koenhandekyn
Component.getInstance will work also for components defined by factories View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4107030#4107030 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4107030

[jboss-user] [JBoss Seam] - Re: why does seam create two instances of my components?

2007-11-22 Thread damianharvey
Only that it is usual and part of the framework. Cheers, Damian. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4107032#4107032 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4107032

[jboss-user] [Remoting] - Re: Multiple problems with ServerInvokerServlet and HttpNami

2007-11-22 Thread martin ganserer
Hi all, I could solve the problem by myself. I simply added a UsernamePasswordHandler in my client! View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4107033#4107033 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4107033

[jboss-user] [JBoss Seam] - Re: Seam 2 + JBoss Portal 2.6 portlets

2007-11-22 Thread piotr.walczyszyn
Actually I'm looking for the same thing. If anyone could share some ideas. Best, Piotr View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4107034#4107034 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4107034

[jboss-user] [JBoss Seam] - Re: Problems with double clicks on command link

2007-11-22 Thread damianharvey
You are probably getting concurrent request timeouts - your first click is processing and the second click times out. Try increasing the value of concurrent-request-timeout in your components.xml. Mine is set to 1. Cheers, Damian. View the original post :

[jboss-user] [Messaging, JMS JBossMQ] - Dynamic Listener creation?

2007-11-22 Thread Lajcik
Hello, im building a functionality where a person connects to the server, sends a request. the server then starts some business logic which produces jms messages for him. The user then connects to the sockect and receives that information through a stream from a message listener with a

[jboss-user] [JBoss jBPM] - Web based process designer

2007-11-22 Thread ravalv
Any plans to develop web based process designer ? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4107040#4107040 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4107040 ___

[jboss-user] [EJB/JBoss] - Problem deploying Session Bean

2007-11-22 Thread breako
Hi, I have a very simpl ear, test.ear which packages up the following: test.ear -enterprise.jar AddressDAI AddressDAOImpl // other java files -enterprise.war // usual web stuff - meta - inf application.xml My session bean

[jboss-user] [JBoss Seam] - Re: Seam + Trinidad + Richfaces: IllegalStateException

2007-11-22 Thread fredatwork
Sebastian, I have a very similar issue: 12:10:48,390 ERROR [[Faces Servlet]] Servlet.service() pour la servlet Faces Servlet a généré une exception | java.lang.IllegalStateException: No page context active I'm using RichFaces 3.1.2 SP1 and Seam 2.0.0 GA. I have a simple JSF page

[jboss-user] [JBoss Seam] - Re: Problems with double clicks on command link

2007-11-22 Thread ivan.tufegdzic
Yes. It works fine. Thanks a lot. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4107051#4107051 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4107051 ___ jboss-user mailing list

[jboss-user] [JBossWS] - Re: JAX-WS from Sessions Bean fails due to missing org/jboss

2007-11-22 Thread dkane
ejb3workshop wrote : | A search in the forums and the web makes suggestions to include the jboss-common-clients.jar in the classpath. I tried added this jar to the /server/default/lib folder as well as include it within the EAR / application.xml, of which neiter worked. | ejb3workshop

[jboss-user] [Installation, Configuration DEPLOYMENT] - Jboss4.2.2.GA and Mysql with DefaultDS

2007-11-22 Thread suuuper
Hi to all, I configure the jboss to use Mysql how DefaultDS. I read this page: http://wiki.jboss.org/wiki/Wiki.jsp?page=SetUpMysqlAsDefaultDS But when i start the default Instance, I have the following error: | 14:35:57,757 INFO [ConnectionFactoryBindingService] Bound ConnectionManager

[jboss-user] [JBoss Seam] - Testing junit in eclipse

2007-11-22 Thread pete76
Hi I have to use junit framework as it is part of corporate policy and I would like to get LoginTest (extends SeamTest) working. I am using junit 4.4 and have added the boostrap, src and resource directories to my junit classpath but when I execute the test I get a null pointer in

[jboss-user] [JBossWS] - Re: About jaxrpc-mapping.xml...

2007-11-22 Thread paoletto
the problem is that i have a stack of server, each one with the same service exposed, so i was thinking about DII because it's easier to dinamically specify wsdl url and service name. If i generate the client with wsconsume, then can i dinamically change the address and connect to the same

[jboss-user] [EJB 3.0] - Re: MDB pool configuration EJB3

2007-11-22 Thread ejb3workshop
I am having a problem following your suggestion. I increased by session size to 20 using : @ActivationConfigProperty(propertyName = maxSession, propertyValue = 20 but now I get the following exception : anonymous wrote : Failed to acquire the pool semaphore, strictTimeout=1 A search on

[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: Jboss4.2.2.GA and Mysql with DefaultDS

2007-11-22 Thread jaikiran
Looks like you have specified MySqlDS as the jndi-name of your datasource in your ds.xml file. Change it to DefaultDS. If you want to maintain MySqlDS as the jndi-name then you will have follow a different approach for changing these files. See Approach#2 at

[jboss-user] [JBossWS] - Re: Dynamic no. of attachments using MTOM

2007-11-22 Thread oskar.carlstedt
Hi! Thanks for a quick reply! Ok! It might be a good one to do so. When using a DataHandler list , where do I get the rest of my xml document. If using document/literal I will post/receive an xml document that may contain other textual information. In other words, my xml may contain some

[jboss-user] [JBossCache] - Re: Partitioning in JBoss Cache V2.2.0

2007-11-22 Thread mbroons
Thanks, very useful information... View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4107068#4107068 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4107068 ___ jboss-user mailing list

[jboss-user] [EJB/JBoss] - Re: Problem deploying Session Bean

2007-11-22 Thread breako
Hi, I fixed this problem by updated client code to: |Object ref = ctx.lookup(ta3g/AddressDAOImplBMT/remote); |System.out.println(ref is : + ref); |AddressDAO dao = (AddressDAO)PortableRemoteObject.narrow(ref, AddressDAO.class); | Now I am getting: |

[jboss-user] [JBoss Portal] - Re: IdentityUserPortlet not picking up localized resource fi

2007-11-22 Thread jvence
[EMAIL PROTECTED] wrote : Next time, please think about contributing, it would have save Luc some time to do the translation as well, he could have work on another portlet and everybody could have benefit from that. | | Anyway, Luc's contribution is already integrated and will be part of

[jboss-user] [EJB 3.0] - ejb-jar.xml problem

2007-11-22 Thread ravisoni1986
I am implementing my EJB's in 1.1 spec. and for ejb-jar.xml I am using ejb3.0 namespace and schema. When I deployed my application on jboss then it was not showing any Exception but my Entity bean was not binding. ejb-jar.xml ?xml version='1.0' encoding='UTF-8'? | ejb-jar id=ejb-jar_ID

[jboss-user] [JBoss Seam] - Re: Observer issues - multiple calls + async

2007-11-22 Thread damianharvey
Issue #1 also seems to apply to Quartz jobs - ie. if I do a few hot deploys before a Quartz job is scheduled then it will run a number of times consecutively. Cheers, Damian. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4107079#4107079 Reply to the post :

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

2007-11-22 Thread bentabol
Hello again, I tried what you told me but it didn't work. I must clarify that I'm working with a copy of the default server which I called myconfig, as the tutorial says. I tried to create the tables with the default server as well; again it builds successfully, but I get new errors:

[jboss-user] [JBoss Seam] - Re: Testing junit in eclipse

2007-11-22 Thread paradigmza
You can't, the seamtest uses testng specific annotations to set everything up. You should be able to replace the testng annotations with junit ones and recompile the seam test (from what I have seen) View the original post :

[jboss-user] [JBoss Seam] - BPM, pageflow question?

2007-11-22 Thread pietermartin
Hi What is the relationship between bpm:process-definitions and bpm:pageflow-definitions? The doc says anonymous wrote : a single task in a business process corresponds to a whole pageflow pageflow-definition I am however not using tasks. Is it possible to start a business process and a

[jboss-user] [JBoss Seam] - Re: exception handling in pages.xml: message params possible

2007-11-22 Thread skanky78
thank you! i'll give it a try... cheers, sven View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4107091#4107091 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4107091 ___ jboss-user

[jboss-user] [JBoss Seam] - Re: JBoss EL performance vs Sun EL

2007-11-22 Thread gonzalad
Hello, I've also some serious performance problems with Jsf/Seam. Some of these problems is due to SeamELResolver|getValue. My sample application can stand only 3 users (no think time). The application consumes 50% of the cpu (AIX system - don't have now the processor caractéristics).

[jboss-user] [JBoss Portal] - Re: IdentityUserPortlet not picking up localized resource fi

2007-11-22 Thread emuckenhuber
I tried that again, but unfortunately could not reproduce your problem. All i did was creating the new bundle file, re-deployed the core-identity.sar, changed the users Locale, Logout, Log in again and it was working as expected. View the original post :

[jboss-user] [JBoss Seam] - seam theme doesnot work in hotdeploy mode

2007-11-22 Thread xinhua
Hello everybody, i copied theme file default.properties into WEB-INF/dev/, and add | | theme:theme-selector cookie-enabled=true | theme:available-themes | valuedefault/value | /theme:available-themes | /theme:theme-selector |

[jboss-user] [JBoss Seam] - Re: accessing @length's 'max' value

2007-11-22 Thread skanky78
is this possible at all? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4107095#4107095 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4107095 ___ jboss-user mailing list

[jboss-user] [JBoss Seam] - Re: Pageflow: Illegal Navigation Error

2007-11-22 Thread skanky78
i'm using plain tomcat 6.x with the following settings in the components.xml | transaction:no-transaction / | core:init transaction-management-enabled=false/ | | !-- For use with jBPM pageflow or process management -- | bpm:jbpm |

[jboss-user] [JBossWS] - Re: Dynamic no. of attachments using MTOM

2007-11-22 Thread [EMAIL PROTECTED]
oskar.carlstedt wrote : | When using a DataHandler list , where do I get the rest of my xml document. If using document/literal I will post/receive an xml document that may contain other textual information. I don't understand this question :-( oskar.carlstedt wrote : | In other words,

[jboss-user] [JBoss Seam] - Re: Pageflow: Illegal Navigation Error

2007-11-22 Thread [EMAIL PROTECTED]
you need to be on step1.xhtml before you start the pageflow View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4107101#4107101 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4107101 ___

[jboss-user] [JBoss Seam] - Re: Pageflow: Illegal Navigation Error

2007-11-22 Thread [EMAIL PROTECTED]
http://docs.jboss.com/seam/2.0.0.GA/reference/en/html/jbpm.html#d0e5301 If we are beginning the pageflow during the RENDER_RESPONSE phase—during a @Factory or @Create method, for example—we consider ourselves to be already at the page being rendered, and use a start-page node as the

[jboss-user] [JBoss jBPM] - Re: jBPM BPEL Eclipse Process Designer interworking

2007-11-22 Thread federicok
Muchas Gracias! / Thank you very much! I made a merge between these tutorial and the hello example and I could deploy my little process. A made an asnyncronous process with the bonjour example, and the changes I did in the sources to deploy was: Delete the TYPE DEFINITION in the wsdl Change

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - why does flushing occur though transaction is rollbacked?

2007-11-22 Thread kannattaa
is it normal or bug, that flush() always occurs, even if the transaction rollbacks? i have seam-managed hibernate session configured according to seam documentation http://docs.jboss.com/seam/2.0.0.GA/reference/en/html/persistence.html#d0e5849 property

[jboss-user] [JBoss Seam] - Re: Seam 2 + JBoss Portal 2.6 portlets

2007-11-22 Thread wesleyhales
See here: http://blog.jboss-portal.org/2007/11/seam-20-portlet-example.html We are still working on some things but hope to have a release with RichFaces+Seam soon. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4107108#4107108 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Ma generic do even more version of EntityQuery : MyEntit

2007-11-22 Thread koenhandekyn
this new version below adds methods that generate the default search constraints given a list of fields. just override getFields and get the constraints for free using getSearchFieldRestrictions kind regards koen package up.seam; | | import java.lang.annotation.Annotation; | import

[jboss-user] [Security JAAS/JBoss] - Problem with SSL configuration

2007-11-22 Thread xsedlacp
Hi, I tried configuration explained in JBoss documentation (http://docs.jboss.org/jbossas/admindevel326/html/ch8.chapter.html#d0e18946). I defined securityDomain mbean code=org.jboss.security.plugins.JaasSecurityDomain | name=jboss.security:service=JaasSecurityDomain,domain=RMI+SSL

[jboss-user] [JBoss Seam] - Change messages (created, updated, deleted)

2007-11-22 Thread jagr
Hi. I'm using jboss-seam-2.0.0.BETA1 and jboss-4.2.1.GA. At top of form i have h:messages that shows messages Succesfully updated Succesfully created Succesfully deleted when i submit a form depending the action. Do you know how change language of this messages? On messages at resources dir,

[jboss-user] [JBoss Seam] - FacesMessages are enqueued and not shown

2007-11-22 Thread georges.goebel
Hi, When I have a inputText filed with the attribute required=true an the user does not enter any data the validation is done but the facesmessage is not show on the page. I have tried with h:messages/, h:message .../, s:messages/, ... but I only see the correct message in the log of JBoss I

[jboss-user] [JBossCache] - far cache pattern

2007-11-22 Thread mbroons
Can i use this pattern to provide some kind of highly available cluster ? I would have cluster A caches delegating to far cache A (inside the cluster A) I would have cluster B caches delegating to far cache B (inside the cluster B) Can i set up something like: cluster A caches delegating to far

[jboss-user] [JBoss Tools (users)] - jpa facet not show

2007-11-22 Thread koatto
when i create a new seam project i don't find the JPA Facet among the project's facets list. I use jboss 4.2.2.GA and the last version of jboss tools got by eclipse update. Any idea? Thanks, Ale. [/img] View the original post :

[jboss-user] [EJB/JBoss] - Re: Problem deploying Session Bean

2007-11-22 Thread jaikiran
Since you are using EJB3.0, you no longer need to narrow the returned object. The lookup will return you an proxy which implements AddressDAO interface. Change your code to AddressDAO dao = (AddressDAO) ctx.lookup(ta3g/AddressDAOImplBMT/remote); View the original post :

[jboss-user] [JBoss Portal] - Re: Localizing Tab that has spaces in its name

2007-11-22 Thread [EMAIL PROTECTED]
So i'm implementing it this way. On top of the different display-name i will add a: resource-bundle tag to specify a resource bundle. Values from this resource bundle will populate the database and can be overidden at runtime for people using the admin portlet. If if-exists is set to keep,

[jboss-user] [JBoss Seam] - Re: seam theme doesnot work in hotdeploy mode

2007-11-22 Thread [EMAIL PROTECTED]
Please file a feature request in jira for this. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4107122#4107122 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4107122 ___ jboss-user

[jboss-user] [JBoss jBPM] - org.hibernate.exception.SQLGrammarException: could not get t

2007-11-22 Thread leks
Dear All, I'm geting this hibernate exception on loading the application in tomcat.The application works fine.But it always throw this error on start up.I'm using jbpm 3.2. Any pointers as to why this happens and how to solve this 19:34:22 [main] ERROR could not complete schema update at

[jboss-user] [JBoss Seam] - Re: accessing @length's 'max' value

2007-11-22 Thread [EMAIL PROTECTED]
not afaik View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4107123#4107123 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4107123 ___ jboss-user mailing list

[jboss-user] [JBossWS] - Re: Dynamic no. of attachments using MTOM

2007-11-22 Thread oskar.carlstedt
Ok! What I mean is when I have a DataHandler I can get an input stream to the reach the attachment data. But what if I have the following xml. How do I get my xml document: | my-xml |list-of-something | something | normal-xml | textual-info-1 SOME

[jboss-user] [JBoss Portal] - javax.transaction.NotSupportedException

2007-11-22 Thread remi_dong
Hello, I have a exception when i use the transaction in my portlet. I get the log: 15:45:01,640 ERROR [GiftCardActivate] Exception in actevate card. = Quit the transaction 15:45:01,640 ERROR [STDERR]

[jboss-user] [JBoss jBPM] - Re: question about how to retrieve all tasks

2007-11-22 Thread binyorku
Thanks a lot. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4107134#4107134 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4107134 ___ jboss-user mailing list

[jboss-user] [JBoss Seam] - Re: seam theme doesnot work in hotdeploy mode

2007-11-22 Thread xinhua
ok,done View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4107132#4107132 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4107132 ___ jboss-user mailing list jboss-user@lists.jboss.org

[jboss-user] [JBoss Portal] - Re: It's Time for .... another UTF-8 Problem

2007-11-22 Thread Soon5
Hy, My Username is a company-wide unique number. But, when I edit my Profile, I see my First and my Lastname. First an Lastname are displayed correctly, but when I send the Form, for example for changing my password, the ü gets destroyed Greetings Arne Lüdtke View the original post :

[jboss-user] [JBoss Portal] - Re: It's Time for .... another UTF-8 Problem

2007-11-22 Thread [EMAIL PROTECTED]
We are not able to reproduce this behavior in 2.6.2 either with the new and the former portlets. (We changed the profile of a user after including umlauts in the first name and lastname) So we would need more information on your environment and what you are doing exactly View the original

[jboss-user] [Security JAAS/JBoss] - Radius AAA server + JAAS

2007-11-22 Thread engela
I need to integrate jboss + RADIUS server for AAA. Is there a radius login module for JBoss Authentication? Thanks, Anette View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4107141#4107141 Reply to the post :

[jboss-user] [JBoss Seam] - Custom JSF Validator/Converter with EntityManager

2007-11-22 Thread trouby
Hey, I would like to create a jsf validator/converter that should involve some db queries/modifications, Is it possible elegantly to use Seam's entityManager somehow? There's entityConverter out of the box coming with Seam which probably make a usage of it, not sure how exactly it works,

[jboss-user] [JBoss Seam] - Re: accessing @length's 'max' value

2007-11-22 Thread skanky78
ok, is there any other solution so that i have to define the max-value only once? can i set the max-value in the component through EL, so that i could use the same expression for my input attribute? thanks in advance, sven View the original post :

[jboss-user] [JBossWS] - IWAB0398E Error in generating WSDL from Java

2007-11-22 Thread kikk
Hi, I use Jboss 4.0, jdk 1.5 and eclipse 3.3.1. when I click on create web service, appears to me a windows with an error. Can someone tell me what's the problem? IWAB0398E Error in generating WSDL from Java:

[jboss-user] [JBoss Seam] - Re: Seam and plain old JDBC code

2007-11-22 Thread Fangzx
How to use plain old JDBC code with Seam? Could anyone show some code pls? Thanks in advance. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4107137#4107137 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4107137

[jboss-user] [EJB 3.0] - Re: Deployment problems - persistence unit could not be crea

2007-11-22 Thread ABDGOD
HY, i have exactly the same problem (error). Did you find a solution, please answer me thx. [EMAIL PROTECTED] View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4107145#4107145 Reply to the post :

[jboss-user] [Datasource Configuration] - Re: creating datasource

2007-11-22 Thread ABDGOD
HY, i have exactly the same problem (error). Did you find a solution, please answer me thx. [EMAIL PROTECTED] View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4107146#4107146 Reply to the post :

[jboss-user] [JBoss Portal] - Please Help: FacesContext.getExternalContext().redirect does

2007-11-22 Thread rododendro
Hi, I'm developing a JSF portlet application on JBP 2.6.1, AS 4.2.1. I need to redirect navigation from a JSF portlet to another one, before this a portlet session attribute must be set, so I can't user a direct link to the portlet URL. Based on JSF 1.2 documentation i tried: FacesContext fc =

[jboss-user] [JBoss Portal] - Re: IPC - unable to get example to work

2007-11-22 Thread JohnnyTheHun
Thank you, now it works perfectly View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4107150#4107150 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4107150 ___ jboss-user mailing list

[jboss-user] [JBoss Seam] - Persistence provider suggestions needed.

2007-11-22 Thread tzman
We have implemented a Custom JPA EntityManager, yes we are either masochists and/or not very bright. The real reason behind this endeavor is that operations on entities (CRUD) actually occurs via xml messaging with a number of services. So, the EntityManager manages creation of the correct

[jboss-user] [JBoss Seam] - Server Technical Specifications

2007-11-22 Thread pettersonfp
Hi, Is there any method to calculate the necessary hardware to run my seam-app? Thanks in advance, Petterson View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4107154#4107154 Reply to the post :

[jboss-user] [JBoss Portal] - Data access / persistence - could you help?

2007-11-22 Thread JohnnyTheHun
I am setting up a JBoss Portal for evaluation purposes at my company. I am new to JBoss, Portal, Hibernate and more or less to the J2EE scene too. I am reading documentation whenever I can, if I run into something and I know where to find the docs. I have set up the new bundle, wrote a few

  1   2   >