[JBoss-user] [JBoss Eclipse IDE (users)] - JBossIDE 1.5.0 Starting!!

2006-04-15 Thread hanijy
Dear all developers, im so new to Jboss & i heared about the JBoss IDE..so i download it with the tutorial & so happily to follow the steps for makeing Fibo example.. but i have 2 problems 1)In packaging.. E:\Documents and Settings\family\workspace\Tutorial\packaging-build.xml:5: Manifest file:

[JBoss-user] [JBossWS] - jbossws/jbossws14 dependency on Tomcat 5.5.16?

2006-04-15 Thread [EMAIL PROTECTED]
The component-info.xml of both jbossws/jbossws14 define a dependency on Tomcat 5.5.16. Is this intentional or something that can be removed without any issues? jboss 4.0.4.GA needs to be upgraded to Tomcat 5.5.17 and to do that the jbossws/jbossws14 xml files need to be updated for the thirdpart

[JBoss-user] [Beginners Corner] - "run -c all" fails to start JBoss

2006-04-15 Thread bbuckholz
I am trying to start JBoss 4.04.RC1 using "run -c all" and JBoss fails to start...-> C:\jboss\bin>run -c all === . JBoss Bootstrap Environment . JBOSS_HOME: C:\jboss\bin\\.. . JAVA: C:\Program Files\Java\jdk1.5.0_06\bin\j

[JBoss-user] [EJB 3.0] - What is the difference between 4.0.4RC1 and 4.0.4CR2 ?

2006-04-15 Thread terryhello
What is the difference between 4.0.4RC1 and 4.0.4CR2 ? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937567#3937567 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3937567 --

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

2006-04-15 Thread TrippCCN
How do I get the s:link tag to work? I downloaded the nightly build, copied over jboss-seam.jar, and added <%@ taglib uri="http://jboss.com/products/seam/taglib"; prefix="s" %> But I'm sure I'm missing something... i get the error: | taglib cannot be resolved in either web.xml or the jar fi

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

2006-04-15 Thread [EMAIL PROTECTED]
This is fixed in CVS. Please test it. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937565#3937565 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3937565 --- This SF

[JBoss-user] [JBoss Portal] - Re: Portal 2.2.1RC3 and EnterpriseDB

2006-04-15 Thread gedel
i have the same problem with Derby. what you sould do ? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937564#3937564 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3937564

[JBoss-user] [JBoss Seam] - help with query

2006-04-15 Thread mirko27
In database forum noone did help me, but since `m writing an example for Seam then maybe you can help me out. My mappings: Category has products and parameters. Every Product has parameter entries(entry) and entry has parameter. Basically I need to query out those parameters in the group that produ

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

2006-04-15 Thread [EMAIL PROTECTED]
I guess the problem was that the type of the variable value was not any of jBPM's built-in persistable types. The solution might have been making the type serializable. sbhatti, since you ask, this is the easiest but hardly the best approach. Serialization is slow and makes the stored data ina

[JBoss-user] [JBoss jBPM] - Re: Perplexing implementation of ProcessClassLoader.findClas

2006-04-15 Thread [EMAIL PROTECTED]
Actually, when you implement a custom class loader you don't have to call the parent class loader yourself. Consider the JDK 1.4 API docs for ClassLoader.findClass(): anonymous wrote : This method [...] will be invoked by the loadClass method after checking the parent class loader for the reques

[JBoss-user] [EJB 3.0] - Embeddable EJB3 with Maven2?

2006-04-15 Thread greening
I've complained in Maven2-user mailing list that I've not been able to get Embeddable EJB3 Alpha 5 or Alpha3 to run under Maven2's unit test plugin called "Surefire". I registered a bug, and provided a demonstration application for the Maven folks (see JIRA ticket http://jira.codehaus.org/brows

[JBoss-user] [Messaging, JMS & JBossMQ] - ConnectionFactory not bound error

2006-04-15 Thread srjg75
1) I have been trying to use a standalone JMS sender. import javax.jms.*; import javax.naming.*; public class MessageToQueue { public static void main(String[] args) throws NamingException,JMSException { InitialContext ctx; QueueConnectionFactory cf; Que

[JBoss-user] [JBoss Eclipse IDE (users)] - Re: JBoss Eclipse IDE Tutorial

2006-04-15 Thread [EMAIL PROTECTED]
jira contains our roadmap. And 3.2 compability development is not started yet. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937554#3937554 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3937554 -

[JBoss-user] [Installation, Configuration & Deployment] - Re: JBoss Without Tomcat

2006-04-15 Thread asack
"mglause" wrote : I've tried removing it and when I do it breaks everything. I basically just want jboss to run the ejb's. What breaks? (you may have tgo edit a config file for a clean removal) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937555#3937555 R

[JBoss-user] [EJB 3.0] - Re: Classcast Exception $Proxy thing

2006-04-15 Thread MichaelRalston
That page explains the jndi name change, from interface to name/local, as I have stated I am aware of this. But it does not explain why I am being return a $ProxyXX which I can't cast to my interface. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937553#3937

[JBoss-user] [JBoss jBPM] - Re: Perplexing implementation of ProcessClassLoader.findClas

2006-04-15 Thread reidmp
Forget it. Original problem was an operator error. One char wrong in the action class name in the process definition. Time to bump up the font size by 1. :) Also, found that my suggested tweak wasn't viable, the parent class loader's findClass method isn't public, so you would have to use

[JBoss-user] [Beginners Corner] - running a deployed application

2006-04-15 Thread aleplgr
Hi! I've just deployed my first (the hello world) application, it's only a "hello" jsp page for testing the steps of building it and it works fine, I start my web browser and open the URL http://localhost:8080/hello and there it is. But this works in my browser in my PC where I've just installe

[JBoss-user] [JBoss Eclipse IDE (users)] - Roadmap for 2.0

2006-04-15 Thread beamer908
Hi guys, I was just wondering if you have a public roadmap for this project. I know that JBossIDE 2.0 will support Eclipse 3.2 which unfortunately I'll need to use right away because I'm getting a Intel Mac. Just trying to get some of idea of when that release of JBossIDE might be available. It

[JBoss-user] [Installation, Configuration & Deployment] - Re: JBoss Without Tomcat

2006-04-15 Thread mglause
I've tried removing it and when I do it breaks everything. I basically just want jboss to run the ejb's. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937548#3937548 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=39375

[JBoss-user] [JBossWS] - web Service deployment error

2006-04-15 Thread moises18
hi, I am writing a webService application using wscompile to generate my artifacts. 1. I write my session bean and my Interface, adding the tag on the description of session bean. 2. Run the wsCompile to generate the artifacts. 3. After all, I package everything on a jar file. When I try to de

[JBoss-user] [JCA/JBoss] - Re: JCA 1.5 Deployment question on RA property

2006-04-15 Thread lafr
whatever you like View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937545#3937545 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3937545 --- This SF.Net email is spons

[JBoss-user] [EJB 3.0] - Re: Error when runnig the embeddable-test-with-unit - EJB3-A

2006-04-15 Thread onewnan
I see--Alpha 6, released today, fixes the problem. thx View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937544#3937544 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3937544 -

[JBoss-user] [JBoss jBPM] - Re: Perplexing implementation of ProcessClassLoader.findClas

2006-04-15 Thread reidmp
Oops, make that: | clazz = (clazz == null) ? getParent().findClass(name) : clazz; | Forgot that there isn't a default findClass impl on ClassLoader.class. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937541#3937541 Reply to the post : http://www

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

2006-04-15 Thread asack
At this point, I would like to understand how JBoss treats Extension-List manifest entries (or seems to ignore them). Anybody run into this? This seems like a really serious bug. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937543#3937543 Reply to the pos

[JBoss-user] [Installation, Configuration & Deployment] - Re: JBoss Without Tomcat

2006-04-15 Thread asack
"mglause" wrote : Is it possible to setup jboss to run without apache tomcat? I know the minimal configuration does this but I can't figure out how to deploy my application without hot deployment. Thanks. I'm not sure what you mean. The jbossweb-tomcat.sar is the JMX Service Archive that I bel

[JBoss-user] [JBoss jBPM] - Perplexing implementation of ProcessClassLoader.findClass

2006-04-15 Thread reidmp
Hi all, I'm trying to use jBPM 3.1 in an EJB project. Don't care about Hibernate functionality, just in-memory usage of jBPM from a session bean. I created an action and ran into a class loading exception that from past messages in this forum I can see isn't unusual. Alas, in my project usin

[JBoss-user] [JBoss Eclipse IDE (users)] - Eclipse Library configuration

2006-04-15 Thread urswag
It is more a eclipse user question. I would like to configure a libary which can be used in the libraries tab in the Java Build Path. It should contain all jar files of | ...\JBoss\server\default\deploy\jbossweb-tomcat55.sar\jsf-libs | Thanks View the original post : http://www.jboss.c

[JBoss-user] [JBoss Eclipse IDE (users)] - Re: JBoss Eclipse IDE Tutorial

2006-04-15 Thread Jlexa
"[EMAIL PROTECTED]" wrote : 1.5 branch is compatible with eclipse 3.1.x | | 2.0 (or maybe already 1.6) will target 3.2 | | I probably should define my question more concretely. Is there any downloadable EclipseIDE plugin version, ready to use with 3.2? Where can I find a usable alpha/b

[JBoss-user] [Installation, Configuration & Deployment] - JBoss Without Tomcat

2006-04-15 Thread mglause
Is it possible to setup jboss to run without apache tomcat? I know the minimal configuration does this but I can't figure out how to deploy my application without hot deployment. Thanks. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937536#3937536 Reply to

[JBoss-user] [Advanced Documentation] - BUILD JBOSS ADMIN EXAMPLES FAILED!WHO CAN HELP ME?THANK YOU!

2006-04-15 Thread yianhuang
When I build JBOSS adminDevel examples ,Build Failed ,the messages of Building as : E:\cs\hibernate\software\apache-ant-1.5.4-bin\apache-ant-1.5.4\bin>ant -f E:\cs\jboss\admin326\AdminDevel\examples\build.xml Buildfile: E:\cs\jboss\admin326\AdminDevel\examples\build.xml validate: [java] Im

[JBoss-user] [JBoss Getting Started Documentation] - JBOSS examples build failed!Who can help me? Thank You!

2006-04-15 Thread yianhuang
When I build JBOSS adminDevel examples ,Build Failed ,the messages of Building as : E:\cs\hibernate\software\apache-ant-1.5.4-bin\apache-ant-1.5.4\bin>ant -f E:\cs\jboss\admin326\AdminDevel\examples\build.xml Buildfile: E:\cs\jboss\admin326\AdminDevel\examples\build.xml validate: [java] Im

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

2006-04-15 Thread jtucker
This can happen if you specify /WEB-INF/faces-config.xml as one of the files in javax.faces.CONFIG_FILES and your SeamPhaseListener is configured in faces-config.xml. MyFaces reads all the files listed in javax.faces.CONFIG_FILES as well as /WEB-INF/faces-config.xml. This must register the pha

[JBoss-user] [EJB 3.0] - Re: Error when runnig the embeddable-test-with-unit - EJB3-A

2006-04-15 Thread onewnan
I am a newbie to the portable container and JBOSS. It's not obvious to me which migration guide on the wiki that would be. If it's a matter of a few lines of code, could someone kindly shoot me a snippet? thx [EMAIL PROTECTED] View the original post : http://www.jboss.com/index.html?module=b

[JBoss-user] [JBoss Eclipse IDE (users)] - Re: JBoss Eclipse IDE Tutorial

2006-04-15 Thread [EMAIL PROTECTED]
1.5 branch is compatible with eclipse 3.1.x 2.0 (or maybe already 1.6) will target 3.2 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937530#3937530 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3937530 ---

[JBoss-user] [JBoss Seam] - Re: Script.aculo.us with Seam Remoting

2006-04-15 Thread marcioendo
Ok, so based on everybody's examples here I managed to get the Autocompleter working with Seam Remote. What I did was the following: 1. Create a extensions.js in which you extend the scriptaculous Autocompleter.Base | SeamAutocompleter = Class.create(); | Object.extend(Object.extend(SeamAut

[JBoss-user] [JBoss Eclipse IDE (users)] - Re: JBoss Eclipse IDE Tutorial

2006-04-15 Thread Jlexa
It seems that JBossIDE-1.5.1-GA is incompatible with Eclipse 3.2M5, M6 and the coming soon 3.2 release. Maybe there exists any public JBossIDE beta which works with those IDE versions? I'd prefer to work with a slightly unstable plugin rather than with an obsolete Eclipse milestone. View the or

[JBoss-user] [JBoss Seam] - Re: Failure in Booking-example

2006-04-15 Thread [EMAIL PROTECTED]
This has already been fixed in CVS. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937527#3937527 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3937527 --- This SF.N

[JBoss-user] [JBoss Seam] - Failure in Booking-example

2006-04-15 Thread javaos
in the bean LoginAction in the login-method in case of an invalid login, a message is put on the faces - context. Here's the code snippet: facesContext.addMessage(null, new FacesMessage("Invalid login")); I tested the application online an local. In both cases the message doesn't appear on the

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

2006-04-15 Thread [EMAIL PROTECTED]
It is an ordinary Java resource bundle. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937525#3937525 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3937525 --- This

[JBoss-user] [EJB 3.0] - Re: Classcast Exception $Proxy thing

2006-04-15 Thread elkner
http://wiki.jboss.org/wiki/Wiki.jsp?page=FromJBossEJB3.0RC3ToRC4PFD View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937523#3937523 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3937523 -

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: Memory leak

2006-04-15 Thread nirav30
FYI... We are closing all the Queue connection, session and sender properly. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937522#3937522 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3937522 ---

[JBoss-user] [Messaging, JMS & JBossMQ] - Memory leak

2006-04-15 Thread nirav30
Hi All, We are observing memory leak while running our application on JBoss 4.0.2. We attached the profiling tool - JProfiler to trace the memory leak and we found that the class[] (Proxy classes) is increasing drastically which is not getting garbage collected. The "HeapWalker" shows that E

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

2006-04-15 Thread javaos
can you give me an example for a messages_xx_XX - file? How can I specify a message which I want to localize? Is it something like user:password:maxValue? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937520#3937520 Reply to the post : http://www.jboss.com/

[JBoss-user] [JBoss Eclipse IDE (users)] - EJB3 Project using jboss-4.0.4.CR2

2006-04-15 Thread mindhaq
Hey, I'm currently testing EJB3 development with Jboss Eclipse IDE (1.5.1GA). and was using Jboss 4.0.4 RC1 for that. Now I wanted to give the new CR2 a try. I created a new server configuration, but when I try to add it to the Classpath as a Jboss EJB3 library, I get the following error messag

[JBoss-user] [EJB 3.0] - Mapping a @Lob to a PostgreSQL BYTEA column

2006-04-15 Thread petergoldstein
Is this mapping supported? If so, how do I configure it? When I set up my EntityBean with a @Lob attribute corresponding to a BYTEA column, I get an exception like this: 03:32:53,612 ERROR [JDBCExceptionReporter] ERROR: column "photo_data" is of type bytea but expression is of type oid I'd r

[JBoss-user] [JBoss Seam] - how to build an deploy seam-applications in eclipse

2006-04-15 Thread javaos
I found a wiki-page which describes how to debug a seam example-application inside eclipse. If I follow this howto, I only import the java-sources and library-files to eclipse (not the xhtml-files and other stuff). If I make a change to a java - class, I have to run ant in a console for compile

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

2006-04-15 Thread mr_density
Does somebody have an idea? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937514#3937514 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3937514 --- This SF.Net

[JBoss-user] [EJB 3.0] - Enforcing more referential rules in EJB3.0

2006-04-15 Thread faelin
Hi. I'm working on a small system and I want to achieve the following results. I want to have two entities, User and Group, which basically look like this: | class @Entity User { | @Id int id; | @ManyToOne(option=false) Group group; | ... | } | | class @Entity Group

[JBoss-user] [EJB 3.0] - Classcast Exception $Proxy thing

2006-04-15 Thread MichaelRalston
I was using EJB3 early last year, and since then a bunch of things have changed. I'm now having a problem getting access to my Stateless Bean, when I look it up in the InitialContext, it is returning a $ProxyXX object. This is how I remember it working some time ago. But when I try and cast this

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

2006-04-15 Thread lcoetzee
Hi Gavin the Jira I openend for http://www.jboss.com/index.html?module=bb&op=viewtopic&t=81115 also illustrates the various exceptions. See jira http://jira.jboss.com/jira/browse/JBSEAM-206 Or should I create a separate Jira ? Thanks Louis View the original post : http://www.jboss.com/ind

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

2006-04-15 Thread lcoetzee
Hi Gavin, I have created an issue. See http://jira.jboss.com/jira/browse/JBSEAM-206 Thanks Louis View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937506#3937506 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3937506

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

2006-04-15 Thread g.tomassoni
Almost: splitting the MyClass in two classes, one outjecting idCat and one outjecting currentCategory, as well as emulating the behaviour of @Factory through @Out(s) on getters solved the problem. It is not that elegant, but works. After changes I thought that retrieving idCat in initCurrentCat

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

2006-04-15 Thread lhoriman
"elkner" wrote : "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 ... ? Which would only be the case on an appserver that

[JBoss-user] [JBoss Portal] - how to use portlet plugin

2006-04-15 Thread noicangi
hi i'm using eclipse ide 1.5 and i would like to use the portlt plugin, i downloaded and unziped to the /plugin but it doen't apears to work. any suggestion? please help View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937503#3937503 Reply to the post : http: