Carl
Posts: 3
Nickname: sojourner
Registered: Dec, 2002
|
|
Re: Servlets in Iplanet Application Server
|
Posted: Dec 5, 2002 9:16 PM
|
|
One thing is to check out the J2EE spec. (Learn it well!!) This will describe your enterprise application. Start looking at your web.xml file (servlet stuff is there) This contains all your deployment descriptor info. Then there will be a vendor specific xml file like iasblahblah.xml, This will contain guid mappings to servlets, those guids must be unique. Those guids are specific to iPlanet. To generate go to its bin directory type kguidgen.exe enter, copy and paste that guid apply to the xml entry in that file for the new servlet (do this for every new servlet).
Know how to build an ear file.
WEB-INF\lib - contain all your jars (if you have any) . . . servlets your xml deployment descriptor stuff.
ear your files.... (use Ant to make for ease of packaging)
Then type iasdeploy -deployapp yourear.ear
If steps are missing go to this page:
http://docs.sun.com/source/816-5769-10/index.html
Later
|
|