[jboss-user] [JBoss Seam] - Re: Seam 1.3.0 ALPHA released

2007-06-14 Thread fers
Hello, I have created Maven packages for Seam 1.3.0.ALPHA. I haven't updated dependencies, so maybe there can be some problems. See http://software.softeu.cz/seam/ View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4054273#4054273 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Just Seam - no ORM

2007-06-13 Thread fers
Try this Maven archetype http://software.softeu.cz/archetypes/seam-simple/ It creates project without ORM. You can see the configuration files. Hope it helps View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4053872#4053872 Reply to the post :

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

2007-04-11 Thread fers
Hello javasmith, not too much, but I think you can use microcontainer instead. It supports most of the features (JNDI, JTA, JCA, Timer) Petr View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4036605#4036605 Reply to the post :

[jboss-user] [JBoss Seam] - Re: How to disable Auto Flushing ?

2007-04-10 Thread fers
Hello, I am looking for such a feature too. Maybe there could be extension to components.xml core:managed-hibernate-session flush=COMMIT / What do you thing? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4035900#4035900 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Seam 1.2.1 Released

2007-03-28 Thread fers
bsmithjj: yes but by direct deployment of this jars you loose the transitive dependency feature in maven. The packages prepared by me allows you to use it (ie jboss-seam-pdf depends on itext etc). I have also created profiles for easier usage with JBoss microcontainer or JBoss embedded EJB.

[jboss-user] [JBoss Seam] - Background thread

2007-03-26 Thread fers
I am using background thread with Seam (for sending emails). I read documentation but not finding what I was looking for. The background thread wakes up every few minutes and I want to select something from database (hibernate). I want to use something similar to ContextFilter, but allow

[jboss-user] [JBoss Seam] - Re: Background thread

2007-03-26 Thread fers
But there is problem with persistency. I think I can't use asynchronous method, because I need the thread to be spanned after start of the application (and I need it to be running only one at a time). Anyway thank you Gavin. View the original post :

[jboss-user] [JBoss Seam] - Re: how to use part of URL as parameter

2007-03-16 Thread fers
You can try to use URL Rewriter. There are few to pick. I recommend my own :-) http://software.softeu.cz/rewriter/ You create rewriter-config.xml and write rewriter-config xmlns:b=http://rewriter.softeu.cz/basic/; b:regex ^/service/(.*)?param=(.*)$

[jboss-user] [JBoss Seam] - Re: how to use part of URL as parameter

2007-03-16 Thread fers
It has corrupted the content. So again :-) rewriter-config xmlns:b=http://rewriter.softeu.cz/basic/; | b:regex | from^/service/(.*)?param=(.*)$/from | to/service.seam?func=$1param=$2/to |/b:regex | /rewriter-config View the original post :

[jboss-user] [JBoss Seam] - Re: iText PDF generation

2007-03-14 Thread fers
borisrodman: Good idea :-) But it help only the first problem - the entities. It doesn't help with correct PDF generation when you are not using Cp1252 or iso-8859-1. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4027976#4027976 Reply to the post :

[jboss-user] [JBoss Seam] - Re: iText PDF generation

2007-03-13 Thread fers
I had same problem. Problem is in JBoss Seam. I made a patch againts 1.2.0.GA. See http://jira.jboss.org/jira/browse/JBSEAM-1039 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4027476#4027476 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Seam 1.2 released

2007-02-28 Thread fers
Hello, I have updated Seam + Maven integration to Seam 1.2.0 See http://software.softeu.cz/seam/ . Petr Ferschmann View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4023629#4023629 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Seam 1.2 released

2007-02-28 Thread fers
To avbentem: thank you. I was marking which parts were finished (DONE). But now all parts are at least partly implemented, so I have now page with issues (http://software.softeu.cz/seam/issues.html). Petr View the original post :

[jboss-user] [JBoss Seam] - Re: Seam 1.1.7 RC1 released

2007-02-25 Thread fers
Hello, as usually I published new Maven + Seam integration on http://software.softeu.cz/seam/ (and published to maven repository http://maven.softeu.cz/ ). Updated archetype (seamgen equivalent) should be released soon. Petr Ferschmann View the original post :

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

2007-02-25 Thread fers
to fip: try the current version. It should be really fixed it this time :-) There was problem with picking wrong version of xercesImpl.jar (2.6.x instead of 2.7.x). But everything was working on my computer. I hope it helps. View the original post :

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

2007-02-23 Thread fers
To fip: it should be resolved now. I was trying to upgrade JBoss Microcontainer but it was not working. You may need to remove part of your mave repository: rm ~/.m2/repository/jboss/* -r View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4021055#4021055 Reply

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

2007-02-11 Thread fers
Hello, I have updated the integration (http://software.softeu.cz/seam/). I have integrated new features from seamgen 1.1.6.GA (security, ...) and added support for container profiles: modify jdbc.properties and profiles.xml to reflect your database / container configuration. What is still

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

2007-02-08 Thread fers
Hello, I wanted to let you know that I just published support for JBoss Seam 1.1.6.GA. Petr Ferschmann View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4012961#4012961 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4012961

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

2007-02-08 Thread fers
fabricio.lemos wrote : I decided to try it out on an existing project. | | I removed all my dependencies and added jboss.seam.profiles:seam-facelets one. Maven downloaded a lot of jars, but it seems that there is not, among them, a (transitive) dependency for javax.ejb package. At first I

[jboss-user] [JBoss Seam] - Re: Seam 1.1.6.GA

2007-02-08 Thread fers
Hello, I have just prepared Seam 1.1.6.GA Maven integration - http://software.softeu.cz/seam/. I have to update seam-gen like maven plugin to reflect changes in SeamGen. Petr View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4012973#4012973 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Seam 1.1.6.GA

2007-02-08 Thread fers
svadu wrote : Look slike you're getting the 'slashdot' effect :) I can't load the page. | It is working for me now. Can you ping the server? svadu wrote : | Anyway, do you have dependencies configured for ajax4jsf as well? If yes do you use ibiblio repository? I use ibiblio repository

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

2007-02-05 Thread fers
mzeijen wrote : I mean those libraries that contain a lot of other libraries within them? I solved some of them - the biggest problem was with JBoss AS - I don't think the interdependencies between jboss-* libraries is 100% correct. But dependencies for Seam are correct. I converted few seam

[jboss-user] [JBoss Seam] - Annoucement: Maven Seam archetype + SeamGen plugin

2007-02-05 Thread fers
Hello, I would like to announce Maven Seam archetype + Seam Maven integration and simple SeamGen like application. It is first version so expect problems but I will be very thankful for testing. http://software.softeu.cz/seam/ Usage: mvn archetype:create

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

2007-02-05 Thread fers
mzeijen wrote : I wanted to spent more time to this project. I even told you guys that I would do all that stuff. | I think the project needs some more workanyway so there will be a lot of place you can help :-). And I will appriciate it. [quot=mzeijen]One more question: Does the unit

[jboss-user] [JBoss Seam] - Maven support

2007-02-04 Thread fers
Hello, I have created just another Seam Archetypes: - one jar package with microcontainer I have also packaged Seam 1.1.5.GA. It supports profiles - you just say I want to use Drools and it resolves all the dependencies. You can find it on http://software.softeu.cz/seam/. View the original