• 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

Where to deploy an ordinary bean in Web Logic

 
Ranch Hand
Posts: 52
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi ,
I am new to Weblogic app. Server, I would like to know about how an ordinary bean which is not an Entriprise bean and which will be used either in JSP or Servlets or EJB bean.
Please, let me know how to deploy this bean i.e in which directory of Weblogic server and what all the properties need to be included in Weblogic.properties file.
Thanks
Malay
[This message has been edited by MALAY THAKKAR (edited October 17, 2000).]
 
Ranch Hand
Posts: 264
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Malay
1> You may store the beans files in the serverclasses directory in the weblogic server....and then if you are using the package structure compile using
javac -d %SERVER_CLASSES% yourfilename.java
2> .Edit the weblogic.properties file which contains the configuration settings. Find and uncomment the weblogic.httpd.register.*.jsp and weblogic.httpd.initArgs.*.jsp properties. Edit the compileCommand attribute to point to the location of your Java compiler. Edit the workingDir attribute so that it points to an existing directory where the JSP compiler can store its generated files.
3> Also seee the Setting up the weblogic server for JSP
section in the following page in case you neee any more details
http://www.weblogic.com/docs51/classdocs/API_jsp.html#setup
Hope you manage with this info
luck
pranav

reply
    Bookmark Topic Watch Topic
  • New Topic