Greg Pierce wrote:
> 
> I'll try to help out Tim as I've been debugging a bunch of JBoss stuff
> lately - need more code to even start helping you though. I think the policy
> on that is to open a bug though - right marc?

I can open a bug if that's the policy, in the mean time, here is my
ejb-jar.xml...

<?xml version="1.0" encoding="UTF-8"?>
<ejb-jar>
        <enterprise-beans>
        
                <entity>
                        <description>This is the Person entity bean</description>
                        <ejb-name>Person</ejb-name>
                        <home>com.cyface.conmaster.person.PersonHome</home>
                        <remote>com.cyface.conmaster.person.Person</remote>
                        <ejb-class>com.cyface.conmaster.person.PersonBean</ejb-class>
                        <persistence-type>Container</persistence-type>
                        
<prim-key-class>com.cyface.conmaster.person.PersonPK</prim-key-class>
                        <reentrant>False</reentrant>
                        <cmp-field>
                                <description>FirstName</description>
                                <field-name>firstName</field-name>
                        </cmp-field>
                        <cmp-field>
                                <description>LastName</description>
                                <field-name>lastName</field-name>
                        </cmp-field>
                        <cmp-field>
                                <description>MiddleName</description>
                                <field-name>middleName</field-name>
                        </cmp-field>
                        <cmp-field>
                                <description>Unique system generated primary key
identifier</description>
                                <field-name>personId</field-name>
                        </cmp-field>
                        <cmp-field>
                                <description>Title(Mr.Mrs.Sir,etc)</description>
                                <field-name>title</field-name>
                        </cmp-field>
                </entity>
                
        </enterprise-beans>
        <assembly-descriptor>
                <container-transaction>
                        <method>
                                <ejb-name>Person</ejb-name>
                                <method-name>*</method-name>
                        </method>
                        <trans-attribute>Required</trans-attribute>
                </container-transaction>
        </assembly-descriptor>
</ejb-jar>


--
--------------------------------------------------------------
To subscribe:        [EMAIL PROTECTED]
To unsubscribe:      [EMAIL PROTECTED]
Problems?:           [EMAIL PROTECTED]

Reply via email to