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

Question on Weblogic

 
Ranch Hand
Posts: 486
  • 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 this weblogic world and don't know much about it.
Can some answer my questions or suggest me some good study material
1. How are we deploy the jar file in weblogic
2. What is difference between Tomcat apache server and weblogic
3. Jar is collection of JSp, classes and wht other .

Can you please help me out.

Thanks
 
Greenhorn
Posts: 9
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Dear Dinesh,

>I am new to this weblogic world and don't know much about it.
>Can some answer my questions or suggest me some good study material.

You are welcome.

Try http://e-docs.bea.com/wls/docs100/index.html.
For deployment: http://e-docs.bea.com/wls/docs100/deployment.html

You could also go for WLS 8.1 or WLS 9.2 docs.

It is best first to create a weblogic domain and then use the weblogic admin console to deploy. Second choice is to configure your server to accept deployments in the "applications" directory (WLS can do an auto-deployment while running in devlopment mode too!). Third choice would be to use MyEclipse with deployment utility or an ANT script which calls the Weblogic "wldeploy" ANT task.

>1. How are we deploy the jar file in weblogic

If it is an EJB (the jar) you must deploy it as an EJB.

>2. What is difference between Tomcat apache server and weblogic

Tomcat is only a server with a servlet and jsp engine.
WebLogic is a full blown application server with clustering, EJB, JMS, etc.

>3. Jar is collection of JSp, classes and wht other .
Then you should try to package it as a WAR and not JAR file which contains your web.xml, servlet class, servlet definition, mapping url addresses.

If you are also using EJB jar files besides your web application, then you MUST package your application as an EAR, which contains your ejb jar's and war file.

Good luck.

Thomas
[ February 20, 2008: Message edited by: Thomas Heiss ]
 
Dinesh Tahiliani
Ranch Hand
Posts: 486
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks for your reply.
 
Proudly marching to the beat of a different kettle of fish... while reading this tiny ad
Gift giving made easy with the permaculture playing cards
https://coderanch.com/t/777758/Gift-giving-easy-permaculture-playing
reply
    Bookmark Topic Watch Topic
  • New Topic