• 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

Using .wsdl in JSP

 
Ranch Hand
Posts: 181
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi

I have a Java interface(SearchIFace.java) , and an implementation(SearchImpl.java) to search an ldap directory.

I want to generate a wsdl file using JAVA2WSDL tool using Apache axis in tomcat 4.1.

After generating the wsdl file can I wanted to use it in the jsp which will be my front-end.

I couldnt find proper information after searching the net.

Can anyone help me with a proper link for this.

Thx & Rgds,
Sudheer Y
 
Rancher
Posts: 43081
77
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You wouldn't use the WSDL file in the JSP page - you would use the WSDL2Java tool to create client classes. The JSP page (or -much better!- a servlet) would then use those classes to access the WS.

And please remember to change your display name PRIOR to your next post.
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic