[JBoss-user] [JBoss Seam] - Re: Method not found: isJndiName

2006-04-14 Thread [EMAIL PROTECTED]
as noted in other threads with the same error: the seam code generation does not support composite-id's (yet) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937502#3937502 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3

[JBoss-user] [JBoss Seam] - Return From Nested Conversation and Last Element of @DataMod

2006-04-14 Thread amin59
Hi, When I return from a nested conversation (via its @End method) to the higher level and inside the nested conversation I've added a new element to the @DataModel of the parent conversation (e.g. A subconversation that adds elements to the list), and when this newly added element is the LAST

[JBoss-user] [JBoss Seam] - Latest update of Seam from CVS blew away many library jars

2006-04-14 Thread asampaleanu
A lot of the jars from the main lib directory as well as some from the embedded-ejb example got removed. The Ant build works without these jars since the dependencies are resolved based on the JBoss AS home, I presume, but the Eclipse project is broken as is. I guess this was an oversight. Coul

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

2006-04-14 Thread [EMAIL PROTECTED]
If you're still seeing this problem, please submit your test app to JIRA. TIA. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937499#3937499 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3937499 --

[JBoss-user] [JBossWS] - Re: wstools

2006-04-14 Thread youzi
Hi, I knew the jbossws-1.0.0.CR6 is not yet ready. My current downloaded version is JBOSS 4.0.4CR2. I am thinking to use the new JBOSSWS instead of WS4EE, but I have a very tight schedule to complete the task. Since JBOSS4.0.4CR2 is not including the WSTOOLS and the JBOSSWS user guide is als

[JBoss-user] [EJB 3.0] - Re: @Local and @Remote version of the same interface?

2006-04-14 Thread elkner
"lhoriman" wrote : Why would you ever want a bean with identical Local and Remote interfaces?Because I wanna make sure, that at the server the method params are passed as reference and thus avoid the serialization overhead ... ? View the original post : http://www.jboss.com/index.html?module=bb

[JBoss-user] [The Lizzard's corner] - Re: BusinessWeek - Oracle buying JBoss

2006-04-14 Thread MicaCooper
Dave, I would be concerned with any purchase including Redhat. Oracle has a somewhat less than stellar performance record with J2EE engines. Their purchase would be to control the technology. BEA and IBM would have been better off to have bought and buried JBoss a long time ago. JBoss while p

[JBoss-user] [JBoss jBPM] - Re: forms in jbpm

2006-04-14 Thread kbarfield
Please take a look at the getting started wiki: http://wiki.jboss.org/wiki/Wiki.jsp?page=JbpmGettingStarted You are listing out the variable names in the process definition, and they are stored in the jBPM database when the process is deployed. The web app reads in what the variable names ar

[JBoss-user] [JBoss jBPM] - Re: utility of jbpm in a huge j2ee application

2006-04-14 Thread kbarfield
Yes, that is exactly how jBPM works. The jBPM engine manages the process state, and will call to your J2EE application logic through actions that you setup. Kevin View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937493#3937493 Reply to the post : http://www

[JBoss-user] [JBoss Seam] - Bug in seam interceptors - method with variable parameters

2006-04-14 Thread Andy.2003
Hello, I got an method like this: public static void addInfoMessage(String pMsgId, Object... pParams) { | FacesContext.getCurrentInstance().addMessage(null, getMessage(pMsgId, FacesMessage.SEVERITY_INFO, pParams)); | } when I call the method without addidional parame

[JBoss-user] [Performance Tuning] - how to dynamical tune parameters

2006-04-14 Thread w114hua
In JBoss ,there are many parameters about performance.In order to improve performance of jboss application server. some parameters could be dynamically tuned without shutting down JBoss Application Server .who could tell me a list of detailed parameters for on-line performance tuning ? whether

[JBoss-user] [Management, JMX/JBoss] - how to dynamical tune parameters through jmx-console

2006-04-14 Thread w114hua
In JBoss ,there are many parameters about performance.In order to improve performance of jboss application server.,some parameters could be dynamically tuned without shutting down JBoss Application Server .who could tell me a list of detailed parameters for on-line performance tuning ? whether

[JBoss-user] [JBoss jBPM] - forms in jbpm

2006-04-14 Thread achilloman_jbpm
hi, my question is: based on the sample process "websale", how does it generate automatic forms related to each process View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937485#3937485 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mod

[JBoss-user] [JBoss Portal] - Re: Change a user role dynamically

2006-04-14 Thread cpage
Subject comes from the javax.security package and SimpleGroup from org.jboss.security package when you retrieve the Subject, you can manipulate as you want, if it's not read only. in the portlet, it's not. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=39374

[JBoss-user] [Installation, Configuration & Deployment] - How to write files into the root context

2006-04-14 Thread tophermiller
My root web application context is deployed outside of a war file. I want my web application to be able to write new files into this directory tree. So, I need to obtain a java.io.File object that points to the root of my web application. However, this path varies from server to server. Is t

[JBoss-user] [JBoss Seam] - Re: Method not found: isJndiName

2006-04-14 Thread max522over
which version of Jboss server are you using. I believe you need to be on the rc release. Seam has not bee updated to work on the latest version of jboss. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937481#3937481 Reply to the post : http://www.jboss.com/i

[JBoss-user] [EJB 3.0] - @Local and @Remote version of the same interface?

2006-04-14 Thread lhoriman
The calculator example in the tutorial looks like this: | public interface Calculator | { | ... | } | | @Local public interface CalculatorLocal extends Calculator {} | | @Remote public interface CalculatorRemote extends Calculator {} | | @Stateless public class Calculat

[JBoss-user] [JBoss/Spring Integration] - JBoss Hibernate+Spring Application Deployment (JNDI Problem)

2006-04-14 Thread Warlock
Hi to all, I'm not able to deploy my Application in JBoss. I use the JMX (Hibernate MBean) and Spring. I created a folder called pronego.ear containing the META-INF and pronego.war folders. Inside the META-INF exists the file jboss-service.xml which creates the MBean: | | |

[JBoss-user] [JBoss Seam] - Re: Method not found: isJndiName

2006-04-14 Thread bujordan
Ok, maybe I'm just not getting something here- I'm trying to do a simple reverse engineer/code generate as shown in the flash demo like others on this post. I originally got the Method not found: isJndiName error, so I tried updating to the nightly builds as suggested. Now, I get the following e

[JBoss-user] [JBoss Messaging] - 1.0.1 next week

2006-04-14 Thread [EMAIL PROTECTED]
The 1.0.1 release (http://jira.jboss.org/jira/secure/IssueNavigator.jspa?reset=true&pid=12310061&fixfor=12310707) we were planning for today, Fri Apr 14, will be pushed for Monday or Tuesday next week, due to this dependency: http://jira.jboss.org/jira/browse/JBMESSAGING-347. View the original

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

2006-04-14 Thread bomma001
Thanks Scott. Yes, You are right. JBoss was providing those portal objects. I actually observed issues with display tag attributes for URLs. I modified them for portal environment and it works. Now I'm feeling better in Portal area. ~Bhim View the original post : http://www.jboss.com/index.h

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

2006-04-14 Thread timfox
Can you explain exactly what installation procedure you have followed and which jars/sars you have placed where. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937470#3937470 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply

[JBoss-user] [JBoss jBPM] - Re: process persistence problem with JBPM/Seam

2006-04-14 Thread sbhatti
I am having same problem, how exactly did you fix it. It looks like Hibernate can't persist org.jbpm.context.exe.VariableInstance. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937468#3937468 Reply to the post : http://www.jboss.com/index.html?module=bb&op=

[JBoss-user] [Javassist user questions] - easy way to parse out opcode operands?

2006-04-14 Thread matty1
Total javassist/bytecode newbie here. I'm writing a program to list bytecode instructions from a classfile, akin to what "javap -c -p CLASSFILE" gives you. Somthing like: 0: aload_0 1: invokespecial #15; //Method java/lang/O 4: aload_0 5: ldc2_w #16; //double 99.0d 8: putfiel

[JBoss-user] [JBoss Seam] - Re: URL Friendly Links

2006-04-14 Thread [EMAIL PROTECTED]
Add a feature request to JIRA, with a bit more details about how I should go about implementing this. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937462#3937462 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3937462

[JBoss-user] [JBoss Seam] - Re: @In, @Out and @Factory. It's me or...

2006-04-14 Thread [EMAIL PROTECTED]
Have you managed to solve this problem yet? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937461#3937461 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3937461 --- T

[JBoss-user] [JBoss Seam] - Re: Exception in Phaselistener ?

2006-04-14 Thread [EMAIL PROTECTED]
Louis, are you still experiencing this problem? If so, please submit a test case to JIRA, TIA. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937460#3937460 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3937460 -

[JBoss-user] [JBoss Seam] - Re: would you change examples libs layout

2006-04-14 Thread [EMAIL PROTECTED]
1) thanks, fixed 2) um, this does not feel like a high priority for me right now View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937459#3937459 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3937459 ---

[JBoss-user] [JBoss Seam] - Re: 'Error during remote request' since 1.52 Seam revision

2006-04-14 Thread [EMAIL PROTECTED]
Just fixed in CVS. Sorry, I missed one ;-) (You should have reported this in JIRA, btw.) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937457#3937457 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3937457 ---

[JBoss-user] [JBoss Seam] - Re: Seam outjection problem, is this a bug?

2006-04-14 Thread [EMAIL PROTECTED]
You have to actually *call* the component for @DataModelSelection and @Out to have any effect. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937456#3937456 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3937456 -

[JBoss-user] [JBoss Seam] - Re: localization of validation error messages

2006-04-14 Thread [EMAIL PROTECTED]
You can specify messages in WEB-INF/classes/messages_xx_XX.properties and use FacesMessages.addFromResourceBundle(). View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937455#3937455 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=r

[JBoss-user] [JBoss Seam] - Re: Simple Seam Question...

2006-04-14 Thread [EMAIL PROTECTED]
The selection will only be initialized if you call the component during the request that originates from the list page. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937454#3937454 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mod

[JBoss-user] [JBoss Seam] - Re: Seam tags

2006-04-14 Thread [EMAIL PROTECTED]
There are some examples in CVS. I have not yet written documentation. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937453#3937453 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3937453 ---

[JBoss-user] [EJB 3.0] - Entity bean security

2006-04-14 Thread vijaygrk
How do i enforce application security on the entity beans? For e.g How do i prevent an entity from loading if the user doing the lookup is not authorized to view the enity? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937452#3937452 Reply to the post : ht

[JBoss-user] [JBoss Seam] - Re: scripting disabled / register-link in booking-example do

2006-04-14 Thread [EMAIL PROTECTED]
JSf relies upon JavaScript. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937451#3937451 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3937451 --- This SF.Net email

[JBoss-user] [JBoss Seam] - Re: rowCount

2006-04-14 Thread [EMAIL PROTECTED]
rowCount is a property of DataModel. If you have an ordinary collection, it is not the correct way. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937450#3937450 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3937450

[JBoss-user] [JBoss Seam] - Re: Could not instantiate Seam component

2006-04-14 Thread [EMAIL PROTECTED]
anonymous wrote : When I switch back to the original database, it all works. What do you mean by this? You mean you have it working against HSQLDB? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937449#3937449 Reply to the post : http://www.jboss.com/index.h

[JBoss-user] [JBoss Seam] - Re: jBPM demarcation question

2006-04-14 Thread [EMAIL PROTECTED]
anonymous wrote : So he clicks on his bookmarked URL which brings up the tasklist. There he sees the task in his list and clicks on the "details" button which then would execute the @StartTask interceptor while the long running conversation is still active. Clicking on a URL causes a GET reque

[JBoss-user] [JBoss Seam] - localization of validation error messages

2006-04-14 Thread javaos
I'm playing with the booking example. The name of the user is forced to be between 5 and 15 characters. This constraint is annotated at the getter for the name field. If validation of the name fails, I get a localized error message (in this case in German). Where can I change this message or inf

[JBoss-user] [Beginners Corner] - JBossm mod_proxy and AJAX call

2006-04-14 Thread redo
I have JBoss as application server and Apache as webserver (serves php pages, etc). To transfer requests to my Java web application, mod_proxy is used. Everything is fine, except AJAX calls submitted in UTF-8 encoding (I am using Prototype JavaScipt framework). I tried everything - changed 'con

[JBoss-user] [Tomcat, HTTPD, Servlets & JSP] - log4j & servlet filters

2006-04-14 Thread krustyfur
I have followed the wiki regarding Repository Selectors for initialising log4j, and have got it working for my web apps. I am using struts 1.2 and in the struts actions, I can use log4j and have it log properly. I also have a log statement inside the InitServlet where log4j is initialised and i

[JBoss-user] [JBoss jBPM] - Re: EJB examples with jBPM?

2006-04-14 Thread Shi Yusen
I have implemented the expression parser for my current project. Surprisingly, it's quite easy. I'd like to take this part for jbpm at my spare time if you can add me to the project. My sourceforge id is shiys. Regards, Shi Yusen/Beijing Langhua Ltd. View the original post : http://www.jboss.

[JBoss-user] [Installation, Configuration & Deployment] - Re: JBoss 4.0.3SP1 not honoring Extension-List versioning?

2006-04-14 Thread asack
I would lke to add two more things that are confusing: 1) I don't have my.lib in ext/lib of my current JRE. I'm deploying it as a standalone jar file in $JBOSS_HOME/server/default/deploy. 2) I wasn't sure if the Extension-List attribute only causes the ClassLoaders to look in ext/lib or any

[JBoss-user] [EJB/JBoss] - error in deploying ejb

2006-04-14 Thread miltgrin
I'm having a problem deploying an EJB in Jboss. This application/ejb works in Weblogic and I have modified it for JBoss When I start up Jboss with the application deployed. I get the following error. 08:55:33,706 INFO [EARDeployer] Init J2EE application: file:/C:/jboss-4.0.3SP1/server/default/

[JBoss-user] [Installation, Configuration & Deployment] - JBoss 4.0.3SP1 not honoring Extension-List versioning?

2006-04-14 Thread asack
I have two EARs that were built against a common JAR library that defines the following MANIFEST in my-lib.jar: Extension-Name: my-lib Implementation-Version: 1.0 I then have my.ear with a EJB3 my.jar in it that has the following MANIFEST.MF: Extension-List: my-lib my-lib-Extension-Name: my-

[JBoss-user] [EJB 3.0] - discriminator not set when persist a new class

2006-04-14 Thread rnicob
Hi, I have two classes, AA which inherits from A. I use two tables and a discriminator. The discriminator is null in the table when the class is persisted. Here is my code deployed on AS 4.0.4CR2 *** Class A *** @Entity | @Table(name = "A") | @Inheritance(strategy = Inherit

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

2006-04-14 Thread anshah1
Well if I remove that jar file then I run into other class not found problems.. here's what I got 11:45:48,439 INFO [STDOUT] Queue JBossQueue[NCBIQueue] exists | 11:45:50,392 INFO [STDOUT] In sendMessage() | 11:45:50,392 ERROR [ExceptionInterceptor] Caught RuntimeException | java.lang.Ru

[JBoss-user] [JBoss jBPM] - Re: utility of jbpm in a huge j2ee application

2006-04-14 Thread achilloman_jbpm
thx kevin, i looked to the post, in my case, we want that the jbpm engine deals with the process states and let the business part developped by the j2ee application. for exemple, can i, upon the actions, invoke some services in the business layer of the j2ee application. i think that could be don

[JBoss-user] [JBossWS] - Re: JBossWS not thread safe

2006-04-14 Thread CBax007
Thanks again for the reply. I look forward to the GA release and your fix! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937433#3937433 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3937433 -

[JBoss-user] [JBossWS] - Re: JBossWS not thread safe

2006-04-14 Thread hbraun
No it's not in 4.0.4CR2. It is fixed in head and will be included in 4.0.4 GA. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937432#3937432 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3937432 -

[JBoss-user] [EJB 3.0] - Re: Entity Bean Foreign Key Problem, Need to Specify PK leng

2006-04-14 Thread tvanbuskirk
I've found that the problem is determining the primary key of my CatsDogs class. I want my combined primary key to be the primary key of Cats and the primary key of Dogs. I changed my code to: | @ManyToOne(optional=false) | @PrimaryKeyJoinColumn(name="cats_id",referencedColumnName="id")

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

2006-04-14 Thread MattJackson86
!ENTRY org.eclipse.ui 4 0 2006-04-14 10:53:56.699 | !MESSAGE java.lang.NullPointerException | !STACK 0 | java.lang.NullPointerException | at org.eclipse.jdt.internal.core.search.HierarchyScope.computeProjectsAndJars(HierarchyScope.java:154) | at org.eclipse.jdt.internal.core.sea

[JBoss-user] [JBoss jBPM] - Re: utility of jbpm in a huge j2ee application

2006-04-14 Thread kbarfield
certainly its possible, jBPM is a business process engine, and you can communicate to it using your application. As I mentioned in another thread http://www.jboss.com/index.html?module=bb&op=viewtopic&t=81129 , JBoss SEAM can help with this kind of use case as well. Here is a link to the SEAM

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: JMS, EJB3 annotation MBeans- onMessage not firing

2006-04-14 Thread lpmon
One more thing: I am not using the standard ports. I am using 'ports-01'. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937427#3937427 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3937427

[JBoss-user] [Messaging, JMS & JBossMQ] - JMS, EJB3 annotation MBeans- onMessage not firing

2006-04-14 Thread lpmon
I have probably missed a setup. This is my first EJB3 MBean. Enviroment: JBoss 4.0.3SP1, Win 2003, JDK 5.0_06, with EJB3 - jboss-EJB-3.0_RC5-PFD First: I know the messages are being queued properly because I can read them 'manually' with Message received = receiver.

[JBoss-user] [JBoss jBPM] - utility of jbpm in a huge j2ee application

2006-04-14 Thread achilloman_jbpm
hi, i wanna know if we can integrate jbpm in j2ee application, to provide the service of modeling some processes. it could be like a service communication between the j2ee application and my jbpm application. if it's possible, can u give me some advice thanx View the original post : http://w

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

2006-04-14 Thread timfox
Anuj- Can you remove the jboss-messaging-client-scoped.jar from your lib directory? The client jar is only intended for use when calling JBossMessaging from an external client. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937422#3937422 Reply to the post

[JBoss-user] [JBossWS] - complex type mapping in 4.0.3

2006-04-14 Thread catfishTyphoon
>From the wiki: anonymous wrote : When generating the wsdd, JBossWS4EE looks for additional META-INF/ws4ee-deployment.xml descriptor and when found merges the operations and type mappings with the generated wsdd. For java service endpoints this descriptor should be located in WEB-INF/ws4ee-deplo

[JBoss-user] [Installation, Configuration & Deployment] - Anyway to use my own optional libraries with a deployed JAR?

2006-04-14 Thread asack
I have jar that is shared across EARs. It uses dom4j with XPath, i.e. needs jaxen. I put Class-Path entries to add my own packaged versions but I believe due to the way the UCL works, it still picking them up from $JBOSS_HOME/lib/dom4j.jar since this jar gets loaded first at startup. Is ther

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

2006-04-14 Thread kbarfield
Actually, here is a nice example of another way of doing this. JBoss SEAM uses jBPM for process flow. In the example in the documentation, they have a TODO list. You could use something like this along with your business logic to generate either rules or a process definition dynamically. htt

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

2006-04-14 Thread anshah1
Yes, So presently I am in the test phase and am trying to send a message from a SLSB to the queue. I have my jboss-messaging-client-scoped.jar file in the lib directory for my jboss messaging configuration ($JBOSS_HOME/server/messaging/lib). Is there any other jar file that I would need? Tha

[JBoss-user] [JNDI/Naming/Network] - Re: RMI and JBoss

2006-04-14 Thread hongtish
this is my way. Maybe you can try it | import java.util.*; | import javax.naming.*; | | public class FileServer | { | public static void main(String argv[]) | { | try { | //System.setSecurityManager(new RMISecurityManager()); | Proper

[JBoss-user] [Microcontainer] - JBMICROCONT-74 - Testcases for redeployments using JVMTIInte

2006-04-14 Thread [EMAIL PROTECTED]
bkeh12 (BTW, what's your name or nick name), if you could attach your testcase here: http://jira.jboss.org/jira/browse/JBMICROCONT-74 Then we could talk about this with some more information. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937413#3937413 Rep

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

2006-04-14 Thread scraatz
Tom, the format of the persistence.xml changed. The persistence unit is no longer automatically stored in JNDI. The following file works for me: | | | java:jdbc/WebappSample | | | | | | | |

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

2006-04-14 Thread MattJackson86
"[EMAIL PROTECTED]" wrote : 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 Alright, thanks. Just wanted to see if it was jsut me or everyone. View the original post : http:/

[JBoss-user] [JBoss Seam] - Re: Simple Seam Question...

2006-04-14 Thread dr_j
Okay, I actually made some progress. My issue appears to be that in my action of the commandLink, I'm using a transition via jPDL (action="next") in order to flow to the next page. In that case, my @ModelSelection is not being updated. If I create a dummy method, public String select() and make

[JBoss-user] [JBossWS] - Re: JBossWS not thread safe

2006-04-14 Thread CBax007
I'm not sure if either of you (Heiko, Thomas) are watching this thread, but I need to know for sure if you think this is already fixed in 4.0.4CR2 or if it still needs to be fixed and the fix will be included in 4.0.4GA. I'm trying to roll something out to production and I can't with 4.0.3SP1 b

[JBoss-user] [JBoss Seam] - Re: Simple Seam Question...

2006-04-14 Thread dr_j
I'm having very much the same problem, with code that is much like what you have. I've searched the forums, and apparently it's not that uncommon a problem, but unfortunately, there aren't responses to many of them. If you've found a solution, please please please let me know. Thanks! j Vie

[JBoss-user] [JBoss Eclipse IDE (users)] - develop and deploy ejb3.0/seam - Application in Eclipse3.1/J

2006-04-14 Thread javaos
I followed the howto which I found on the wiki "http://wiki.jboss.org/wiki/Wiki.jsp?page=UseJBossEclipseIDEToDoJBossSeamsBookingExample"; for debugging the Booking example application inside eclipse. The author of the page describes how you can debug the example by just importing the Java -sou

[JBoss-user] [JBoss Portal] - Deployment Error

2006-04-14 Thread bntidd
When Deploying Portal 2.2 on AS4.0.4 RC2, using MYSQL 5 JDBC3.1 driver, on Windows 2003...I get an error stating the following: ObjectName: Portal:policy=PortalPolicyConfigStore,type=Component State: FAILED Reason : java.lang.IllegalArgumentException: No transaction manager provided I Depend On

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

2006-04-14 Thread kbarfield
The integration I was talking about is what is being discussed here: http://www.jboss.com/index.html?module=bb&op=viewtopic&t=77783 Kevin View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937404#3937404 Reply to the post : http://www.jboss.com/index.html?modul

[JBoss-user] [EJB 3.0] - Using a Stateless Session Bean to call an Entity Bean...

2006-04-14 Thread aborland
In short, I'm having a problem persisting objects using a Stateless Session Bean, calling a factory, that calls another POJO, which makes a call on an entity manager. The problem is in my create method in my UserBusiness object. Here is my Code: My stateless bean: --

[JBoss-user] [JCA/JBoss] - Re: Jboss 3.2.6 and Informix problems with using multi xa da

2006-04-14 Thread [EMAIL PROTECTED]
Could you post your *-ds.xml file as well as any stack track that may result in the failed operation? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937401#3937401 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=39374

[JBoss-user] [News & Announcements] - jBPM 3.0.3 released

2006-04-14 Thread [EMAIL PROTECTED]
jBPM version 3.0.3 and jBPM Process Designer version 3.0.9 have been released. These releases and the changelog can downloaded from the following sourceforge location: http://sourceforge.net/project/showfiles.php?group_id=70542 Release Notes - JBoss jBPM - Version jBPM 3.0.3 Feature Requ

[JBoss-user] [JCA/JBoss] - Re: Jboss 3.2.6 and Informix problems with using multi xa da

2006-04-14 Thread chenyang
Who can help me, Thanks very much!!! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937399#3937399 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3937399 --- This SF.

[JBoss-user] [JCA/JBoss] - Jboss 3.2.6 and Informix problems with using multi xa dataso

2006-04-14 Thread chenyang
My English is so poor, so I try my best to describle my problem in simple English sentence, Sorry.:) I have two informix database on one AIX OS Server, and I have added JBoss 3.2.x XA JCA file in "jboss-home/server/default/deploy/informix_xa_ds.xml" and configured two xa datasource in thi

[JBoss-user] [Persistence,JBoss/CMP, Hibernate, Database] - Trouble Configuring a Data Source for MySQL using JSTL

2006-04-14 Thread mike.r.anderson
I have a web app, deployed to JBoss and I'm trying to configure a data source. The latest error I'm getting, on attempting to access a page is: Unable to get connection, DataSource invalid: "java.sql.SQLException: No suitable driver" The web app is deployed to the 'smt' context: Here's my code

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

2006-04-14 Thread kukeltje
what are the ideas? JBoss Rules connected to the ESB and jBPM using it via the ESB or connecting the rules engine directly to jBPM? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937395#3937395 Reply to the post : http://www.jboss.com/index.html?module=bb&op

[JBoss-user] [Clustering/JBoss] - Clustered SLSB - TimedObject

2006-04-14 Thread cveerman
Hello: I am trying to configure a SLSB as a TimedObject to run on a cluster. Basically, I want a true singleton SLSB to do some work at a given interval. The bean is registered; however the the bean is never instantiated (ejbCreate) and the ejbTimeout is never called, Is there a configuration

[JBoss-user] [Tomcat, HTTPD, Servlets & JSP] - JSF selectOneRadio

2006-04-14 Thread tzablock
Here comes my troubling issue. I have a problem with selectOneRadio tag. When I submit a form every single field from the form stores its state - the textfields are filled, the checkboxes are checked but the radio buttons group lose their selection. This is the page code:

[JBoss-user] [Security & JAAS/JBoss] - Re: can username be UTF-8

2006-04-14 Thread spetratos
username has characters with codes U+0688, U+0434, U+0063. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937391#3937391 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3937391 --

[JBoss-user] [Security & JAAS/JBoss] - Re: can username be UTF-8

2006-04-14 Thread spetratos
I'm having the same issue. Even thought my login jsp sets the encoding to utf-8, it seems that it is ignored. Therefore, any username with wide characters can't login. The only way I got this working was by adding a URIEncoding=utf-8 to the server.xml for Tomcat, and use a "GET" versus a "POST

[JBoss-user] [Messaging, JMS & JBossMQ] - Undeploy MDBs Programatically

2006-04-14 Thread rkbeach1
Hi, Does anyone have an example on how to undeploy MDBs Programatically? Would really really appreciate any help! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937388#3937388 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=re

[JBoss-user] [JBoss Portal] - Re: JBoss Portal & MySql

2006-04-14 Thread dgaethofs
Dear all, I FINALLY GOT IT WORKING! THANKS TO ALL OF YOU. Especially Thomas, cause I believe your last remarks made the difference. Regards, Danny View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937386#3937386 Reply to the post : http://www.jboss.com/index.

[JBoss-user] [Security & JAAS/JBoss] - custom JACC provider

2006-04-14 Thread ghjboss
Can somebody show me the complete steps to build a custom JACC provider in the JBoss? I've looked through this forum and collect some information relevant to this topic. But I do not see a complete guidance. My goal is to integrate the XACML to my security layer for the authorization purpose. I

[JBoss-user] [EJB 3.0] - EJB2 and EJB3 in one ear

2006-04-14 Thread [EMAIL PROTECTED]
Hello, I want to know if it is possible to have in one ear : 1 EJB2 module 1 EJB3 module ? I try to deploy an ear with 1 ejb2 module on my JBoss 4.0.4RC1 and it deploys EJB2 module with EJB3 deployer ... How can I say that it's an EJB2 module ? Thanks ! View the original post : http://www.j

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

2006-04-14 Thread ScottDawson
Bhim, Ok, I understand the problem now. I'm sorry if I sent you down a wrong path initially. In the Portlet Spec, section 16.3.2 lists 3 request attributes that must be provided by the portal environment when the PortletRequestDispatcher.include method is used to include a servlet or JSP. The

[JBoss-user] [Beginners Corner] - Deployment trouble on 4.0.4RC2

2006-04-14 Thread eiswind
Hi I have an EAR with two jars declared as ejb modules. I have 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/j2ee | http://java.sun.com/xml/ns/j2ee/application_

[JBoss-user] [JBoss Portal] - Re: JBoss Portal & MySql

2006-04-14 Thread dgaethofs
Thomas, Steps I took now are: 1. Removed the mysql-connector-java-3.1.12-bin-g.jar from the bin directory. 2. Put back the mysql-ds.xml which I found in the docs/examples/jca directory. 3. Made sure the portal-mysql-ds.xml is correct Now I notice some schematables and schema indices are create

[JBoss-user] [JBoss jBPM] - Re: Help About cammunda toolkit

2006-04-14 Thread camunda
Hi Nabil, sorry for the delay, I was on holidays. And sorry that there isn't any good documentation for the toolkit at the moment, because of lack of time... Wihtou a Application Server you should be able to start the Admin-Client with the following code: | AdminClient adminClient = AdminCl

[JBoss-user] [Installation, Configuration & Deployment] - Re: Delete Logfiles generated using log4j when jboss is runn

2006-04-14 Thread [EMAIL PROTECTED]
So how is this related to jboss? This seems like a log4j issue. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937378#3937378 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3937378 -

[JBoss-user] [Messaging, JMS & JBossMQ] - Need Help with Rollback issue and message re-try

2006-04-14 Thread rkbeach1
Hi All, I am not able to figure out why my messages are not being sent back to the queue on a session rollback. I am not using MDB's. Following is how I am setting up my connection to a Topic //ConnectionFactory (using TopicConnectionFactory) TopicConnection connection = connectio

[JBoss-user] [Performance Tuning] - Re: Monitoring Tool

2006-04-14 Thread raogu
Adding SPI for JBoss monitors log files also. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937376#3937376 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3937376 ---

[JBoss-user] [JBoss Seam] - Re: rowCount

2006-04-14 Thread kh2ouija
This exact bit renders to "You have 0 websites." for an empty list, does anyone have any idea why? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937375#3937375 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3937375

[JBoss-user] [Performance Tuning] - Re: Monitoring Tool

2006-04-14 Thread raogu
Site below has lists of tools monitoring JBoss: http://wiki.jboss.org/wiki/Wiki.jsp?page=MonitoringManagementAndProfilingTools HP has a Smart plugin which monitors following: 1)Monitor availability of JBoss servers 2)Monitor CPU Utilization by Server 3)Monitor Memory Utilization by server 4)Proces

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

2006-04-14 Thread kbarfield
I agree. We have partners and customers here at JBoss that are doing the same type of thing. They built rules on top of jBPM that the users can modify, but the underlying process does not change. Once we integrate JBoss Rules and jBPM, this will be very straightforward. It can still be done

[JBoss-user] [Installation, Configuration & Deployment] - Delete Logfiles generated using log4j when jboss is running

2006-04-14 Thread shishir_n_das
In my application, a specific module creates log files using log4j in JBOSS. The modules generates a new log file every time it is run. The problem is jboss doesn't allow to delete the log files when it is running. I have to shutdown the JBOSS and then delete the log files. This is not possible

[JBoss-user] [JBoss Seam] - Re: how to deploy seam - application from within eclipse to

2006-04-14 Thread javaos
do you have WTP installed or how can you see a .ear - file in eclipse? Which view/perspective do you work with to see an .ear - file. I followed the howto on page "http://wiki.jboss.org/wiki/Wiki.jsp?page=UseJBossEclipseIDEToDoJBossSeamsBookingExample";. As a result I have a src-folder in eclip

[JBoss-user] [EJB/JBoss] - EJB not bound?

2006-04-14 Thread mr_density
The error I get is that my ejb is not bound when I try to access it through a webservice. My application has a front-end that connects to my webservice and my webservice must connect to my sessionBean. Here is my ejb-jar.xml | | Foo | project.ejb.session.FooHome |

[JBoss-user] [EJB 3.0] - Howto fetch lazy relations before an entity is detached

2006-04-14 Thread scraatz
Hi, is there a standard way to force fetching of lazy initialized related entities? We need to detach an object with lazyly loaded relations and access the related objects on the detached object. I found that when I access an non-id property of a ...toone relation object within the transaction

  1   2   >