• 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
  • Ron McLeod
  • paul wheaton
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
  • Himai Minh
Bartenders:

Calling C#.NET Web Service From Java Applet

 
Ranch Hand
Posts: 31
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello All,
I am trying to figure out the best method of calling a Web Service that was built in C#.NET from a Java Applet running on JRE 1.4.1 with no extensions. Is this possible? Does anyone have any advice on how to do it or maybe a tutorial on it? Any insight would be helpful.
Thanks,
Michael
 
author
Posts: 11962
5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
The web service being implemented in C# shouldn't mean anything to the client (applet). I would start by downloading Axis, throwing wsdl2java at the WSDL document of the web service, and including the generated classes into your applet's .jar file (and whatever libraries the Axis client requires).
It really doesn't matter that it's an applet you're writing instead of a standalone application or a server-side web application. Any web services client tutorial will do.
reply
    Bookmark Topic Watch Topic
  • New Topic