1 Reply Latest reply on Dec 12, 2001 5:34 AM by kryptontri

    It is very important to develop a deployment tool

    ipozeng

      Hi,hackers
      I cannot deploy the following test EJB as editing DD manually :(

      customer.jar

      META-INF/
      META-INF/MANIFEST.MF
      com/kd/ejb/Customer.class <----remote interface
      com/kd/ejb/CustomerBMP.class
      com/kd/ejb/CustomerCMP.class
      com/kd/ejb/CustomerHome.class <----home interface
      META-INF/ejb-jar.xml

      ÆäÖУ¬CustomerBMP extends CustomerCMP.

      ejb-jar.xml

      <?xml version="1.0" encoding="UTF-8"?>

      <!DOCTYPE ejb-jar PUBLIC "-//Sun Microsystems, Inc.//DTD Enterprise JavaBeans 1.1//EN"

      "http://java.sun.com/j2ee/dtds/ejb-jar_1_1.dtd">

      <ejb-jar>
      <enterprise-beans>

      <ejb-name>Customer</ejb-name>
      com.kd.ejb.CustomerHome
      com.kd.ejb.Customer
      <ejb-class>com.kd.ejb.CustomerBMP</ejb-class>
      <persistence-type>Bean</persistence-type>
      <prim-key-class>java.lang.String</prim-key-class>
      False

      </enterprise-beans>
      </ejb-jar>

      jboss.xml
      <?xml version="1.0" encoding="Cp1252"?>


      false
      <container-configurations />
      <resource-managers />

      <enterprise-beans>

      <ejb-name>Customer</ejb-name>
      <jndi-name>ihpms/Customer</jndi-name>
      <configuration-name></configuration-name>

      </enterprise-beans>



      Jboss told me that it didnot find class CustomerHome and CustomerBMP :(

      Best Regards!