[JBoss-user] [Beginners Corner] - Re: how can i start 2 Jboss instance in one server?

2006-02-23 Thread jaikiran
Have a look at: http://wiki.jboss.org/wiki/Wiki.jsp?page=ConfiguringMultipleJBossInstancesOnOneMachine View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3926017#3926017 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3926017

[JBoss-user] [Beginners Corner] - Re: how can i start 2 Jboss instance in one server?

2006-02-23 Thread jaikiran
Have a look at: [url]http://wiki.jboss.org/wiki/Wiki.jsp? page=ConfiguringMultipleJBossInstancesOnOneMachine[/url] View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3926016#3926016 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=rep

[JBoss-user] [JBoss Seam] - Re: Cannot get value for expression

2006-02-23 Thread rengar
Examples works fine, my application generated with JBoss IDE don't. I fix it changed : @In(create=true) | private EntityManager entityManager; @PersistenceContext | private EntityManager entityManager; Now, WORKS FINE!! View the original post : http://www.jboss.com/i

[JBoss-user] [JBoss jBPM] - Re: TextBox - AreaBox

2006-02-23 Thread mennen
Eagerly waiting also for these functionalities.. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3926014#3926014 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3926014 ---

[JBoss-user] [JBoss jBPM] - Re: Timer duedate always set to yyyy-mm-dd 09:01:00

2006-02-23 Thread mennen
Thank you for your reply kukeltje, Indeed i meant that the date should be 2006-02-23, i wrote 24 as a mistake.. I did not know the business day ends 17h, so thanks for the info.. it all makes sense now :) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3926013

[JBoss-user] [JCA/JBoss] - Re: How to Declaratively set autoCommit to false

2006-02-23 Thread [EMAIL PROTECTED]
anonymous wrote : | 15.5.3.1 Auto Commit | When a Connection is in an auto-commit mode, an Interaction, associated with the Connection, automatically commits after it has been executed. The auto-commit mode must be turned off if multiple interactions have to be grouped in a single transact

[JBoss-user] [JBoss AOP] - Re: Error opening zip file: pluggable-instrumentor.jar

2006-02-23 Thread anders.hedstrom
I added the full path to pluggable-instrumentor.jar and now the startup script works fine again. Strange... I guess this is not a JBoss issue. Thanks Kabir! Cheers //Anders View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3926011#3926011 Reply to the post : h

[JBoss-user] [Javassist user questions] - Serialization of CtMethod, or alternative

2006-02-23 Thread Wallslide
I am writing a program using Javassist which requires me to encrypt the individual methods of a class. Unfortunately, CtMethod is not serializable, so I can neither use a SealedObject, nor a ObjectOutputStream to encrypt an instance of CtMethod. I see that I can retrieve the code in CtMethod a

[JBoss-user] [JNDI/Naming/Network] - Re: a question about fault tolerance during DIY Jboss JNDI

2006-02-23 Thread [EMAIL PROTECTED]
See the following for an example of adding interceptors: http://wiki.jboss.org/wiki/Wiki.jsp?page=XMBeansforSecurity View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3926009#3926009 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=r

[JBoss-user] [Beginners Corner] - how can i start 2 Jboss instance in one server?

2006-02-23 Thread Eric Liu
hi, i want to start 2 jboss instance on my server with 2 ip address. first i start one: run.bat -c all --host=192.168.110.50 and it look fine. Second i start another( in another jboss's file directory ): run.bat -c all --host=192.168.110.45 but, it throws some exception.

[JBoss-user] [EJB 3.0] - mapping-file in persistence-unit supported?

2006-02-23 Thread rparree
Hi, Is the element in the persistence-unit supported in JBoss EJB3.0? I seems that JBoss does not pick up the mapping configuration inside my orm.xml mapping file. | | org.hibernate.ejb.HibernatePersistence | java:/demos/DS | orm.xml | | | | |

[JBoss-user] [JBossCache] - Re: Getting data from the cache.

2006-02-23 Thread jaikiran
Are your keys, that you use in cache, of type String or of some other type. Was just wondering if this has got something to do with the equals method of your key. Also, cache.put("/X", "yourKey", "A"); | Object previousValue = cache.put("/X", "someOtherKey", "B"); What does previousValue hol

[JBoss-user] [JBoss Portal] - define DEFAULT portal ??

2006-02-23 Thread ericmacau
Hello, If I deploy many portal instance in the portal server, how can I define the default portal when loading the page as http://localhost/portal ? Where can define it ? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3926005#3926005 Reply to the post :

[JBoss-user] [EJB 3.0] - Re: Extensions to EJB3: Message Driven POJOs

2006-02-23 Thread [EMAIL PROTECTED]
How do you think it should work? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3926004#3926004 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3926004 --- This SF.Net

[JBoss-user] [JBossCache] - Re: Significance of wakeUpIntervalSeconds ?

2006-02-23 Thread srivathsak
Here in the Code pasted below what I have seen is that the value of the node /aop/3 is null if it is not processed in the last 9.950sec. The value given for the wakeUpIntervalSecond is 5 sec and for the timeToLiveSeconds for region /aop is 4 sec. When I access the node /aop/3/1 even after 13 sec

[JBoss-user] [JBoss Seam] - Don't Intercept All Methods

2006-02-23 Thread hchen_0
Seam seems to generate interceptor for all methods on a bean, even on protected and private methods. I think this is not neccessary. I once saw a long invocation stack with many Seam interceptor methods in the middle. I think this may hurt performance and make debugging harder. At least, ther

[JBoss-user] [Clustering/JBoss] - Re: EJB and Http load balancing

2006-02-23 Thread susitha
Thanks again. I'm having the problem with the central node of the cluster. As i think the cluster should be seen as a single machine to the outside world. In order to achieve this I believe we need something like a "cluster manager" in Oracle (i think here it is the dispatcher). The CODE that i

[JBoss-user] [JBoss Seam] - Injection Conversion

2006-02-23 Thread hchen_0
I want to inject a request parameter to a bean like bellow using expression: @In(value="#{param.id}", required=false) private Long id; However, Seam gives error java.lang.IllegalArgumentException because the param value is of type String, which doesn't match the field's type Long. I think for

[JBoss-user] [EJB/JBoss] - Re: Optimistic Locking policy in jboss

2006-02-23 Thread indyzone
Hi, First of all, I think your jboss.xml is not properly written. It should be like this : | | | | CacheBuilderMDB | mercury-catalog-admin-1.0/ejb/com.ketera.catalog.service.FilterBuilderService | CMP 2.x Optimistic Locking |

[JBoss-user] [JBoss.NET] - Serializer Exception in the reponse(SimpleSerializer failed

2006-02-23 Thread akshayapandey
hi I am using the following wsdl. I pass the reply object across to server using wrapped inside replyHolder.The request is successfully received by the Web Service and processed correctly .However, when i receive it on the client side, I get the Serialization exception. Also , I used tcpmon to v

[JBoss-user] [EJB 3.0] - Re: Extensions to EJB3: Message Driven POJOs

2006-02-23 Thread redijedi
MDPOJOs rock. I've been working with the api for a little while now. I am debating whether to use it in production code. The fact that the api is so simple is a huge advantage. I do have one question, why does the consumer decide the location of the topic? The ActiveConfgProperty for destination

[JBoss-user] [EJB 3.0] - Collection Access Best Practices

2006-02-23 Thread treespace
I want a persistent collection but I do not want anybody accessing the collection directly. So rather than getProtons you might call addProton: | | @Entity class Atom | { |... |public void addProton(Proton proton) |{ | protons.add(proton); | proton.set

[JBoss-user] [EJB/JBoss] - JBoss 3.2.8 gives EJB Method Permissions exceptions

2006-02-23 Thread indyzone
Hi, Yesterday I moved to JBoss 3.2.8 from 3.2.7 and my application gives an exception when trying to call an EJB method inside a Stateless Session bean. This bean uses a standard java class and from that I call the relevant entity bean method. This works fine in JBoss versions 3.2.3 through 3.2

[JBoss-user] [JBossCache] - Re: Significance of wakeUpIntervalSeconds ?

2006-02-23 Thread srivathsak
Do you mean to say if in this period the node is not accessed it will be evicted. In the test cases dealing with wakeUpIntervalSeconds you have used a method called _sleep(period ) where the period depends on wakeUpIntervalSeconds. How is this going to affect the performance of the test case.

[JBoss-user] [JBoss Portal] - How to dynamic change portal locale ?

2006-02-23 Thread ericmacau
Hello, Is there any mechanism to dynamic change the locale of the portal ? Eric View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3925992#3925992 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3925992 -

[JBoss-user] [Beginners Corner] - Hot deployment

2006-02-23 Thread sushant248
By replacing ear in the /deploy directory, i can see in the console that the scanner has read the change but when i see the changes on the browser, they are not reflected. If it's a simple war, then changes are reflected instantly but when this war inside an ear (and nothing else), i can't see t

[JBoss-user] [Performance Tuning] - Error "Not enough Space"

2006-02-23 Thread jasonfa
Hi all, I am using jboss3.2.5 and the system becomes slow after running a few days. Today the error "not enough space" is thrown and got resolved after restarting the server. Anybody has clue? I feel it's the memory problem and the memory can go as high as a few GB after running for some time

[JBoss-user] [EJB 3.0] - Re: Stacktrace does not help much...

2006-02-23 Thread michea
As usual It's 5 min after I posted the problem that i found the solution... The trick is to look into server.log, then the DEBUG line just before the exception looked like anonymous wrote : | DEBUG [org.hibernate.cfg.annotations.CollectionBinder] Binding as ManyToMany: store.Catalog.categorie

[JBoss-user] [EJB 3.0] - Re: business-remote

2006-02-23 Thread rparree
B, Thanks for the information..could very well be. I was in fact already anticipating that. Do you know where to get the latest information on these final changes (before getting PFD2.. ). For example the business-remote is still in the http://java.sun.com/xml/ns/javaee/ejb-jar_3_0.xsd ...is

[JBoss-user] [EJB 3.0] - Stacktrace does not help much...

2006-02-23 Thread michea
Hi I have an application with around 60 entity beans that I'm trying to persist in AS4.0.4RC1 with annotations. I'm stuck with absolutely no clue with the following exception: anonymous wrote : | 22:02:45,234 WARN [ServiceController] Problem starting service persistence.unit | s:ear=divi

[JBoss-user] [EJB 3.0] - JBoss4.0.4RC1: tables were dropped

2006-02-23 Thread gus888
Hi all, It was very painful when I tried to migrate to JBoss4.0.4RC1 from EJB3.0RC3. Finally, it worked, but I found that all my data in database were deleted and tables were recreated. My persistence.xml was: | | java:/DVD_DS | | | |

[JBoss-user] [JBoss Eclipse IDE (users)] - cannt resolve import:org.jboss.seam

2006-02-23 Thread dago
and javax.faces;org.jboss.seam ... who can help me,thanks View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3925984#3925984 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3925984 --

[JBoss-user] [Installation, Configuration & Deployment] - Property not found message in JBoss 4.0.2

2006-02-23 Thread JBossBruce
Hello, I moved my webapp from a standalone Tomcat to the embedded Tomcat running on JBoss 4.0.2. My directory structure is as follows: server --default ---deploy test.war -config (this is where the properties files are) -css -jsp --docs -images -logs -WEB-INF ---

[JBoss-user] [JBoss Portal] - Re: Installing JBoss Portal 2.2 (packaged with JBoss ) fails

2006-02-23 Thread [EMAIL PROTECTED]
http://wiki.jboss.org/wiki/Wiki.jsp?page=AvoidMySQL5DataTruncationErrors View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3925982#3925982 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3925982

[JBoss-user] [JBoss Portal] - Re: CMSAdminPortlet and custom Node Types that extend portal

2006-02-23 Thread [EMAIL PROTECTED]
I will look at this tomorrow and create a jira feature request for it. I have had the idea of creating this feature for some time, as it will make the cms more flexible for end-users. The capability is there, but requires enhancements to the ui so admins can create the properties and the implem

[JBoss-user] [Beginners Corner] - Re: How to start timer mbean?

2006-02-23 Thread pepper_fiend
oh, duh. I found a book that explained how to do this. I needed to register an MBean instance for a javax.management.timer.Timer, invoke the start method on the MBean, invoke the addNotification method, etc. And I don't need the timer-service.xml file. I've never read up on JMX; perhaps I shoul

[JBoss-user] [JBoss Eclipse IDE (users)] - Re: annoying thing about fibo tutorial

2006-02-23 Thread xhectorx
Hello! I Have the same error with 1.4.2_04. Anybody knows wath is N10004? and what about the 49.0 version? version of what? thanks... View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3925979#3925979 Reply to the post : http://www.jboss.com/index.html?module=bb

[JBoss-user] [Clustering/JBoss] - Re: Http Session replication problems when NOT using sticky-

2006-02-23 Thread [EMAIL PROTECTED]
Yes, it's SESSION. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3925978#3925978 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3925978 --- This SF.Net email is spons

[JBoss-user] [Performance Tuning] - Re: 99% usage using cluster

2006-02-23 Thread ScottMarlowNovell
Also see http://wiki.jboss.org/wiki/Wiki.jsp?page=DebuggingJBossProblems View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3925977#3925977 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3925977 ---

[JBoss-user] [Beginners Corner] - EJB does not deploy/No error

2006-02-23 Thread dev_jan_rag
I am new to EJB3. I created a Calculator stateless session bean. Here are my 2 interfaces and 1 class. *** CalculatorIF *** public interface CalculatorIF { double add (double x, double y); } *** CalculatorRemoteIF *** import javax.ejb.Remote; @Remote public interface CalculatorRemoteIF

[JBoss-user] [JBoss jBPM] - Spring + jBPM 3.1 + Single Hibernate Session

2006-02-23 Thread criess
On my web project we are using Spring, jBPM 3.1, and Hibernate. We want our Hibernate domain objects and jBPM's objects to run under the same Hibernate Session and transaction. The key here is that if an error occurs during the web request we want to rollback any jBPM database actions along wi

[JBoss-user] [Clustering/JBoss] - Re: Http Session replication problems when NOT using sticky-

2006-02-23 Thread jcprout
We are trying to avoid using sticky-session because that would mean that we also have to use it on the two hardware load-ballancers in front of the cluster and web servers. The Operations group doesn't want to make this change... Replication-granularity is set in the jboss-web.xml file and we're

[JBoss-user] [Tomcat, HTTPD, Servlets & JSP] - HELP with JBoss 4.0.3 and ADF Faces

2006-02-23 Thread viperjp
Hi! I'm trying to deploy a simple web application using ADF Faces. The point is that when trying to accessing the main page I get the following error: HTTP Status 500 - type Exception report message description

[JBoss-user] [JBoss Portal] - CMSAdminPortlet and custom Node Types that extend portalcms:

2006-02-23 Thread [EMAIL PROTECTED]
First, let me say how great it is that you integrated Jackrabbit into JBoss Portal. Looks like a lot of work went into the integration and it works quite well. I'm trying to implement my own custom NodeType that extends your portalcms:file NodeType in order to add a few new eLearning specific p

[JBoss-user] [Clustering/JBoss] - Re: Http Session replication problems when NOT using sticky-

2006-02-23 Thread [EMAIL PROTECTED]
We strongly encourage use of sticky sessions. But, that being said, if things are working properly what you're trying to do shoudn't give you the results your seeing What's your replication-granularity setting (SESSION or ATTRIBUTE)? View the original post : http://www.jboss.com/index.html?mo

[JBoss-user] [JBoss AOP] - Re: Error opening zip file: pluggable-instrumentor.jar

2006-02-23 Thread [EMAIL PROTECTED]
That is strange. Where are you running your script from? Does putting the full path of pluggable-instrumentor.jar make any difference? http://www.jboss.com/index.html?module=bb&op=viewtopic&t=75452&postdays=0&postorder=asc&start=10 View the original post : http://www.jboss.com/index.html?module

[JBoss-user] [Installation, Configuration & Deployment] - Re: Migrating a webapp on Tomcat to JBoss

2006-02-23 Thread JBossBruce
Thank you! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3925966#3925966 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3925966 --- This SF.Net email is sponsored by

[JBoss-user] [Messaging, JMS & JBossMQ] - I am Using JMS, MQSeries & MDB in my project, While processi

2006-02-23 Thread venkat1111
While I am processing bulk records I am getting following Exception. 2006-02-22 16:45:25,890 ERROR [STDERR] at org.jboss.ejb.MessageDrivenContainer.internalInvoke(MessageDrivenContainer.java:348) 2006-02-22 16:45:25,906 ERROR [STDERR] at org.jboss.ejb.Container.invoke(Container.java:674) 2

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

2006-02-23 Thread davidgeary
Perhaps one of you would be willing to let the rest of us in on the secret? I'm getting the same error, but this post doesn't give me much of a clue. I have no idea what I should set yadayadayada.jndiPattern to. Here's what I have: org.jboss.seam.core.init.jndiPattern j

[JBoss-user] [Clustering/JBoss] - Http Session replication problems when NOT using sticky-sess

2006-02-23 Thread jcprout
I have a JBoss cluster, v4.0.3, with two nodes. Load balancing uses mod_jk, but without sticky-session. I am having problems when a session is invalidated and then a new set of attributes set in a new session (i.e. someone logs out, then logs in again as a different user). HttpSession sess =

[JBoss-user] [JBoss Seam] - Conversation scoped back bean is created twice

2006-02-23 Thread liudan2005
I have a Seam component called BackA which is a back bean and it has a method like this: @Create public void init() { } It's referenced in PageA.xhtml. PageA.xhtml comes from a stateful bean method methodA() with @Begin @Factory annotated. There is a commandbutton in PageA.xhtml that calls the

[JBoss-user] [EJB 3.0] - Re: business-remote

2006-02-23 Thread bdecoste
I believe the business-remote tag is being removed from the latest version of the spec and schema. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3925961#3925961 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3925961 -

[JBoss-user] [Performance Tuning] - Re: JBoss-Hibernate Performance Test

2006-02-23 Thread ScottMarlowNovell
I believe that the "Connection refused" error means that the http client threads are all in use (you might check your Tomcat status via http://hostname:8080/status.) Is your client load test running continuously (no think time). If so, your driving a much heavier load than 220 real clients (if

[JBoss-user] [JBossWS] - Re: SOAPHandler Question

2006-02-23 Thread CBax007
I actually took a different route her to get to a viable solution. Instead of using a SOAPHandler, I used a Servlet Filter. The Filter gets to the data before the JAX-RPC Runtime code does, so you don't have to worry about properly resetting data in the MessageContext or the RPCInvocation obje

[JBoss-user] [JBoss Portal] - Re: Portal 2.2 Clustering

2006-02-23 Thread noicangi
hi i will explain my new situation...i downloaded the cvs jboss-portal-2.2, i discovered that the build didn't function because claims that sample directory was missing, then i download jboss-portal from cvs and copied the samples directory to the jb2.2 and i build it. then i discovered that bu

[JBoss-user] [JBoss jBPM] - jbpm performance with sybase

2006-02-23 Thread nsobti
Hello, I am using jbpm with sybase, and noticed that it takes 3 times more time than with hsqldb. I was wondering what could be causing it. Is this expected? Thanks. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3925957#3925957 Reply to the post : http://

[JBoss-user] [JBoss jBPM] - How not to drop tables/process defintion

2006-02-23 Thread nsobti
Hello, I am using jbpm with sybase. I ran a sample program to which creates a process defintion, and runs 100 process instances through it. I saw that during each such run, it created the entire schema, and drops it when it is done. How can I prevent this from happening : I do not want the sch

[JBoss-user] [EJB 3.0] - Re: Lookup on SessionContext

2006-02-23 Thread bdecoste
This looks like a bug. I've opened a JIRA task: EJBTHREE-457 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3925955#3925955 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3925955

[JBoss-user] [EJB 3.0] - Re: Message Beans where can one find jar or import defini

2006-02-23 Thread bdecoste
What release of EJB3 are you using? Older versions incorrectly used the "activateConfig" attribute instead of the correct "activationConfig" View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3925954#3925954 Reply to the post : http://www.jboss.com/index.html?mod

[JBoss-user] [JBoss Portal] - portal-forums view topic

2006-02-23 Thread [EMAIL PROTECTED]
I have installed portal-forums 2.2.1-RC2 using JBoss 4.0.3SP1 and there is no way to view any topic created. As I click on every list item I am taken to a blank screen. The only thing that I am able to see is the JBoss Portal image header and the texts "Test", "Default" and "Forums" for the 3 pa

[JBoss-user] [EJB 3.0] - Re: Problem with ejb and Servlet

2006-02-23 Thread bdecoste
The annotations for local and remote jndi binding are LocalBinding and RemoteBinding, respectively. The @Local and @Remote annotations are used to specify the local and remote bean interfaces, respectively View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3925952

[JBoss-user] [JBossWS] - anyone know the Username and Password for accessing the EJBS

2006-02-23 Thread zoolai
I recently set up JBossWS to use a stateless EJB endpoint over SSL connections. My app deployed fine (no errors) on the server, and I have my required client-side truststore and server-side certificate and keystore set up. However I tried to access the .wsdl file via web browser and up popped a

[JBoss-user] [EJB 3.0] - Re: Thread model for @Service beans?

2006-02-23 Thread lhoriman
"[EMAIL PROTECTED]" wrote : Service beans are multi-threaded. Use Java synchronization if you want serialized access. Perfect - thanks! Jeff View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3925950#3925950 Reply to the post : http://www.jboss.com/index.html?

[JBoss-user] [EJB 3.0] - Re: Disable JMS message persistance

2006-02-23 Thread bdecoste
Try setting the delivery mode of the QueueSender to NON_PERSISTENT. I'm looking into the issue when you only set the message to be NON_PERSISTENT View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3925949#3925949 Reply to the post : http://www.jboss.com/index.htm

[JBoss-user] [JBoss Eclipse IDE (users)] - Re: annoying thing about fibo tutorial

2006-02-23 Thread sps100
I am getting the same error. Has anyone found a workaround with JDK 1.4.2? Thanks View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3925948#3925948 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3925948 ---

[JBoss-user] [EJB 3.0] - Parent->Child relationship in same class

2006-02-23 Thread mnewcomb
JBoss 4.0.3SP1. I have a class: class Person | { | protected Person parent; | protected Set children; | | @ManyToOne | public Person getParent() ... | | @OneToMany(mappedBy = "parent") | public Set getChildren() ... | } Everything deploys fine. However, when I g

[JBoss-user] [Beginners Corner] - Deployment Question

2006-02-23 Thread rbreault
When I deploy a app in the farm directory it deploy's to a tmp directory. Is there a way to deply this to a static directory instead of a tmp ? Thanks, View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3925946#3925946 Reply to the post : http://www.jboss.com/in

[JBoss-user] [Installation, Configuration & Deployment] - Re: login issues

2006-02-23 Thread rbreault
Solved thank you it pointed me in the right direction View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3925945#3925945 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3925945 ---

[JBoss-user] [JBoss jBPM] - Re: jBPM 3.1: ClassCastException in JBossSecurityMgrRealm

2006-02-23 Thread jesse_sweetland
We solved the problem. When you create a project in NetBeans 5.0 and choose JBoss 4.0.3 as your application server, it creates a file called jboss-web.xml in WEB-INF. This file by default contains the following line: | | Deleting either the jboss-web.xml file or this line causes the ap

[JBoss-user] [EJB 3.0] - Re: Extensions to EJB3: Message Driven POJOs

2006-02-23 Thread [EMAIL PROTECTED]
this features is still supported. Can you log a jira task? These should be in the client jars. Apologies View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3925943#3925943 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=39

[JBoss-user] [EJB 3.0] - Re: What's wrong with the following OR mapping?

2006-02-23 Thread [EMAIL PROTECTED]
You cannot mix and match your mapping declarations between field and getter methods. You placed the @Id on a field, so the mapper is expecting that all your mapping information is placed on fields View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3925942#3925942

[JBoss-user] [JBoss Portal] - Re: ERROR OF SUBMIT POLL IN FORUM PORTLET

2006-02-23 Thread bdaw
It has been resolved. Try code from cvs: cvs co -r JBoss_Portal_Branch_2_2 jboss-portal-2.2 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3925941#3925941 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3925941 --

[JBoss-user] [JBoss jBPM] - Re: TextBox - AreaBox

2006-02-23 Thread boerse
Hi! are this features available in version 3.1? I need to insert a textarea in my processdefinition and don't know how. Thanks! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3925940#3925940 Reply to the post : http://www.jboss.com/index.html?module=bb&op=po

[JBoss-user] [EJB 3.0] - Re: Thread model for @Service beans?

2006-02-23 Thread [EMAIL PROTECTED]
Service beans are multi-threaded. Use Java synchronization if you want serialized access. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3925939#3925939 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3925939 -

[JBoss-user] [JCA/JBoss] - Re: How to Declaratively set autoCommit to false

2006-02-23 Thread joergvf
"[EMAIL PROTECTED]" wrote : | JBoss assumes auto commit is true when the connection is first created, | as per spec.I searched the JCA and J2EE specs for this, but couldn't find anything backing this assumption. Do you per chance have some concrete reference for this? Thanks, Jörg View the

[JBoss-user] [JBoss Seam] - Re: sub folder not supported in url

2006-02-23 Thread liudan2005
has anyone tried yet? looks like a bug. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3925937#3925937 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3925937 --- This

[JBoss-user] [JBoss Seam] - Fileupload

2006-02-23 Thread Udo.Krass
Hi, anyone implemented a fileupload in seam? I implemented tomahawk into facelets and now I just try to use the fileupload tag. Does it work? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3925935#3925935 Reply to the post : http://www.jboss.com/index.html?m

[JBoss-user] [JBossCache] - Re: Message discarded from non-member

2006-02-23 Thread jcprout
I've seen this problem, caused by having another JBoss machine on the same network, using the same mcast address and port, but a different partition name. Remember also that the "all" configuration creates two cluster partitions, one defined in cluster-service.xml, the other in tc5-cluster-servi

[JBoss-user] [JBoss jBPM] - Re: jBPM 3.1: ClassCastException in JBossSecurityMgrRealm

2006-02-23 Thread jesse_sweetland
Some more information: Operating System: Fedora Core 4 Java Version: 1.4.2_10, 1.5.0_05 I downloaded the source to JBoss 4.0.3SP1; added some debugging statements to JBossSecurityMgrRealm.java; built it JBoss 4.0.3SP1 from the modified source; and redeployed our application to see why the Cla

[JBoss-user] [Management, JMX/JBoss] - Be notified when web application is available

2006-02-23 Thread mjessee
I have an mbean that needs to know when an associated web application is available. I have the context of the war as an attribute to the mbean. The mbean is deployed before the war. Currently, I loop for a certain amount of time, using HttpClient to tell me when the context is responding. The p

[JBoss-user] [Persistence,JBoss/CMP, Hibernate, Database] - Tables not being created in MSDE data engine

2006-02-23 Thread yantriki
When I deploy my application I get the following message. However when I check the database I don't see the tables in the database. The first time I tried to deploy the application there were a few tables created, but after that on subsequent deployment I am not getting any tables created in da

[JBoss-user] [EJB 3.0] - Re: Problem with ejb and Servlet

2006-02-23 Thread yantriki
Yogendra, The annotations are @Remote and @Local for local and remote binding. Vivek View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3925925#3925925 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3925925

[JBoss-user] [Persistence,JBoss/CMP, Hibernate, Database] - After merge, property changed

2006-02-23 Thread javatwo
Two entities, Picture and Person, ManyToOne Class Picture { @ManyToOne public Person getOwner() {... } } Picture picture = // the picture has a owner that is an instance of Person(not CGLIB enhanced). //change picture name, then merge Picture p = em.merge(picture); The owner(P

[JBoss-user] [JBoss Seam] - Memory monitoring

2006-02-23 Thread armita
Is there any tool to view the memory consumption of objects. I have really no idea how expensive is the beans View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3925923#3925923 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&

[JBoss-user] [EJB 3.0] - Re: JBoss 4.0.4RC1 : Tables not found in database

2006-02-23 Thread yantriki
When I use hypersonic default database with the following persistence.xml, I see all the table created in the database: | | java:/DefaultDS | org.vss.ejb3.eb.ElementType | org.vss.ejb3.eb.ModuleType | org.vss.ejb3.eb.NetworkElement

[JBoss-user] [EJB 3.0] - JBoss 4.0.4RC1 : Tables not found in database

2006-02-23 Thread yantriki
When I deploy my application I get the following message. However when I check the database I don't see the tables in the database. The first time I tried to deploy the application there were a few tables created, but after that on subsequent deployment I am not getting any tables created in da

[JBoss-user] [JBoss jBPM] - Re: save and close task gives error

2006-02-23 Thread kukeltje
Look in the logfile, there is probably more info on the error. The error on the screen is (most of the time) useless but that is due to jsf, not jBPM Ronald View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3925920#3925920 Reply to the post : http://www.jboss.c

[JBoss-user] [JBoss jBPM] - Get all nodes in process definition when a SuperState is def

2006-02-23 Thread hiata
When I call the method processDefinition.getNodes() in org.jbpm.graph.def.ProcessDefinition, the node collection retrieved contains just nodes in superstate "mobile". I need to get all nodes in process definition. Can anybody help me, please? My process is defined like this:

[JBoss-user] [Tomcat, HTTPD, Servlets & JSP] - Exception in connector.CoyoteAdapter getting java.lang.OutO

2006-02-23 Thread dkamdar
We are getting the following error on one of our application servers. connector.CoyoteAdapter - - An exception or error occurred in the container during the request processing java.lang.OutOfMemoryError We are running 2 application servers same application running on both servers, they are eve

[JBoss-user] [JNDI/Naming/Network] - JMS Client look up blocks for 30 minutes for timeout

2006-02-23 Thread rajsrinivas74
I am trying to do a look up of JBOSS JMS queue and it is blocking for close to 30 minutes before timing out. I have specified the jnp timeout to 100. This is the stack trace I am getting, 2006-02-21 17:37:39 the look is called 2006-02-21 18:15:05,467 the time out exception is thrown It is clos

[JBoss-user] [JBoss jBPM] - Re: save and close task gives error

2006-02-23 Thread juliancranfield
Hi, Does the task you are actioning the "Save and close task" on have a transition from it, either to an end node or another node? I have seen this error if you forget to have a transition. Cheers, Julian View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=392

[JBoss-user] [JBoss jBPM] - Re: Task assignment handler not being called second time thr

2006-02-23 Thread kukeltje
I agree. It should either be changed or the current behaviour should be added to the docs. I could do either. There is already a jira issue where I mentioned this but no real response (including from me ;-) ) on what to do. I'll see what I should do Ronald View the original post : http://www.

[JBoss-user] [EJB 3.0] - Re: What's wrong with the following OR mapping?

2006-02-23 Thread yantriki
ok I fixed it by moving the @OneToMany annotation over the field rather than the getter method. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3925913#3925913 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3925913

[JBoss-user] [JBoss jBPM] - Re: How to write sample HelloWorld program in jBPM

2006-02-23 Thread mzshen
Hello, me too is new to jBPM. I read the "Getting Started" web pages to the end. http://docs.jboss.com/jbpm/v3/gpd/ But I don't see how to create something to be deployed in a "jbpm" server. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3925912#3925912 Reply

[JBoss-user] [JBoss Seam] - jenia componenet

2006-02-23 Thread armita
I wonder does anybody used jenia components with seam? I am specially interested in popup frame. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3925911#3925911 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3925911 ---

[JBoss-user] [Persistence,JBoss/CMP, Hibernate, Database] - Re: Problem in EJB QL for Oracle

2006-02-23 Thread lafr
Try to replace BigDecimal with Short or Integer. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3925909#3925909 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3925909 ---

[JBoss-user] [JBoss jBPM] - Re: Task assignment handler not being called second time thr

2006-02-23 Thread iterrell
Thanks for the information and the workaround. I think it's unintuitive behavior at best. Ian View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3925906#3925906 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3925906 ---

[JBoss-user] [JBoss Portal] - Re: Portal 2.2 Clustering

2006-02-23 Thread noicangi
hi, i test the as 404rc1 + portal221rc2 and after configuring the files at thw wiki the same problem as the start, i test building from cvs jboss-portal-2.2 affer coping samples to build it with clustering=true, but this error apears afeter trying to enter the portal: INFO [Server] JBoss (MX

[JBoss-user] [EJB 3.0] - Re: @NamedQueries cannot be on SLSB?

2006-02-23 Thread [EMAIL PROTECTED]
I would imagine this restriction exists because queries are scoped to a peristence unit. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3925904#3925904 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3925904 --

[JBoss-user] [JBoss Seam] - JSF 1.2 / Seam

2006-02-23 Thread rogerk
Hello. I've been tryin got get Seam to run in a JSF 1.2/JSP 2.1/Servlet 2.5 container (glassfish). Specifically, I am trying to get the Seam booking exampe to run, but I am running into the following problems: 1. the SeamVariableResolver is not getting called - it is my understanding that with

  1   2   3   >