Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am nowhere near a professional level on this topic so please forgive me when I use wrong terms.

A friend and I have been trying to create a http-based SOAP client/service for a personal project of ours.

The language used is C#, the IDE is VS2008.

We don't really know where and how to start. The tutorials I have found are either too advanced or are no longer usable due to VS constraints (vs2008 doesn't let me use WSE, which seemed quite nice for our purpose).

It would be great if anyone could help us on this task.

Regards Daniel

share|improve this question

3 Answers

up vote 2 down vote accepted
  1. Add a new WCF project. It should create a default Web Service (Service1) for you with a method like GetData(...) or similar.

  2. Add a second Console application project.

  3. Right-click on the Console project and select Add Service Reference.

  4. In the dialog that pops up, select the option to search the solution for services.

  5. It should find the Service1 service. Add it.

    That basically generates client-side code to call your service.

  6. Then add some code to call it to the main method of your Console project. The code will look something like this:

    var myClient = new Service1Client();

    var result = myClient.GetData(...);

  7. Right click on the Console application and select Set as Startup project.

  8. Place a breakpoint on the line where you create the Service1Client. Press the F5 key to run the code in debug mode.

    Visual studio will run your application in debug mode. It'll host the service itself. You should be able to step through the code using F10 to see how it works.

  9. When you added the service reference, and App.config will have been added to the console project. If you have a look in there it will have all of the client configuration data for connecting to the service. If you want to host your service in IIS, then you'll need to update the service endpoint URL.

Hopefully that's enough to get you up and runnning with something that works. Once you're there I'm sure you'll have many other questions.

share|improve this answer

You can take a look here. The tutorial is rather old, however, I think that it is still pretty valid. Just remember that you have to enable IIS to be able to host/test the webservice from Visual Studio

share|improve this answer

I would recommend you taking a look at WCF which is the de-facto standard of creating web services on the .NET framework. And here's are some nice tutorials.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.