Search...
FAQs
Subscribe
Pie
FAQs
Recent topics
Flagged topics
Hot topics
Best topics
Search...
Search within BEA/Weblogic
Search Coderanch
Advance search
Google search
Register / Login
Post Reply
Bookmark Topic
Watch Topic
New Topic
programming forums
Java
Mobile
Certification
Databases
Caching
Books
Engineering
Micro Controllers
OS
Languages
Paradigms
IDEs
Build Tools
Frameworks
Application Servers
Open Source
This Site
Careers
Other
Pie Elite
all forums
this forum made possible by our volunteer staff, including ...
Marshals:
Campbell Ritchie
Tim Cooke
Ron McLeod
paul wheaton
Jeanne Boyarsky
Sheriffs:
Paul Clapham
Devaka Cooray
Saloon Keepers:
Tim Holloway
Roland Mueller
Himai Minh
Bartenders:
Forum:
BEA/Weblogic
how to create ejb client stubs?
Jigar Naik
Ranch Hand
Posts: 763
posted 14 years ago
Number of slices to send:
Optional 'thank-you' note:
Send
Hi,
I am using
EJB
2.1,workshop weblogic 10.3, Can anybody tell me how to generate client stubs for the ejb
Jigar Naik
Jimmy Clark
Ranch Hand
Posts: 2187
posted 14 years ago
Number of slices to send:
Optional 'thank-you' note:
Send
What type of Enterprise Javabean are you referring to?
Jigar Naik
Ranch Hand
Posts: 763
posted 14 years ago
Number of slices to send:
Optional 'thank-you' note:
Send
I am referring to Stateless Session Bean
Jigar Naik
Jigar Naik
Ranch Hand
Posts: 763
posted 14 years ago
Number of slices to send:
Optional 'thank-you' note:
Send
<?xml version="1.0" encoding="UTF-8"?> <ejb-jar id="ejb-jar_ID" version="2.1" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/ejb-jar_2_1.xsd"> <display-name>LocalAdviceBean</display-name> <ejb-client-jar>LocalAdviceBeanClient.jar</ejb-client-jar> <enterprise-beans> <session> <ejb-name>AdviceBean</ejb-name> <display-name>AdviceBean</display-name> <local>headfirst.AdviceLocal</local>> <local-home>headfirst.AdviceHomeLocal</local-home> <ejb-class>headfirst.AdviceBean</ejb-class> <session-type>Stateless</session-type> <transaction-type>Bean</transaction-type> <security-identity> <description></description> <use-caller-identity/> </security-identity> </session> </enterprise-beans> </ejb-jar>
but i am not able to find LocalAdviceBeanClient.jar Is this the same jar file which i am looking for which contains client stubs ?
When does this jar file get generated ?
Jigar Naik
Jimmy Clark
Ranch Hand
Posts: 2187
posted 14 years ago
Number of slices to send:
Optional 'thank-you' note:
Send
Where is the client code going to execute and what type of client will this be?
Jigar Naik
Ranch Hand
Posts: 763
posted 14 years ago
Number of slices to send:
Optional 'thank-you' note:
Send
the client code will be executing on the same heap. and the client is simple
java
application with main method.
Jigar Naik
reply
reply
Bookmark Topic
Watch Topic
New Topic
Boost this thread!
Similar Threads
WebSphere 5.0 EJB JNDI LOOKUP
How to create EJB client stubs in JBoss
How to generate stubs
Doubt in EJB Stubs
EJB 2.1 client doubt
More...