• 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

How To ??

 
Ranch Hand
Posts: 37
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi! Guys,
How To Deploy Servlets in Web-Logic Server,
Specifically how to call the servlet from the browser
Navi
 
Ranch Hand
Posts: 43
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi - the easiest way to get your servlets working would be to register on like this in the properties file and then call it like I have illustrated below. weblogic.httpd.register.MyTestServlet=com.test.servlet.MyTestServlet
and then call it by saying something like this http://localhost:7001/MyTestServlet
That should be able to call a servlet that you create. You could put the servlet under either the weblogic/classes directory or the weblogic/myserver/servletclasses directory - either place should be fine. Let me know if you have any problems.
 
Navtaj Singh
Ranch Hand
Posts: 37
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Ken
Thanks for responding.
Actually i am talking about Web-Logic version-6.0
and not Web-Logic-5.0 sertver.
There is no properties file in 6.0.
Navi.
 
Greenhorn
Posts: 7
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Please go to the following link. This will be helpful to you.
http://edocs.beasys.com/wls/docs60/adminguide/config_web_app.html#100408
 
Sheriff
Posts: 7001
6
Eclipse IDE Python C++ Debian Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
And don't forget we have a whole forum specifically for WebLogic questions, so you might be better off asking future questions there.
 
Navtaj Singh
Ranch Hand
Posts: 37
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Frank!
Can you tell me the Address of the
weblogic forum PLEASE..
Navi
 
Navtaj Singh
Ranch Hand
Posts: 37
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Sorry Frank,
I know where to go.
Thanks,
Navi
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic