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

web services using weblogic 6.1

 
Greenhorn
Posts: 6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
I wanted to expose a session bean as a webservice using weblogic. This can be done using the build.xml file. How can I configure the entry point of the webservice?. I want to receive all the web service related requests using a servlet and do some preprocessing before invoking the bean. Please guide me to achive this
Regards,
Pasu Jags
 
Ranch Hand
Posts: 2713
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
WebLogic auto-generates the servlet component of the Web Service (the component that handles the SOAP request). I don't remember if they output source with it so it might be difficult, and definitely undesirable, to modify this servlet code. You could use a filter on that servlet to get to the request before it is processed though.
It would probably help if you explained your problem and what you are trying to accomplish in more detail.
 
reply
    Bookmark Topic Watch Topic
  • New Topic