[jboss-user] [JBoss Seam] - Re: import.sql and hsqldb

2007-04-29 Thread stu2
It's a hibernate thing, not seam-related. Check out http://www.hibernate.org/381.html View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4041682#4041682 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4041682

[jboss-user] [JBoss Seam] - Re: import.sql and hsqldb

2007-04-29 Thread matt.drees
It's part of hibernate. http://www.google.com/search?hl=enq=import.sql+hibernatebtnG=Google+Search View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4041683#4041683 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4041683

[jboss-user] [JBoss Seam] - Re: If NoResultException, then logic in JSF or Java

2007-04-29 Thread petemuir
saeediqbal1 wrote : value.setUsername(#{identity.username}); You can't use EL like this - try injecting identity into the bean using @In. With your navigation problem - I'm unsure of the precedence order of navigation rules - which takes priority - from-action or from-outcome? What you are

[jboss-user] [JBoss Seam] - Re: import.sql and hsqldb

2007-04-29 Thread suryad
Thanks very much for explaining that to me. It makes sense now. I am still new to the whole Seam stack including Hibernate and EJB3 and JSF so I am learning while I go through the tutorials. I got another question. If one were to not want to use HSQLDB and wanted to use MySQL what would be

[jboss-user] [JBoss Tools (users)] - Re: JBoss IDE 2.x and WTP 1.5.2 coexistence

2007-04-29 Thread [EMAIL PROTECTED]
isn't this just because you are running both a plain vanilla WTP and the WTP parts that is bundled with JBossIDE ? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4041686#4041686 Reply to the post :

[jboss-user] [JBoss Seam] - Re: import.sql and hsqldb

2007-04-29 Thread suryad
Wait I think I found it. There is a file called booking-ds.xml where it contains the database information etc. So scratch my previous post. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4041687#4041687 Reply to the post :

[jboss-user] [Beginners Corner] - Re: Properties not visible to WebApp

2007-04-29 Thread amit_despande
Hi, Actually your problem is because of class loaders as your war file will have different class loader allocated by tomcat so you will not be able to load your properties file from outside of war file. the file jboss-service.xml residing in jbossweb-tomcat55.sar\META-INF contains two different

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Re: Best Strategy for Deleting 1000's of rows (EJB 2.1)

2007-04-29 Thread amit_despande
Hi If you have read Ejb are more expensive than plain Jdbc quires at any case so for purposes like listing and deleting, modifying, inserting large number of records one should always use plain jdbc quires as you will get a large performance gain over ejbs. Regards, Amit View the original

[jboss-user] [Beginners Corner] - Re: help?A problem with cmr+auto-increment+composite keys

2007-04-29 Thread amit_despande
hi I am not able to get relationships between your tables. regards Amit View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4041691#4041691 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4041691

[jboss-user] [Beginners Corner] - JBoss Portal perfomance and scalability

2007-04-29 Thread anganar
Hello all. I have rather little experience with JBoss products - only testing and no production usage. Now our company has an opportunity to start using JBoss products (Portal in particular) in real-life projects. But there is one problem - it seems that there is no good benchmark results

[jboss-user] [EJB 3.0] - Re: In relation to Entity hierarchy and EntityManager's beha

2007-04-29 Thread fhh
I think this is a misunderstanding but it is difficult to explain. The JOINED strategy does not directly relate to the class hierachy because the class hierachy is about classes and their relationships while the persitence api deals with instances of classes. Therefore entities cannot share

[jboss-user] [JBoss Tools (users)] - Creating EJB3 Entity bean in JBoss IDE? (2.0 beta2)

2007-04-29 Thread kent.narling
Don't know if I am stupid, but how am I supposed to create an EJB3 entity bean with the help of JBoss IDE?? Or is this not implemented yet in beta2? Since there is apparently now documentation for 2.0 beta 2 yet? I could create it manually, but I am a beginner to the EJB world so it would be

[jboss-user] [J2EE Design Patterns] - EJB3 business logic in entity beans as opposed to in session

2007-04-29 Thread kent.narling
I am currently working a migration of our system to EJB for several reasons, mainly to be able to use clustering to achieve higher performance and availability. Now, our current system is very service oriented (through CORBA) but under this the data model actually seems to be fairly well

[jboss-user] [JBoss Seam] - Re: If NoResultException, then logic in JSF or Java

2007-04-29 Thread saeediqbal1
No that did not work unfortunately. I think i may need to do that first option i said have a new form inside this code block in the same .xhtml page s:div rendered=#{reportActivity.value == null} | PUT THE FORMS HERE | /s:div What do you think? or just say that click

[jboss-user] [JBoss Portal] - Re: Error message on clicking to the admin page

2007-04-29 Thread [EMAIL PROTECTED]
These error messages can be safely ignored. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4041699#4041699 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4041699 ___ jboss-user

[jboss-user] [JBoss Tools (users)] - Re: JBoss IDE 2.x and WTP 1.5.2 coexistence

2007-04-29 Thread [EMAIL PROTECTED]
So I shouldn't have WTP installed before installing JBoss IDE? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4041701#4041701 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4041701

[jboss-user] [JBoss Seam] - unable to access application scoped component in @Timeout me

2007-04-29 Thread liudan2005
I'm using ejb3 timer and I wanna access application scoped component when @Timeout method is called. I get no active application context when trying to do this. Is there anyway to do it? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4041703#4041703 Reply to

[jboss-user] [JBoss Seam] - How to produce full http:// URL ?

2007-04-29 Thread henrik.lindberg
Hi, I need to manufacture a URL and show to the user as text, and naturally I don't want the first part to be hard coded but reflect where the application is deployed. I am sure there is some embarrassingly simple way to get the base URL or whatever it is called - can someone help me out? As

[jboss-user] [JNDI/Naming/Network] - Difference JDK - connection problems

2007-04-29 Thread AlexKomlev
Hello We used JBoss on server (Linux kernell 2.4) with JDK 1.4. Client writing for Widows with JDK 5.0 in 1.4 compatible mode. Then we try connect to jboss from jndi it write about RMI problems with 127.0.0.1 host, but JBoss and clint configured with remoute adress. View the original post :

[jboss-user] [JBoss Seam] - Re: How to produce full http:// URL ?

2007-04-29 Thread Homer J.
Have a look at http://www.jboss.com/index.html?module=bbop=viewtopict=101708. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4041706#4041706 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4041706

[jboss-user] [JBoss Tools (users)] - Re: JBoss IDE 2.x and WTP 1.5.2 coexistence

2007-04-29 Thread [EMAIL PROTECTED]
Ok, so I started again with a fresh install of eclipse 3.2.2, no new features installed. When I try to install JbossIDE , I get: JST Enterprise Core (1.5.1.v200609051533--2PD88P8YAGDADJ) requires feature org.eclipse.emf.ecore.sdo (2.2.0), or equivalent. So I go and install EMF 2.2.2 (the only

[jboss-user] [JNDI/Naming/Network] - Re: Difference JDK - connection problems

2007-04-29 Thread PeterJ
What properties are you using when you get the InitialContext? Post either the code setting up the properties or the jndi.properties file. Also, see the discussion at https://mvs01.spt.unisys.com/index.html,DanaInfo=www.jboss.com+?module=bbop=viewtopict=93668 View the original post :

[jboss-user] [JBossWS] - buggy tutorials

2007-04-29 Thread gryffin
For the life of me, I can't make a single JBoss WS tutorial work. I've tried the normal JBoss tutorial ( chap12 ) and it seems to omit describing elements of the development enviroment crucial to working the tutorial. Trying to move to JBossWS 1.2.1 meant that documention on using servlet based

[jboss-user] [EJB 3.0] - Re: In relation to Entity hierarchy and EntityManager's beha

2007-04-29 Thread pyctam
Thanks for your response Felix, You earned me a new point of view to Entity Hierarchy in EJB3. I studied today this subject and found that JOINED strategy is an alternative way for entities annotated with @SecondaryTable or used @OneToOne relationship. You just need to derive a class from its

[jboss-user] [Security JAAS/JBoss] - Re: Programmatic Authentication in JBoss?

2007-04-29 Thread ryoung2504
FYI - I've taken the code from head and retro-fitted it to 4.0.5GA and it works perfectly. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4041716#4041716 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4041716

[jboss-user] [EJB 3.0] - Re: In relation to Entity hierarchy and EntityManager's beha

2007-04-29 Thread fhh
Yes, but you will still have a row per instance in the parent tables not per class. So same problem. Regards Felix View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4041717#4041717 Reply to the post :

[jboss-user] [JBoss Seam] - Re: If NoResultException, then logic in JSF or Java

2007-04-29 Thread petemuir
What didn't work? What you do is one way to do it - take a look the Seam Application Framework and how it does it... View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4041718#4041718 Reply to the post :

[jboss-user] [JBoss Seam] - Re: unable to access application scoped component in @Timeou

2007-04-29 Thread petemuir
You probably want to use Seam's support for asynchronous methods and timers - http://docs.jboss.com/seam/1.2.1.GA/reference/en/html/jms.html#d0e9473 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4041719#4041719 Reply to the post :

[jboss-user] [JBoss Seam] - WYSIWYG

2007-04-29 Thread Udo.Krass
Hi, i search a WYSIWYG editor for facelets. It's very hard to create nice Web-UIs without a mighty IDE. Can JBoss IDE create designer driven facelets sites? Exadel's IDE isn't very nice. I search something similar to M$ Visual Web Developer... Thanx in advance, Udo View the original post :

[jboss-user] [Advanced Documentation] - Are there any JBoss 5.0.x docs?

2007-04-29 Thread mveitas
Are there any docs for version 5+ yet, even works in progress?? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4041722#4041722 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4041722

[jboss-user] [EJB 3.0] - JBoss 5, ejb3, Remote client

2007-04-29 Thread nat101j
On a JBoss 5 (Beta 2) server, (which is running JEE 5 apps only,) what is required at the client to call a ejb 3 Remote interface? 1. Which jar file(s). 2. Does injection work for a remote *client*? Thank you; nat View the original post :

[jboss-user] [Security JAAS/JBoss] - j_security_check (form based) problem

2007-04-29 Thread snod0g
if i redeploy my app and try to access a protected page, it will throw up the login screen as expected, but after entering the user/pass and pressing enter it will just show the reload the login page i then enter user/pass a 2nd time and press enter and i get j_security_check not found error

[jboss-user] [Security JAAS/JBoss] - Re: j_security_check (form based) problem

2007-04-29 Thread snod0g
anonymous wrote : it will just show the reload the login page should be it will just reload the login page View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4041729#4041729 Reply to the post :

[jboss-user] [JBoss Seam] - Re: SEAM INSTALLATION

2007-04-29 Thread [EMAIL PROTECTED]
What version of Java does Ant think it is using? One way to tell: | [EMAIL PROTECTED] tmp]$ ant -diagnostics | grep java.version | ant.java.version: 1.5 | java.version : 1.5.0_07 | View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4041730#4041730 Reply

[jboss-user] [JBoss Seam] - Re: WYSIWYG

2007-04-29 Thread [EMAIL PROTECTED]
There was some experimental work on a facelets editor for netbeans. I don't know the current state of it. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4041732#4041732 Reply to the post :

[jboss-user] [JBoss Seam] - Re: unable to access application scoped component in @Timeou

2007-04-29 Thread liudan2005
In the doc, Seam timer is triggered from paymentAction.scheduleRecurringPayment() which itself is a seam component and it has seam application context. In my case, seam component is triggered at startup time and it doesn't have any active application context. Is there anyway to force seam to

[jboss-user] [JBoss Seam] - Re: If NoResultException, then logic in JSF or Java

2007-04-29 Thread saeediqbal1
Most of the examples i have seen use s:div's rendered tag. I may try something new myself. Thanks Pete View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4041734#4041734 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4041734

[jboss-user] [JBoss Seam] - javax.faces.el.EvaluationException: More than one method mat

2007-04-29 Thread fernando_jmt
Hi. I run into one problem when I use overridden methods in a class that extends from a parameterized class. If I declare in the superclass one method, then I override such method in the specific type subclass, and then I use this method as an action, I get this exception: |

[jboss-user] [JBoss jBPM] - Re: JBPM Persistence Implementaion Using DB2 db

2007-04-29 Thread meiissue
Hi Friends, Still I am waiting for your reply. Because to continue our development it is must.Please reply me ASAP. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4041738#4041738 Reply to the post :

[jboss-user] [Tomcat, HTTPD, Servlets JSP] - Roller Blog

2007-04-29 Thread sirishy
Hi All, I'm using Tomcat 5.0 version. I downloaded the Blog with Roller installation and deployed it in Tomcat. I was able to browse and use the Roller Blog Application successfully. The Roller installation has specific configuration steps for Tomcat. But now I want to integrate Roller Blog