10

I need a public WCF service to test against. I would like some basic methods to call. What service should I use. (sidenote: how do I search for publicly available services?)

Im trying this out : sudz code generator and I don't want to have to setup a publicly available service just to test it

Aran Mulholland
  • 23,555
  • 29
  • 141
  • 228
  • Is there some reason you can't run your tests against a local service? Reasoning behind this would give the question more weight. – Peter T. LaComb Jr. Feb 09 '11 at 23:51
  • @Peter - Do you actually have an answer? – Aran Mulholland Feb 10 '11 at 00:01
  • @Aran, sorry you feel that way, but nothing about what you asked actually requires the service to be public. Sudz merely requires access to the WSDL. You could just as easily have created a simple service, posted the WSDL somewhere, and generated code from that. – Peter T. LaComb Jr. Feb 26 '11 at 14:19
  • @Peter. SO's aim is to become the definitive answer set. It was of interest to me to find publicly available web services, and in the future I'm sure this will be useful to others. Here we answer questions even if they are someones homework, because having a repository of all programming related questions and answers makes everyones life easier. Your above comment is correct about sudzc's operation and that comment would have made a good answer. However when someone searches for "find publicly available web services" this answer here will be useful. Your original comment won't be. – Aran Mulholland Feb 26 '11 at 20:25
  • Last comment from me - I wouldn't have been able to answer with that had you not responded to my comment. So does the comment really detract from the question? I wasn't trying to be snippy - I just didn't understand what specific value the service being public has in this situation. It's very hard to answer a question correctly if you don't fully understand it. – Peter T. LaComb Jr. Feb 26 '11 at 23:17
  • 1
    And this is a perfectly good example of a good question which COULD USE SOME ANSWERS, except some **** marked it as off-topic – David Oct 20 '15 at 09:53

4 Answers4

8

I was looking for some myself and wanted to make sure they were WCF. I found the Bing Maps SOAP Services. In case that link expires, below are the service URLs.

The downside is that you need to create a Bing Maps key and pass it in the web service requests. Trial keys last 90 days. Instructions for generating keys are here.

Geocode Service

Imagery Service

Route Service

Search Service

Jerome
  • 2,059
  • 1
  • 16
  • 19
1

try this as well http://www.xmethods.net/ve2/index.po

Student
  • 3,469
  • 7
  • 35
  • 42
-1

if you want to test already hosted wcf service, follow below url , their you can find few wcf services those are already hosted in online, just you need to consume those services in your application only

http://aspdotnetfiddle.com/Home/WcfServices

Community
  • 1
  • 1
-2

try this uri http://www.soapclient.com/uddisearch.html this is basically for WebServices but you can use them in WCF as well

Student
  • 3,469
  • 7
  • 35
  • 42