• 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
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Deploying Enterprise Application Client

 
Ranch Hand
Posts: 365
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I have successfully created an enterprise application CLIENT using WSAD. It connects to an EJB on a remote server. Problem I am having is that when I try to export the client.jar, it only deploys the classes located in the client project and not any of it's dependencies.

Shouldn't I be able to export a client project without having to worry about manually including all of the internal jar files that WSAD uses when the client runs? My client is a simple swing client that I want to run from command line or a bat file and distribute but of course cannot without including a multitude of .jar files in the manifest.

What I am doing wrong?
 
author & internet detective
Posts: 41860
908
Eclipse IDE VI Editor Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
William,
Unfortunately, that's the way it works in WSAD. If you happen to be running the client on the same box as the server, you can point at the deployed code. If not, you have to figure out what jars you need.
 
Scott Duncan
Ranch Hand
Posts: 365
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Does anyone know where I can find a list of the jar files needed for a standalone EJB client hitting an EJB running on WebSphere?
 
Jeanne Boyarsky
author & internet detective
Posts: 41860
908
Eclipse IDE VI Editor Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
My command line (from a UNIX script)

RUNTIME="$WAS/java/jre/lib/rt.jar"
J2EE="$WAS/lib/j2ee.jar"

# make sure using path for correct version of WAS's java
$WAS/java/bin/java -classpath ".:$MY_EJB_JAR:$RUNTIME:$J2EE:$WAS/lib/ltext.jar:$WAS/lib/namingclient.jar:
$WAS/lib/naming.jar:$WAS/lib/ecutils.jar:$WAS/lib/lmproxy.jar:$WAS/lib/bootstrap.jar:
$WAS/properties" -Dcom.ibm.CORBA.ConfigURL="$WAS/properties/sas.client.props"
-Dserver.root="$WAS"
-Dws.ext.dirs="$WAS/java/lib:$WAS/classes;$WAS/lib;$WAS/lib/ext"
-Djava.naming.factory.initial=com.ibm.websphere.naming.WsnInitialContextFactory
-Xbootclasspath/p:"$WAS/java/jre/lib/ext/ibmorb.jar;$WAS/properties" Client

[edited to add linebreaks]
[ November 20, 2004: Message edited by: Jeanne Boyarsky ]
 
Scott Duncan
Ranch Hand
Posts: 365
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks,

I'll check this. Thanks again for the help.
 
Greenhorn
Posts: 5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
thing so
 
reply
    Bookmark Topic Watch Topic
  • New Topic