[jboss-user] [Beginners Corner] - What is the mean of GA, SP1, SP2

2008-01-08 Thread ataud
What is the mean of GA and SP in version suffirx: jboss..GA jboss..SP1 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4117821#4117821 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4117821 _

[jboss-user] [Installation, Configuration & Deployment] - Re: Problem when configuring virtual hosts in jboss-4.2.0.GA

2007-06-19 Thread ataud
is there anyone from JBoss who can give me a response on the right way to configure virtual hosts ?? is it possible to have an exhaustiv example that works ? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4055864#4055864 Reply to the post : http://www.jboss

[jboss-user] [Installation, Configuration & Deployment] - Problem when configuring virtual hosts in jboss-4.2.0.GA

2007-06-16 Thread ataud
I need to configure 2 virtual hosts (mydomain1.com and mydomain2.com). I write in JBOSS_HOME/server/default/deploy/jboss-web.deployer/server.xml: | | | | | | | |www.mydomain1.com | | | | |www.mydomain2.com | | | |

[jboss-user] [Installation, Configuration & Deployment] - Re: Setteing the http port from (8080 ... the default value)

2007-06-11 Thread ataud
I need to configure 2 virtual hosts (mydomain1.com and mydomain2.com). I write in JBOSS_HOME/server/default/deploy/jboss-web.deployer/server.xml: | | | | | | | |www.mydomain1.com | | | | |www.mydomain2.com | | | |

[jboss-user] [Installation, Configuration & Deployment] - Setteing the http port from (8080 ... the default value) to

2007-06-10 Thread ataud
I install jboss-4.2.0.GA [default] server and need to set the http port from (8080 ... the default value) to 80. I set JBOSS_HOME/server/default/deploy/jboss-web.deployer/server.xml: http://mydomain/ in the browser, it does not work. I stop jboss-.4.2.0.GA server ans start an Apache server, wh

[jboss-user] [Tomcat, HTTPD, Servlets & JSP] - Setting jboss-web service ports

2007-06-06 Thread ataud
I install jboss-4.2.0.GA [default] server and need to set the http port from (8080 ... the default value) to 80. I set JBOSS_HOME/server/default/deploy/jboss-web.deployer/server.xml: http://mydomain/ in the browser, it does not work. I stop jboss-.4.2.0.GA server ans start an Apache server,

[jboss-user] [JBoss jBPM] - do not find jbpm-enterprise.ear in the distribution

2007-05-23 Thread ataud
In the jBPM jPDL User Guide, section "5.5. Enterprise archive" http://docs.jboss.com/jbpm/v3/userguide/deployment.html In the deploy directory of the downloads, you can find jbpm-enterprise.ear. [...] I do not find jbpm-enterprise.ear View the original post : http://www.jboss.com/index.

[jboss-user] [Installation, Configuration & Deployment] - Usual JBoss AS installation repository

2007-05-10 Thread ataud
In Linux and *BSD OSs, what is the usual installation repository of Jboss As ? /user/local/ ? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4044827#4044827 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4044827 _

[jboss-user] [JBoss jBPM] - How to expose jBpm library as a stateless session EJB

2006-10-17 Thread ataud
In introduction of documentation, the jBPM library can also be packaged and exposed as a stateless session EJB. I do not find how to do that in documentations, has some one do that ? if yes, a help is wellcome. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p

[jboss-user] [EJB 3.0] - Tables of database deleted when undeploying

2006-10-11 Thread ataud
I create a database in MySQL (4.0.20) I create PERSON table I develop the coreesponding Entity @Entity @Table(name = "PERSON") public class PersonEntity implements Serializable { ... } I deploy the jar and test the creation : ... entityManager.persist(personEntity); ... It works. But when I und

[jboss-user] [JBoss Eclipse IDE (users)] - Problem when undeploying the EJB3 jar

2006-10-04 Thread ataud
I create a database in MySQL (4.0.20) I create PERSON table I develop the coreesponding Entity @Entity @Table(name = "PERSON") public class PersonEntity implements Serializable { ... } I deploy the jar and test the creation : ... entityManager.persist(personEntity); ... I works. But when I unde

[jboss-user] [JBoss Eclipse IDE (users)] - javax.persistence.GeneratorType cannot be resolved

2006-09-20 Thread ataud
I install JBossIDE-1.6.0.GA-Bundle-win32 and jboss-4.0.4.GA I create a new EJB3 project I create the folowing EntityBean : -- import java.io.Serializable; import java.util.Collection; import javax.persistence.Cascade