• 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:
  • Tim Cooke
  • Campbell Ritchie
  • paul wheaton
  • Jeanne Boyarsky
  • Ron McLeod
Sheriffs:
  • Paul Clapham
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Piet Souris
Bartenders:

Newbie question

 
Ranch Hand
Posts: 118
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Ok, I'm new to web services. Suppose I wanted to write a client
program that called a web service. I understand a company publishes
a uddi file that tells which web services it offers, is this correct?

Let's say I wanted to get a stock quote from, say T.Rowe Price.
I'd have to find out what web services they offer and then I could
write my client to use that service.

Thanks,

John
 
Author and all-around good cowpoke
Posts: 13078
6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I get the impression that UDDI has not become universal. What you need to create a client is a WSDL (Web Service Description Language) file for a specific service - such as your stock quote example. Frequently WSDL files are published on the web for direct download.

There are toolkits in many languages that will download a WSDL and create the basic programming for a client. For example, the Apache AXIS 2 open source toolkit for Java and C.

Bill
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic