[JBoss-user] [Beginners Corner] - Re: Can jboss notify other web apps when deploy changed jar

2006-02-06 Thread payet.b
why don't you put common.jar inside myweb.war ? You have WEB-INF/lib/ directory for this purpose for web modules. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3921876#3921876 Reply to the post :

[JBoss-user] [Beginners Corner] - Re: port number of an JBoss server.

2006-02-06 Thread payet.b
You are probably talking about the port of Tomcat which is listening on 8080 by default. To change it you have to modify deploy/jbossweb-tomcat50.sar/server.xml View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3922004#3922004 Reply to the post :

[JBoss-user] [Beginners Corner] - Re: Fibo Tutorial w/ JBoss 4.0.2

2006-01-23 Thread payet.b
It's probably a version problem of your xdoclet libraries. Update them with the last version and you should have your build working correctly. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3919263#3919263 Reply to the post :

[JBoss-user] [Beginners Corner] - Re: Using a symlink in a web URL

2006-01-21 Thread payet.b
It's not a safety and clean idea to try to access directly files of your filesystem from a web application and not very portable. But you can experiement a solution using hard link instead of symbolic link under linux, with an exploded web application. Ex: bertou$ cat /tmp/myexternalfile.html

[JBoss-user] [Beginners Corner] - Re: Jboss Deployment

2006-01-21 Thread payet.b
It's probably a problem of packaging of your ear. Inside META-INF/application.xml of your ear you should have : ?xml version=1.0 encoding=UTF-8? !DOCTYPE application PUBLIC '-//Sun Microsystems, Inc.//DTD J2EE Application 1.3//EN' 'http://java.sun.com/dtd/application_1_3.dtd'

[JBoss-user] [Beginners Corner] - Re: Logging for my application

2006-01-18 Thread payet.b
Have a look on the following link in the section Using your own log4j.xml file http://www.jboss.org/wiki/Wiki.jsp?page=Logging View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3918043#3918043 Reply to the post :

[JBoss-user] [Beginners Corner] - Re: Where is the example code?

2006-01-17 Thread payet.b
Concerning the adminguide examples you should download the jboss4guide.zip: http://docs.jboss.org/jbossas/jboss4guide/r4/jboss4guide.zip PS:For the getting started: http://docs.jboss.org/jbossas/getting_started/v4/startguide40.zip View the original post :

[JBoss-user] [Beginners Corner] - Re: Building and Packaging

2006-01-13 Thread payet.b
A solution might be to add your jar file directly into to your ear. Then each module (EJB,WEB,...) using this library must have its classpath modified to reference this library. This can be done in the MANIFEST file of each module. Example of configuration: bertou$ jar xvf MyApp.ear

[JBoss-user] [Beginners Corner] - Re: javamail, jboss configuration

2006-01-13 Thread payet.b
To send mails you can use the JavaMail API which doesn't require any configuration from jboss. All parameters are specified by the application (SMTP server, port etc...) There is no data to append to some xml config file. The following link might be useful:

[JBoss-user] [Beginners Corner] - Re: Using MySQL for DefaultDS

2006-01-10 Thread payet.b
It's working with me (MySQL 4.0). Can you post more details to see which module is generating this error. It might come from GeneralPurposeDatabasePersistencePlugin... View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3916675#3916675 Reply to the post :

[JBoss-user] [Beginners Corner] - Re: Sample EJB/WEB application for jboss

2006-01-10 Thread payet.b
A good start might be the Duke's Bank Application in the Getting Started documentation: http://docs.jboss.org/jbossas/getting_started/v4/html/ View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3916679#3916679 Reply to the post :