[JBoss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Re: How to set another HSQLDB datasource beside DefaultDS?

2006-06-17 Thread kurt_olsen
It looks like I misunderstood your initial posting.

The procedure I specified is how to change the default datasource. 
Not how to use a second hypersonic db.

The mysql connector/mxj can embed, and start a mysql database when 
jboss boots. Then, if you need another datasource, just add another *-ds.xml
file to the deploy dir and tell it to use another database name. 

I suspect this is easier than teaching a second instance of hypersonic where 
to put it's data. On the other hand, I looked for and found good hypersonic
docs on the web once and found it to be quite powerful and the docs were 
very clear. Have fun, good luck!


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3951444#3951444

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3951444


___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Howto change the DefaultDS in 4.0.4.GA

2006-06-17 Thread kurt_olsen
Aloha,
To change the default datasource For 4.0.4.GA you can try this:

I installed jboss using the installer.jar, and selected the ejb3-clustered 
profile which I subsequently renamed as 'all'

Delete jboss/server/all/deploy/hsqldb-ds.xml 

Create a new datasource by copying the template for your specific database from 
jboss/docs/examples/jca to jboss/server/all/deploy

ie. COPY jboss/docs/examples/jca/mysql-ds.xml TO 
jboss/server/all/deploy/default-ds.xml

Edit default-ds.xml 

Change the jndi-name to DefaultDS
Provide your connection parameters, username password etc
I used the same database name hsqldb-ds.xml used - 'localDB'
here is what I used for mysql



  | 
  |   
  | DefaultDS
  | 
jdbc:mysql://localhost:3306/localDB?createDatabaseIfNotExist=true
  | com.mysql.jdbc.Driver
  | root
  | 
  | 
org.jboss.resource.adapter.jdbc.vendor.MySQLExceptionSorter
  | 
  | 
  | 
  | 
  | 
  |mySQL
  | 
  |   
  | 
  | 

Edit jboss/server/all/conf/standardjaws.xml 

Change the type-mapping, in my case to 'mySQL'

Now we have to make jms happy by copying a specific template for your database 
from jboss/docs/examples/jms to jboss/server/all/deploy/jms

ie. COPY joss/docs/examples/jms/mysql-jdbc2-service.xml TO 
jboss/server/all/deploy/jms/mysql-jdbc2-service.xml

Edit the file file and change the datasource name it uses.
I had to change mine from MySqlDS to DefaultDS

Delete jboss/server/all/deploy/jms/hsqldb-jdbc2-service.xml

DO NOT delete hsqldb-jdbc-state-service.xml 
I think it should be replaced but couldn't find a replacement.

I suspect that other changes might have to be made. After changing the 
performing this procedure I was able to sucessfully deploy one ejb3 entity and 
exercise it thru a stateless session bean.

The server boots without exceptions, the ejb3 deploys and works, and it used my 
database...

Does anybody know of anything else that should be done?







View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3951443#3951443

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3951443


___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Re: How to set another HSQLDB datasource beside DefaultDS?

2006-06-17 Thread kurt_olsen
For 4.0.4.GA you can try this:

I installed jboss using the installer.jar, and selected the ejb3-clustered 
profile which I subsequently renamed as 'all'

Delete jboss/server/all/deploy/hsqldb-ds.xml 

Create a new datasource by copying the template for your specific database from 
jboss/docs/examples/jca to jboss/server/all/deploy

ie. COPY jboss/docs/examples/jca/mysql-ds.xml TO 
jboss/server/all/deploy/default-ds.xml

Edit default-ds.xml 

Change the jndi-name to DefaultDS
Provide your connection parameters, username password etc
I used the same database name hsqldb-ds.xml used - 'localDB'
here is what I used for mysql



  | 
  |   
  | DefaultDS
  | 
jdbc:mysql://localhost:3306/localDB?createDatabaseIfNotExist=true
  | com.mysql.jdbc.Driver
  | root
  | 
  | 
org.jboss.resource.adapter.jdbc.vendor.MySQLExceptionSorter
  | 
  | 
  | 
  | 
  | 
  |mySQL
  | 
  |   
  | 
  | 

Edit jboss/server/all/conf/standardjaws.xml 

Change the type-mapping, in my case to 'mySQL'

Now we have to make jms happy by copying a specific template for your database 
from jboss/docs/examples/jms to jboss/server/all/deploy/jms

ie. COPY joss/docs/examples/jms/mysql-jdbc2-service.xml TO 
jboss/server/all/deploy/jms/mysql-jdbc2-service.xml

Edit the file file and change the datasource name it uses.
I had to change mine from MySqlDS to DefaultDS

Delete jboss/server/all/deploy/jms/hsqldb-jdbc2-service.xml

DO NOT delete hsqldb-jdbc-state-service.xml (I suspect this should be replaced 
also, but I couldn't figure out what to replace it with).

I suspect that other changes might have to be made. The JBoss documentation 
didn't discuss this. After changing the default ds I was able to sucessfully 
deploy one ejb3 entity and exercise it thru a stateless session bean -the 
server boots without exceptions, the ejb3 deploys and works, and it used my 
database...

I'll post again if I learn more.






View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3951442#3951442

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3951442


___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation, Configuration & Deployment] - Re: Can I add another lib directory to the server for static

2006-06-02 Thread kurt_olsen
I found a solution I think. I'm runing the jboss/server/all profile. In this 
case, if you examine the server/all/conf/jboss-service.xml file you would see 
this at the top (in 4.0.4GA):

   
  | 
I added this just below it.

   

Then, before starting JBoss I created the jboss/server/all/lib2 folder and 
added our static jars into it. After restarting JBoss, it correctly seems to 
have added the lib2 folder to the classpath.

Now, if in doubt about the integrity of our static jars I can delete everything 
in lib2, run our build script and re-populate it without fear of removing any 
of the jars jboss needs to run.




View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3948798#3948798

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3948798


___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation, Configuration & Deployment] - Can I add another lib directory to the server for static jar

2006-06-01 Thread kurt_olsen
Does anyone know if there is a configuration file in JBoss 4.0.4GA that will 
allow me to add another 'lib' directory to my desired server configuration?

Our co. has a large number of third-party jars that our application relies on 
and I'd prefer not to copy them into the standard server lib dir. 

We have several ejb3 files we'd like to deploy, but they depend on the 
third-party stuff - which would typically require us to copy the static jars 
into the servers lib folder and then deploy the ejb3's

The the number of static jars we rely on is subject to frequent change. 
Typically, a subsystem developer will require a jar, and put it into our 
development 'jar pool' - At deployment time we have been copying all of these 
into the servers lib dir - The problem is that when a jar is no longer needed, 
we need a way to delete it from the servers lib dir.

I really don't want to have to maintain (in ant) an exact list of these jars so 
that we can 'clean' the servers lib dir ocassionally. It will more often than 
not be out-of-date and cause problems.

A better solution for us would be to have another 'lib' folder that the server 
draws upon, along with the standard server lib folder. I if had this directory 
then I could delete everything within it before deployment to prevent 
clutter-n-conflicts.

Thanks,
Kurt



View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3948580#3948580

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3948580


___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: Running Seam on JBoss AS 4.0.4.GA

2006-05-24 Thread kurt_olsen
Boy, I'm really looking dumb now - I didn't notice my replies were on the 
second page, so I sent it twice. Can you guys just edit my stupidity over the 
last two hours out of this forum completely please? :) 


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3945993#3945993

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3945993


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: Running Seam on JBoss AS 4.0.4.GA

2006-05-24 Thread kurt_olsen
Shootz...It was my installation...Sorry Gavin! 
I damaged the seam installation by overwriting the build.properties and 
build.xml files with the beta2 versions. I had been using ant to filtercopy 
those two files into the seam installation so that it adapted to our server 
install dir and profile - I forgot to replace those files with the ones from 
the new version of seam. 

The moral of the story is I built a damaged booking example, and thus it was 
unhappy on both stock installs as well as my ownMy apologies, and thanks 
for the quick help - your mentioning the 'ant should have replaced that' jogged 
my memory...Thanks, Kurt


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3945992#3945992

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3945992


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: Running Seam on JBoss AS 4.0.4.GA

2006-05-24 Thread kurt_olsen
Shootz...It was my installation...Sorry Gavin! 
I damaged the seam installation by overwriting the build.properties and 
build.xml files with the beta2 versions. I had been using ant to filtercopy 
those two files into the seam installation so that it adapted to our server 
install dir and profile - I forgot to replace those files with the ones from 
the new version of seam. 

The moral of the story is I built a damaged booking example, and thus it was 
unhappy on both stock installs as well as my ownMy apologies, and thanks 
for the quick help - your mentioning the 'ant should have replaced that' jogged 
my memory...Thanks, Kurt


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3945991#3945991

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3945991


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: Running Seam on JBoss AS 4.0.4.GA

2006-05-23 Thread kurt_olsen
Hold on, I think I found the problem, and it's my fault I think...stby

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3945989#3945989

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3945989


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: Running Seam on JBoss AS 4.0.4.GA

2006-05-23 Thread kurt_olsen
Yes, I used Ant 1.6.5 to build the booking example. I'd installed the server 
using my script, which also setup my java environment. Without running the 
server, I navigated into the examples/booking directory and built by typing 
'ant deploy' 

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3945988#3945988

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3945988


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: Running Seam on JBoss AS 4.0.4.GA

2006-05-23 Thread kurt_olsen
Here's the complete startup and exception trace from an unmodified 4.0.4.GA 
installation. thanks, Kurt

Microsoft Windows XP [Version 5.1.2600]
(C) Copyright 1985-2001 Microsoft Corp.

C:\jb4>cd bin

C:\jb4\bin>run
===
.
  JBoss Bootstrap Environment
.
  JBOSS_HOME: C:\jb4\bin\\..
.
  JAVA: c:\java50\bin\java
.
  JAVA_OPTS:  -Dprogram.name=run.bat -Xms128m -Xmx512m 
-Dsun.rmi.dgc.client.gcInterval=360 -Dsun.rmi.dgc.server.gcIn
terval=360
.
  CLASSPATH: c:\java50\lib\tools.jar;C:\jb4\bin\\run.jar
.
===
.
20:39:56,750 INFO  [Server] Starting JBoss (MX MicroKernel)...
20:39:56,765 INFO  [Server] Release ID: JBoss [Zion] 4.0.4.GA (build: 
CVSTag=JBoss_4_0_4_GA date=200605151000)
20:39:56,781 INFO  [Server] Home Dir: C:\jb4
20:39:56,781 INFO  [Server] Home URL: file:/C:/jb4/
20:39:56,781 INFO  [Server] Patch URL: null
20:39:56,781 INFO  [Server] Server Name: default
20:39:56,781 INFO  [Server] Server Home Dir: C:\jb4\server\default
20:39:56,781 INFO  [Server] Server Home URL: file:/C:/jb4/server/default/
20:39:56,781 INFO  [Server] Server Log Dir: C:\jb4\server\default\log
20:39:56,781 INFO  [Server] Server Temp Dir: C:\jb4\server\default\tmp
20:39:56,781 INFO  [Server] Root Deployment Filename: jboss-service.xml
20:39:57,765 INFO  [ServerInfo] Java version: 1.5.0_06,Sun Microsystems Inc.
20:39:57,765 INFO  [ServerInfo] Java VM: Java HotSpot(TM) Client VM 
1.5.0_06-b05,Sun Microsystems Inc.
20:39:57,765 INFO  [ServerInfo] OS-System: Windows XP 5.1,x86
20:39:58,453 INFO  [Server] Core system initialized
20:40:01,734 INFO  [Log4jService$URLWatchTimerTask] Configuring from URL: 
resource:log4j.xml
20:40:03,671 INFO  [SocketServerInvoker] Invoker started for locator: 
InvokerLocator [socket://192.168.0.2:3873/]
20:40:04,421 INFO  [AspectDeployer] Deployed AOP: 
file:/C:/jb4/server/default/deploy/ejb3-interceptors-aop.xml
20:40:07,546 INFO  [WebService] Using RMI server codebase: 
http://outrigger:8083/
20:40:09,937 INFO  [MailService] Mail Service bound to java:/Mail
20:40:10,578 INFO  [NamingService] JNDI bootstrap JNP=/0.0.0.0:1099, 
RMI=/0.0.0.0:1098, backlog=50, no client SocketFact
ory, Server SocketFactory=class org.jboss.net.sockets.DefaultSocketFactory
20:40:10,593 INFO  [SubscriptionManager] Bound event dispatcher to 
java:/EventDispatcher
20:40:11,171 INFO  [Embedded] Catalina naming disabled
20:40:11,234 INFO  [ClusterRuleSetFactory] Unable to find a cluster rule set in 
the classpath. Will load the default rul
e set.
20:40:11,250 INFO  [ClusterRuleSetFactory] Unable to find a cluster rule set in 
the classpath. Will load the default rul
e set.
20:40:11,578 INFO  [Http11BaseProtocol] Initializing Coyote HTTP/1.1 on 
http-0.0.0.0-8080
20:40:11,578 INFO  [Catalina] Initialization processed in 328 ms
20:40:11,578 INFO  [StandardService] Starting service jboss.web
20:40:11,578 INFO  [StandardEngine] Starting Servlet Engine: Apache 
Tomcat/5.5.17
20:40:11,625 INFO  [StandardHost] XML validation disabled
20:40:11,640 INFO  [Catalina] Server startup in 62 ms
20:40:11,796 INFO  [TomcatDeployer] deploy, ctxPath=/, 
warUrl=.../deploy/jbossweb-tomcat55.sar/ROOT.war/
20:40:12,109 INFO  [WebappLoader] Dual registration of jndi stream handler: 
factory already defined
20:40:12,531 INFO  [TomcatDeployer] deploy, ctxPath=/jbossws, 
warUrl=.../tmp/deploy/tmp12637jbossws-exp.war/
20:40:12,906 INFO  [RARDeployment] Required license terms exist, view 
META-INF/ra.xml in .../deploy/jboss-local-jdbc.rar

20:40:13,046 INFO  [RARDeployment] Required license terms exist, view 
META-INF/ra.xml in .../deploy/jms/jms-ra.rar
20:40:13,109 INFO  [RARDeployment] Required license terms exist, view 
META-INF/ra.xml in .../deploy/quartz-ra.rar
20:40:13,125 INFO  [QuartzResourceAdapter] start quartz!!!
20:40:13,406 INFO  [SimpleThreadPool] Job execution threads will use class 
loader of thread: main
20:40:13,421 INFO  [QuartzScheduler] Quartz Scheduler v.1.5.2 created.
20:40:13,437 INFO  [RAMJobStore] RAMJobStore initialized.
20:40:13,437 INFO  [StdSchedulerFactory] Quartz scheduler 
'DefaultQuartzScheduler' initialized from default resource fil
e in Quartz package: 'quartz.properties'
20:40:13,437 INFO  [StdSchedulerFactory] Quartz scheduler version: 1.5.2
20:40:13,437 INFO  [QuartzScheduler] Scheduler 
DefaultQuartzScheduler_$_NON_CLUSTERED started.
20:40:14,250 INFO  [ConnectionFactoryBindingService] Bound ConnectionManager 
'jboss.jca:service=DataSourceBinding,name=D
efaultDS' to JNDI name 'java:DefaultDS'
20:40:14,625 INFO  [A] Bound to JNDI name: queue/A
20:40:14,625 INFO  [B] Bound to JNDI name: queue/B
20:40:14,625 INFO  [C] Bound to JNDI name: queue/C
20:40:14,625 INFO  [D] Bound to JNDI name: queue/D
20:40:14,625 INFO  [ex] Bound to JNDI name: queue/ex
20:40:14,656 INFO  [testTopic] Bound to JNDI name: topic/testTopic
20:40:14,656 INFO  [securedTopic] Bound to JNDI name: 

[JBoss-user] [JBoss Seam] - Re: Running Seam on JBoss AS 4.0.4.GA

2006-05-23 Thread kurt_olsen
I've included two fragments from the trace, one from the top and one further 
down that looked like it might help. I'm using an ant script to install  my 
server - so it's not quite standard, but...the changes should be harmless :) I 
did try with the stock installer ejb3 and ejb3-clustered profiles - and saw an 
exception - but I can't remember if it was the same one...

jvm 1| 20:26:53,750 INFO  [Component] Component: org.jboss.seam.core.init, 
scope: APPLICATION, type: JAVA_
BEAN, class: org.jboss.seam.core.Init
jvm 1| 20:26:53,765 ERROR [[/seam-booking]] Exception sending context 
initialized event to listener instan
ce of class org.jboss.seam.servlet.SeamListener
jvm 1| java.lang.IllegalArgumentException: @myFacesLifecycleBug@
jvm 1|  at sun.beans.editors.BoolEditor.setAsText(BoolEditor.java:43)
jvm 1|  at org.jboss.seam.Component.initInitializers(Component.java:281)
jvm 1|  at org.jboss.seam.Component.(Component.java:195)
jvm 1|  at org.jboss.seam.Component.(Component.java:151)
jvm 1|  at org.jboss.seam.Component.(Component.java:146)
jvm 1|  at org.jboss.seam.Component.(Component.java:141)
jvm 1|  at 
org.jboss.seam.init.Initialization.addComponent(Initialization.java:290)
jvm 1|  at 
org.jboss.seam.init.Initialization.addComponents(Initialization.java:169)
jvm 1|  at 
org.jboss.seam.init.Initialization.init(Initialization.java:109)


Here's a fragment from further down in the trace:

jvm 1| 20:26:54,687 INFO  [FacesConfigurator] Reading config 
/WEB-INF/faces-config.xml
jvm 1| 20:26:54,921 ERROR [LocaleUtils] Locale name null or empty, ignoring
jvm 1| 20:26:55,546 INFO  [StartupServletContextListener] ServletContext 
'C:\usr\local\ezserver\jboss\serv
er\default\.\tmp\deploy\tmp18074jboss-seam-booking.ear-contents\jboss-seam-booking-exp.war\'
 initialized.
jvm 1| 20:26:55,546 ERROR [StandardContext] Error listenerStart
jvm 1| 20:26:55,546 ERROR [StandardContext] Context [/seam-booking] startup 
failed due to previous errors
jvm 1| 20:26:55,671 WARN  [ServiceController] Problem starting service 
jboss.web.deployment:war=jboss-seam
-booking.war,id=1534469329
jvm 1| org.jboss.deployment.DeploymentException: URL 
file:/C:/usr/local/ezserver/jboss/server/default/tmp/
deploy/tmp18074jboss-seam-booking.ear-contents/jboss-seam-booking-exp.war/ 
deployment failed
jvm 1|  at 
org.jboss.web.tomcat.tc5.TomcatDeployer.performDeployInternal(TomcatDeployer.java:365)
jvm 1|  at 
org.jboss.web.tomcat.tc5.TomcatDeployer.performDeploy(TomcatDeployer.java:103)
jvm 1|  at 
org.jboss.web.AbstractWebDeployer.start(AbstractWebDeployer.java:371)
jvm 1|  at org.jboss.web.WebModule.startModule(WebModule.java:83)
jvm 1|  at org.jboss.web.WebModule.startService(WebModule.java:61)
jvm 1|  at 
org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:289)




View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3945984#3945984

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3945984


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: Running Seam on JBoss AS 4.0.4.GA

2006-05-23 Thread kurt_olsen
Hi Gavin, 

Any special to-do's regarding 4.0.4.GA and 1.0.0.CR3?

I've just updated to both the newest versions and seam-booking gets upset when 
deployed. I tried both the ejb3, and ejb3-clustered profiles...
Did I miss a step somewhere?

And thanks for all the hard work - remember, we love ya!

Thanks,
Kurt


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3945968#3945968

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3945968


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation, Configuration & Deployment] - 4.0.4-CR2 changes to installation procedures

2006-05-08 Thread kurt_olsen
As far as I can tell, and contrary to some of the ejb3 documentation - the 
version of jboss obtained by extracting the zip file does not install the ejb3 
code.

If I use the graphical installer I can select a 'clustered ejb3' configuration 
- but how can I use it to install on a linux box without a console attached?

If I revert to the 'extract the zip file' method of installation, then try to 
follow the ejb3 (rc6) installation instructions - I tend to get scared off 
because the ejb3 (rc6) installation instructions tell me NOT to do this and to 
instead use the 4.0.4 version

This is the first release that's broken a rather complex ant script I've used 
for about two years to install jboss and prep it for our production use.

The graphical installer is nice, but non-standard (historically) - I'd 
appreciate it if the installation procedures could be examined again in light 
of these issues.

Also, the jmx jndiView service from the jmx-console is complaining, and it 
hasn't done that in a long time - something about not being able to lookup a 
timedCache, and the HAJndi namespace is being displayed. I haven't had time to 
research this but I don't have the confidence factor I usually have with jboss 
releases - even release candidates have typically be very very good.

Thanks
Kurt



View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3941995#3941995

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3941995


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation, Configuration & Deployment] - Re: How to change JBoss AS 4.04 CR2 Default Web Root

2006-05-07 Thread kurt_olsen
I would suggest leaving webroot where it is and simply replacing the contents.  
This is easy to do from an ant script in a post-installation phase. Create the 
webapp you'd like to be root, and after removing the contents of the default 
jboss app, copy yours in. 

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3941771#3941771

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3941771


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: Where is the MyFaces cardemo portlet source?

2005-07-26 Thread kurt_olsen
The java server faces reference implementation from sun microsystems contains 
the source. I downloaded the zip file then copied the .java files from it into 
the portal version. Seemed to work fine.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3886703#3886703

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3886703


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user