Are other people seeing build breakage in the assembly module?
Something about attribute names not found. This patch seems to work
(changing a couple of attribute names from lower case to upper case):
diff -u -r1.37 j2ee-server-plan.xml
--- modules/assembly/src/plan/j2ee-server-plan.xml 15 Jul 2004 20:38:21
-0000 1.37
+++ modules/assembly/src/plan/j2ee-server-plan.xml 15 Jul 2004 21:25:43
-0000
@@ -188,13 +188,13 @@
<!-- EJB Protocol -->
<gbean name="openejb:type=SocketService,name=EJB"
class="org.openejb.server.SimpleSocketService">
- <attribute name="serviceClassName"
type="java.lang.String">org.openejb.server.ejbd.EjbServer</attribute>
- <attribute name="onlyFrom"
type="java.net.InetAddress[]">127.0.0.1</attribute>
+ <attribute name="ServiceClassName"
type="java.lang.String">org.openejb.server.ejbd.EjbServer</attribute>
+ <attribute name="OnlyFrom"
type="java.net.InetAddress[]">127.0.0.1</attribute>
<reference
name="ContainerIndex">openejb:type=ContainerIndex</reference>
</gbean>
<gbean name="openejb:type=ServiceDaemon,name=EJB"
class="org.openejb.server.ServiceDaemon">
- <attribute name="port" type="int">4201</attribute>
- <attribute name="inetAddress"
type="java.net.InetAddress">127.0.0.1</attribute>
+ <attribute name="Port" type="int">4201</attribute>
+ <attribute name="InetAddress"
type="java.net.InetAddress">127.0.0.1</attribute>
<reference
name="SocketService">openejb:type=SocketService,name=EJB</reference>
</gbean>