[JBoss-user] [JBoss Seam] - scripting disabled / register-link in booking-example doesn'

2006-04-13 Thread javaos
if I disable skripting in my browser, the booking - example doesn't work. If I click the "register"-link, I'm not routed to the register page. If I replace the hyperlink with a command-button, it works. If I aktivate skripting in the browsers options, the booking-example works. My problem is - t

[JBoss-user] [JBoss Seam] - how to deploy seam - application from within eclipse to jbos

2006-04-14 Thread javaos
I use the eclipse-plugin jbossIde1.5. I followed the steps in the jboss online-description "JBoss.com - Wiki - UseJBossEclipseIDEToDoJBossSeamsBookingExample" to get the example running. But if I make changes to a java-class inside jbossIde (eclipse), I don't know how to deploy the changed EAR

[JBoss-user] [JBoss Seam] - Re: how to deploy seam - application from within eclipse to

2006-04-14 Thread javaos
do you have WTP installed or how can you see a .ear - file in eclipse? Which view/perspective do you work with to see an .ear - file. I followed the howto on page "http://wiki.jboss.org/wiki/Wiki.jsp?page=UseJBossEclipseIDEToDoJBossSeamsBookingExample";. As a result I have a src-folder in eclip

[JBoss-user] [JBoss Eclipse IDE (users)] - develop and deploy ejb3.0/seam - Application in Eclipse3.1/J

2006-04-14 Thread javaos
I followed the howto which I found on the wiki "http://wiki.jboss.org/wiki/Wiki.jsp?page=UseJBossEclipseIDEToDoJBossSeamsBookingExample"; for debugging the Booking example application inside eclipse. The author of the page describes how you can debug the example by just importing the Java -sou

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

2006-04-14 Thread javaos
I'm playing with the booking example. The name of the user is forced to be between 5 and 15 characters. This constraint is annotated at the getter for the name field. If validation of the name fails, I get a localized error message (in this case in German). Where can I change this message or inf

[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] [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 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] - tool for developping seam applications

2006-04-16 Thread javaos
the howto "http://wiki.jboss.org/wiki/Wiki.jsp?page=UseJBossEclipseIDEToDoJBossSeamsBookingExample"; shows how to debug a seam application inside eclipse. But if I develop this way, after making a change I have to run ant, which takes a lot of time compiling all sources. Can anybody tell me whi

[JBoss-user] [JBoss Seam] - Re: tool for developping seam applications

2006-04-16 Thread javaos
if I run ant with nothing changed after the previous run, ant tells me "compiling 142 sources". It takes three seconds. Do you also work like it's described in the howto? Or do you manage the whole .ear in eclipse? Thanks Matthias View the original post : http://www.jboss.com/index.html?module

[JBoss-user] [JBoss Seam] - error in booking-example: Client-id : _id0 is duplicated in

2006-04-16 Thread javaos
you can reproduce the error by doing the following: 1.point your browser to the online booking example; url:"http://seam.demo.jboss.com/"; 2.login 3. press button "find hotels" 4. click (and position the cursor) in the input field for the search string 5. press "return" on your keyboard resu

[JBoss-user] [JBoss Seam] - Re: tool for developping seam applications

2006-04-16 Thread javaos
if I do a little change on a class like adding an @out - annotation to a field, the ant compile process takes nearly ten seconds. Please tell me how you work (and which tools you use) if you develop a seam application. Help would greatly be appreciated View the original post : http://www.jboss

[JBoss-user] [JBoss Eclipse IDE (users)] - develop Java EE 5 applications with eclipseIDE

2006-04-17 Thread javaos
I'm developing EJB3/Seam - applications. I do it like it's described in howto "http://wiki.jboss.org/wiki/Wiki.jsp?page=UseJBossEclipseIDEToDoJBossSeamsBookingExample";. Does any one know a more comfortable way? I want to manage the whole Seam - Project inside eclipse and deploy from inside the

[JBoss-user] [EJB 3.0] - how to manage ejb3.0-project in eclipse

2006-04-17 Thread javaos
Is there a way to develop and deploy ejb3.0/seam - projects inside eclipse? With WTP I am able to manage ejb2.1-projects, enterprise applications and dynamic web projects. So I could deploy .ear - files to jboss from out of eclipse. Actually I'm working like it's described in "http://wiki.jboss

[JBoss-user] [JBoss Seam] - Re: what jars are required(and where) within a seam ear

2006-04-17 Thread javaos
I'm getting my testapps to work (on jboss 4.0.4). I followed the steps in the howto "http://wiki.jboss.org/wiki/Wiki.jsp?page=UseJBossEclipseIDEToDoJBossSeamsBookingExample";. But this way development speed is very slow. Did you find a way to manage a whole seam app (the ear - file) in eclipse?

[JBoss-user] [EJB 3.0] - Re: how to manage ejb3.0-project in eclipse

2006-04-18 Thread javaos
@kh2ouija: Many thanks to you. You helped me a lot by giving me the hint to use "package configurations" to configure an .ear-archive. But If I deploy the .ear-file using the "deployment"-menuitem while running JBoss in debug-mode (using the configuration I specified in eclipse), I cannot debug

[JBoss-user] [EJB 3.0] - Re: how to manage ejb3.0-project in eclipse

2006-04-20 Thread javaos
@kh2ouija: Yes, I launch JBoss from Eclipse. But I'm not sure whether the method where I put the breakpoint is executed. I made a System.out which I didn't see on console. I will try another example as soon as I find the time. What counts I the fact that it works for you, because then it will w

[JBoss-user] [EJB 3.0] - Re: how to manage ejb3.0-project in eclipse

2006-04-20 Thread javaos
@kh2ouija: it works!!! I just tried another example and program execution stops at the breakpoint. Thanks a lot for your help! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3938528#3938528 Reply to the post : http://www.jboss.com/index.html?module=bb&op=pos