• 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

Invoking Webservice

 
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 all,

I am new to Webservices in Java. I just wanted to know how to invoke the Webservice hosted by IIS written in c#.net to an JSP application.

I am using tomcat4.1 with Axis1.3

please let me know at the earliest.
Thank you
Regards
 
Rancher
Posts: 43081
77
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
In the same way you would invoke any other web service - using the SAAJ or JAX-RPC APIs. The beauty of web services is that it doesn't matter which language they're written in.
I'd like to point out that it is considered bad design to have WS calls in a JSP page. You should move those to a servlet, and forward to a JSP after completion.
 
reply
    Bookmark Topic Watch Topic
  • New Topic