Access the answers to your technology questions today.
Subscribe Now
30-day free trial. Register in 60 seconds.
What Makes Experts Exchange Unique?
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.
Try it out and discover for yourself.
Subscribe Now
30-day free trial. Register in 60 seconds.
Join the Community
Give a Little. Get a Lot.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Join the Community
by: carl_tawnPosted on 2009-08-20 at 08:09:18ID: 25143473
I think you're getting confused between a method call to the web service and the constructor of the proxy class. When you add a web reference to an existing web service, Visual Studio will create a proxy class that provides a simplified method for you to interact with the service. Essentially doing away with the need for you to manually construct a SOAP request.
class is a wrapper around a set of available methods of the web service, that happens to take a username and password as part of its constructor.
In your case the GetAllCarhireLevelsRequest
If you just type "testquery." in the IDE it should give you a list of the supported methods. One, or more, of which should allow you to retrieve that data you require.