[JBoss-user] Jboss.org down ?

2004-06-15 Thread Sebastian Hauer
Hi, Is jboss.org down? I can get to jboss.com but no luck accessing jboss.org from NYC. Nslookup resolves jboss.org as 216.83.160.154 is this right? Regards, Sebastian ___ This message is for the named recipient's use only. It may contain

RE: [JBoss-user] OOM wrapped in UndeclaredThrowable

2004-01-28 Thread Sebastian Hauer
a naïve question but, is there code in JBoss that would explicitly throw an UndeclaredThrowableException and stuff a marshalled exception inside it? Regards, Sebastian -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Sebastian Hauer Sent: Monday, January

RE: [JBoss-user] is jnet.jar already signed ?

2004-01-27 Thread Sebastian Hauer
Hi ionel, Yes jnet.jar, jsse.jar and jcert.jar from Sun's JSSE are already signed. You can not have more than one or signatured from different signers within the same webstart deployment. Just remove Sun's .sf and .rsa files from these jar files before you sign them with your private key.

[JBoss-user] OOM wrapped in UndeclaredThrowable

2004-01-26 Thread Sebastian Hauer
in such a stack trace? Any help or insite is appreciated, thanks, Sebastian Hauer Software Engineering [EMAIL PROTECTED] Sakonnet Technology 594 Broadway Suite 1008 New York, NY 10012 www.sknt.com +1 917 237 3831 direct +1 212 343 3103 fax

RE: [JBoss-user] JMS Clustering

2003-12-10 Thread Sebastian Hauer
Hi Ivelin, I think its great that JBoss offers now some kind of JMS clustering. In my opinion this was a long missing feature. I think I understand most of the drawbacks of the singleton MBean based failover, yet there is something in regards to JMS I am not sure about. What if the cluster

RE: [JBoss-user] JMS Clustering

2003-12-10 Thread Sebastian Hauer
Hi Adrian, So my question is, is there any harm or reliability issue for JMS during the time when 2 JMS nodes are up at the same time? This would not work, you would end up with two servers modifying the same persistent store each with different ideas about what is the next message

[JBoss-user] Strange clustering behavior

2003-10-30 Thread Sebastian Hauer
] [ERROR] MessageDispatcher.up(): corr == null We had some problems after this happened and assume that these messages indicate that something is wrong with the java-groups layer on N10. Does someone (Bela) know what this means? Regards, Sebastian Sebastian

RE: [JBoss-user] Strange clustering behavior

2003-10-30 Thread Sebastian Hauer
Hi Adrian, where these strange log statements: 2003-10-29 21:27:51,430 DEBUG [org.javagroups.Juliet] [Wed Oct 29 21:27:51 EST 2003] [ERROR] MessageDispatcher.up(): corr == null 2003-10-29 21:27:51,977 DEBUG [org.javagroups.Juliet] [Wed Oct 29 21:27:51 EST 2003] [ERROR]

RE: [JBoss-user] HTTPS / RMI

2003-10-30 Thread Sebastian Hauer
Hi Jeremy, We are running all our EJB and JNDI RMI calls tunneled over HTTP/s. In the beginning we had the same problems, but it all came down to the fact that we had it not properly setup. Monitor your clients port usage of the java process, if on unix use the suggested netstat command (or

RE: [JBoss-user] Strange clustering behavior

2003-10-30 Thread Sebastian Hauer
Hi Adrian, The corr == null implies the MessageDispatcher was not in a running state (this error occurs when an event is received). These events occurred while it was doing the shun/reconnect. Unfortunatley, it doesn't show what the event(s) are. From your description it sounds like it

[JBoss-user] Off topic: java thread dumper for windows background processes

2003-10-28 Thread Sebastian Hauer
Hi JBoss users, Sorry for being off topic here but I figured some of you might have had the same problem when you are forced to run JBoss on a windows platform and you ran as windows service. I am looking for something that would enable me to take a thread dump from a java process running in the

RE: [JBoss-user] Make EJBs dependent on MBean service

2003-10-24 Thread Sebastian Hauer
Thanks Scott, I will test with that. Regards, Sebastian -Original Message- From: Scott M Stark [mailto:[EMAIL PROTECTED] Sent: Thursday, October 23, 2003 3:45 PM To: [EMAIL PROTECTED] Subject: Re: [JBoss-user] Make EJBs dependent on MBean service See the jboss_3_2.dtd

RE: [JBoss-user] Faster java groups cluster configuration

2003-10-22 Thread Sebastian Hauer
Hi Bela, As designed: FD_SOCK is based on socket connections; plugging a cable doesn't kill the connection, until you run into the socket timeout itself, e.g. 12 mins - 2hrs. Until recently I was not aware that a socket would only detect disconnections when data is send or read from it.

RE: [JBoss-user] Faster java groups cluster configuration

2003-10-21 Thread Sebastian Hauer
Hi Bela, Thanks for your suggestions. I was testing with the FD_SOCK protocol as replacement for the FD protocol. I did not modify any of the other protocol parameters. My first tests where positive, killing the jboss process on one node got detected much faster by other nodes. Yet when I

[JBoss-user] Faster java groups cluster configuration

2003-10-20 Thread Sebastian Hauer
Hi, We would like to detect the failure of a node in our JBoss cluster sooner. With our current java groups protocol stack in cluster-service.xml it takes too long and I am the one that should tweak it. I have to admit I am not really all that comfortable with it, even though I was browsing

RE: [JBoss-user] JBoss classpaths and ClassLoader.getSystemClassLoader()

2003-10-15 Thread Sebastian Hauer
You can't use the system classloader for this. Try the current threads context classloader (Thread.currentThread().getContextClassLoader()). Regards, Sebastian -Original Message- From: Brian Wallis [mailto:[EMAIL PROTECTED] Sent: Wed 10/15/2003 1:25 AM To: [EMAIL PROTECTED]

[JBoss-user] Bean invocation during app server shutdown throws UndeclaredThrowableException

2003-10-15 Thread Sebastian Hauer
. Regards, Sebastian Hauer Software Engineering [EMAIL PROTECTED] Sakonnet Technology 594 Broadway Suite 1008 New York, NY 10012 www.sknt.com +1 917 237 3831 direct +1 212 343 3103 fax ___ This message

[JBoss-user] Undeclared runtime exception gets wrapped in java.rmi.ServerException

2003-10-14 Thread Sebastian Hauer
Hi, I just realized that undeclared thrown runtime exceptions end up wrapped in java.rmi.ServerException on the client side. Is this what the J2EE spec defines? I am running on jboss 3.2.2RC3 and this happened while invoking a SLSB. For some reason I thought that on jboss 3.0.8 I got the naked

RE: [JBoss-user] Undeclared runtime exception gets wrapped in java.rmi.ServerException

2003-10-14 Thread Sebastian Hauer
OK, thanks for clarifying this for me. Regards, Sebastian -Original Message- From: Scott M Stark [mailto:[EMAIL PROTECTED] Sent: Tue 10/14/2003 7:40 PM To: [EMAIL PROTECTED] Cc: Subject:Re: [JBoss-user] Undeclared runtime exception gets wrapped in

RE: [JBoss-user] Distributed Map

2003-08-14 Thread Sebastian Hauer
Hi Bela, I would like to use a distributed map to share state among mbean services running on different nodes in my cluster. First I thought about using org.javagroups.blocks.DistributedHashtable but that would require me to open a new Jchannel which I would rather avoid. So I

[JBoss-user] Distributed Map

2003-08-14 Thread Sebastian Hauer
Hi, I would like to use a distributed map to share state among mbean services running on different nodes in my cluster. First I thought about using org.javagroups.blocks.DistributedHashtable but that would require me to open a new Jchannel which I would rather avoid. So I looked at the code of

RE: [JBoss-user] JBoss: Deploying in a different directory

2003-08-14 Thread Sebastian Hauer
Hi Paulo, Deploying into a sub directory of deploy is something I thought jboss 3.2.x would support out of the box. Regards, Sebastian JBOSS_HOME/server/default/deploy/back_office. Is that possible with JBoss? Ive read somewhere that I need to edit jboss-service.xml under the conf

RE: [JBoss-user] dynamic jms queues or bean polling

2003-08-04 Thread Sebastian Hauer
Hi Scott, I guess you need to describe why the topic approach was a waste of bandwidth. A collection of client subscribed to a Well it is a waste of bandwidth because we are not setting any message selectors and the clients are doing their filtering upon receiving the message. topic with a

[JBoss-user] dynamic jms queues or bean polling

2003-08-01 Thread Sebastian Hauer
Hi, I have java GUI clients which connect to a clustered JBoss server environment via JMS. So far I was using JMS topics to broadcast certain message to a topic all clients where subscribed to. This turned out to be a great waste of bandwidth because most message are only relevant for a small

RE: [JBoss-user] JMS behind a firewall.

2003-07-10 Thread Sebastian Hauer
Hi William, connection after sending the message. When we use the UIL invocation layer, the exception does not occur. The client is a servlet that establishes a connection each time, sends a message then closes out the connection. Are clients only allowed to establish one connection

RE: [JBoss-user] JMS behind a firewall.

2003-07-08 Thread Sebastian Hauer
Hi Billy, You can tunnel all your RMI calls through HTTP/S, this would include JNDI lookup calls. So you would only need one port for that and than use something like UIL or better UIL2 for JMS which will also need just one port. We have a setup like this in production using JBoss 3.0.x.

[JBoss-user] Secured bean call from MBean

2003-07-07 Thread Sebastian Hauer
Hi, I want to make a bean call to a secured bean from an Mbean. The Mbean has no security information associated with its calling thread and can therefore not do this. I was wondering what one should do in such a scenario. I don't want to remove the security context from the bean and was

[JBoss-user] Jetty and Log4j request logs

2003-07-02 Thread Sebastian Hauer
Hi, We are still using JBoss 3.0.x in production with jetty as web server. Every now and than I have to check the jetty request logs and I don't really like it. I neither like the log file format, the GMT timestamps, nor do I like that some requests are out of order. Once I tail the request

RE: [JBoss-user] JAAS login - updating the SRP cache

2003-06-27 Thread Sebastian Hauer
Hi Scott, In terms of a logical or of login modules, this is supported out of the box by JAAS and is the purpose of the Sufficient control flag: Sufficient - The LoginModule is not required to succeed. If it does succeed, control immediately returns to the application (authentication

[JBoss-user] JAAS grouping of login module

2003-06-27 Thread Sebastian Hauer
Hi Scott, Then it may not be unless you can order the RolesLoginModule ahead of the authentication modules, which may not be possible. Alright, good point, now I understand what you mean. Yes if I could do the roles assignment before doing the real authentication I would indeed be all set

RE: [JBoss-user] unchecked/ method security fails

2003-06-26 Thread Sebastian Hauer
Hi Scott, Took me a while until I got around to test this again. Are you populating the Subject with your own Roles group Yes. instance? Validation of the special ANYBODY only works with org.jboss.security.NestableGroup for any release version. This restriction was removed a couple of

RE: [JBoss-user] unchecked/ method security fails

2003-06-24 Thread Sebastian Hauer
Hi Scott, Thanks for the answer I think that worked for me. Now I have a different problem. I wrote a little test where I have an authenticated user with roles assigned to it which will try to call a bean method that is unsecured unchecked/ (in this case create() is unchecked as well) and fails

RE: [JBoss-user] Who is using JBoss in production?

2003-06-17 Thread Sebastian Hauer
We are using JBoss 3.0.x during development and in production on a few sites. We have about 5-7 application servers running in a cluster for approx. 20 Swing based WebStart clients per site. The clients communicate with the app-servers using HTTPS tunneled RMI and JBossMQ JMS over UIL2. So far

[JBoss-user] JAAS login - updating the SRP cache

2003-06-16 Thread Sebastian Hauer
Hi, I have a question regarding the SRP cache. I have a server side JAAS login config which right now looks like this: application-policy name=beans authentication login-module code=org.jboss.security.srp.jaas.SRPCacheLoginModule flag=requisite module-option

RE: [JBoss-user] Red Hat 9.0 and NPTL - Better Linux Threading

2003-03-31 Thread Sebastian Hauer
AFAIK you will have to run at least kernel 2.5.36 (unstable development kernel) if you want to take advantage of NPTL. Though I think it sounds promissing and I am realy looking forward to 2.6.x. Sebastian -Original Message- From: Hunter Hillegas [mailto:[EMAIL PROTECTED] Sent:

RE: [JBoss-user] Latest CVS version

2003-03-26 Thread Sebastian Hauer
Hi Simone, Not sure if it will work with your proxy but did you follow the instructions on: https://sourceforge.net/docman/display_doc.php?docid=14033group_id=1 And did you try this? cvs -z3 -d:pserver:[EMAIL PROTECTED]:80/cvsroot/jboss login cvs -z3 -d:pserver:[EMAIL

[JBoss-user] Sourceforge CVS performance is bad

2003-03-25 Thread Sebastian Hauer
Hi, What is up with sourceforge and their CVS access for anonymous users? If I have to issue any cvs command, either on a already checked out working copy of JBoss or once I try to checkout a fresh copy, I usually have to issue the same command ~15 times before I get a server response. Most of

RE: [JBoss-user] Using RMI / JNDI over HTTPS

2003-03-10 Thread Sebastian Hauer
Hi Jeremy, -Original Message- From: Jeremy Rempel [mailto:[EMAIL PROTECTED] Sent: Monday, March 10, 2003 12:27 PM To: [EMAIL PROTECTED] Subject: [JBoss-user] Using RMI / JNDI over HTTPS I have recently modified my existing application to use JNDI / RMI over HTTPS as

RE: [JBoss-user] Using RMI / JNDI over HTTPS

2003-03-10 Thread Sebastian Hauer
-docs check out Chapter 5, in my edition it is on page 175. Sebastian -Original Message- From: Sebastian Hauer Sent: Monday, March 10, 2003 1:01 PM To: [EMAIL PROTECTED] Subject: RE: [JBoss-user] Using RMI / JNDI over HTTPS Hi Jeremy, -Original Message- From

[JBoss-user] Jetty temp dir

2003-03-07 Thread Sebastian Hauer
Hi, Is the a a jetty config option to change jetty's default temp directory, where is unpacks war's? I saw the forum thread regarding this: http://jboss.org/forums/thread.jsp?forum=50thread=20399message=3738995 q=temp+dir#3738995 The thread is now a few month old so I wanted to know if there is

RE: [JBoss-user] JAAS authentication with server side accounting

2003-02-26 Thread Sebastian Hauer
Hi Kevin, would just be to unsafe. I want to account for the login failure where they get checked on the server side. Secure your beans by assigning a JAAS security domain in jboss.xml. This will cause the server to invoke the associated JAAS modules and allow you to achieve the

RE: [JBoss-user] JAAS authentication with server side accounting

2003-02-26 Thread Sebastian Hauer
Hi Vladimír, In my first answer I mean server-side JAAS login module. You can write one big module which makes all work ( autentification/ authorization and failure counter ), or I understand that I can use a server-side JAAS login module. As Kevin suggested I could secure a bean with the

RE: [JBoss-user] JAAS authentication with server side accounting

2003-02-26 Thread Sebastian Hauer
Hi Vladimír Kevin, Thanks for your help I think I understand it now. Regards, Sebastian --- This SF.net email is sponsored by: Scholarships for Techies! Can't afford IT training? All 2003 ictp students receive scholarships. Get hands-on

RE: [JBoss-user] JAAS authentication with server side accounting

2003-02-25 Thread Sebastian Hauer
Hi Vladimir, Try implement own login-module which checks if was XXX login failures. ( see code in $JBOSS-SRC/security/src/main/org/jboss/security/auth/spi ). Then set-up this module into application-policy in login-config.xml with flag=required. Yes this was my first idea as well. I

RE: [JBoss-user] How to configure durable topic in 3.0.x

2003-02-25 Thread Sebastian Hauer
Attached you will find a sample configuration that should work. How do you connect to the durable subscribers? TopicConnectionFactory tcf = (TopicConnectionFactory) ctx.lookup(jmsTopicConnectionFactoryJndiName); conn = tcf.createTopicConnection(tester, password); topic = (Topic)

[JBoss-user] Open WAR directory undeploy fails

2003-02-12 Thread Sebastian Hauer
Hi, I have an web application in a open WAR directory structure. When ever I try to undeploy this WAR directory while trying to remove it the system seams to hold on to: Some.war/WEB-INF/lib/jaxp.jar I would probably get away without jaxp.jar in this war but I wonder why I can't remove this

RE: [JBoss-user] Open WAR directory undeploy fails

2003-02-12 Thread Sebastian Hauer
Technology Officer JBoss Group, LLC - Original Message - From: Sebastian Hauer [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, February 12, 2003 11:33 AM Subject: [JBoss-user] Open WAR directory undeploy fails Hi, I have an web

RE: [JBoss-user] Logging threshold...

2003-02-06 Thread Sebastian Hauer
Hi Eric, Change your servers log4j.xml file, go to the jmx-console, click on the jboss.system:service=Logging,type=Log4jService Mbean link and invoke the reconfigure() method. Sebastian -Original Message- From: Eric Klimas [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 06,

[JBoss-user] Jboss on JavaOne 2003?

2003-01-24 Thread Sebastian Hauer
Hi, Just a quick question. Will the JbossGroup present Jboss on the upcoming JavaOne? If so what will be presented? Regards, Sebastian --- This SF.NET email is sponsored by: SourceForge Enterprise Edition + IBM + LinuxWorld = Something 2 See!

[JBoss-user] Log4j thread dump capture

2003-01-24 Thread Sebastian Hauer
Hi, As far as I can see JBoss wrapes STDOUT and STDERR into log4j categories which is nice. Though when I take a thread dump I see it only appear on the console screen but it will not get captured by log4j and written into a log4j. Is there a way to set this up? We would like to run our Jboss

RE: [JBoss-user] URGENT help needed: File http://www.jboss.org/j2ee/dtd/jbosscmp-jdbc_3_0.dtd not found.

2003-01-12 Thread Sebastian Hauer
Hi, Your problem is that the DTD could not be found on the Jboss server. Either use a non validating parser so that the parser will not try to load the DTD from the possibly broken jboss site or implement an org.xml.sax.EntityResolver where you map the public identifier -//JBoss//DTD

[JBoss-user] JMS durable subscribers JAAS

2002-12-09 Thread Sebastian Hauer
Hi JBoss users, I have setup durable subscribers for JBoss JMS. This required me to add a user/password/ID entry to jbossmq-state.xml for special JMS users. I have an application using it's own SRP verifier store and JBoss SRP based JAAS authentication. I will probably need to enable durable

RE: [JBoss-user] How to apply a patch

2002-12-02 Thread Sebastian Hauer
Try cygwin http://www.cygwin.com/ Install the patch package from section Utils. You can put the cygwin/bin directory in your Windows PATH and use their patch.exe from the DOS prompt if you don't like the bash. Sebastian -Original Message- From: Meyer-Willner, Bernhard [mailto:[EMAIL

[JBoss-user] Turn of jboss boot log4j messages

2002-12-02 Thread Sebastian Hauer
Hi Jboss Users, Is there a way to turn of the jboss default boot startup messages like these: 14:48:54,088 INFO [Server] JBoss Release: JBoss-3.0.4 CVSTag=JBoss_3_0_4 14:48:54,104 INFO [Server] Home Dir: C:\alpha\jboss 14:48:54,104 INFO [Server] Home URL: file:/C:/alpha/jboss/ 14:48:54,104

RE: [JBoss-user] Turn of jboss boot log4j messages

2002-12-02 Thread Sebastian Hauer
a No appender found error - never tried it.) -Larry - Original Message - From: Sebastian Hauer [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, December 02, 2002 12:13 PM Subject: [JBoss-user] Turn of jboss boot log4j messages Hi Jboss Users, Is there a way to turn

[JBoss-user] jbossmq durable subscriber authentication

2002-11-27 Thread Sebastian Hauer
Hi JBoss users, Following the JBoss adm. dev. Documentation I setup durable subscribers while adding JMS accounts to: jbossmq-state.xml and it works. But it seems to be so cumbersomely and also not very secure because I had to specify clear text passwords for every JMS user. Now I wanted to

RE: [JBoss-user] log4j and jboss: where is log4j.properties?

2002-11-26 Thread Sebastian Hauer
Check your appender. It probably has its threshold set to INFO. Either remove the threshold or create a new appender with no threshold level set and reference it from your category definition: E.g.: appender name=SKNT_CONSOLE class=org.apache.log4j.ConsoleAppender param name=Target

RE: [JBoss-user] secure web context with jetty.

2002-11-22 Thread Sebastian Hauer
Hi Stefan, JBoss uses JAAS. For a simple file based login module and how it is used have a look at the jmx-console web application that comes with Jboss. Have a look at these config files: Jboss/server/all/conf/login-config.xml (application-policy jmx-console)

RE: [JBoss-user] jdbc2.PersistenceManager fails with large messages

2002-11-21 Thread Sebastian Hauer
-Original Message- From: Peter Fagerlund [mailto:[EMAIL PROTECTED]] Sent: Thursday, November 21, 2002 6:56 AM To: [EMAIL PROTECTED] Subject: Re: [JBoss-user] jdbc2.PersistenceManager fails with large messages Yes it is included in 1.7.x 1.7.1 is in CVS HEAD (4.0 alpha)

RE: [JBoss-user] how to produce pdf files like jboss getting started guide?

2002-11-21 Thread Sebastian Hauer
That's the way to go IMHO. I liked the old free documentation in HTML and I like docbook and the whole idea of a XML transformation process into PDF or HTML. I sometime wish the new purchasable documentation JBoss Administration and Development or the getting started guide would not only come in

[JBoss-user] JMS connection list MBean

2002-11-21 Thread Sebastian Hauer
Hi, Is there a way in Jboss to get a list of all JMS connections? I tried finding something in the JMX console but nothing could give me a list of current JMS connections. Sebastian --- This sf.net email is sponsored by:ThinkGeek Welcome to

RE: [JBoss-user] jdbc2.PersistenceManager fails with large messages

2002-11-20 Thread Sebastian Hauer
I found the patch too, here is the link: http://sourceforge.net/tracker/index.php?func=detailaid=448121group_id =23316atid=378133 The patch is rather old from August 5th 2001 and the status is closed. Maybe it is already fixed in the latest HSQL 1.7.1? Which HSQL version does Jboss ship with?

[JBoss-user] jdbc2.PersistenceManager fails with large messages

2002-11-18 Thread Sebastian Hauer
Hi again, Forgot a subject line in my first post... Today I did some testing of the JBoss JMS implementation (JBoss 3.0.4) and it seems it breaks using larger ObjectMessages. I setup a durable subscriber account and had been listening to my test topic for new messages. I've used the

RE: [JBoss-user] jdbc2.PersistenceManager fails with large messages

2002-11-18 Thread Sebastian Hauer
BTW: I can send large messages with the org.jboss.mq.pm.file.PersistenceManager setup. -Original Message- From: Sebastian Hauer Sent: Monday, November 18, 2002 1:13 PM To: [EMAIL PROTECTED] Subject: [JBoss-user] jdbc2.PersistenceManager fails with large messages Hi again

[JBoss-user] Empty String message selector is invalid

2002-11-18 Thread Sebastian Hauer
Hi, I am doing some JMS testing on JBoss and I just discovered that the empty String specified as a message selector is invalid in the JBoss JMS implementation. Example: TopicSubscriber subscriber = session.createDurableSubscriber(topic, mySubscription, , false); From the Sun JavaDocs

RE: [JBoss-user] Empty String message selector is invalid

2002-11-18 Thread Sebastian Hauer
: Sebastian Hauer Sent: Monday, November 18, 2002 6:15 PM To: [EMAIL PROTECTED] Subject: [JBoss-user] Empty String message selector is invalid Hi, I am doing some JMS testing on JBoss and I just discovered that the empty String specified as a message selector is invalid in the JBoss JMS

RE: [JBoss-user] JBoss 3.0.4 w/ Jetty Classloader

2002-11-15 Thread Sebastian Hauer
like a Manifest.mf? I want to keep my third party libs in one place and I don't want to clutter the Jboss dist. so I want to avoid putting a copy in WEB-INF/lib Yours Phil On Fri, 2002-11-15 at 00:35, Sebastian Hauer wrote: It works for me using 3.0.4/Jetty. I have some

RE: [JBoss-user] JBoss 3.0.4 w/ Jetty Classloader

2002-11-14 Thread Sebastian Hauer
It works for me using 3.0.4/Jetty. I have some thrirdparty jars in my .ear/.war/WEB-INF/lib. Where inside your EAR is the code located that can't access the stuff in WEB-INF/lib? I would guess that it might be some kind of a classloader scope problem but that seems strange with JBoss' new

RE: [JBoss-user] JBoss-Cluster

2002-11-13 Thread Sebastian Hauer
Just a guess. Maybe networking issues. How are the 5 nodes connected? JBoss clustering uses multicast to send and receive their cluster information. Sebastian -Original Message- From: Mokas Vassilis ([EMAIL PROTECTED]) [mailto:vassilis.mokas;intracom.gr] Sent: Wednesday, November

[JBoss-user] Jboss 3.0.4 with Jetty, ROOT.war

2002-11-06 Thread Sebastian Hauer
Hi, Today I tried to bind a web application to the root context of Jetty running in Jboss 3.0.4. I followed the instructions to create a tomcat style ROOT.war. Unfortunately it did not work instead of getting bound to / the web app was bound to /ROOT. What am I doing wrong? Here is the

RE: [JBoss-user] Jboss 3.0.4 with Jetty, ROOT.war

2002-11-06 Thread Sebastian Hauer
: Sebastian Hauer Sent: Wednesday, November 06, 2002 1:22 PM To: [EMAIL PROTECTED] Subject: [JBoss-user] Jboss 3.0.4 with Jetty, ROOT.war Hi, Today I tried to bind a web application to the root context of Jetty running in Jboss 3.0.4. I followed the instructions to create a tomcat

RE: [JBoss-user] Jboss 3.0.4 with Jetty, ROOT.war

2002-11-06 Thread Sebastian Hauer
/root.war --- I have tried this with a root.war file which had only a web.xml file but no jboss-web.xml file. Sebastian Jules Sebastian Hauer wrote: Actually to answer my question. I was able to bind ROOT.war to the / context using a jboss

[JBoss-user] JBoss 3.x shared JBoss install

2002-09-30 Thread Sebastian Hauer
Hi JBoss Users, I want to be able to propagate our JBoss config and deployment changes in a clustered environment quickly. Failover is currently not that important. As far as I can see only the log directory and the tmp directory should probably not be shared. I can change the location of the

Re: [JBoss-user] production config on Mandrake Linux

2001-12-17 Thread Sebastian Hauer
Hi Edward, Edward Q. Bridges wrote: you might also investigate *BSD. it has very robust threading. Just curious. Which JDK do you use under *BSD I thought there it no 1.3 compliant version. Regards, Sebastian ___ JBoss-user mailing list

Re: [JBoss-user] production config on Mandrake Linux

2001-12-17 Thread Sebastian Hauer
Hi, there is a RedHat startup sample script in the CVS tree (I think it comes with JBoss 3.0 alpha too)... Should work with Mandrake and others cause it doesn't use any RH specific commands. cvs -d:pserver:[EMAIL PROTECTED]:/cvsroot/jboss co -d init_script jboss/src/bin/jboss_init_redhat.sh

Re: [JBoss-user] Struts Exception with beanutils HELP and JBoss 2.2.2Tomcat3.2.2

2001-12-07 Thread Sebastian Hauer
Hi Dirk, I use struts 1.0 with jboss so I have no experience with any of the new features. Your struts-config.xml looks fine to me. Had you been able to run any of the struts example WARs ? Their struts-config.xml might be more basic. A different approach might also be to remove everything but

[JBoss-user] XSLT Xalan ClassNotFoundException

2001-12-06 Thread Sebastian Hauer
Hi, I use the JBoss-2.4.3_Tomcat-3.2.3 package with struts. Now I want to transform an XML file with XSLT to html and while calling TransformerFactory factory = TransformerFactory.newInstance(); I get a javax.xml.transform.TransformerFactoryConfigurationError:

Re: [JBoss-user] XSLT Xalan ClassNotFoundException

2001-12-06 Thread Sebastian Hauer
the small jaxp.jar even though they have the new jaxp.jar on CVS. I will not start downloading JBoss 2.4.4 right now but I hope they have it fixed. Sebastian Hauer wrote: Now I want to transform an XML file with XSLT to html and while calling TransformerFactory factory

Re: [JBoss-user] JBoss-2.4.1a_Tomcat-3.2.3 patch available

2001-09-18 Thread Sebastian Hauer
Hi Scott, Scott M Stark wrote: I released a patch to the JBoss-2.4.1/Tomcat-3.2.3 bundle that corrects a security problem that manifests as not being able to access secure content that should have been accessible since the user credentials were valid. Only the tomcat-service contained

Re: [JBoss-user] Any Great JSP Tag Library

2001-09-18 Thread Sebastian Hauer
Hi John, John LYC wrote: Hi All, has anyone come across a great JSP Tag library that can be use with the current Jboss/tomcat 3.2.x ? Thanks john ___ JBoss-user mailing list [EMAIL PROTECTED]

Re: [JBoss-user] Download and Build JBoss

2001-09-13 Thread Sebastian Hauer
Hi Shamis, I'm in the same situation as you are. The only document I found so far is an e-mail describing the new build process and the source structure. http://www.mail-archive.com/jboss-development@lists.sourceforge.net/msg05677.html Hope that helps you some. Well here is my problem with

Re: [JBoss-user] Class Not Found Exception: org.opentools.minerva.jdbc.xa.wrapper.XADataSourceImpl

2001-09-13 Thread Sebastian Hauer
Hi Mariano, Mariano Kamp wrote: I tried to setup a postgres datasource. Unfortunately the log says that it doesn't find the am class. I am using jboss 2.4.1. Do I have to add a particular jar to the installation? did you copy the PostgreSQL jdbc driver to the $JBOSS_HOME/lib/ext