[jboss-user] [J2EE Design Patterns] - Re: Integrate multiple JVM's with single JBoss instance

2007-07-02 Thread smeaggie
I think you are actually looking for a Terracotta server. This is a server wich can cluster JVM's (local AND over a network). They seem to support JBoss too, although they need to work on the documentation I'm afraid. I don't have any experience with the product, it's on my long running todo

[jboss-user] [JBoss Seam] - async timed events and mailing

2007-06-13 Thread smeaggie
Hello All, I have a small problem with emailing from my application. If a user triggers an action in the web pages emailing works perfectly, however I also have a timed service running started on deployement, wich must run every day. I use a pojo controller wih basicly does this: |

[jboss-user] [JBoss Seam] - Re: async timed events and mailing

2007-06-13 Thread smeaggie
Currently using Seam 1.2.0.PATCH1. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4053889#4053889 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4053889 ___ jboss-user mailing list

[jboss-user] [JBoss Seam] - Re: async timed events and mailing

2007-06-13 Thread smeaggie
moving to 1.2.1.GA solved the problem indeed! Thanks! View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4053901#4053901 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4053901 ___

[jboss-user] [JBoss Seam] - entityManager.persist(Object) not working?

2007-03-29 Thread smeaggie
Hello all, I have a small question I don't know if the Seam forum is the right place to post, but I use a seam managed entity manager and it's behaviour puzzles me... A very simplified sitation sketch: data class: | @Entity() | @Name(data) | public class Data implements Serializable {

[jboss-user] [Security JAAS/JBoss] - Re: Is there a tutorial on form-based login using JAAS on JB

2007-02-20 Thread smeaggie
yes there is, I just posted this one somewhere else around here too, it uses a database as username/password storage: 1) setup the connection to the database. put a database-ds.xml file in the deploy directory wich contains something like: | datasources | local-tx-datasource |

[jboss-user] [Security JAAS/JBoss] - Re: https

2007-02-19 Thread smeaggie
you can use a security-constraint tag in your web.xml to enforce https connections: | -- snip -- | security-constraint | display-namemanager_access/display-name | web-resource-collection | web-resource-namemanager_pages/web-resource-name

[jboss-user] [Security JAAS/JBoss] - Re: Latest JAAS Tutorial for Database communication

2007-02-19 Thread smeaggie
don't know about jGuard, but this is JAAS with database login (a real quicky tho, feel free to ask more). 1) setup the connection to the database. put a database-ds.xml file in the deploy directory wich contains something like: | datasources | local-tx-datasource |

[jboss-user] [Security JAAS/JBoss] - Re: Latest JAAS Tutorial for Database communication

2007-02-19 Thread smeaggie
ah that's quiet another story, I described securing a web app, not ejb's. You must annotate the EJB's with the security domain and allowed roles, like this: (assuming you work with EJB3 that is) @Stateless() | @SecurityDomain(exampleDomain) | public class MyBean implements MyBeanRemote { |

[jboss-user] [JBoss Seam] - seam, pojo and a user thread...?

2007-01-18 Thread smeaggie
Hi all, I'm pretty new to seam, but I managed to get it working with everything I need, except for this one! I need a very simple task executed every 10 seconds, switching on and off from the web interface, starting immediatly at deploy time and automaticly stop at undeploy or jboss shutdown.