[JBoss-user] [JBossCache] - Re: Question Re: JBossCache 1.3 (cloader chaining)

2006-02-07 Thread [EMAIL PROTECTED]
No, what you mean is *passivation*: when the cache is full, elements are evicted and save to a store. When accessed again, they're fetched from the store (removed from it) and placed into memory again. CacheLoaderChaining is a different beast. What it provides is the ability to attach a cost to

[JBoss-user] [JBoss Seam] - Re: Injecting doesn't work

2006-02-07 Thread Newlukai
Thanks Gavin. This solved my problem. I added the annotation @Intercept(ALWAYS) to my stateless session bean. Regards Newlukai View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=393#393 Reply to the post : http://www.jboss.com/index.html?module=bb&op=post

[JBoss-user] [Installation, Configuration & Deployment] - How to share classes through wars with isolated ClassLoader

2006-02-07 Thread bgonline
Hello, I have two web applications deployed on JBoss 4.0.1SP1 with the following container configuration in jboss-web.xml file : | | | c-w.com:loader=cwsoft-cwx1 | | java2ParentDelegation=true | | | | These

[JBoss-user] [Microcontainer] - Re: Porting application from SpringFramework to JBoss

2006-02-07 Thread bkeh12
"borisk" wrote : | | 2. Multiple jboss-bean.xml. | Is it possible to have a few config files? How to name them and where to place? | | Like Apache Jakarta hivemind... The descriptor is named hivemodule.xml and is stored in the META-INF directory of the module ,to provide a runtim

[JBoss-user] [Installation, Configuration & Deployment] - Re: Can i run JBoss only using JRE with tools.jar or i need

2006-02-07 Thread svvp
"the-gtm" wrote : I have no idea why you would do that but the best thing to do would be to try by yourself :) Right, but i have to create installation for JBoss together with JDK, it is easy to do using install4j because it already contains ability to include JRE bundle but not JDK. And i need

[JBoss-user] [Tomcat, HTTPD, Servlets & JSP] - How to share class through war with isolated ClassLoader ?

2006-02-07 Thread bgonline
Hello, I have two web applications deployed on JBoss with the following container configuration in jboss-web.xml file : | | | dot.com:loader=unique-archive-name | | java2ParentDelegation=true | | | | These w

[JBoss-user] [Beginners Corner] - Problem while uploading

2006-02-07 Thread ahamed_vi
Hi friends, I am beginner to jboss application server. I am using jboss- 4.0.1sp1. its working fine with .ear package, but when i am trying to upload a file to server path, its uploaded to instead of uploading to . Please send your valuable suggesstions immediately.. View the o

[JBoss-user] [JBoss Portal] - a newbie question,please help me

2006-02-07 Thread summercobel
I build the jboss-portal-2.2 Jboss_portal_2_2_0 from CVS And I build the Source Successed!! If the success build will copy the core/output/lib/jboss-portal.sar and the ../core/output/resources/setup/*-ds.xml to the Jboss_home/server/default/deploy ?? is it automatic?? if so, why i can'

[JBoss-user] [Beginners Corner] - Re: How to run the EJB3.0 tutrial example on MySQL?

2006-02-07 Thread chrismalan
Hi Johannes, I looked at your join date - my mistake. Hibernate is a way to access a database, not a database itself. Before EJB3 there was EJB2.1. That was a notoriously complicated way of using a database. JBoss then decided to use Hibernate, which was much closer to the present (and futu

[JBoss-user] [EJB 3.0] - Urgent help!!!

2006-02-07 Thread gus888
Hi I recently got a very boring problem. I use JSF and EJB3. A super entity bean A, and sub entity bean B extends A. When I submit data from JSF page to the B (throug a manage session bean), it works. However, when I submit data from JSF page to the A, I always get the "Error during model data

[JBoss-user] [JBoss Seam] - Re: Understanding Conversations

2006-02-07 Thread chane
Gavin, Thanks for responding and pointing me in the right direction. It has been a while since I looked at EJBs (actually 2.x timeframe). I can already tell it makes sense just reading section 5.6 (Persistent Contexts - in the persistence spec). I now have lots of reading/learning to do in m

[JBoss-user] [J2EE Design Patterns] - Re: Multithreading using MDB

2006-02-07 Thread patrick_ibg
This is such a basic server-side threading construct, the difficulty in implementing in EJB shows the immaturity of the standard (IMHO). >From what I understand, however, they might try to get asynchronous EJB3 calls >in the next iteration (3.1) of the spec. In the meantime, if you don't mind

[JBoss-user] [JBoss Eclipse IDE (users)] - Re: cannot launch jboss4.0.3sp1 from within the jbosseclipse

2006-02-07 Thread cascadia4u
I've had the same issue. I let it run and 20 minutes later, it was up and running. There is something bad going on. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3922211#3922211 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=

[JBoss-user] [JBoss Seam] - Re: Understanding Conversations

2006-02-07 Thread [EMAIL PROTECTED]
Seam-managed persistence contexts are extended pcs. As is the container-managed persistence context in the SFSB. Reassociation of a container-managed pc with a transaction always happens automatically when the the component is invoked. In the current releases of Hibernate (and the current spec r

[JBoss-user] [JBoss Portal] - Re: some general and entry level questions about Jboss porta

2006-02-07 Thread davinchi
Hi , Following things I have tried out : 2- yes of course 4 -1 yes 2 - yes 5 - a no of them In fact if you open http://localhost:8080/portal all views on the page are portlets from portletswap.com also you can download a no of portlets 6. ?what does the question mean? Hope this helps Dvin

[JBoss-user] [JBoss Seam] - Re: Understanding Conversations

2006-02-07 Thread chane
Sorry, yes I am talking about the Entities. To walk through on of the examples, I'm looking at the exampe/hibernate.../HotelBookingAction.java. A conversation is started when the find() method is called. I see that the hotels variable is set based on a call to the persistence engine (in this c

[JBoss-user] [JBoss Seam] - Re: Understanding Conversations

2006-02-07 Thread [EMAIL PROTECTED]
I don't understand what you mean. Seam components are not transactional. Are you talking about entities in a Seam-managed persistence context? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3922207#3922207 Reply to the post : http://www.jboss.com/index.html?m

[JBoss-user] [JBoss Seam] - Understanding Conversations

2006-02-07 Thread chane
I've been picking through the Seam source code trying to understand how conversations are implemented. One question I am wrestling with understanding is how conversations with state saved on the client work. Looking through the code, I expected to see the re-created component re-associated wit

[JBoss-user] [News & Announcements] - 3.2.8 release availabe (Repost)

2006-02-07 Thread [EMAIL PROTECTED]
JBossAS version 3.2.8 Final has been released and is available for download here. The jboss-3.2.8 release for the J2EE 1.3 codebase is a bug fix and minor feature enhancement release. Release Notes - JBoss Application Server - Version JBossAS-3.2.8 Final Feature Request [JBAS-2304] - Supp

[JBoss-user] [News & Announcements] - 3.2.8 release availabe

2006-02-07 Thread [EMAIL PROTECTED]
JBossAS version 3.2.8 Final has been released and is available for download here. The jboss-3.2.8 release for the J2EE 1.3 codebase is a bug fix and minor feature enhancement release. Release Notes - JBoss Application Server - Version JBossAS-3.2.8 Final Feature Request [JBAS-2304] - Supp

[JBoss-user] [News & Announcements] - 4.0.4RC1 release available

2006-02-07 Thread [EMAIL PROTECTED]
The 4.0.4RC1 release is available from sourceforge here: JBoss-4.0.4RC1 Full release notes with compatibility notes an highlights are included in the release readme. The summary for JBossAS-4.0.4RC1 is: Release Notes - JBoss Application Server - Version JBossAS-4.0.4RC1 Feature Request [JB

[JBoss-user] [Clustering/JBoss] - Re: Creating Partitions 4 Clustering

2006-02-07 Thread Rajesh.Gajula
Hi, Copy the all configuration and rename it what you want to have, and after that you just use this command to run the nodes run -c -Djboss.partition.name=, Regards, Rajesh.G View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3922203#3922203 Reply to the po

[JBoss-user] [JBoss jBPM] - Migration from v2 to v3

2006-02-07 Thread joshuayip
Hi all, I am new to JBPM. My company has been using jbpm2 in their existing software. They have expressed their intention to upgrade to jbpm3 , due to some other technical factors. Can anyone suggest to me what are the task and resources involved in migrating jbpm2 to jbpm3? I know firstly the

[JBoss-user] [Clustering/JBoss] - Re: can i give configuration names whatever name i want in w

2006-02-07 Thread Rajesh.Gajula
Hi, If you deployed your application in all configuration on both machines, you must specify the configuration names all/all, but what my suggestion is better dont use all configuration for deploying applications directly, copy that all and rename it as you like and give that names. And also

[JBoss-user] [JBoss Portal] - Problems!! I am trying use Struts bridge(from apache) to int

2006-02-07 Thread vodafone5574
Hi Does any one one used Struts bridge to intract /integrate Struts applciation with Jboss 2.2 RC1 (bundeled with latest jboss4.x) . I am trying to portalise the existing mail reader sample application from struts distrubution . I am able to deploy the portlet war and can see in management

[JBoss-user] [Persistence,JBoss/CMP, Hibernate, Database] - Re: Hibernate Locking Problem

2006-02-07 Thread inscribe
I'm using JTA and calling getCurrentSession() View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3922199#3922199 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3922199 ---

[JBoss-user] [Beginners Corner] - Re: Problems starting JBoss for a second ou third time

2006-02-07 Thread krishnakumars
I use JBoss 4.0.3SP1. With Windows Firewall turned on, i run into the same problem. (Port 1098 already in use by alg.exe). In my case, i turned windows firewall off. Ideally, i would like to configure my jboss to work with the firewall. I briefly looked at this http://wiki.jboss.org/wiki/Wik

[JBoss-user] [JBoss jBPM] - mulit-threading and commit transaction

2006-02-07 Thread dharraj
Hello, I have a method to persist process instance as follows | | public static synchronized void persistPI(Token token) | throws Exception | { | ProcessInstance pi=token.getProcessInstance(); | JbpmSessionFactory factory = JbpmSessionFactory.getInstance(); | Jbpm

[JBoss-user] [Clustering/JBoss] - Re: mod_jk sticky session problem

2006-02-07 Thread Rajesh.Gajula
Hi, Please make sure to set the value for sticy session value to "1", and please check if you enter the two node names for loadbalancing among them at workerproperties.conf file unser "APACHE_HOME/conf". Thanks ,

[JBoss-user] [JBoss Seam] - Re: How to get default Locale in @Startup class?

2006-02-07 Thread [EMAIL PROTECTED]
Well, the other option is to get your resource bundle the oldfashioned way, just like the built-in Seam resourceBundle component does it. Not sure why you wanted to go via JSF. AFAIK, JSF has no "startup" event, so that is why we are using a servlet context listener to do initialization shuff.

[JBoss-user] [JBoss jBPM] - Enable Statistics + error on deploy, about to spring out fro

2006-02-07 Thread boerse
Hi, appart from the other post, i have another 2 questions: 1. I would like to enable the statistics, when i do a ant build.deploy.xml create.jbpm.configuration i read, among many other messages: [loadidentities] 00:54:47,353 INFO SettingsFactory : Statistics: disabled I want to activate the l

[JBoss-user] [JBossWS] - Re: Grid Services in JBossWS

2006-02-07 Thread ishq
Hi, In reference to your previous message. One cannot make transient and stateful webservices and service groups for its virtualization with key features like addressing, notification, lifetime management, monitoring etc... I agree that ws-i might somehow achieve these features but in more com

[JBoss-user] [JBoss jBPM] - Re: jBPM incorrectly accumulating variables for child token

2006-02-07 Thread jim.mcmaster
Since no one replied to this in three weeks, I opened a bug report in Jira (JBPM-512). I have a fix coded and tested. How do I get the code to you? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3922189#3922189 Reply to the post : http://www.jboss.com/ind

[JBoss-user] [EJB 3.0] - Re: UndeclaredThrowableException in RC5

2006-02-07 Thread [EMAIL PROTECTED]
YOu answer a lot of forum posts, so you are forgiven... View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3922188#3922188 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3922188 -

[JBoss-user] [JBoss Portal] - Re: Myfaces Tomahawk Components in JBOss Portal ?

2006-02-07 Thread [EMAIL PROTECTED]
Some are. Some aren't. I don't have either list. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3922187#3922187 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3922187

[JBoss-user] [JBoss Portal] - Re: CMS editor problems...

2006-02-07 Thread [EMAIL PROTECTED]
So upload your html page using the upload feature. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3922186#3922186 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3922186 --

[JBoss-user] [JBoss Seam] - Re: How to get default Locale in @Startup class?

2006-02-07 Thread liudan2005
The application initialization process takes quite a while. For our demo project, it would take a long time to process the first operation if we don't put those code in @Startup class. This is generally acceptable but not very nice in some situations(hard to explain here). Anyway, it's not gonn

[JBoss-user] [JBoss Portal] - some general and entry level questions about Jboss portal

2006-02-07 Thread [EMAIL PROTECTED]
Hi Thank you for reading my post. I have some general and entry level questions about Jboss Portal which i hope you help me to know the answers 1-Does this portal works on tomcat ? 2-can we deploy a jsr-168 standard portlet which works inside pluto on Jboss portal ? 3-how is localization in jbos

[JBoss-user] [JBoss jBPM] - Re: How to suspend and resume a process

2006-02-07 Thread dharraj
Hello Rainer, The execution context is created as follows | new ExecutionContext(processInstance.getRootToken()); | Raj View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3922182#3922182 Reply to the post : http://www.jboss.com/index.html?module=bb&op=pos

[JBoss-user] [EJB 3.0] - Re: UndeclaredThrowableException in RC5

2006-02-07 Thread ejb3workshop
I solved the problem by forking (add fork="yes") in my ant script for the client task. Must have been Netbeans getting confused with the classpath. Sorry to cause all this confusion. Now I really feel stupid :-( View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3

[JBoss-user] [JBoss Portal] - DispatchedHttpServletRequest and related jstl fmt problem

2006-02-07 Thread l.forni
Hi all, I found this topics: 1) http://www.jboss.com/index.html?module=bb&op=viewtopic&t=76350 (previous post of mine) 2) http://www.jboss.com/index.html?module=bb&op=viewtopic&t=70971 Finally i found where is the problem... The following methods of org.jboss.portal.portlet.impl.DispatchedH

[JBoss-user] [JBoss Seam] - Re: Help with Seam Migration (from Beta 1)

2006-02-07 Thread [EMAIL PROTECTED]
"patrick_ibg" wrote : | I'm sure this is something simple that I'm missing. | org.jboss.seam.core.init.jndiPattern? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3922179#3922179 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&m

[JBoss-user] [JBoss Seam] - Re: Help with Seam Migration (from Beta 1)

2006-02-07 Thread [EMAIL PROTECTED]
"patrick_ibg" wrote : | - what is seam-jndi.properties used for, and where should it go? (.jar or .ear?) | This is only needed when deploying on Tomcat. "patrick_ibg" wrote : - I noticed that for seam-booking, jboss-seam.jar is actually included in the ear, not the ejb3 jar file... Is thi

[JBoss-user] [JBoss Seam] - Help with Seam Migration (from Beta 1)

2006-02-07 Thread patrick_ibg
I'm now using a CVS snapshot (from 20060203). I've managed to get all my code compiling with the new EJB3-RC5 stuff. Some things I don't quite understand: - what is seam-jndi.properties used for, and where should it go? (.jar or .ear?) - I noticed that for seam-booking, jboss-seam.jar is actually

[JBoss-user] [Management, JMX/JBoss] - Re: how to register a MBean using a Queue

2006-02-07 Thread mawione
Did you find a solution to your problem? I'm having same problem. Thanks! Magnus View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3922176#3922176 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3922176 --

[JBoss-user] [JBoss Portal] - CMS editor problems...

2006-02-07 Thread vmarco
I'm using the JBossPortal 2.2.0 / JBoss 4.0.3sp1 bundle on MacOSX 10.4.4, and I'm having a problem using the CMSAdmin portlet HTML editor. Every time I submit an entry I either get a hostname which removes the colon between the host and port of image urls, or I get URLs with a "../.." replacing

[JBoss-user] [JBoss jBPM] - BPEL - eventHandlers

2006-02-07 Thread adrian.andrei
Hi there, I try to build an event based example. I can see the selector being built, I can see the event being received and the port handler in "listening for response:" but ... nothing happens. I think the issue is related to JMS subscription (request listener versus port handler) since the o

[JBoss-user] [JBossWS] - Re: Cannot startup webservice: NullPointerException

2006-02-07 Thread republicanjew
Thanks for your response! My app is actually coded against J2EE 1.3, and I've confirmed that all standard deployment descriptors reflect this. Does JBoss support previous versions of J2EE with regards to webservices? Or does that require further configuration? I would have guessed that JBoss

[JBoss-user] [JBoss Seam] - Re: How to get default Locale in @Startup class?

2006-02-07 Thread [EMAIL PROTECTED]
I don't understand why you have to do this in an @Startup component. Why not just do it lazily when the component is first needed? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3922172#3922172 Reply to the post : http://www.jboss.com/index.html?module=bb&op=

[JBoss-user] [Management, JMX/JBoss] - ClassLoader used in MBean does not detect newly created file

2006-02-07 Thread wsngjboss
I tried to lookup a properties file using classloader during startup of an MBean: ClassLoader loader = Thread.currentThread().getContextClassLoader(); | URL myProp = loader.getResource("myProperties.properties"); If it does not exist, I would create that properties file. Then later on, I use

[JBoss-user] [JBoss Seam] - How to get default Locale in @Startup class?

2006-02-07 Thread liudan2005
In the @Create method of my @Startup class, I need to pull some messages from my message bundle. The normal way is to use facescontext like this: FacesContext facesContext = FacesContext.getCurrentInstance(); facesContext.getApplication().getMessageBundle(); In a @Startup class, the fac

[JBoss-user] [JBossCache] - Question Re: JBossCache 1.3 (cloader chaining)

2006-02-07 Thread jkueser
Please bear with me for a moment, as I'm brand-spankin' new to JBossCache. I am still busy digesting the coolness that is JBossCache 1.2.4, and am also trying to see what we have to look forward to in 1.3. One of the features that caught my attention was (forgive me if I get this wrong, I can't

[JBoss-user] [EJB 3.0] - Hibernate Dialect in EJB 3.0 RC5

2006-02-07 Thread k2shah
n EJB 3.0 RC1, I used to be able to do this to get the current SQL Dialect for the underlying Hibernate Session Factory... | ManagedEntityManagerFactory factory = (ManagedEntityManagerFactory) context.lookup("java:managedEntityFactories/EMSEntityManager"); | HibernateEntityManagerFactory he

[JBoss-user] [JBoss jBPM] - Re: BPEL - receive/reply flush

2006-02-07 Thread adrian.andrei
I think I found the issue: the send reply method is not commiting after send. You may want to change the OutstandingRequest.java, line 64 (alpha4) and add session.commit();: | finally { | if (producer != null) { | try { | producer.close(); | session.co

[JBoss-user] [JBoss.NET] - XSL - Add xml-stylesheet declaration to generated WSDL

2006-02-07 Thread nicke
How can I force the generated WSDL document (e.g. http://mydomain/jboss-net/services/MyService?wsdl) to include an xml-stylesheet declaration? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3922166#3922166 Reply to the post : http://www.jboss.com/index.html?

[JBoss-user] [Management, JMX/JBoss] - Re: JNI, System.loadLibrary() and class loader interactions

2006-02-07 Thread deb99s
Got it! I forgot to go back and change the .h files when I moved the methods. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3922163#3922163 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3922163 --

[JBoss-user] [EJB 3.0] - Re: NativeQuery for caliing Stored Procedure Implementation

2006-02-07 Thread [EMAIL PROTECTED]
anonymous wrote : | 1) Are Native and or Named Queries still not implemented yet? | Named: yes Native: yes anonymous wrote : | If not, when is JBoss/EJB3.0 going to release a version that implements it? | Grab RC5-PFD and upgrade JBAS-403sp1 or build JBoss 4.04-xxx yourself. ano

[JBoss-user] JBoss Mail Server 1.0M4-pre2 released

2006-02-07 Thread Andrew Oliver
http://jboss.org/jbossBlog/blog/acoliver/?permalink=JBoss_Mail_Server_M4_pre2_released.txt instructions: http://wiki.jboss.org/wiki/Wiki.jsp?page=HowToInstallJBossMailServer1.0M4 webstart install: http://download.jboss.com/jbossmail/jbms-1.0m4-pre2.jnlp

[JBoss-user] [EJB 3.0] - NativeQuery for caliing Stored Procedure Implementation

2006-02-07 Thread khoyaraaz
I am implementing a J2EE app that will go live this year using EJB3. Currently, Native Queries are not supported, I am therefore using JDBC calls to access data from stored procedures in my DB (faster than sorting within my Session Bean). I had a couple of questions in this regard: 1) Are Nativ

[JBoss-user] [JBoss jBPM] - Trouble getting SubProcessInstance in new jbpmSession

2006-02-07 Thread iterrell
I'm having a little bit of trouble accessing a subprocess instance via a Token's getSubProcessInstance method. I'm using the processes: | | | | | | | | | | | | | | | | |

[JBoss-user] [Security & JAAS/JBoss] - JAAS Charset

2006-02-07 Thread elywagner
Hello! I've developed a JAAS Login Module for my application, extending the class AbstractServerLoginModule, as suggested in JBoss documentation. The basics of my Login Module is working as expected. I can authenticate and authorize my users without problems. However, if a username contains a

[JBoss-user] [EJB/JBoss] - Duplicate EJB timer ids - (if target ejb timed object is dif

2006-02-07 Thread [EMAIL PROTECTED]
Hi All, I'm using JBoss 4.0.2, with Java 5. Creating EJBTimers and getting the ejbTimeout call at the appropriate time is works fine. I've just set myself up to have multiple timers for multiple Stateless Session EJBs - each bean implements TimedObject (i.e., implements ejbTimeout method).

[JBoss-user] [Security & JAAS/JBoss] - Re: Obtaining user data

2006-02-07 Thread j2ee_junkie
Oh yes, I forgot. The CustomPrincipalValve will replace the principal stored in the request with the "CallerPrincipal" added to authenticated subject. In that case, option 2 sounds better. Look at... ${SERVER_HOME_URL}/deploy/jbossweb-tomcat55.sar/MET-INF/jboss-service.xml In this xml file yo

[JBoss-user] [Installation, Configuration & Deployment] - Re: Program execute at every hour

2006-02-07 Thread lafr
Yes. Use a Timer / TimedObject. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3922154#3922154 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3922154 --- This SF.net e

[JBoss-user] [JBoss jBPM] - Re: How to suspend and resume a process

2006-02-07 Thread RAlfoeldi
Hi Raj, first question: where do you get the executionContext from? while (!executionContext.getToken().hasEnded()) after that we'll continue... Greetings View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3922153#3922153 Reply to the post : http://www.jboss.c

[JBoss-user] [EJB 3.0] - Exception - CoyoteAdapter

2006-02-07 Thread Dornus
Is anyone else randomly getting this error too? I have 4.0.3 with RC5 and Tomcat 5.5.12 on Windows XP. | 15:33:22,054 ERROR [CoyoteAdapter] An exception or error occurred in the container during the request processing | java.lang.IndexOutOfBoundsException: Index: 1, Size: 1 | at j

[JBoss-user] [JBoss Seam] - JBoss Innovation Awards

2006-02-07 Thread [EMAIL PROTECTED]
The JBoss Innovation Awards feature a special category for users of EJB3 and/or Seam to tell their story and get recognized. Tell us how you are using Seam! http://www.jbossworld.com/innovation_award.htm View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3922151#

[JBoss-user] [JBoss Eclipse IDE (users)] - run xdoclet tutorial

2006-02-07 Thread alessandro.pizzoleo
Hello, I use jbosside 1.5,jdk 1.5,jboss 4.0.3 When i run Xdoclet for the jbosside tutorial's i see in the console: BUILD FAILED java.lang.NoSuchMethodError: org.apache.tools.ant.Main.getAntVersion()Ljava/lang/String; at org.eclipse.ant.internal.ui.antsupport.InternalAntRunner.setBuiltInP

[JBoss-user] [JBoss Seam] - Re: Cannot Instantiate seam component O_o !!

2006-02-07 Thread Shinerella
ok.. ill check that again, thanks! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3922149#3922149 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3922149 --- This SF.ne

[JBoss-user] [JBoss Seam] - Re: Cannot Instantiate seam component O_o !!

2006-02-07 Thread Shinerella
[img]http://www.wpg.com.py/stuff/result1058.png[/img] result=NamingContext naming=NamingServer parser=NamingParser prefix=CompoundName View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3922148#3922148 Reply to the post : http://www.jboss.com/index.html?mo

[JBoss-user] [JBoss Seam] - Re: Cannot Instantiate seam component O_o !!

2006-02-07 Thread [EMAIL PROTECTED]
Ah. Then I guess your org.jboss.seam.core.init.jndiPattern is set wrong. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3922147#3922147 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3922147

[JBoss-user] [JBoss Eclipse IDE (users)] - Re: JBoss Eclipse IDE, Eclipse 3.1 and upcoming WTP versions

2006-02-07 Thread js8523
Hi Use the server defintion jar from the below url http://www.informatik.fh-wiesbaden.de/~knauf/public/ Just put it in your plugin directory, then restart and you should see a new server definition which will allow you to perform all the normal wtp operations. HTH, James View the original

[JBoss-user] [JBoss Seam] - Re: Cannot Instantiate seam component O_o !!

2006-02-07 Thread Shinerella
sorry Gavin, when I stop at that line the type of result is NamingContext. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3922145#3922145 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3922145

[JBoss-user] [JBoss Seam] - Re: error deploying seam-booking example...

2006-02-07 Thread patrick_ibg
Thanks Gavin... I switched strategies and decided to get 4.0.4 RC1, and that seems to be working fine with the Seam example code. I am now porting my old Seam code. Seems fairly straightforward so far, and really very easy when using Eclipse. For others who might be attempting to check out 4.0.

[JBoss-user] [JBoss Seam] - Re: Cannot Instantiate seam component O_o !!

2006-02-07 Thread [EMAIL PROTECTED]
The line you are supposed to be stopping on is 1054, the line that throws the exception. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3922143#3922143 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3922143 ---

[JBoss-user] [JBoss Seam] - Re: Cannot Instantiate seam component O_o !!

2006-02-07 Thread Shinerella
well result = Manager (id 10046) conversationIdEntryMap=null conversationTimeout=3000 currentConversationId = "2" currentConversationIdStack=LinkedList (id=10052) dirty=false isLongRunningConversation=false [img]http://www.wpg.com.py/stuff/result.gif[/img] [img]http://www.wpg.com.py/

[JBoss-user] [EJB 3.0] - GeneratedValue field in composite key

2006-02-07 Thread sander_s
I would like one of my fields in a composite PK to be an auto_increment field. However the @GeneratedValue annotation only seems to work if there is only one PK field. A solution is to manually adjust the table. This works fine but I would like to see this happen automatically. Is it possible

[JBoss-user] [JBoss Portal] - Re: Beta Relase of 2.4 Portal

2006-02-07 Thread [EMAIL PROTECTED]
I don't know about a beta version but end of April 2006 is still the due date for 2.4. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3922140#3922140 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3922140 -

[JBoss-user] [Installation, Configuration & Deployment] - Re: scheduler-service

2006-02-07 Thread Tyler Black
"arshadsa" wrote : I did the same way but for me, my class not even running! | Could you help me how to run a scheduler which has to fire an event at every hour! Edit scheduler-config.xml to say | true | your.fully.qualified.classname.GoesHere | consructor param values go

[JBoss-user] [JBoss Eclipse IDE (users)] - Re: JSP Save Not Showing

2006-02-07 Thread [EMAIL PROTECTED]
Hello, unfortunately you are doing nothing wrong =). This is a known "drawback" at the moment, and is on our feature request list. You can track it/vote for it here: http://jira.jboss.com/jira/browse/JBIDE-264 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=392

[JBoss-user] [JBoss Eclipse IDE (users)] - Re: DTMManagerDefault.getDTM(int) line: 628 source not found

2006-02-07 Thread [EMAIL PROTECTED]
Hello.. Could you provide more details about your environment so we could try to replicate your error? - What version of eclipse are you running? (Are you just running the bundled Eclipse 3.1.1?) - What version of the JVM is JBoss running with? Are you sure it's running with a JDK and not a JR

[JBoss-user] [JBoss Seam] - Re: error deploying seam-booking example...

2006-02-07 Thread [EMAIL PROTECTED]
I just tested the current CVS of booking app against the current (4.0.4rc1) CVS of JBoss, and all was working fine. I have not tried to install the EJB3 release in JBoss 4.0.3SP1, but I understood that Thomas had tried that out and had no problem. View the original post : http://www.jboss.com/

[JBoss-user] [JBoss Seam] - Re: Cannot Instantiate seam component O_o !!

2006-02-07 Thread Shinerella
ok ill take a look now View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3922135#3922135 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3922135 --- This SF.net email is

[JBoss-user] [JBossWS] - Which JBoss to Use for Web Services?

2006-02-07 Thread esvehla
Hi Everyone, My team and I are trying to decide the best SOA stack to use for building our web services and wanted to get some guidance from the community regarding whether we should use JBossWS today or fall back and use JBoss 4.0.3 and manually integrate WSIF, jUDDI together. We are Java bas

[JBoss-user] [JBoss Portal] - Beta Relase of 2.4 Portal

2006-02-07 Thread rvdandi
2.4 Portal realease was scheduled for April 2006. Is that the schedule and if so, when are you planning to release the beta version View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3922133#3922133 Reply to the post : http://www.jboss.com/index.html?module=bb&op

[JBoss-user] [Tomcat, HTTPD, Servlets & JSP] - HOw to upload a servlet to JBoss container when itself is st

2006-02-07 Thread jolmedo35
I want to upload certain servlet when my JBoss applicatoin server is starting up. How can I do it? Thanks for helping me. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3922132#3922132 Reply to the post : http://www.jboss.com/index.html?module=bb&op=postin

[JBoss-user] [JBoss Seam] - Re: Cannot Instantiate seam component O_o !!

2006-02-07 Thread [EMAIL PROTECTED]
Can you put a breakpoint here: Component.java:1054 and tell us what kind of object result is? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3922131#3922131 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3922131 -

[JBoss-user] [JBoss jBPM] - BPEL - abnormal end of process

2006-02-07 Thread adrian.andrei
I have a BPEL process that use to end abnormally, somewhere in the middle of a sequence and no reason (or exception) was logged - I can see just the process end event there. The use case is: - have a global message type variable, store the response of some invoke activity (the message is multi-

[JBoss-user] [JBoss Portal] - Re: Layout Strategy - ACTIVATED PORTLET ???????????

2006-02-07 Thread PMO
Well, this is a bug in 2.2.1 : getTargetPortlet() returns null !!! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3922129#3922129 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3922129 -

[JBoss-user] [JBoss Seam] - Re: Cannot Instantiate seam component O_o !!

2006-02-07 Thread Shinerella
Sorry the Title of this post is wrong :S Should be : Uncaught exception handled by Seam O_o !! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3922128#3922128 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3922128 --

[JBoss-user] [JBoss Seam] - Cannot Instantiate seam component O_o !!

2006-02-07 Thread Shinerella
I was working on a project with jboss-4.0.3SP1 and a old version of seam (3 month ago) the project has some query stuff nicely working with datamodel and facelets, the thing is that we updated to jboss-4.0.4RC1 the last seam version 1.0 beta 2 , to try it. The problem now is that the action

[JBoss-user] [Beginners Corner] - ScheduleManager Bug

2006-02-07 Thread jdoble
This may not be a good posting for "Beginners Corner", but I sure wasn't able to find another forum that seemed like a good fit. Here goes. We are using the org.jboss.varia.scheduler.ScheduleManager class, and have been getting ClassCastExceptions. Looking at the code, I can see why. There are a

[JBoss-user] [Security & JAAS/JBoss] - Re: Obtaining user data

2006-02-07 Thread j2ee_junkie
Hello tzablock, Two ways immediately come to mind(assuming you are using Tomcat)... 1.) per servlet spec, call HttpServletRequest's getUserPrincipal() method which if using Tomcat, will be an instance of org.apache.catalina.realm.GenericPrincipal principal. This class has a public String[] ge

[JBoss-user] [JBoss jBPM] - BPEL - receive/reply flush

2006-02-07 Thread adrian.andrei
Hi, I am writing a rather complex BPEL process that expects events while is looping in order to perform some lengthy process. My client times-out after 1 minute, and I was hoping to avoid that by responding to the receive with an early reply rather than wait for the loop to end. Even after I c

[JBoss-user] [Persistence,JBoss/CMP, Hibernate, Database] - Problem with the InformixDS mapping?

2006-02-07 Thread belingueres
Hi, I'm using JBoss 4.0.2 running on Java 1.5. Database and JDBC driver information is: Informix Dynamic Server 9.21.HC4 IBM Informix JDBC Driver for IBM Informix Dynamic Server 3.00.JC3 I want to install the EJBCA Certificate Authority and I'm in the task of porting the Entity beans to Inform

[JBoss-user] [Security & JAAS/JBoss] - Server not clearing the user authentication

2006-02-07 Thread sudhirsu
Hi, I have an application deployed on JBoss which makes use of JAAS for security. Both the web and ejb methods of my application are configured to be secured through the web.xml and ejb-jar.xml correspondingly. Currently Iam facing an issue wherein the security is working only on the first c

[JBoss-user] [JBoss jBPM] - Re: How to suspend and resume a process

2006-02-07 Thread dharraj
Forgot to mention that the code to persist process instance starts a transaction, saves process instance and commits the transaction. So the signal is outside of transaction. I do not think this should matter as I have seen same problem when the signal is with in transaction. Raj View the ori

[JBoss-user] [Clustering/JBoss] - Re: ClassNotFoundException in PrimaryKey object

2006-02-07 Thread haseen
I am sorry if I am missing something here. The issue mentioned in the Topic http://www.jboss.com/index.html?module=bb&op=viewtopic&t=39881 is raising a similar issue. Did we find a solution to the "ClassLoaders not found" for custom PK issue? In the topic WT has talked of three options :

[JBoss-user] [JBoss jBPM] - Re: 3.0.2 and hibernate configuration

2006-02-07 Thread dharraj
I am able to connect to hsql db using the hsqldb datamanager tool. Raj View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3922121#3922121 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3922121

[JBoss-user] [Beginners Corner] - Re: user limitations

2006-02-07 Thread grosenthal
version information if necessary: $ /usr/sbin/httpd -version Server version: Apache/2.0.46 Server built: Nov 5 2004 10:58:21 jboss-3.2.3 ( tomcat came with this version of jboss. Not sure of the tomcat version) Redhat LInux ASE 3 Sybase ASE 12.5.3 View the original post : http://www.jbos

  1   2   >