[jboss-user] [JBoss jBPM] - Re: How di I embedd jBPM in my j2ee app?

2007-02-16 Thread anre42
Yes, I'm painfully aware of that... luckily we're just about to migrate to 10g now View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4017468#4017468 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4017468

[jboss-user] [Remoting] - Re: Exceptions in calls and callbacks

2007-02-16 Thread [EMAIL PROTECTED]
Maybe I can clarify a bit. The reason the remoting client declares that it throws Throwable is that remoting will pass along the Throwable object thrown from the server side hanlder. Since we don't know what type of exceptions the server side handler might throw, we have to declare the most

[jboss-user] [JBoss Seam] - Remove from list using EntityHome

2007-02-16 Thread lightbulb432
How would you remove an entity using EntityHome when you're in a list of those entities (populated either using the query's resultList or dataModel property)? I can maybe see how you could do it from within a page that is centered around that one entity, but not from a list of many of those

[jboss-user] [JBoss Seam] - Re: Seam Gen Problem

2007-02-16 Thread [EMAIL PROTECTED]
either your jdbc url is wrong or the driver location you entered during seam setup is not correct. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4017471#4017471 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4017471

[jboss-user] [JBoss jBPM] - Deadlock question

2007-02-16 Thread JimKnopf
Hello. I want to use JBPM as a Workflow-Engine for a Hospital to suport the doctors. When it is ready, there are circa 30.000 - 80.000 Workflow-instances running. My Question is, JBPM is singel Thread what happend, if i get a deadlock in an action? I already tested it an if I am rigth if i say,

[jboss-user] [JBoss Seam] - Re: Remoting: Use mock-xml instead of server-call?!

2007-02-16 Thread [EMAIL PROTECTED]
This is extremely easy. Just override the Seam.Remoting.sendAjaxRequest() function to return whatever response you want to Seam.Remoting.requestCallback(). That's the great thing about Javascript, everything is public and you can selectively override pretty much anything you want. View the

[jboss-user] [Security JAAS/JBoss] - Re: Anyone get JAAS working with remote entities?

2007-02-16 Thread SmokingAPipe
Ok, now I am finding out more: it seems like the security check doesn't happen until a secured method is invoked, and if the security check fails, it just throws an exception. This seems ridiculous, but that's what I'm finding in docs like this:

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

2007-02-16 Thread [EMAIL PROTECTED]
no that is not related. for some reason his ant gets confused about classes and can't load the cglib libraries - they should be there...hmmm maybe seamgen only have the libraries needed for javaassist style settings. View the original post :

[jboss-user] [JBoss Seam] - Re: hidden exception issue?

2007-02-16 Thread gsegura
baz: I did that when I first encounter the problem and found start method was called just once. I also asigned some values to the properties of newUser inside tehe start method, like: newUser.setName(testing) ; and that didn't throw the referred exception. The exception was been thrown by

[jboss-user] [Beginners Corner] - Re: multiple datasource

2007-02-16 Thread sandrocchio_0.1
I tried to implement your solution, but it is still not working. What I've done: - restored the original configuration for the DefaultDS (../jboss-4.0.5.GA/server/default/deploy/jms/hsqldb-jdbc2-service.xml, ../jboss-4.0.5.GA/server/default/deploy/hsqldb-ds.xml ) - deleted the

[jboss-user] [JBoss Seam] - Re: Seam Gen Problem

2007-02-16 Thread gsegura
To find out where is looking for the jar driver try using filemon by sysinternals (I hope I'm not offending any rule by talking about third party product, it's free though) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4017482#4017482 Reply to the post :

[jboss-user] [JBoss jBPM] - Re: jBPM GPD: transitions not drawn -- is GPD 3.1.0.alpha2 b

2007-02-16 Thread avbentem
Koen, thanks for your prompt reply. [EMAIL PROTECTED] wrote : No the new GPD will not be backwards compatible with older process definitions. However, we will provide a conversion tool. | I think I did an extensive search on these details, but could not find it documented anywhere. If I

[jboss-user] [JBoss jBPM] - Re: permissions to users

2007-02-16 Thread jbmp user
Ronald, I'm sorry!!! I am using the default web app with a SQL db, and I am sure this tables are empty. But, if I run the default web app with Hypersonic, this tables are not empty why??? In this case: jbpm_id_user have datas jbpm_id_group have datas jbpm_id_membership have datas

[jboss-user] [JBoss Seam] - Re: MockApplication in SeamTest not easily overridable

2007-02-16 Thread denis-karpov
Seam uses facelets to work with JSF. There is no JSP at all. Facelets now controls creation and manipulation of JSF component tree. And as I understand you cannot control the JSF component tree the way that was suggested in the article, if you work with facelets. But do not worry. Facelets has

[jboss-user] [JBoss Seam] - Re: TestNg problem with my seam application

2007-02-16 Thread denis-karpov
SeamTest has a lot of special helper methods. Because it is mock environment. Try getInstance instead of Component.getInstance View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4017500#4017500 Reply to the post :

[jboss-user] [JBossCache] - Re: Weird TreeCache.printDetails()

2007-02-16 Thread ottuzzi
Hi Genman,all, thank you for your reply. I'm a little bit surprised by your response because I do not use any cacheLoader... here is my configuration: ?xml version=1.0 encoding=UTF-8? | server | | classpath codebase=./lib archives=jboss-cache.jar, jgroups.jar/ | | mbean

[jboss-user] [JNDI/Naming/Network] - Two instances behind a ALTEON

2007-02-16 Thread ledoc
Hi, this is my configuration : jdk 5.0 Jboss 4.0.4 solaris 10 Alteon redirect all ports With a remote client, i want to access to an EJB. I use rmi server configuration to launch one instance of jboss (Djava.rmi.server.hostname=ALTEON_IP) I have no problem, but when i use rmi

[jboss-user] [JBoss Seam] - Inject Seam Component In Entity Bean

2007-02-16 Thread poyge394
Hi, I can inject a seam component in Entity with: EncryptionController anEncryptionController = (EncryptionController) Component.getInstance(encryptionController, true); But is it possible to inject it with In annotation or some other annotation ? View the original post :

[jboss-user] [JBoss jBPM] - Re: jBPM GPD: transitions not drawn -- is GPD 3.1.0.alpha2 b

2007-02-16 Thread avbentem
An additional issue for which I feel mentioning in the GPD release notes might be very helpful (some posts such as http://www.jboss.com/index.html?module=bbop=viewtopicp=4006107#4006107 did not yet make it 100% clear to me, but some hands-on will probably show me today): - Is jbpm-console.war

[jboss-user] [JBoss jBPM] - Re: Please help - rollback with managed trasnactions

2007-02-16 Thread mrudulam
If you look at the last two lines of hte log, after rollback, a select is done on jbpm token and update is done. Does this indicate that when rollback occurs, the jbpm_token is set to the parent node of the current node? [2/16/07 12:33:39:949 IST] | 6f97230a SystemOut O Hibernate:

[jboss-user] [JBoss Seam] - Re: Inject Seam Component In Entity Bean

2007-02-16 Thread poyge394
Ok, thanks. just curious why ? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4017509#4017509 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4017509 ___ jboss-user mailing list

[jboss-user] [JBoss Portal] - Re: Management portlet improvements

2007-02-16 Thread [EMAIL PROTECTED]
No, of course not, requests are paged, by default it fetchs 10 users at a time. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4017512#4017512 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4017512

[jboss-user] [JBoss Portal] - Re: Workflow in Portal

2007-02-16 Thread yoyoyoyo
Hi, I am trying to convert the jbpm webapp into portlets. There is no success yet. I am thinking maybe I have to write the portlets from scratch, instead of adjusting the existing webapp. The major problems are: 1. JSF seems to be not working well within portal, maybe due to different scopes

[jboss-user] [JBoss jBPM] - Re: JBPM Fork Issues

2007-02-16 Thread stembol
I've done the test and the result is there isnt any concurrent processing. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4017517#4017517 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4017517

[jboss-user] [JBoss/Spring Integration] - Re: Using beans from other spring module

2007-02-16 Thread jussi_po
I solved this by using Delegate class from web application to access Spring module beans. I defined business services for the web application, I tried to make the web application as slim as possible. Made a delegate class which extends the business interface. And for that class I get the

[jboss-user] [JBoss Seam] - Re: Inject Seam Component In Entity Bean

2007-02-16 Thread petemuir
It makes it harder to use a bad architecture/design ;) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4017521#4017521 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4017521 ___

[jboss-user] [JBoss Portal] - Re: customize UserPortlet

2007-02-16 Thread den74
well, i customized some parts about the user creation but it seams to not be possible to customize the profile user data. I can customize the jsp but i can't customize the storing of data, i mean to add the storing of new personal data, because they are managed int the PortletUser classand i

[jboss-user] [EJB 3.0] - Re: Using a JoinTable, getting unique constraint violtions

2007-02-16 Thread fhh
This is not a one-to-many relationship but a (unidirectional) many-to-many. (One product belongs to many invoices, many invoices belong to one one product). Regards Felix View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4017526#4017526 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Conversation versus Session Context

2007-02-16 Thread quilleashm
This is because you have a component binding into a conversation scoped component. The conversation context is only available AFTER the restore view phase, but control bindings like this are executed in the restore view phase. To work around this have a event scoped component that hold your ui

[jboss-user] [JBoss Seam] - Re: Running the booking example on JBoss with the JSF 1.2 RI

2007-02-16 Thread h0ppy
Hi its not a compilation issue, the project builds fine. I think I'm going to have to give up and use the Sun Application Server 9 for development. A couple of other questions, in the instuctions above, step 3, it asks you to replace myfaces-api.jar with jsf-api.jar, but myfaces-api.jar is

[jboss-user] [JBoss Seam] - Re: Remove from list using EntityHome

2007-02-16 Thread petemuir
Use page parameters: s:link action=#{entityHome.remove} |f:param name=entityId value=#{entity.id} / | /s:link page view-id=/blah.xhtml |param name=entityId value=#{entityHome.id} / | /page View the original post :

[jboss-user] [JBoss Portal] - Re: org.jboss.portal.portlet.impl.jsr168.PortletContextImpl

2007-02-16 Thread [EMAIL PROTECTED]
Check the questions on the forums, you will see that many if not most of them get answers. I feel personally offended that you say we don't care, since i put lot of energy into it. Even more since i already answered a similar question to you in this thread

[jboss-user] [JBoss jBPM] - jBPM GPD 3.1.0.alpha2: outline view

2007-02-16 Thread avbentem
Is it expected behavior that the Outline View no longer has any right-click menu items? I noticed that in process-definition the value for attribute xmlns is empty, but setting it to xmlns=urn:jbpm.org:jpdl-3.1 does not help either. Some details, if only for the sake of Google: Using GPD

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

2007-02-16 Thread Smurfs
I've had no problems implementing the latest authentication/authorisation security features thanks to the contributors to this thread :) I now need to roll my own implementation of org.jboss.seam.security.Identity to include a third log-in form attribute called 'organisation'. This identifies

[jboss-user] [JBossCache] - hibernate 3.2.2 + Jalapeno SP1 treecache.xml best practice

2007-02-16 Thread 7uc0
Hi there, As I went through the forum/doc/jira/code in order to get some info about the treecache.xml best practice, here's my questioning. 1-the hibernate-recommended treecache xml (merci Manik!) head revision declares the MBean as a org.jboss.cache.CacheImpl instance. are there any (I

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

2007-02-16 Thread petemuir
I use this: @Name(org.jboss.seam.security.identity) | public class Identity extends org.jboss.seam.security.Identity { | | ... | |public static Identity instance() { | if ( !Contexts.isSessionContextActive() ) { | throw new IllegalStateException(No active

[jboss-user] [EJB 3.0] - Re: Altering the transaction timeout

2007-02-16 Thread JamesWoodward
Yes, in your session bean, you need to annotate your long running method as follows: @org.jboss.annotation.ejb.TransactionTimeout(3000) public void doSomethingThatTakesAges() { ... } James View the original post :

[jboss-user] [JBoss jBPM] - Re: jBPM GPD 3.1.0.alpha2: outline view

2007-02-16 Thread avbentem
avbentem wrote : However, the Properties tab (Window, Show View, Other, General, Properties -- if not visible) shows all one need... ...however: it does not yet support generating the task form, or entering controller details, right? Arjan. View the original post :

[jboss-user] [JBossCache] - Re: hibernate 3.2.2 + Jalapeno SP1 treecache.xml best prac

2007-02-16 Thread 7uc0
Since I wanted to increase my post number, I deliberatly made a mistake in the subject title. Please understand Cayenne instead of Jalapeno ! View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4017547#4017547 Reply to the post :

[jboss-user] [JBoss Seam] - slow queries using lobs in entities

2007-02-16 Thread koatto
I have a problem querying an entity with a lob property, thats my entity's definition : | @Entity | public class File{ | @Id @GeneratedValue(strategy=GenerationType.AUTO) | longcode; | @ManyToOne | Person person = null; | Datetimestamp

[jboss-user] [Beginners Corner] - loading classes by unregistered classloader

2007-02-16 Thread fuzebest
I really don't know where to post this message, so post it here. I have an ear containing sar archive. Ear uses own classloader repository defined in META-INF/jboss-app.xml. Sar contains MBean exporting service via RMI, all dependant classes are in the server lib directory. If I put ear into

[jboss-user] [JBoss Getting Started Documentation] - Where is the additional JBoss code for the Java EE Tutorial?

2007-02-16 Thread plexusnexus
Hello, I am currently reading the Getting Startet tutorial and would like to install Duke's Bank. I downloaded the Java EE Tutorial and it's examples. In the JBoss tutorial is written, that I have to download JBoss specific code to run the examples from http://www.jboss.org/docs/index. But I

[jboss-user] [Management, JMX/JBoss] - JMX RMI Remote Client Notification Problem

2007-02-16 Thread GeorgFriedrich
Hi, I have to write an Eclipse RCP based Client for our JEE Application. I'm using JBoss 4.0.5.GA with JDK 5 and I have a problem with JMX notifications. I can successfully connect to the MBeanServer with: MBeanServerConnection server = (MBeanServerConnection)

[jboss-user] [JBossWS] - Re: jbossws always try to use port 8080

2007-02-16 Thread liudan2005
I did a search for 8080 and there are at least 20 files contain 8080. Is there any standard way to change the port number to 80? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4017558#4017558 Reply to the post :

[jboss-user] [JBoss Messaging] - Re: Receiving IllegalStateExceptions in client

2007-02-16 Thread timfox
Ben - I have run your example using 1.0.1.SP4, Windows XP, MySQL, InnoDB and with your paging settings, and I see no exceptions on the client side or in the server side logs: | run: | [java] Attempting to send 2 messages to the testQueue queue... | [java] 1000 messages

[jboss-user] [JBoss Messaging] - Re: Receiving IllegalStateExceptions in client

2007-02-16 Thread timfox
I think what you are seeing is a network problem between your client and server that is preventing the acknowledgement going through. Looking at the code SessionAspect::handlePostDeliver: | if (cancel) | { |sd.cancelDeliveries(acks); | } |

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

2007-02-16 Thread quilleashm
Your one should have application precedence (the default), the core one has the lower built in precedence. From the source | @Name(org.jboss.seam.security.identity) | @Scope(SESSION) | @Install(precedence = BUILT_IN, classDependencies=org.drools.WorkingMemory) | So if you define a

[jboss-user] [JBoss Seam] - Re: Exception getting value of property resultList of base o

2007-02-16 Thread petemuir
This is key part of the above stack trace: Caused by: org.hibernate.hql.ast.QuerySyntaxException: User is not mapped [select user from User user] I would infer from this that something went wrong with your generate entities. Does the User object exist and is it mapped? View the original

[jboss-user] [JBoss jBPM] - Re: BPEL Installation - NewBie

2007-02-16 Thread xyz12345
Bump... Newbie need help! Thanks, View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4017564#4017564 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4017564 ___ jboss-user mailing list

[jboss-user] [Clustering/JBoss] - Re: Clustering begginner..please HELP

2007-02-16 Thread sreejava
If possible kindly verify the steps i have done for achiving Load Balencing( and FAILED.) Inside Apache2 1.Apache2.2\conf\httpd.conf (modified) 2.Apache2.2\modules\mod_jk.so (downloaded) 3.Apache2.2\conf\mod_jk.conf (created) 4.Apache2.2\conf\workers.properties (created) Inside

[jboss-user] [JBoss Portal] - Re: Workflow in Portal

2007-02-16 Thread kukeltje
1: not realy... look at the jboss portal, lots of jsf in there 2: I would spent time to make the identity component a real service. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4017570#4017570 Reply to the post :

[jboss-user] [JBoss jBPM] - Re: JBPM Fork Issues

2007-02-16 Thread kukeltje
jbpm IS NOT a threading system...(discussed lots of times) if you want concurrent processing, use async actions that are processesed e.g. using jms That way the loop is real quick and processing 'concurrent' View the original post :

[jboss-user] [JBoss jBPM] - Re: jBPM GPD: transitions not drawn -- is GPD 3.1.0.alpha2 b

2007-02-16 Thread kukeltje
automagically: no, not for now. The moment variable types come in jdpl, it might be created again. That way you have the option to use designtime generated/customized forms or automagically runtime forms View the original post :

[jboss-user] [JBoss Messaging] - Re: Receiving IllegalStateExceptions in client

2007-02-16 Thread timfox
Also, the remoting client pool size by default is 50 concurrent connections, and these will timeout after a while (this is what you are seeing). If your mySQL instance is slow, then you may have a lot of invocations backing up (remember you have 500 sessions - this is a lot) waiting to get one

[jboss-user] [JBoss Seam] - Re: Protected methods on Seam components

2007-02-16 Thread petemuir
[Sorry about the rant below - I would claim its an attempt to drag back on topic, but as I can't answer the question I guess it isn't ;)] fhh wrote : It means that they are only accessible from subclasses or from any class of that package. Anyway, that is not a security feature. It is used to

[jboss-user] [JBoss jBPM] - Re: How does JBPM support

2007-02-16 Thread kukeltje
are a and b splits?, can e be created twice (once from D, once from B? Please give more info View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4017575#4017575 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4017575

[jboss-user] [JBoss jBPM] - Re: Deadlock question

2007-02-16 Thread kukeltje
correct, jbpm is single threaded. For complex actionswe advise to use the async functionality, so the processing is done outside the engine and a callback is used to trigger it again. Thatway the chances on deadlocks are a lot less. Never the less, it might be worth looking into writing a

[jboss-user] [JBoss jBPM] - Re: How di I embedd jBPM in my j2ee app?

2007-02-16 Thread kukeltje
we migrated from 8.1.7 to 9i Rac two years ago... RAC is a hell we think of dropping that when migrating to 10g within one year View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4017579#4017579 Reply to the post :

[jboss-user] [JBoss jBPM] - Re: permissions to users

2007-02-16 Thread kukeltje
you have to fill them manually, only in the case hsqldb is used, the deployment task fill it. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4017580#4017580 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4017580

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

2007-02-16 Thread petemuir
You have security:identity / in your components.xml right? As Seam's Identity is not marked @Install(value=false) by putting that line in components.xml you end up creating an Identity component (which has APPLICATION precedence (as per the defaults)). So, what you in fact need to do, in

[jboss-user] [JBoss jBPM] - Re: permissions to users

2007-02-16 Thread jbmp user
The jbom_id_permissions have not associations with other tables why?? how do I associate the permissions with the users?? Thank you View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4017583#4017583 Reply to the post :

[jboss-user] [JBoss jBPM] - Re: permissions to users

2007-02-16 Thread kukeltje
afaik, permissions are not used (yet) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4017585#4017585 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4017585 ___ jboss-user mailing

[jboss-user] [JBoss Eclipse IDE (users)] - file permision prob

2007-02-16 Thread stuck_in_code
when i sun jboss from terminal it runs fine but from eclipse it gives error like 17:48:25,244 INFO [Server] Starting JBoss (MX MicroKernel)... 17:48:25,245 INFO [Server] Release ID: JBoss [Zion] 4.0.4.GA (build: CVSTag=JBoss_4_0_4_GA date=200702151948) 17:48:25,246 INFO [Server] Home Dir:

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

2007-02-16 Thread Smurfs
Pete, I had overlooked the extra attributes on the security:identity / tag that provide for a bespoke Identity so thank you for making me revisit this - I will amend my configuration. Mike, thanks for your pointers. I actually got my Identity working by changing the precedence as per your

[jboss-user] [JBoss Seam] - Re: Protected methods on Seam components

2007-02-16 Thread quilleashm
Writing an internal API. Yes. When a method is final cglib does not proxy it so the Seam interceptors can't hook in for that method call (other non-final methods work fine)? Yes. In my case JSF action method calls a public API method for which there is a base helper implementation

[jboss-user] [JBoss jBPM] - Re: permissions to users

2007-02-16 Thread jbmp user
oh, oh, oh I think the permissions is very important then, why and for what the jbpm_id_permissions table exist?? Thank you for all View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4017591#4017591 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Seam/Hibernate meetup in San Francisco, Friday, March 2

2007-02-16 Thread mjek2
Cool! Would love to see the Seam Hibernate team in action! I'm in SF on March 2nd, but my flight arrives only at 7 pm. Any chance to catch the meetup? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4017593#4017593 Reply to the post :

[jboss-user] [JBossWS] - Re: just can't get jbossWS working!!

2007-02-16 Thread [EMAIL PROTECTED]
Make sure you follow the installation instructions from the user guide _and_ the INSTALL.txt that ships with the download. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4017594#4017594 Reply to the post :

[jboss-user] [Clustering/JBoss] - Re: Clustering begginner..please HELP

2007-02-16 Thread sreejava
THANK YOU BOSS. I SUCCEEDED IN MY ATTEMPT .. EVEN THE SESSION DETAILS GOT TRANSFERRED BETWEEN SERVERS THANKS A LOT.. THANK YOU THANK YOU THANK YOU View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4017595#4017595 Reply to the post :

[jboss-user] [JBoss Seam] - Navigation outcome from bean

2007-02-16 Thread hamtho2
Hi @all, when I browsed through the forum I stumbled about a thread, telling how to user navigation outcomes out of a bean and not a view. Unfortunately I cannot find this thread anymore. Can someone give me a hint or a code-example for this? Thanks for your help and sorry for the

[jboss-user] [Messaging, JMS JBossMQ] - JbossMQ file persistence for jboss-4.0.5

2007-02-16 Thread athulshetty25
Hi All, Currently we are using jboss-3.2.5 for production and used file persistence for JbossMQ. Now we are planing to upgrade to jboss-4.0.5, but facing some difficulties for file persistence. I checked jbossmq.jar under lib directory, i could see that its not having class files related

[jboss-user] [JBoss Seam] - Re: Seam Email - IllegalStateException: No Factories configu

2007-02-16 Thread bsmithjj
I've tried two variants 1.) put the seam-mail.jar and dependencies in the .war as you have done in the example. 2.) put the same set of jars in the .ear I'm convinced that the issue I'm running into is related to class loading. Reviewing the .ear created by your seam-email example, I'm

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - A way to get all the persistence units names with EJB 3.0 ?

2007-02-16 Thread olvin
Hello, Is there a way to get all the persistence units names installed in JBoss 4.0.5 ? So, I have put this in my persistence.xml for all persistence units to add JNDI references to the persistence units : But in a session bean, how can i get all the persistence units names without

[jboss-user] [JBoss Seam] - Re: slow queries using lobs in entities

2007-02-16 Thread fernando_jmt
I'm not sure, but I don't know if using BLOB (I suppose is a SQL type class) as bean property is the right way. Maybe you can try changing it by: | @Lob @Basic(fetch = FetchType.LAZY) | byte[] contents= null; | or | @Lob @Basic(fetch = FetchType.LAZY) | InputStrem

[jboss-user] [JBoss Eclipse IDE (users)] - Problem Starting JBoss Server in Eclipse Using JBoss Eclipse

2007-02-16 Thread dagat-habagat
Specs: Eclipse 3.2 JBoss AS 4.0.5 JBoss Eclipse IDE 2.0 Beta2 Fedora Core 4 Linux Platform hi! I am new at using Eclipse and JBoss. I recently installed Eclipse IDE and JBoss AS. Then I installed JBoss Eclipse IDE into Eclipse. Things were going smoothly as i configured a new

[jboss-user] [JBoss Seam] - Re: Navigation outcome from bean

2007-02-16 Thread quilleashm
http://docs.jboss.com/seam/1.1.6.GA/reference/en/html/events.html See the section on navigation. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4017604#4017604 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4017604

[jboss-user] [JNDI/Naming/Network] - Re: Proxy ClassCastException after successful EJB lookup

2007-02-16 Thread skymic
Hi cupdike and Peter, I think I have the same problem with classloaders. I am using a standalone tomcat V5.5 and try to lookup a remote EJB in a JBoss4.0.5 (on a different machine) using this code in my servlet: String urlName = jnp://localhost:1099; Properties p = new

[jboss-user] [EJB 3.0] - Re: EJB dependency injection

2007-02-16 Thread pesho4uka
Hello, sory for the delayed replay but i am still interested in how to do this dependency injection. I am using jboss 4.0.5 and also Myfaces last version i think 1.1.4. Is this dependency injection specifict to JSF 1.2? View the original post :

[jboss-user] [JBoss jBPM] - Re: Please help - rollback with managed trasnactions

2007-02-16 Thread estaub
Sorry, you're way beyond me! I've been lucky enough not to need to deal with Websphere J2EE yet. Folks who have dealt with it don't usually say nice thinks about it. Anyone else??? -Ed Staub View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4017612#4017612 Reply

[jboss-user] [JBoss Seam] - Re: Navigation outcome from bean

2007-02-16 Thread hamtho2
Thank you very much for that. I totally overlooked that part. But it´s still neccessary to have a view-id that is a real xhtml-page. There´s no way to use the outcome of a bean-action for multiple pages, is there? So that I could use the outcome of an action for multiple pages? Thomas View

[jboss-user] [JBoss jBPM] - JbpmBpelDS not bound

2007-02-16 Thread fiorepaolo
Hi everyone, I installed JBOSS AS 4.0.4 GA succefull configured with hypersonic using jems-installer-1.2.0.BETA2.jar. After this i tried install JBPMBPEL. I dowloaded jbpm-bpel-1.1.Beta3.zip and unrar it. I configured build.properties in config folder. I run command 'ant build.sar' and ant

[jboss-user] [JBoss Seam] - Re: Navigation outcome from bean

2007-02-16 Thread quilleashm
I'm not quite understanding the question. The view-id in pages.xml does not have to be a real page, it can just be to bind an action that is executed when that view is requested but then the action can return an outcome which the page navigation uses to render a different page. View the

[jboss-user] [JBossWS] - Re: just can't get jbossWS working!!

2007-02-16 Thread liudan2005
I did follow the instruction. my enviroment: Jboss JEMS 1.2 CR1 (AS 4.0.5.GA, EJB3 1.0.0.CR9-jboss4.0.5, Portal 2.4.0.GA, JBossWS 1.0.3.SP1 Installer) I downloaded jbossws 1.0.4 and I did: 1.) Copy lib/jbossws-client.jar to $JBOSS_HOME/client/ 2.) Unzip lib/jbossws.sar to

[jboss-user] [JBoss Seam] - Re: Navigation outcome from bean

2007-02-16 Thread hamtho2
sorry - I really did not explain it really clearly. The idea is the following: I have two different xhtml-pages with an command button on each page referencing to the same ActionBean and calling the same methods, but the result of that action always points to the same result-page. So is it

[jboss-user] [JBoss Eclipse IDE (users)] - Re: Cant start Jboss 4.0.3 with Jboss-IDE 2.00 beta

2007-02-16 Thread norrith
I've kept solving this problem for some hours and It's solved finally. Just uncheck all secure items in the last installation form. Enjoy! PS. Is this a bug? I've add the user's name and the user's password parameters either in Start Args or in Twiddle Args... But there is still the same

[jboss-user] [Installation, Configuration Deployment] - java.util.Properties$LineReader.readLine(Properties.java:365

2007-02-16 Thread bipinthakur
Hi, I am using JBOSS AS405 and JDK1.5.0_06. The piece of code works fine when put into a main program and run as a Java application through eclipse IDE. The same code is a part of an enterprise project which has no errors and builds fine. However when i publish the project to the app server,

[jboss-user] [EJB 3.0] - EJB QL contsructor expression

2007-02-16 Thread hanland
Hi, I have just tried creating a query with a constructor expression in it. The first parameter is a float, no problem with the deployment. Now when I try and replace this with a SUM expression I get a QuerySyntaxException during deployment. Any ideas on this one? Should it work? TIA

[jboss-user] [EJB 3.0] - Re: EJB dependency injection

2007-02-16 Thread [EMAIL PROTECTED]
Yes, it is part of the JSF 1.2 spec. And actually, it is an optional feature. The only time it is required is for a JEE 5 compliant application server. It won't work with JSF 1.1. The feature will be available in JBoss 4.2 and JBoss 5.0. View the original post :

[jboss-user] [JBoss Seam] - Re: Navigation outcome from bean

2007-02-16 Thread quilleashm
Try.. | page view-id=/* | | navigation from-action=#{myBean.commonAction} | rule | redirect view-id=/results.xhtml/ | rule/ | /navigation-case | | /navigation-rule | Haven't tried this myself but I think this should work.

[jboss-user] [JBoss Seam] - Re: Seam Email - IllegalStateException: No Factories configu

2007-02-16 Thread petemuir
I agree its classloading related. As I said, I can take a look, but i'm not convinced I would have any more luck than you! So, this is how I lay it out: 1) Use the default JBoss (4.0.5.GA) install (so myfaces in jsf-libs) 2) Put everything I can, especially the jars that provide UI (so

[jboss-user] [JBoss Seam] - Re: Seam Email - IllegalStateException: No Factories configu

2007-02-16 Thread petemuir
Also, specifically, I would make sure you have facelets and myfaces-impl not in the ear root but either in jsf-libs or WEB-INF/lib View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4017643#4017643 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Navigation outcome from bean

2007-02-16 Thread fernando_jmt
Some corrections for the last sample source code: | page view-id=/* | | navigation from-action=#{myBean.commonAction} | redirect view-id=/results.xhtml/ | /navigation | | /page | View the original post :

[jboss-user] [EJB 3.0] - Re: Retrieve retrieve Entity Class mapping from jboss

2007-02-16 Thread florian79
I created a statless Sessionbean as followed: | @Stateless | public class BaseSession implements BaseSessionRemote, BaseSessionLocal | { | | @Resource SessionContext context; | @PersistenceContext(unitName=myName) private EntityManager entityManager; | | public

[jboss-user] [JBoss Eclipse IDE (users)] - Re: Hibernate Tools Beta 9 JPA Persistence Unit

2007-02-16 Thread bytor99999
Thanks Max, I put a request for something like this in JIRA. :) What would be cool, is being able to keep the persistence.xml exactly the way it is with a Data Source JNDI name, but in the console you can create a DataSource and give it a name that matches the JNDI name you gave in the

[jboss-user] [JBoss Portal] - Re: Page Title

2007-02-16 Thread radzish
The following works (+ i18 support): jsp:directive.page import=org.jboss.portal.theme.page.PageResult/ | jsp:directive.page import=org.jboss.portal.theme.LayoutConstants/ | %@ taglib prefix=fmt uri=/WEB-INF/fmt.tld% | % | PageResult pageResult =

[jboss-user] [JBoss Portal] - Re: Management portlet improvements

2007-02-16 Thread [EMAIL PROTECTED]
Ok. So Ill fork the tree component and hack at it. Add 3 weeks to the task. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4017654#4017654 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4017654

[jboss-user] [JBoss jBPM] - jpdl-3.2.Beta2: how to access variable from task form in jPD

2007-02-16 Thread avbentem
For a demo I'm trying to extend the websale example with a simple condition, but am getting to feel stupid as I cannot find a way to access the value of 'quantity'... The variable has been defined in the forms, such as form.create.xhtml, just as provided in the sample code: h:inputText |

[jboss-user] [Beginners Corner] - Re: JMS on AIX 5.3 and J2EE Tutorial

2007-02-16 Thread bird8088
The following: java.lang.NoClassDefFoundError makes me thing the root cause involves the classpath / classloader. Examine you start up script, start by setting the CLASSPATH to ONLY what JBoss needs, (don't just add to what ever CLASSPATH may exist on your system) If you still have trouble

[jboss-user] [JBoss Seam] - Re: tomahawk extension filter and seam fileUpload

2007-02-16 Thread costeen21
Thanks Gavin. I've attached a minimal example project to reproduce the problem in JIRA: http://jira.jboss.org/jira/browse/JBSEAM-859 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4017665#4017665 Reply to the post :

[jboss-user] [JBoss Seam] - Using Seam components remotely...

2007-02-16 Thread bkyrlach
I was recently tasked with separating the service layer of my seam application with the presentation layer. My first thought was to use the ability of EJB's to have a remote interface, and implement my own Variable Resolver which would allow me to look up Seam components from the Java Naming

  1   2   3   >