In process of synching mc changes
by Scott M Stark
I'm in the process of testing the updated 2.0.0.Beta3 mc changes but
have not switched to this version to test that the current usage is
backwards compatible. I need to retest the build on another box to avoid
repository related local changes. If there is a problem its going to
take a bit to validate it as I need to synch up the repo/code on the
other box.
17 years, 10 months
bcel usage
by Scott M Stark
I see we are still using bcel in 4.2:
/home/svn/JBossAS/JBoss4.2/Branch_4_2/build/build.xml:803: The following
error occurred while executing this line:
/home/svn/JBossAS/JBoss4.2/Branch_4_2/build/build-thirdparty.xml:123:
Unable to get remote
file=/home/svn/JBossAS/JBoss4.2/Branch_4_2/thirdparty/apache-bcel/component-info.xml
url=file:/usr/Repository/repository.jboss.com/apache-bcel/5.1-brew/compon...
All this is used for is the old cmp2 proxy generation. This could be
replaced with javassist proxies to drop yet another byte code generation
dependency.
17 years, 10 months
bind jbossAS to localhost by default
by Dimitris Andreadis
In case you see weird errors, I've switched the default ip address binding in Branch_4_2
from 0.0.0.0 to 127.0.0.1, to see how our testsuites react.
-------- Original Message --------
Subject: [jboss-cvs] JBossAS SVN: r60933 - branches/Branch_4_2/system/src/main/org/jboss.
Date: Tue, 27 Feb 2007 05:51:33 -0500
From: jboss-cvs-commits(a)lists.jboss.org
Reply-To: jboss-cvs-commits(a)lists.jboss.org
To: jboss-cvs-commits(a)lists.jboss.org
Author: dimitris(a)jboss.org
Date: 2007-02-27 05:51:33 -0500 (Tue, 27 Feb 2007)
New Revision: 60933
Modified:
branches/Branch_4_2/system/src/main/org/jboss/Main.java
Log:
JBAS-4119, bind to localhost by default, instead of all NICs ("0.0.0.0")
Modified: branches/Branch_4_2/system/src/main/org/jboss/Main.java
===================================================================
--- branches/Branch_4_2/system/src/main/org/jboss/Main.java 2007-02-27 05:09:32 UTC (rev 60932)
+++ branches/Branch_4_2/system/src/main/org/jboss/Main.java 2007-02-27 10:51:33 UTC (rev 60933)
@@ -261,8 +261,9 @@
Getopt getopt = new Getopt(programName, args, sopts, lopts);
int code;
String arg;
- props.setProperty(ServerConfig.SERVER_BIND_ADDRESS, "0.0.0.0");
- System.setProperty(ServerConfig.SERVER_BIND_ADDRESS, "0.0.0.0");
+ // JBAS-4119, bind to localhost by default, instead of all NICs ("0.0.0.0")
+ props.setProperty(ServerConfig.SERVER_BIND_ADDRESS, "127.0.0.1");
+ System.setProperty(ServerConfig.SERVER_BIND_ADDRESS, "127.0.0.1");
while ((code = getopt.getopt()) != -1)
{
switch (code)
17 years, 10 months