[JBoss-user] [EJB 3.0] - Newbiy deployment trouble

2006-04-13 Thread eiswind
I switched to 4.0.4R2 yesterday. Since then My Ejbs aren't discoreverd on deployment time. I have a simple EAR with application xml | | http://java.sun.com/xml/ns/j2ee"; | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; | xsi:schemaLocation="http://java.sun.com/xml/ns/j2e

[JBoss-user] [JBoss jBPM] - Re: Process designer crashes JDT?

2006-04-13 Thread [EMAIL PROTECTED]
What versions of jBPM / GPD / JBoss IDE are you using? Did you change one of them lately? The problem is because the GPD cannot find the jBPM core libraries. Regards, Koen View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937343#3937343 Reply to the post : htt

[JBoss-user] [EJB 3.0] - Re: Performance problem with returning values from Stateless

2006-04-13 Thread mijez
I'm trying to solve this, but now I think its a problem with returning huge values. Container process takes up 100% cpu-time for 12 seconds. It seems like the container is doing some heavy calculations before control is passed back to the client - value is return. I think this may be a BUG!

[JBoss-user] [JBoss jBPM] - Re: Class Browse Button/Dialog not working

2006-04-13 Thread [EMAIL PROTECTED]
Matt, The class browse button works for me. Check out your eclipse error log for any messages. Or do a good old debugging session... Regards, Koen View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937342#3937342 Reply to the post : http://www.jboss.com/index.

[JBoss-user] [JBossCache] - Re: Error during configuration of JBoss Cache within JBoss A

2006-04-13 Thread [EMAIL PROTECTED]
You're doubt was accurate :). You need to name your config file "xyz-service.xml" where "xyz" is whatever you like. JBoss AS understands that files with names ending with -service.xml are deployment descriptors for MBean services. It doesn't know what a "configuration.xml" file is so it doesn

[JBoss-user] [EJB 3.0] - EJB 3.0 RC6 - PFD released.

2006-04-13 Thread [EMAIL PROTECTED]
A bunch went into this release. RC6 has already been shipped with JBoss 4.0.4CR2 application server. I was on vacation when this went out and just got to putting the binaries together for the standalone distribution. Things of note? * @WebService/jsr181 support. @WebServiceRef isn't supporte

[JBoss-user] [JBossCache] - Error during configuration of JBoss Cache within JBoss Appli

2006-04-13 Thread [EMAIL PROTECTED]
I'm new to JBoss Cache and I got this error when i tried to deploy jboss cache as an MBean in JBoss Application Server. I'm using JBoss 4.0.3SP1 and JBoss Cache 1.3 2006 Apr 14 12:31:09 [main] ERROR org.jboss.deployment.scanner.URLDeploymentScanner - Incomplete Deployment listing: --- Packag

[JBoss-user] [Remoting] - Re: JNDI-Detection: Running servers alternately detected and

2006-04-13 Thread [EMAIL PROTECTED]
http://jira.jboss.com/jira/browse/JBREM-414 Will look into it. Thanks for letting us know. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937334#3937334 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3937334

[JBoss-user] [Remoting] - Re: Transporters

2006-04-13 Thread [EMAIL PROTECTED]
Good question. Answer is currently only one pojo can be registered per TransportServer. Thus, would have to create a TransportServer per pojo you want to call on remotely. However, being able to register multiple pojos with the same transport server should be allowed, I have created a jira is

[JBoss-user] [Security & JAAS/JBoss] - Re: Issue of

2006-04-13 Thread [EMAIL PROTECTED]
Adrian was refactoring classes that could be reused. It used to be in the testsuite module. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937331#3937331 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3937331

[JBoss-user] [Security & JAAS/JBoss] - Re: Issue of

2006-04-13 Thread [EMAIL PROTECTED]
This still does not answer the reason why the AppCallbackHandler got moved to the "test" module. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937330#3937330 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3937330 ---

[JBoss-user] [Security & JAAS/JBoss] - Re: Issue of

2006-04-13 Thread [EMAIL PROTECTED]
http://jira.jboss.com/jira/browse/JBAS-3109 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937329#3937329 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3937329 --- T

[JBoss-user] [Security & JAAS/JBoss] - Re: Issue of

2006-04-13 Thread [EMAIL PROTECTED]
There should be a default implementation as there certainly is a coupling between the callbacks and the handler. This needs to be in the jbosssx-client.jar as well. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937328#3937328 Reply to the post : http://www

[JBoss-user] [Security & JAAS/JBoss] - Re: Issue of

2006-04-13 Thread [EMAIL PROTECTED]
That was a thought I had before I resurrected the AppCallbackHandler in the testsuite. But I wondered if the CallbackHandler should really exist in the security module? Tomorrow I will move it there. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937327#3937

[JBoss-user] [Security & JAAS/JBoss] - Re: Issue of

2006-04-13 Thread [EMAIL PROTECTED]
We really should just have an AppCallbackHandler in the security module in the org.jboss.security.auth.callback package that can handle all of the known jboss callbacks. That way the security tests would depend on this directly and the test module would not. View the original post : http://www

[JBoss-user] [Security & JAAS/JBoss] - Issue of "test" module dependence on "security" module

2006-04-13 Thread [EMAIL PROTECTED]
The SRPLoginModuleUnitTestCase uses a callbackhandler called as the "AppCallbackHandler". The SRPLoginModule constructs callback including a ByteArrayCallback that resides in the security module. But the problem in HEAD was that the AppCallbackHandler and the ByteArrayCallback reside in the tes

[JBoss-user] [Remoting] - Re: JBoss Remoting with JBossAS4.0.2.

2006-04-13 Thread [EMAIL PROTECTED]
First step would be to be to replace the jboss-remoting.jar as you mentioned. Only possible impact this might have is if are using ejb3, which uses remoting (otherwise, will have no other impact on JBossAS and even then, should be compatible with the newest remoting version). Next is which con

[JBoss-user] [JBoss jBPM] - Re: workflow with complex human interaction

2006-04-13 Thread dshen
Thanks Ronald. I will try to find some time. Hopefully, I can give you guys some help. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937321#3937321 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3937321 -

[JBoss-user] [Remoting] - Re: RMI Class Loader Error

2006-04-13 Thread [EMAIL PROTECTED]
Can you create a jira issue for this and provide a test case? Thanks. -Tom View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937320#3937320 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3937320

[JBoss-user] [Remoting] - Re: Client VM Requirements

2006-04-13 Thread [EMAIL PROTECTED]
So are not going to be able to use socket transport on your micro client as is based on the class and methods you mentioned that are not supported. I don't know J2ME very well, but if you would be willing to help with testing (and maybe a little coding here and there), I'd be willing to create a

[JBoss-user] [EJB 3.0] - Re: Accessing an EJB from a Servlet

2006-04-13 Thread asack
"jllavina" wrote : Using this code it seems that the JNDI founds the EJB3 (but crash searching a resource, but this is another story...): | | import org.jboss.annotation.ejb.LocalBinding; | | @Stateless | @Local( { EmployeeSessionLocal.class } ) | @LocalBinding( jndiBinding="Employee

[JBoss-user] [JBoss jBPM] - Re: Class Browse Button/Dialog not working

2006-04-13 Thread kukeltje
I think very few people use the CVS version of the GPD. Probably you and Koen ;-). If the button does not work, you can always use the source view, but I suspect I do not tell you anything new ;-) If/When Koen is going to have a look, he at least needs to now the eclipse version, whether there

[JBoss-user] [JBoss jBPM] - How to define a form for every task in jBPM3?

2006-04-13 Thread zhongboqing
hello,all How to define a different web form for every task in jBPM3? Anyone can give me some suggestion? Thank you all in advance. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937315#3937315 Reply to the post : http://www.jboss.com/index.ht

[JBoss-user] [JBoss Portal] - Re: to use display tag how to set portlet objects in JSP pag

2006-04-13 Thread bomma001
| Hi Scott, | | I tried below code without any luck :-) | | | <%@ taglib uri="http://java.sun.com/portlet"; prefix="portlet" %> | | | | | | Thanks | ~Bhim | | View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937312#3937312

[JBoss-user] [JBoss jBPM] - Re: Class Browse Button/Dialog not working

2006-04-13 Thread MattJackson86
Anybody getting this issue? It is kind of a big issue as I can not choose a class for the action handler.just wondering if this is an issue with me or everyone Thanks View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937311#3937311 Reply to the post :

[JBoss-user] [JBoss jBPM] - Re: jbpm workflow editor

2006-04-13 Thread kukeltje
Still then, I'd try to model a common process where these are parameters for a rules engine and not have the customer change process definitions for this. How many combinations will they get tens? hundreds? If you look for the parts they have in common you will probably be able map it to on

[JBoss-user] [JBoss jBPM] - Re: jbpm workflow editor

2006-04-13 Thread robroth
They also want to be able to completely remove or change events. Event 1 might be fax or it might be a call. There might be a total of 5 events before legal or 10 events. Other criteria are if the balance of all invoices that are over 60 days old are > $5000, then do something else. It can g

[JBoss-user] [Security & JAAS/JBoss] - Re: Client Cert EJB

2006-04-13 Thread amdonov
I found the answer in a similar thread http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3933179 Thanks. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937306#3937306 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply

[JBoss-user] [JBoss Messaging] - Re: Cannot configure JBOSS Messaging

2006-04-13 Thread [EMAIL PROTECTED]
How does your client classpath look like? Are you using the jboss-messaging-client.jar that comes with the release? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937305#3937305 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=rep

[JBoss-user] [JBoss jBPM] - Re: jbpm workflow editor

2006-04-13 Thread kukeltje
this is perfectly possible with jBPM. These are just parameters that influence flow of the designed workflow, not about redesigning the workflow itself. A combination/demo of something like this with using jBPM with either a database or even JBoss Rules (Drools) would be interesting. The data

[JBoss-user] [Persistence,JBoss/CMP, Hibernate, Database] - Can the Hypersonic Database Manager pop up in other hosts?

2006-04-13 Thread steveli100
I found when I access the JBoss jmx-console from a machine other than the one which runs JBoss, if I start the Hypersonic Database Manager, it will be displayed in the JBoss machine, not the one I'm working on. Is there any way for me to change this behavior? View the original post : http://

[JBoss-user] [JBoss jBPM] - Process designer crashes JDT?

2006-04-13 Thread joelkoz
I've been playing around with jBPM and the workflow designer. It was working great for a few days, but suddenly, the following keeps popping up in my Eclipse error log: | java.lang.NullPointerException | at org.jbpm.ui.util.JbpmClasspathContainer.getJarNames(Unknown Source) | at

[JBoss-user] [JBoss Messaging] - Re: Cannot configure JBOSS Messaging

2006-04-13 Thread anshah1
Hmm. So that problem is now fixed. I can see messages while my server is running that tell me that the deployment worked just fine. however here's an exception I get when I try to send a message to my queue. Firstly, I can see the following | 16:42:41,723 INFO [Queue] Queue[/queue/NCBIQueue]

[JBoss-user] [JBoss jBPM] - Re: jbpm workflow editor

2006-04-13 Thread robroth
basically they want to be able to define the rules of the workflow, here's an example: right now one workflow would look like: account has a type of X, so use strategy Y strategy Y is defined as if account has any unpaid invoice > 30 days, fax the account. if that account isnt paid by 45 days,

[JBoss-user] [JBoss jBPM] - Re: workflow with complex human interaction

2006-04-13 Thread kukeltje
1: that's what 3.2 is going to, you can define your own input types for variables. 3.1 just renders everything as a textinput 2: Look at the Jira, there is an issue for it, so it is on the list. Care to help out? 3: That is the real challenge, and the one where (afaik) all bpm vendors fail to a

[JBoss-user] [JBoss jBPM] - Re: jbpm workflow editor

2006-04-13 Thread kukeltje
'everything?' including the bpm engine? Or just the editor? I hope the latest. Do you or the customer have any experience with workflow on this level? Our experience is that it should not be left up to the business to directly influence things, unless your editor is real dummy/monkey (read busi

[JBoss-user] [EJB 3.0] - Re: Hibernate dialect via DS

2006-04-13 Thread epbernard
Like I said it actually is implemented already for most databases. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937294#3937294 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3937294 --

[JBoss-user] [JBoss Portal] - Re: to use display tag how to set portlet objects in JSP pag

2006-04-13 Thread bomma001
| Hi Scott, | | I think the defineObjects helps to access the portlet objects directly in a JSP page. | | But coming to display tag, the tag handler file expecting the PortletRequest and RenderResponse objects in JSP PageContext. It uses a methods like | | portletRequest = (

[JBoss-user] [JBoss jBPM] - Re: workflow with complex human interaction

2006-04-13 Thread dshen
Thanks guys. The wiki page is very helpful. It should be included inside the user guide. The JFS based default web interface is very impressive, perform well and very neat. However, feature wise, it is not much different then the workflow engine I used three years ago - oakgrove. The idea is

[JBoss-user] [Management, JMX/JBoss] - Re: LoggingMonitor mbean dependencies

2006-04-13 Thread mtihepner
Adding my LoggingMonitor MBean descriptor into a deploy.last directory delayed the warning on "jboss.web:type=ThreadPool,name=jk-8009" but it didn't prevent them. I was having the same issue other mbeans and this did resolve those problems. If this is problem resolved in later version of jbo

[JBoss-user] [JBoss Messaging] - Re: problem consuming messages

2006-04-13 Thread [EMAIL PROTECTED]
Yes, we need a release tomorrow. http://jira.jboss.org/jira/browse/JBMESSAGING-347 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937282#3937282 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3937282 -

[JBoss-user] [JBoss Messaging] - Re: problem consuming messages

2006-04-13 Thread [EMAIL PROTECTED]
I was going straight to a final before JBoss 4.0.4 GA. But if you need a release now, that's right, is going to be CR6. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937281#3937281 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mod

[JBoss-user] [Management, JMX/JBoss] - Re: LoggingMonitor mbean dependencies

2006-04-13 Thread jiwils
I should have added that this issue is solved by the JBoss Barrier Controller service in JBoss 3.2.8+/4.0.2+, which was written to solve problems just like this. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937280#3937280 Reply to the post : http://www.jb

[JBoss-user] [JBoss Messaging] - Re: problem consuming messages

2006-04-13 Thread [EMAIL PROTECTED]
OK, so it will be 1.0.0.CR6, right? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937279#3937279 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3937279 --- This SF.N

[JBoss-user] [JBoss Messaging] - Re: problem consuming messages

2006-04-13 Thread [EMAIL PROTECTED]
BTW JBSER-59 and JBSER-44 were one of the blockers I had to a release. JBSER is almost final. I need to run some tests but I'm almost there. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937278#3937278 Reply to the post : http://www.jboss.com/index.html?mod

[JBoss-user] [Management, JMX/JBoss] - Re: LoggingMonitor mbean dependencies

2006-04-13 Thread jiwils
"mtihepner" wrote : Is there a way I can set the LoggingMonitor to load last? In your server configuration's deploy directory, add a deploy.last directory and place your LoggingMonitor MBean descriptor in that directory. Then, it will get deployed last, but since the MBean you are monitoring dea

[JBoss-user] [JBoss Messaging] - Re: problem consuming messages (Repost)

2006-04-13 Thread [EMAIL PROTECTED]
This JIRA is fixed on JBSER/CVS-Head. http://repository.jboss.com/jboss/serialization/1.0.0.CR5/ is the latest release I have, but this is not on a release yet. eh eh... I eddited this post. I had the wrong version here before. View the original post : http://www.jboss.com/index.html?module=b

[JBoss-user] [JBoss Messaging] - Re: problem consuming messages

2006-04-13 Thread [EMAIL PROTECTED]
This JIRA is fixed on JBSER/CVS-Head. http://repository.jboss.com/jboss/serialization/1.0.0.RC2/ is the latest release I have, but this is not on a release yet. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937276#3937276 Reply to the post : http://www.jbo

[JBoss-user] [Management, JMX/JBoss] - LoggingMonitor mbean dependencies

2006-04-13 Thread mtihepner
I'm running JBOSS 3.2.7 and I've added the LoggingMonitor jar. I'm currently getting this error message during bootup: 2006-04-13 20:27:28,275 WARN [org.jboss.services.loggingmonitor.LoggingMonitor] Unable to log attributes for mbean: jboss.web:type=ThreadPool,name=jk-8009 javax.management.Ins

[JBoss-user] [JBoss Messaging] - Re: problem consuming messages

2006-04-13 Thread [EMAIL PROTECTED]
What is the serialization release number? I also want to create a messaging JIRA task. I'll also add a test case for it. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937272#3937272 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mo

[JBoss-user] [JBoss Messaging] - Re: problem consuming messages

2006-04-13 Thread [EMAIL PROTECTED]
JBSER-59 used to be called "JBOSS Serialization does not properly serialize the Joda DateTime " And I've then renamed it to "ReadResolve and WriteReplace resolution should be done on the whole hierarchy" Which is the really problem that's happening here. View the original post : http://www.j

[JBoss-user] [JBoss Messaging] - Re: problem consuming messages

2006-04-13 Thread [EMAIL PROTECTED]
http://jira.jboss.org/jira/browse/JBSER-59 This was fixed yesterday by coincidence. You will need JBossSerialization from CVS. Or I can cut a release tomorrow with this fix if CVS is not an option for you. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=393727

[JBoss-user] [EJB 3.0] - Optimizing Embedded EJB deployment

2006-04-13 Thread MrHighTech
Hello all :) As now my /local lookups are working, I am trying to speed up deployment for my beans. I currently use the simplest method: EJB3StandaloneBootstrap.boot(null); | EJB3StandaloneBootstrap.scanClasspath(); But since I have many EJBs, libraries etc. I find it very ineffic

[JBoss-user] [JBoss jBPM] - Re: jbpm workflow editor

2006-04-13 Thread robroth
kbarfield, i already asked such questions, but they WANT a workflow editor/generator and our CEO says saying 'NO' isn't an option and also says if jBPM wont allow for it, then write everything from scratch. they want to be able to tweak and play with workflows themselves without having to be d

[JBoss-user] [JBoss jBPM] - Child tokens do not end at Join ??

2006-04-13 Thread michaelholtzman
I have a workflow that forks into two branches and are later joined. | | http://jbpm.org/3/jpdl"; | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; | xsi:schemaLocation="http://jbpm.org/3/jpdl http://jbpm.org/xsd/jpdl-3.1.xsd"; name="TestFork"> | | | | | Proceed|B

[JBoss-user] [JBoss jBPM] - Re: jbpm workflow editor

2006-04-13 Thread kbarfield
The questions I would ask the customer are: 1. What do you need to change about the workflow? Is this really a whole new workflow, or the same workflow with just some different business parameters? 2. How often do you really expect you will need to create a whole new workflow? If it is not v

[JBoss-user] [JBoss Seam] - Seam tags

2006-04-13 Thread armita
Where can I find help about the seam taglibs please? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937261#3937261 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3937261

[JBoss-user] [EJB 3.0] - EJB 3.0 RC6

2006-04-13 Thread wconroy
Is there any word on when this will be released for use as embedded EJB? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937259#3937259 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3937259

[JBoss-user] [JBoss jBPM] - Re: Required indexes missing in JBPM DB script. (Take 2 - De

2006-04-13 Thread julian_k
So any suggestions on how to detect what is causing as the SQL error ("deadlock detected.") and line number in the Java code doesn't provide me details with what needs to be done to resolve the issue. Should I do a flush of the DB changes somewhere? Or is this really a jBPM issue, but ppl are

[JBoss-user] [JBoss jBPM] - Re: jbpm workflow editor

2006-04-13 Thread robroth
Alex, could you please clarify what you mean by launching Eclipse? I'm only familiar with using it on a local machine. Are you suggesting integrating it with a Swing plugin? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937255#3937255 Reply to the post

[JBoss-user] [EJB 3.0] - Re: Problem with Embeddable EJB3

2006-04-13 Thread MrHighTech
Good! Indeed, using a new InitialContext() solves the problem. This is apparently not the case in JBoss versus the embedded version. How is it different? Thanks Bill. Daniel View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937254#3937254 Reply to the post

[JBoss-user] [EJB 3.0] - Re: Performance problem with returning values from Stateless

2006-04-13 Thread mijez
I'll try explain my problem. Sorry about my english:) Here is method from my Stateless Session Bean: ... public Calculation getCalculationWithMappings(Long idCalculation) { log.info("getCalculations START "); Calculation calc = (Calculation) em .createQuery( "from Calculation ca

[JBoss-user] [JBoss jBPM] - Re: jbpm workflow editor

2006-04-13 Thread [EMAIL PROTECTED]
How about launching Eclipse from your application? I heard there is a way to conceal the fact you are running Eclipse, but I'm not familiar with plug-in development at all. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937252#3937252 Reply to the post : ht

[JBoss-user] [JBoss Messaging] - Re: problem consuming messages

2006-04-13 Thread [EMAIL PROTECTED]
My intuition is that this is one of those Serialization edge cases that Clebert was talking about, but I have to check to be sure. Mark, thanks for report. We'll get to the bottom of it. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937250#3937250 Reply to

[JBoss-user] [JBoss jBPM] - Re: compensating methods for long runnig executions

2006-04-13 Thread [EMAIL PROTECTED]
See the topic implementing undo in the design forum. BTW, you live in a wonderful city! Hope I get to see it some day. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937248#3937248 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode

[JBoss-user] [JBoss Messaging] - Re: problem consuming messages

2006-04-13 Thread mwaschkowski
OK, finally got to the bottom of it, the short answer is there is a serialization problem with JodaTime. I can post Joda DataTime Object message (with the DateTime being the object of the ObjectMessage) to the queue, but get a serialization error upon reading of said message! Here is the stand

[JBoss-user] [JBoss jBPM] - Re: workflow with complex human interaction

2006-04-13 Thread [EMAIL PROTECTED]
Dshen, You might want to take a look to the great Getting Started guide written by Kevin Barfield to grasp the kind of stuff jBPM can do out of the box. In case you find the jBPM web app unable to render your complex forms, you can browse the JSF pages and backing beans source to see how it us

[JBoss-user] [EJB 3.0] - Re: Fetching...Lazy but initialized?

2006-04-13 Thread tsar_bomba
So, it's been a couple of days and noone has answered me yet. Is "pre-loading" a lazily-fetched collection not essentially the same as just using eager fetching? Thanks! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937243#3937243 Reply to the post : http

[JBoss-user] [JBoss jBPM] - Re: workflow with complex human interaction

2006-04-13 Thread kukeltje
I will not go into the 'questionable' thing for several reasons, but the issue of using a different MVC framework is already sloved. Everybody can use it's own framework of choice. The jBPM api is straight forward. Besides that the webforms will be generic, but can easily be customized to a g

[JBoss-user] [Installation, Configuration & Deployment] - Tomcat Native Library APR

2006-04-13 Thread beerp
Im trying to configure an instance of jboss 4.01 SP3 w/tomcat to use the native libraries that run on top of the Apache Runtime Environment. I have done this successfully in tomcat 5.5.16 but Jboss can't seem to find the class : org.apache.coyote.http11.Http11Protocol . Are there JBoss binaries

[JBoss-user] [JBoss jBPM] - Re: workflow with complex human interaction

2006-04-13 Thread dshen
Thanks. Guess I have to stay tuned. Wish you guys can make the webform/human interaction stuff generic enough. The decision using JFS is questionable. JFS mantained too much state information on the server side (or client through hidden field). It is good for certain kind of rich UI. Ideally, u

[JBoss-user] [JBoss Seam] - access to externalContext in WebApplicationContext?

2006-04-13 Thread abunginabru
Hi All, This is a bit of a long question, but it's solution might prove interesting, so please bear with me.. I'm trying to work up a new solution to an old problem - how to transfer data from the web application configuration (web.xml) into the ejb container. T

[JBoss-user] [JBoss jBPM] - Re: jbpm workflow editor

2006-04-13 Thread robroth
Thanks, but we already use that. Not what we're looking for. We need to build a GUI into our application that allows the customer to build the workflows within the application itself. They would basically build a workflow rule within the running JBoss application, then apply that rule to acco

[JBoss-user] [JBoss jBPM] - Re: Task as struts action?

2006-04-13 Thread kukeltje
great, so jBPM is a fit for you? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937234#3937234 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3937234 --- This SF.Net

[JBoss-user] [JBoss jBPM] - Re: workflow with complex human interaction

2006-04-13 Thread kukeltje
The reason I mentioned the source and not the tutorial, is that you wanted complex configurable forms. You have to either build those yourself, including the usage of the jBPM api, or wait for jBPM 3.2. That one is currently under development so only available in CVS. Out of the box support vi

[JBoss-user] [JBossWS] - Re: java.lang.ClassCastException: org.jboss.axis.Message

2006-04-13 Thread jordan.rivington
Could you please explain the work around in a little more detail. Where should this method override go as far as code location? Must I rebuild the library file for axis from source? I dont think so, but I am a little confused. If I put this in my client code, there are access issues with _setPro

[JBoss-user] [JBoss Messaging] - Re: problem consuming messages

2006-04-13 Thread [EMAIL PROTECTED]
"mwaschkowski" wrote : | However, there is one thing that is reproducable. When I run my test cases and kill the JUnit process part way through (as I do fairly frequently for certain tests), I see the following in the console: | | | | | | 10:35:15,832 INFO [Server] JBoss (MX Mi

[JBoss-user] [EJB 3.0] - Re: Dependecy Injection in JMX Service Object

2006-04-13 Thread echon
the JMX Component has the standard lifecycle methods: create(), start(),stop(), destroy() My code looks like this: | @Service(objectName = "portal:service=SystemPropertyService") | @Management(SystemPropertyManagement.class) | @Local(SystemPropertyLocal.class) | @LocalBinding(jndiBindin

[JBoss-user] [JBoss Messaging] - Re: warning on startup with messaging

2006-04-13 Thread mwaschkowski
OK, sound good, thanks. I was worried that this might be something that was related to the other problem that I am having (another post with some details shortly). Mark View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937227#3937227 Reply to the post : http:

[JBoss-user] [JBoss Messaging] - Re: warning on startup with messaging

2006-04-13 Thread [EMAIL PROTECTED]
Tim, I think we should have our own explanation page for this on our user wiki http://www.jboss.com/wiki/Wiki.jsp?page=JBossMessaging, since I expect this will be a question that will be asked a lot. Do you want to start it? View the original post : http://www.jboss.com/index.html?module=bb&o

[JBoss-user] [Security & JAAS/JBoss] - Re: Client Cert EJB

2006-04-13 Thread amdonov
I finally got approval from the client. I checked out the PooledInvoker, and I think I will try that approach. Other than providing custom socket factories, do I need to do anything special for a server side login module to access the client cert as a credential? What kind of configuration woul

[JBoss-user] [Tomcat, HTTPD, Servlets & JSP] - Re: myCGI.exe in browser address

2006-04-13 Thread Bruce R. Barkstrom
The fix that uses CATALINA_HOME/server/lib/servlets-cgi.renametojar doesn't appear to exist in the jboss-4.0.2 download for Windows. Using the Windows directory search for cgi - either on file contents or on file names does not bring up any hits except from the lines in the web.xml file that conta

[JBoss-user] [JBoss jBPM] - Re: Task as struts action?

2006-04-13 Thread dshen
The idea is kind of what I am looking for - be able to associate web form with a task within the workflow. When workflow comes to that task, a web form is shown. When the webform is submitted, action is performed and then decision is made to move on to the next step within the workflow. >From

[JBoss-user] [JBoss jBPM] - Re: jbpm workflow editor

2006-04-13 Thread hosierdm
There is an Eclipse plugin that allows you to build workflows. http://sourceforge.net/project/showfiles.php?group_id=70542&package_id=116692&release_id=390336 And some documentation: http://docs.jboss.com/jbpm/v3/gpd/ View the original post : http://www.jboss.com/index.html?module=bb&op=viewto

[JBoss-user] [JBoss jBPM] - Re: workflow with complex human interaction

2006-04-13 Thread dshen
Thank you for your answer. Not sure whether or not I understand what you mean. Do you mean I have to download the source code and poke around? For my understanding, a workflow engine with complex human interaction ability should be able to support kind of a human interaction/web form type of A

[JBoss-user] [JBoss Messaging] - Re: warning on startup with messaging

2006-04-13 Thread timfox
This is because you are (probably) using HSQL. HSQL does not support transaction isolation, so we give you a warning. For any production system you must use a more production grade database, e.g. mysql, oracle, postgres, db2, sybase etc. See http://wiki.jboss.org/wiki/Wiki.jsp?page=ConfigJBossM

[JBoss-user] [EJB 3.0] - Re: Slow performance releasing stateless session bean!

2006-04-13 Thread [EMAIL PROTECTED]
ARe you sure this is a Stateless Session Bean problem and not a Hibernate/EM problem? to me this: CompanyPO company = dao.FindCompanyByCvrNo(companyTO.getCvrNo()); Collection branches = company.getBranches(); looks different than this: CompanyPO company = em.find(CompanyPO

[JBoss-user] [JBoss Messaging] - warning on startup with messaging

2006-04-13 Thread mwaschkowski
Hi, With the messaging deployment I get the following warning on the console, how can I fix this? I don't get this with any other deployments... Thanks, Mark 13:29:29,419 INFO [ConnectionFactoryBindingService] Bound ConnectionManager 'jb oss.jca:name=DefaultDS,service=DataSourceBinding' to JN

[JBoss-user] [JBoss jBPM] - jbpm workflow editor

2006-04-13 Thread robroth
We're using jBPM in our application to manage customer workflow, however a requirement has come down and we're trying to figure out how to implement this. The customer wants us to develop a GUI that allows them to define their own workflow. That task just seems overwhelming and I'm wondering i

[JBoss-user] [EJB 3.0] - Re: Dependecy Injection in JMX Service Object

2006-04-13 Thread [EMAIL PROTECTED]
you mean, why is it null before start()? Like in the constructor? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937210#3937210 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3937210 --

[JBoss-user] [JCA/JBoss] - Re: Problem with element

2006-04-13 Thread [EMAIL PROTECTED]
Remove the element. You can use: Note, you don't have to use both. One or the other can be specified. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937209#3937209 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=

[JBoss-user] [EJB 3.0] - persistence.xml

2006-04-13 Thread eiswind
can anyone tell me where to find teh new spec for the persistence.xml ? i need to have entities residing in a different jar and 4.0.3SP2 didnt care about that (at least for me) I jope 4.0.4RC2 does ! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937207#39372

[JBoss-user] [JBossWS] - Re: org.xml.sax.SAXException: Invalid element error at the s

2006-04-13 Thread jbush
ramachennupati, I'm having some trouble seeing the differences between your files. It would be helpful if you could email me your WSDL as well as the one one you posted before that didn't work. I could do some type of diff on the files and try to find my errors. Could you email them to [EMA

[JBoss-user] [JBoss Seam] - scripting disabled / register-link in booking-example doesn'

2006-04-13 Thread javaos
if I disable skripting in my browser, the booking - example doesn't work. If I click the "register"-link, I'm not routed to the register page. If I replace the hyperlink with a command-button, it works. If I aktivate skripting in the browsers options, the booking-example works. My problem is - t

[JBoss-user] [JBoss Portal] - Re: Problems with building CVS main -

2006-04-13 Thread [EMAIL PROTECTED]
there is a problem with your cvs checkout module - you shouldn't use jboss-portal, the latest HEAD code is in jboss-portal-2.4. I am not sure why you are using this target, but it works for me this way: cvs co jboss-portal-2.4 cd jboss-portal-2.4/build ant deploy rali View the original post :

[JBoss-user] [EJB 3.0] - Re: problem with ejb3 on jboss4.0.3SP1

2006-04-13 Thread terryhello
I think you are missing jars on the client side. Have another try after you add all jars in client folder to the classpath View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937200#3937200 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting

[JBoss-user] [JBoss Seam] - Re: @Conversational with s:link

2006-04-13 Thread mirko27
Havin' the same issue. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937198#3937198 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3937198 --- This SF.Net email is s

[JBoss-user] [EJB 3.0] - Entity Bean Foreign Key Problem, Need to Specify PK length?

2006-04-13 Thread tvanbuskirk
Hi All, I'm working with entity beans, and I've run into a problem with accessing foreign keys that I cannot figure out for the life of me. The error I'm getting is: 08:35:36,962 ERROR [SchemaUpdate] Unsuccessful: create table cats_dogs (cats tinyblob not null, dogs tinyblob not null, primary

[JBoss-user] [JBoss jBPM] - Re: jBPM perfomance testing

2006-04-13 Thread kukeltje
PLEASE keep in mind that the webapp is NOT jBPM. It is a front-end for jBPM. It is not optimized to be used in high volume, high performance environments, rather for RAD purposes. So if you realy want to do a stresstest (loadtest?) of jBPM you should access jBPM on a lower level. This does not

[JBoss-user] [JBossWS] - Re: org.xml.sax.SAXException: Invalid element error at the s

2006-04-13 Thread jbush
I saw that you were referencing the complex types by and changed that to the I actually have that in my WSDLs. Could someone take a look at these WSDLs and tell me if anything is different from the top ones. This is top level WSDL NotificationConsumer.wsdl | | http://abc.com/my/wsd

  1   2   >