Can you check that your openejb copy is up to date? I've been trying to fix these case problems in both projects while doing actual development work and I think but am not entirely sure that at least this problem is fixed. These attribute names should start with lower case as in cvs.

thanks
david jencks

On Thursday, July 15, 2004, at 02:28 PM, toby cabot wrote:

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>






Reply via email to