[jboss-user] [EJB 3.0] - Re: Wrong column type: expected: numeric(10, 0)

2006-12-12 Thread wolfc
For a BigDecimal field you must specify both the precision and scale. JSR 220: Enterprise JavaBeans(TM),Version 3.0, Final Release, 9.1.5 Column Annotation View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3992979#3992979 Reply to the post : http://www.jboss.com

[jboss-user] [JBoss AOP] - Re: Tracing/Logging - Actual RMI calls vs calls between EJBs

2006-12-12 Thread stalep
"ykrishnaprasad" wrote : | a) Can get the type of an invocation(whether its a METHOD)? | i guess you mean in the interceptor, so yes. just either try to cast it to a MethodInvocation or check if its an instanceof MethodInvocation. "ykrishnaprasad" wrote : | b) Can i use org.jboss.aop.join

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Re: Problem in getting the data from a cache(hibernate)

2006-12-12 Thread ahamad15
I am storing data inside a cache. When i am geeting the data from a cache its showing null. How can i retrieve the data from a cache. I am using EHCache It's throwing error like java.lang,NullPointerException View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopi

[jboss-user] [EJB 3.0] - Re: EntityManager / Lazy Fetch / J2EE / Swing App

2006-12-12 Thread ghilling
You should checkout the FAQs on the hibernate website for this topic. Generally you should explicitly transfer the data you need to your client in one call via data transfer objects. You may use your EntityBean classes for this. Just make sure all your dependent objects are initialized (walk the

[jboss-user] [JBoss AOP] - Re: Hotswapping an interceptor to an EJB

2006-12-12 Thread stalep
hm, thats strange, could you tell what files you copied over? if jbossaop isnt working at all anymore many of the jboss applications will not work either. eg (ejb3, cache, etc), so i guess you should have gotten a lot of other errors too (even though i havent tested it). View the original post :

[jboss-user] [Beginners Corner] - handeling multiple writes to Oracle

2006-12-12 Thread minixman
All I keep getting the following from jboss | [CachedConnectionManager] Closing a connection for you. Please close them yourself: [EMAIL PROTECTED] | In my class which is a thread off the main program the class connects to a Topic and to the DS and i want to post a new message to the T

[jboss-user] [JBoss Seam] - Re: Basic Seam questions

2006-12-12 Thread SmokingAPipe
There are subtle differences here. I'll go through your post sentence-by-sentence. When you inject an entity into a session, you could get an instance that already exists. For example, here's injection: @In User user; and here's instantiating it manually: User user = new User(); These do t

[jboss-user] [JBoss Seam] - DataModelSelection and master-detail pages

2006-12-12 Thread SmokingAPipe
Here's the simple situation: I have a first page, which shows a table, using a DataModel. In the session bean that has the DataModel, there is also a @DataModelSelection element. What I want to do is have links in the table, on Page 1, which then set the DataModelSelection element AND bring th

[jboss-user] [JBossWS] - Re: Dead doc link for 4.0.5 webservices

2006-12-12 Thread [EMAIL PROTECTED]
Thanks, i will take care of that View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3992987#3992987 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3992987 ___ jboss-user mailing lis

[jboss-user] [JBoss.NET] - deploy asp.net on JBoss

2006-12-12 Thread geetha123
how to deploy asp.net on JBoss View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3992989#3992989 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3992989 ___ jboss-user mailing list

[jboss-user] [JBoss Seam] - ServletRequest in Seam

2006-12-12 Thread sherkan777
Can anyone tell me how to get full path of my servlet qestuest? In struts I have filter like this: | public void doFilter(ServletRequest servletRequest, | ServletResponse servletResponse, | FilterChain chain) throws IOExcep

[jboss-user] [Beginners Corner] - Re: ADF help

2006-12-12 Thread mrchit_2000
When I moved the jar files to WEB-INF\lib\. I get the error message of Class Not Found. 00:40:00,706 INFO [StartupServletContextListener] ServletContext 'C:\EJB3.0\Jboss4.0.5\server\default\.\tmp\deploy\tmp4335autosas-web-exp.war\' initialized. 00:40:00,706 INFO [StartupServletContextListener

[jboss-user] [JBoss Seam] - Re: Seam Log4J wrapper

2006-12-12 Thread quilleashm
http://jira.jboss.com/jira/browse/JBSEAM-581 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3992992#3992992 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3992992 ___ jboss-user

[jboss-user] [JBoss Seam] - Re: @Asynchronous / Dispatcher not bound

2006-12-12 Thread m_hess
Thanks for clearing things up, Norman. You probably saved me a few valuable hours. :-) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3992993#3992993 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3992993 ___

[jboss-user] [JBossWS] - Re: New to JBoss and JBoss WS

2006-12-12 Thread [EMAIL PROTECTED]
Take a look at the examples and the userguide. You can either use wstools as stated in the userguide or JWSDP generated artifacts. http://labs.jboss.com/jbossws/user-guide/en/html/index.html View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3992996#3992996 Reply

[jboss-user] [JBoss AOP] - Re: probleam in granularity of interception

2006-12-12 Thread flavia.rainone
The empoloyee shouldn't be converted. You are intercepting the call, and the call to the constructor is inside HealthWatcherFacade. So, this is step is ok. Next test (this may seem a silly question, but we need to check everything): are you sure doPost is being called? Use a System.out.println

[jboss-user] [JBossWS] - Re: Issue with .NET ws clients

2006-12-12 Thread [EMAIL PROTECTED]
Did you look at tomcat forums as well? Currently i cannot see that this relates to JBossWS. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3992998#3992998 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3992998 _

[jboss-user] [JBossWS] - Re: STATEFUL XML-RPC SERVICE

2006-12-12 Thread [EMAIL PROTECTED]
You can use WS-Addressing to manage to share state information with the client in a portable manner. Managing state on the application level still has to be done on your own. Take a look at the WS-Addressing examples: http://labs.jboss.com/portal/jbossws/user-guide/en/html/wsaddressing.html B

[jboss-user] [JBossWS] - Re: Issue with .NET ws clients

2006-12-12 Thread [EMAIL PROTECTED]
Sorry, forget my previous statement. I should have read the stacktrace more carefully. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3992999#3992999 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3992999 __

[jboss-user] [JBossWS] - Re: Issue with .NET ws clients

2006-12-12 Thread [EMAIL PROTECTED]
Looking at it more carefully doesn't reveal anything at JBossWS processing level. That piece of code prepares the SOAPMessageContext upon receiving the HTTPRequest InputStream. My 2 cents: In this case i'd say that the servlet engine probably has written something back to .NET client without n

[jboss-user] [Installation, Configuration & Deployment] - Re: Deploying zipped war in JBoss 5

2006-12-12 Thread thejavafreak
I was wondering whether there is any way I can deploy unexploded (zipped) war file in JBoss 5 since I am unable to do this. But I can deploy exploded war directory in JBoss 5. Thanks in advance View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3993001#3993001 R

[jboss-user] [JBoss jBPM] - Find instances in a state

2006-12-12 Thread Juan30mad
I can use de API for find all the instance of a process: List processInstances = graphSession.findProcessInstances(processDefinition.getId()); With this sentence I load ALL the instance in the list, is there any way to load the instances wich are in a particular state? View the original post

[jboss-user] [Beginners Corner] - please help me to start jboss

2006-12-12 Thread golanbln
hi, i am trying to start jboss 4.0.5GA under LINUX... when i start the DEFAULT server there is no problem jboss started ok... but when i try starting ALL server (sh run.sh -c all) then i get this ERROR: | | JBoss Bootstrap Environment | | JBOSS_HOME: /home/msaid/downloads/jboss/

[jboss-user] [JBoss Seam] - Re: si:selectItem error parsing

2006-12-12 Thread petemuir
Sorry for the late reply. I've put up a new version in which throws a more descriptive exception. Can you try it and if you are still stuck post the exception here? http://wiki.jboss.org/wiki/attach?page=SeamSelectItemsNewDesign%2Fselectitems-1.1.1beta3.zip It works well with Trinidad for me :

[jboss-user] [JNDI/Naming/Network] - Re: Oracle Datasource not bound to JNDI

2006-12-12 Thread javabean42195
Hi, I tried both, to use only OracleDS in ejb-jar.xml and jboss.xml and also to use jdbc/OracleDS in oracle-ds.xml and in the lookup. But unfortunately nothing worked. I still get the NameNotFoundException. There is probably something else wrong or missing. Any further ideas? View the original

[jboss-user] [JBoss Seam] - Re: Generate a seam enabled JSF page from XML using XSLT

2006-12-12 Thread zmustansar
no I am not, I just want to generate a JSF page outside Seam, from some generator using XSLT and XML. That generated page can be placed inside the Jboss after generation. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3993005#3993005 Reply to the post :

[jboss-user] [EJB 3.0] - Problem with Stateful EJB

2006-12-12 Thread violon
I got a problem when developed a simple stateful EJB3. Can you help me to solve this problem. Thanks a lot. This is remote interface : | package examples.session.stateful; | | | /** | * The business interface - a plain Java interface with only | * business methods. | */ | |

[jboss-user] [JBoss AOP] - Re: Hotswapping an interceptor to an EJB

2006-12-12 Thread flavia.rainone
Sorry for my previous post. What you have to do is just check out everything from Branch_AOP_1_5. This branch also includes the server. Once this is done, compile everything by running build.sh (or build.bat if you're using windows) And you will have a complete JBoss AS server, with the patched

[jboss-user] [JBoss AOP] - Re: Hotswapping an interceptor to an EJB

2006-12-12 Thread flavia.rainone
Oh, yes. I forgot to tell you you must run the script build.sh (or build.bat) that is contained in the build directory. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3993009#3993009 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mod

[jboss-user] [JBoss jBPM] - problem with CGLIB

2006-12-12 Thread Fleury
Hey, When I call executionContext.getToken()..getNode(), I get an object which seems to be a proxy : org.jbpm.graph.def.Node$$EnhancerByCGLIB$$790e4660 but I would to get the real instance which is in fact a TaskNode object. How to prevent this behaviour ? Thank you for your help LF View t

[jboss-user] [EJB 3.0] - COUNT(*) works, COUNT(entity) not

2006-12-12 Thread fcorneli
I have an @Entity with composite @EmbeddedId primary key. When I do a query like: SELECT COUNT(*) FROM TheEntity AS theEntity WHERE theEntity.blablablabla then everything works, but when I replace this with: SELECT COUNT(theEntity) FROM TheEntity AS theEntity WHERE theEntity.blablabla then Hiberna

[jboss-user] [JBoss jBPM] - Re: problem with CGLIB

2006-12-12 Thread Olivier_Debels
Indeed, you get a hibernate proxy. You can change this behaviour by changing the mapping (switching off lazy retrieval) or get the real object from the proxy. See: http://www.jboss.com/index.html?module=bb&op=viewtopic&t=94900 View the original post : http://www.jboss.com/index.html?module=

[jboss-user] [JBoss Seam] - How to use ice:menuBar with Seam in an EAR application?

2006-12-12 Thread Newlukai
Hi, I'm trying to get my application started, but it fails with a NoClassDefFounfError: 11:21:37,140 WARN [ServiceController] Problem starting service jboss.j2ee:service=EJB3,module=ares.jar | java.lang.NoClassDefFoundError: com/icesoft/faces/component/menubar/MenuItem As you can see this er

[jboss-user] [JNDI/Naming/Network] - Re: Oracle Datasource not bound to JNDI

2006-12-12 Thread visolvejboss
Hello, Modify your program as given below. session bean InitialContext ctx = new InitialContext(); | DataSource ds = (DataSource)ctx.lookup("java:/OracleDS"); | Connection conn = ds.getConnection(); jboss.xml | java:OracleDS | javax.sql.DataSource | java:/OracleDS | View the

[jboss-user] [JBoss jBPM] - Re: problem with CGLIB

2006-12-12 Thread Fleury
Thank you very much for your quick reply. I'm going to try your solution. But anyway, why do we get a proxy object ? The association to the node is not mapped as proxy. I know it is a hibernate question but still... LF View the original post : http://www.jboss.com/index.html?module=bb&op=viewt

[jboss-user] [Messaging, JMS & JBossMQ] - Re: Help needed testing JMS connection failure - 4.0.3SP1

2006-12-12 Thread crisandp
Hi all, is starting/stopping the queue the only way to simmulate a connection failure ? Thanks in advance View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3993018#3993018 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=399

[jboss-user] [JBoss Messaging] - Re: Messaging within jboss

2006-12-12 Thread thejavafreak
You use the Java Mail API not the JMS API to send e-mail. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3993019#3993019 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3993019 _

[jboss-user] [JBoss Messaging] - Re: javax.jms.InvalidDestinationException: Destination is no

2006-12-12 Thread thejavafreak
You use JmsXA for local connection, but if you want to get the connection factory remotely (as in your example) you use queue/testQueue. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3993020#3993020 Reply to the post : http://www.jboss.com/index.html?module=

[jboss-user] [JBoss jBPM] - jbpm webapp login

2006-12-12 Thread fuligj
Hello! I'am new in jBPM and i would like to write my self login method. Where can i find the default login method for web-app? Thanks! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3993021#3993021 Reply to the post : http://www.jboss.com/index.html?module

[jboss-user] [JBoss jBPM] - regarding db change from hsql to oracle

2006-12-12 Thread vamsikirankumar.k
Hi I followed the follwing steps and when i try to run the application i am errors.If any one found solution pls mail me.These r the steps i follwed 1)I extracted jbpm-starters-kit-3.1.2 2)I added oracle-ds.xml file to \jbpm-server\server\jbpm\deploy folder which provides information about

[jboss-user] [Installation, Configuration & Deployment] - Re: Starting failed jboss:database=localDB, service=Hypersoni

2006-12-12 Thread thejavafreak
What is the full stack error? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3993024#3993024 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3993024 ___ jboss-user mailing list j

[jboss-user] [JBoss jBPM] - Re: problem with CGLIB

2006-12-12 Thread [EMAIL PROTECTED]
hibernate does lazy loading by default (which is good) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3993025#3993025 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3993025 ___

[jboss-user] [JBoss jBPM] - Re: Fork + Join

2006-12-12 Thread [EMAIL PROTECTED]
the default behaviour of the join is as you describe. you must have some other problem why the join doesn't work that way View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3993026#3993026 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting

[jboss-user] [JBoss jBPM] - Re: Variable creation with jPDL

2006-12-12 Thread [EMAIL PROTECTED]
variable initialisation is not yet available in plain jpdl. you'll have to write your own action handler to do this View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3993027#3993027 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=r

[jboss-user] [JBoss jBPM] - Re: problem with CGLIB

2006-12-12 Thread Olivier_Debels
Indeed, For many-to-one relation (of which this is an example) the lazy mapping property defaults to 'proxy'. you can change this one to "false" and choose the fetching strategy you like (fetch mapping property) to change this. See http://www.hibernate.org/hib_docs/v3/reference/en/html/mapping

[jboss-user] [JBoss jBPM] - Re: Intalio vs jBPM

2006-12-12 Thread [EMAIL PROTECTED]
anonymous wrote : Well Tom, I'm not so sure jBPM is business analyst friendly... i didn't say we are already there. we add step by step, but always check each step against the use cases of the business analyst and of the developer View the original post : http://www.jboss.com/index.html?modu

[jboss-user] [JBoss Seam] - Re: Generate a seam enabled JSF page from XML using XSLT

2006-12-12 Thread petemuir
The view descriptors are written in xml - JSP Document format (AFAIK) and Facelets must be valid xml - so I don't see why you couldn't generate them with xslt. A quick google even threw up some articles. But why?? What are you hoping to achieve? View the original post : http://www.jboss.com/i

[jboss-user] [JBossWS] - Re: wstools and so

2006-12-12 Thread thejavafreak
Check the path of your wstools-config.xml Also, I suggest using Ant task. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3993031#3993031 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3993031

[jboss-user] [JBoss Seam] - Re: DataModelSelection and master-detail pages

2006-12-12 Thread petemuir
Are you in / starting a conversation? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3993034#3993034 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3993034 ___ jboss-user mailin

[jboss-user] [JBoss Seam] - Re: ServletRequest in Seam

2006-12-12 Thread petemuir
I use this in a phase listener: protected String getExternalApplicationRoot(FacesContext ctx) { |if (ctx.getExternalContext().getRequest() instanceof HttpServletRequest) { | HttpServletRequest request = (HttpServletRequest) ctx.getExternalContext().getRequest(); | return "h

[jboss-user] [EJB 3.0] - Entity name confusion

2006-12-12 Thread xrcat
I have two different applications deployed on the same jboss4.0.4.GA server. Each application using its own persistence unit. Persistent units declared in persistent.xml (, ). Both applications using ejb3 entity beans with same name. This name is very common (Event) and i have no possibility to

[jboss-user] [JBoss Seam] - Is Seam 1.1 usable against JBoss AS 5?

2006-12-12 Thread thejavafreak
"[EMAIL PROTECTED]" wrote : Otherwise, it might not be until there is a usable JBoss 5. Right now JBoss 5 is very, very beta. Based on norman's statement here, does this mean Seam is not usable against JBoss AS 5 yet? Since I still got error when testing Seam 1.1 against JBoss AS 5. Thanks in

[jboss-user] [Installation, Configuration & Deployment] - Sar Deployment with nested MDB's Issue

2006-12-12 Thread robnor
Hi, I am packaging a sub-system in a sar. This sar contains other sar and ejb3 mdb's. My problem that I cannot figure out is why the mdb's dont get started when i deploy the sar. If I start jboss clean without any ear, jar, sar etc (except the default ones) and then drops the sar in the depl

[jboss-user] [JBoss AOP] - Re: Tracing/Logging - Actual RMI calls vs calls between EJBs

2006-12-12 Thread flavia.rainone
You can write an advice that receives a MethodCalledByMethodInvocation. This way, you can access the caller. However, this invocation must be used only on advices bound to "call" pointcut expressions. If you use an "execution" pointcut, what you get is MethodInvocation, and you will only have

[jboss-user] [Installation, Configuration & Deployment] - Re: Sar Deployment with nested MDB's Issue

2006-12-12 Thread robnor
by the way. I am using jboss 4.0.5 with messaging 1.0.1.GA and Ejb3 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3993040#3993040 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3993040

[jboss-user] [JBossWS] - Re: Document/Literal and multiple inputs

2006-12-12 Thread [EMAIL PROTECTED]
Try using bare with the wrapper bean provided View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3993041#3993041 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3993041 ___ jboss-use

[jboss-user] [EJB 3.0] - Mapping an entity to partitioned tables

2006-12-12 Thread timw
Hello, I'm designing a J2EE application to interface a legacy app that uses partitioned tables on its database backend. For instance 'tblBall_1', 'tblBall_2', etc.. In design terms the entity 'Ball' is a single entity which I want to represent as such in my class model. Is there anyway to

[jboss-user] [JBoss Seam] - Re: Is Seam 1.1 usable against JBoss AS 5?

2006-12-12 Thread petemuir
You should follow the Getting Started Guide available here: http://labs.jboss.org/portal/jbossseam/gettingstarted/index.html It tells you exactly how to install JBoss AS for use with Seam. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3993039#3993039 Reply t

[jboss-user] [JBossWS] - Re: NullPointerException in WSDL11Reader

2006-12-12 Thread [EMAIL PROTECTED]
What jbossws version is this? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3993045#3993045 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3993045 ___ jboss-user mailing list j

[jboss-user] [JBoss Seam] - Re: si:selectItem error parsing

2006-12-12 Thread lowecg2004
Thanks for looking at this Pete - much appreciated. I won't be able to look at this until this evening so I'll let you know how I get on... Cheers, Chris. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3993046#3993046 Reply to the post : http://www.jboss.

[jboss-user] [JBossWS] - Re: schemalocation generated by wstools

2006-12-12 Thread [EMAIL PROTECTED]
Thanks, I'll take care of it http://jira.jboss.org/jira/browse/JBWS-1420 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3993048#3993048 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3993048 _

[jboss-user] [JBossWS] - Re: STATEFUL XML-RPC SERVICE

2006-12-12 Thread danireb
Thanks for the help. I read the link, but I dindt see an example doing the 3 points that you mentioned above 1.) create some session token 2.) create addressing properties using this token 3.) associate every request/response with this information - The class that public the services is a Sessi

[jboss-user] [JBoss Portal] - Re: JSF Portlet Error

2006-12-12 Thread [EMAIL PROTECTED]
Hi Isklar, I experience the problem which you said. I changed the jbpm example web application to portlet. It seems it can't access the jbpm service. When I access http://localhost:8080/jbpm, it works fine. But it doesn't work in portal as a portlet. What can I do to resolve this problem? Th

[jboss-user] [JNDI/Naming/Network] - Re: Oracle Datasource not bound to JNDI

2006-12-12 Thread javabean42195
Hello, great, that was exactly it! I changed the lookup to java:/OracleDS and the in jboss.xml to java:/OracleDB and it worked! So probably JBoss needs the java:/ prefix in the JNDI name, i guess. Thank you very much for your help. View the original post : http://www.jboss.com/index.html?mo

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Inner Join

2006-12-12 Thread ama55
Dear all: I have 3 tables in the database (Companies, Departments and Extensions) There is a One-Many relation between Companies and Extensions a One-Many relation between Companies and Departments and a One-Many relation between Departments and Extensions I am trying to implement a seach function

[jboss-user] [JBoss Seam] - Re: How to send a parameter with checkbox in JSF in order to

2006-12-12 Thread lara
Thank you very much for replying! I am trying your approach but I am having problems and nothing is listed in the page, seems the list is always empty. Can you please show me your JSF page? Should I keep the and let its value call the setSelected method in the Generic view class? I will be v

[jboss-user] [EJB 3.0] - Permanent interceptor

2006-12-12 Thread aleksab
Scenario: A JBoss server with several beans deployed. Several client access these beans. Goal: Intercept EVERY call from a client to a bean, and process some global information, before letting the call proceed or terminate. The objects/class intercepting the call to the various bean must be abl

[jboss-user] [EJB 3.0] - Java Persistence : EntityMananger Lifetime

2006-12-12 Thread sreejithps
Hi, I am new to Persistence. I would like to know is there restrictions in the declaration of EntityManger and EntityManagerFactory in the class, ie can I declare it as an instance variable or should I declare it locally on each method and after the operation performed should I close it? I

[jboss-user] [Beginners Corner] - Re: jbpm webapp login

2006-12-12 Thread fuligj
Any response? I think its an important thing, to use Jbpm normally. Thanks! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3993055#3993055 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3993055 ___

[jboss-user] [JBossWS] - Re: Document/Literal and multiple inputs

2006-12-12 Thread tobake
Hmm, I donĀ“t think I follow you here?? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3993056#3993056 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3993056 ___ jboss-user mail

[jboss-user] [EJB 3.0] - Java Persistence : O-R Mapping thru XML

2006-12-12 Thread sreejithps
Hi, I would like to know how to use xml for O- R mapping in Persistence. Is it possible? In the sample projs that I hav done, I used annotations for mapping(toplink was the library used). Also I would like to know is it possible to translate the xml file created when using hibernate

[jboss-user] [JBoss Portal] - Re: Deploy oracle ADFBC aplication to portal

2006-12-12 Thread pjmcosta
Ok it worked as as charm... Thank You View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3993073#3993073 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3993073 ___ jboss-user mailin

[jboss-user] [JBoss AOP] - Re: NoClassDefFoundError HeirarchicalLoaderRepository3

2006-12-12 Thread wallayta
When I try to have AOP load-time in jdk-1.4 manner with installed jrockit-1.5 I also get an error about HeirarchicalLoaderRepository3, not a NoClassDefFoundError by a java.lang.ClassCircularityError. I really don't understand why. View the original post : http://www.jboss.com/index.html?module

[jboss-user] [Beginners Corner] - Re: Help me!!! ERROR [MainDeployer] Could not create deploym

2006-12-12 Thread visolvejboss
Hello, As per the EJB Specification, you should implement an ejbCreate() in your entity bean class for all the create() methods in the home interface. For example, you have an create method in home interface as given below. Product create(int productID, String productName, String productQty) th

[jboss-user] [Microcontainer] - Deploy and access Hibernate MBean in Microcontainer

2006-12-12 Thread apamossberg
I'm currently writing seam tests, running the Microcontainer. I need to access a Hibernate MBean, from my test. If I wasn't running the Microcontainer, I would write something like this: try { InitialContext ctx = new InitialContext(); SessionFactory sf = (SessionFactory

[jboss-user] [JBossWS] - Re: NullPointerException in WSDL11Reader

2006-12-12 Thread NicoSchl
Hi Thomas, This occurred with jbossws 1.0.0.GA shipped with JBoss 4.0.4.GA. I have also tried upgrading to jbossws 1.0.4 GA, but the exception is still there. | java.lang.NullPointerException | at org.jboss.ws.metadata.wsdl.WSDL11Reader.processOperationInput(WSDL11Reader.java:487) |

[jboss-user] [Beginners Corner] - Help me!!! ERROR [MainDeployer] Could not create deployment.

2006-12-12 Thread vkokodyn
17:43:27,550 INFO [Server] Starting JBoss (MX MicroKernel)... 17:43:27,566 INFO [Server] Release ID: JBoss [Zion] 4.0.3SP1 (build: CVSTag=JBoss_4_0_3_SP1 date=200510231054) 17:43:27,566 INFO [Server] Home Dir: C:\JBoss\jboss-4.0.3SP1 17:43:27,566 INFO [Server] Home URL: file:/C:/JBoss/jboss-4.0

[jboss-user] [JBoss Seam] - Re: EntityManager: For newbies or to close gaps in your know

2006-12-12 Thread bfo81
@Gavin: This thread, page three, two posts by bfo81 on Dec 1st :). View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3993066#3993066 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3993066

[jboss-user] [JBoss Seam] - Re: Is Seam 1.1 usable against JBoss AS 5?

2006-12-12 Thread [EMAIL PROTECTED]
We have deployed Seam applications on JBoss AS 5. In fact, being able to run the booking app is (was?) one of the JBoss 5 tests. However, that being said, JBoss 5 is still very beta. I would not recommend using it as a primary development platform yet. I think it should be ok for dev in a mon

[jboss-user] [JBoss jBPM] - Re: problem with CGLIB

2006-12-12 Thread Fleury
Thanks a lot for these clear explanations. Best regards, LF View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3993060#3993060 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3993060 _

[jboss-user] [Installation, Configuration & Deployment] - Re: How can I configure the number of stateless session bean

2006-12-12 Thread yair.zaslavsky
I forgot to add, I'm using JBOSS 4.0.5GA View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3993062#3993062 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3993062 ___ jboss-user mai

[jboss-user] [JBoss Seam] - JBoss & Tamahawk

2006-12-12 Thread spect
I recently stuck in problem when i was trying to put "t:schedule" Tamahawk component in seam application. I just write '' where #{schedule} is a seam component and i was too surprised when discover that value of #{schedule} is not parsed correctly by Tamahahk ScheduleTag object. At the same

[jboss-user] [JBoss jBPM] - Hibernate problem after upgrading to version 3.1.3

2006-12-12 Thread michaelholtzman
Greetings. After upgrading from v3.1.2 to v3.1.3, I started getting hibernate errors in code that has worked for months. The exact exception thrown varies slightlly, but they all have this in common: First, there is "Unknown entity: java.lang.String", and then shortly after "error in persistenc

[jboss-user] [EJB 3.0] - Re: EJB 3.0 String injection at deploying time?

2006-12-12 Thread Marco.Pehla
So, finially it works. I've made a mistake and put the ejb-jar.xml file in the EAR archive instead of the JAR archive. But I found out that it is much more easy to make a injection with the resource annotation. inside the EJB3: | ... | @Resource(mappedName="java:comp/env/translationURL")

[jboss-user] [Installation, Configuration & Deployment] - How can I configure the number of stateless session beans th

2006-12-12 Thread yair.zaslavsky
Good day all, I would like to know how can I configure, and also inspect, the maximal number of stateless session beans that can be pooled. Can I get this information from one of the configuration files? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3993059#3

[jboss-user] [Security & JAAS/JBoss] - Re: How to implement Federated SSO using our own custom logo

2006-12-12 Thread njw
Thanks Sohil :-) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3993075#3993075 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3993075 ___ jboss-user mailing list jboss-user@lis

[jboss-user] [JBossCache] - Re: JBoss PojoCache 2.0: Bug in CachedListImpl?

2006-12-12 Thread chasta
Hi, I've ran the test, and indeed it works in its current form - but not when using optimistic locking (e.g. subsistute 'local-service.xml' in 'replAsync-optimistic-service' in the setUp() method). Results of running unit tests from yesterday's CVS version: | Before (using local-service.xml):

[jboss-user] [JBoss jBPM] - Desicion; Bug?

2006-12-12 Thread JimKnopf
My Desicion: | | | | | | | | | | | | | | | | | | This one is running fine. But only if mapped-name == name if they are different, the decisio

[jboss-user] [JBoss jBPM] - Re: Desicion; Bug?

2006-12-12 Thread [EMAIL PROTECTED]
the mapped name should not be the problem, i think. what problem do you experience in case the mapped name is different ? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3993079#3993079 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&m

[jboss-user] [JBoss jBPM] - Re: Intalio vs jBPM

2006-12-12 Thread cocampo
"[EMAIL PROTECTED]" wrote : | i didn't say we are already there. we add step by step, but always check each step against the use cases of the business analyst and of the developer It's ok Tom, at the end of the day I think jBPM is better than Intallio, even if now it has some things to impro

[jboss-user] [Installation, Configuration & Deployment] - JAXB: java.lang.LinkageError when linking javax.xml.namespac

2006-12-12 Thread DerJohannes
In my ear archive, I switched parent delegation to false, because JBoss would load the wrong JAXB classes otherwise (from the server/lib folder instead from the jars given in the ear). Now, the correct JAXB classes are loaded, but there is a new kind of problem: When I try a | JAXBContext j

[jboss-user] [Beginners Corner] - Re: Recommended place to store lib files

2006-12-12 Thread jaleyba
Please, any help in this matter will be appreciated... J View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3993078#3993078 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3993078

[jboss-user] [Microcontainer] - Re: Deploy and access Hibernate MBean in Microcontainer

2006-12-12 Thread apamossberg
As a clearification: I'm also running embedded EJB on top of the microcontainer. I'm a little bit unsure where my problem belongs. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3993082#3993082 Reply to the post : http://www.jboss.com/index.html?module=bb&op=

[jboss-user] [Messaging, JMS & JBossMQ] - JMSQueueAppender

2006-12-12 Thread vinodpol
I Have Used... JMSQueueAppender import org.apache.log4j.AppenderSkeleton; import org.apache.log4j.spi.LoggingEvent; import org.apache.log4j.spi.ErrorHandler; import org.apache.log4j.spi.ErrorCode; import org.apache.log4j.helpers.LogLog; import java.util.Hashtable; import java.util.Properties; im

[jboss-user] [JBoss Seam] - Problem with selectItems taglib

2006-12-12 Thread dave.rogers
I am using the taglib xmlns:si="http://jboss.com/products/seam/selectitems/taglib"; as follows: | | with the following in my bean: @Factory("catalogues") | public List buildCatalogues(

[jboss-user] [JBoss jBPM] - Re: regarding db change from hsql to oracle

2006-12-12 Thread cocampo
Please, do not duplicate the questions, follow the same thread you started before. If you just STFF like I told you to do, you would find this thread --> http://www.jboss.com/index.html?module=bb&op=viewtopic&t=74781 which explains how to modify the jbpm.sar file. Do your job, look for answers,

[jboss-user] [JBoss jBPM] - Re: jbpm webapp login

2006-12-12 Thread cocampo
Look at the web console that comes with starter's kit. Regards. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3993087#3993087 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3993087 __

[jboss-user] [JBoss Seam] - Re: Problem with selectItems taglib

2006-12-12 Thread petemuir
Which versions of Seam and SeamSelectItems are you using? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3993089#3993089 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3993089 _

[jboss-user] [JBoss jBPM] - Re: Find instances in a state

2006-12-12 Thread cocampo
Take a look at this thread -> http://www.jboss.com/index.html?module=bb&op=viewtopic&t=91134 since it treats a problem like yours. Regards. PS. Please STFF before you ask anything. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3993090#3993090 Reply to the

[jboss-user] [JBoss Seam] - Re: Problem with selectItems taglib

2006-12-12 Thread dave.rogers
Seam: 1.1.0 CR 2 Seam-selectlist: 1.1.1beta3 Very impressed by the speed of the response so far, thanks! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3993092#3993092 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=39930

  1   2   3   >