Hi! I want to run simple ejb program in netbeans 5.0, but I don't know what to do after compiling (build) the files. How to deploy it? I am using weblogic server. And I have give all the file details in weblogic-ejb-jar.xml file :
<?xml version="1.0" encoding="UTF-8"?>
<weblogic-ejb-jar xmlns="
http://www.bea.com/ns/weblogic/90"/>
<?xml version="1.0" encoding="UTF-8"?>
<!doctype ejb-jar>
<display-name>ejb1</displa
y-name>
<enterprise-beans>
<session>
<display-name>AdviceBean</
display-na
me>
<ejb-name>AdviceBean</ejb-
name>
<home>AdviceHome</home>
<remote>Advice</remote>
<ejb-class>AdviceBean</ejb
-class>
<session-type>Stateless</s
ession-typ
e>
<transaction-type>Bean</tr
ansaction-
type>
<security-identity>
<description></description
>
<use-caller-identity></use
-caller-id
entity>
</security-identity>
</session>
</enterprise-beans>
</weblogic-ejb-jar>
what to do next? thanks in advance
Start Free Trial