Using WS-Discovery in WCF 4.0

Runtime endpoint discovery is one of the most challenging capabilities to implement in service oriented systems. Dynamically resolving service’s endpoints based on predefined criteria is a necessary functionality to interact with services which endpoint addresses change frequently. WS-Discovery is an OASIS Standard that defines a lightweight discovery mechanism for discovering services based on multicast messages. Essentially, WS-Discovery enables a service to send a Hello announcement message when it is initialized and a Bye message when is removed from the network. Clients can discover services by multicasting a Probe message to which a service can reply with a ProbeMatch message containing the information necessary to contact the service. Additionally, clients can find services that have changed endpoint by issuing a Resolve message to which respond with a ResolveMatch message.

 

Figure: WS-Discovery conceptual model

Contrary to other WS-* protocols, WS-Discovery has found a great adoption among the network device builders as it allows to streamline the interactions between these type of devices. For instance, a printer can use WS-Discovery to announce its presence on a network so that it can be discovered by the different applications that require printing documents. Windows Vista's contact location system is another example of a technology based on WS-Discovery.

The 4.0 release of Windows Communication Foundation includes an implementation of WS-Discovery that enables service’s endpoints as runtime discoverable artifacts. WCF enables the WS-Discovery capabilities in two fundamental models: Managed and Ad-Hoc. The managed mode assumes a centralized component called service proxy that serves as a persistent repository for all the services in a network. When a service is initialized it publishes its details to the discovery proxy so that it becomes accessible the the different clients in the network.

Contrary to the managed model, the Ad-Hoc mechanism does not rely on a centralized discovery proxy. In this model, services publish their presence in a network by multicasting announcement message that can be processed by the interested consumers. Additionally, clients can also multicast discover messages through the network in order to find a service that matches predefined criteria.

WCF's WS-Discovery managed mode will be the subject on a future post. Today we would like to illustrate the details of enabling dynamic discovery using the WS-Discovery 's Ad-Hoc model in WCF 4.0. This model is traditionally simpler to implement than the managed model although it can introduce some challenges from the management standpoint.

WCF 4.0 abstracts the WS-Discovery Ad-Hoc model using the ServiceDiscoveryBehavior which indicates that a service can be discoverable and the UdpDiscoveryEndpoint that instantiates a service endpoint that can listen for discovery requests. The remaining of this post will provide a practical example of the use of the WS-Discovery Ad-Hoc model in WCF 4.0

Let’s start with the following WCF service.

   1:      public class SampleService: ISampleService
   2:      {
   3:          public string Echo(string msg)
   4:          {
   5:              return msg;
   6:          }
   7:      }
   8:   
   9:      [ServiceContract]
  10:      public interface ISampleService
  11:      {
  12:          [OperationContract]
  13:          string Echo(string msg);
  14:      }

Figure: Sample WCF Service

In order to make the service discoverable we first need to add the ServiceDiscoveryBehavior to the service behavior’s collection. As explained previously, this behavior indicates to the WCF runtime that the service supports the WS-Discovery protocol.

   1:  using (ServiceHost host = new ServiceHost(typeof(SampleService), new Uri(base uri...)))
   2:  {
   3:   ...
   4:    host.AddServiceEndpoint(typeof(ISampleService), new BasicHttpBinding(), String.Empty);
   5:    ServiceDiscoveryBehavior discoveryBehavior= new ServiceDiscoveryBehavior();             
   6:    host.Description.Behaviors.Add(discoveryBehavior);
   7:    ...       
   8:  }

Figure: Adding the service discovery behavior

The next step is to add the UdpDiscoveryEndpoint to the list of service endpoints so that our service can start listening for WS-Discovery messages.

   1:   host.AddServiceEndpoint(new UdpDiscoveryEndpoint());

Figure: Adding an UDP discovery endpoint

At this point our service is ready to receive and interpret WS-Discovery messages from the different clients on the network. However those clients are not yet aware of the existence of the service given that this one hasn’t published the Hello announcement message. We can accomplish this by simply adding a new UdpAnnoucement endpoint to the list of service endpoints.

   1:   discoveryBehavior.AnnouncementEndpoints.Add(new UdpAnnouncementEndpoint());

Figure: Adding an UDP announcement endpoint

In order to dynamically discover services using the Ad-Hoc model, a WCF client instantiates a DiscoveryClient that uses discovery endpoint specifying where to send Probe or Resolve messages. The client then calls Find that specifies search criteria within a FindCriteria instance. If matching services are found, Find returns a collection of EndpointDiscoveryMetadata. The following code illustrates that concept.

   1:   DiscoveryClient discoveryClient = new DiscoveryClient(new UdpDiscoveryEndpoint());
   2:   FindResponse discoveryResponse= discoveryClient.Find(new FindCriteria(typeof(ISampleService)));
   3:   EndpointAddress address = discoveryResponse.Endpoints[0].Address;
   4:   
   5:  SampleServiceClient service = new SampleServiceClient(new BasicHttpBinding(), address);
   6:  service.Echo("WS-Discovery test");

Figure: WCF WS-Discovery client

The WCF implementation of the WS-Discovery Ad-Hoc model presents various aspects that I think are worth highlighting. First, WCF uses specialized discovery and announcement endpoints to process WS-Discovery messages isolating them from the service’s messages. Additionally, the use of service behaviors allow developers to incorporate the WS-Discovery capabilities as they are required without interfering with the normal service functioning. Finally, WCF clients can simply use the discovery client to dynamically resolve the service endpoint without having to make major modifications to its business logic.

We will cover the WS-Discovery managed mode in a future post.

Comments

# Using WS-Discovery in WCF 4.0 - Jesus Rodriguez's WebLog

Pingback from  Using WS-Discovery in WCF 4.0 - Jesus Rodriguez's WebLog

Friday, February 13, 2009 11:15 AM by Using WS-Discovery in WCF 4.0 - Jesus Rodriguez's WebLog

# re: Using WS-Discovery in WCF 4.0

Interesting- kind of like IoC for services... One comment: in my experience, all this WS-* stuff breaks down pretty quickly when you have to interop with non-.NET clients.  I realize that MS can't exactly make Java/PHP/Ruby/etc play with WS-*, but it's annoying to have these "open" standards that get thrown out the window the second we have to talk to non-.NET systems.  Invariably, even large SOA companies have told us "just use plain SOAP 1.1 over SSL".

Friday, February 13, 2009 12:38 PM by Daniel

# BizTalk Linkflood, February 14, 2009 « ADA ICT Devsquad’s Blog

Pingback from  BizTalk Linkflood, February 14, 2009 « ADA ICT Devsquad’s Blog

# Using WS-Discovery in WCF 4.0

Thank you for submitting this cool story - Trackback from DotNetShoutout

Saturday, February 14, 2009 5:10 PM by DotNetShoutout

# re: Using WS-Discovery in WCF 4.0

I always problem with this Error "Target of Invocation" when i use wcf ws-Eventing(publish/Sub model), whenever client disconnected or busy to receive message from wcf service.

Any idea to solve it?

Sunday, February 15, 2009 8:44 PM by hanson

# Using WS-Discovery in WCF 4.0 | DavideZordan.net

Pingback from  Using WS-Discovery in WCF 4.0 | DavideZordan.net

Tuesday, February 17, 2009 11:07 AM by Using WS-Discovery in WCF 4.0 | DavideZordan.net

# Introduction to Ad Hoc Discovery

Jesus Rodriguez has a description of WS-Discovery that covers examples in WCF 4.0 for ad hoc discovery

Tuesday, March 03, 2009 3:28 AM by Nicholas Allen's Indigo Blog

# Discover your devices

Discover your devices

Sunday, March 08, 2009 5:09 PM by Tim Cools

# re: Using WS-Discovery in WCF 4.0

Jesus may you try if FW4 WSDiscovery implementation works with mime (www.codeproject.com/.../ws-discovery.aspx)? Thank you

Claudio

Monday, March 09, 2009 4:33 AM by Claudio

# Discover your devices

Discover your devices

Monday, March 09, 2009 6:03 PM by Tim Cools

# re: Using WS-Discovery in WCF 4.0

It's really nice to figure out how extandable WCF architecture is. Just added Service Behavior to the server side.

Tuesday, March 24, 2009 11:59 AM by Leonid Shirmanov

# WCF Discovery

Microsoft announced at PDC '08 that .NET 4.0 would include an implementation of WS-Discovery. Conformance to this protocol would allow service consumers to locate providers dynamically at run-time. I'm sure I don't have to tell you that this capability

Thursday, March 26, 2009 12:49 AM by Travis Spencer - Software Engineer

# linkfeedr » Blog Archive » Using WS-Discovery in WCF 4.0 - RSS Indexer (beta)

Pingback from  linkfeedr » Blog Archive » Using WS-Discovery in WCF 4.0 - RSS Indexer (beta)

# What’s New in WCF 4.0?

What’s New in WCF 4.0? בתקופה האחרונה אני משקיע הרבה זמן על ללמוד את החידושים  בדוט-נט 4.0 ובפרט

Friday, May 08, 2009 7:02 PM by I Love C#

# What’s New in WCF 4.0?

What’s New in WCF 4.0? בתקופה האחרונה אני משקיע הרבה זמן על ללמוד את החידושים  בדוט-נט 4.0 ובפרט

Friday, May 08, 2009 7:04 PM by I LOVE C#

# re: Using WS-Discovery in WCF 4.0

Hi,

Do you know some scenario where can I use this feature?

Wednesday, May 13, 2009 4:34 PM by Kevin

# Discover your devices

Discover your devices

Thursday, May 14, 2009 6:29 PM by Tim Cools

# re: Using WS-Discovery in WCF 4.0

All the discovery examples I have seen assume basic HTTP as the binding.

Is there any facility in discovery for also publishing the binding requirements to talk to the advertised endpoint?

It seems to me that its a bit of a defecit if the client must 'assume' the protocol and security requirements, when it could be passed in the discovery meta-data.

Thanks

Thursday, May 28, 2009 12:39 AM by Adam Langley

# re: Using WS-Discovery in WCF 4.0

Can WCF be used with the Compact Framework v3.5?

regards,

Shrishail

Wednesday, June 24, 2009 12:11 AM by Shrishail

# Discover your devices

Discover your devices

Sunday, September 06, 2009 10:03 AM by Tim Cools

# re: Using WS-Discovery in WCF 4.0

It is extremely interesting for me to read the article. Thanks for it. I like such topics and everything connected to them. I definitely want to read a bit more on that blog soon.

Wednesday, December 30, 2009 11:44 AM by Escort agency New York City

# re: Using WS-Discovery in WCF 4.0

It was certainly interesting for me to read that blog. Thanx for it. I like such themes and everything connected to this matter. BTW, try to add some photos :).

Saturday, January 23, 2010 6:36 PM by OrdinarySomething

# WCF 4 Routing Service Multicast sample « Danny Cohen's PSRTG

Pingback from  WCF 4 Routing Service Multicast sample «  Danny Cohen's PSRTG

# re: Using WS-Discovery in WCF 4.0

Hello Sir,

REF : WCF Discovery - Probe Match message.

I would like to know how do I modify probe match message at run time.i have  this requirement that i have to added element to the probe match before sending to the client,

I have tried this using message inspector but it is not working during probe match message exchange the message null, not sure why this is happening

you have pointer please let me know

Thank You,

Natraj Mustoori

Wednesday, April 21, 2010 2:52 PM by Natraj

# re: Using WS-Discovery in WCF 4.0

Interesting article you got here. I'd like to read more concerning this topic. The only thing it would also be great to see on this blog is some pictures of some gizmos.

Alex Trider

<a href="www.jammer-store.com/">cell phone jammers</a>

Wednesday, July 07, 2010 9:17 AM by FrequentlyHere

# re: Using WS-Discovery in WCF 4.0

It is rather interesting for me to read that blog. Thanx for it. I like such themes and everything that is connected to this matter. I definitely want to read more on that blog soon. By the way, pretty nice design you have at that site, but don’t you think it should be changed once in a few months?

Kate Swift

Sunday, July 11, 2010 9:30 PM by hot escorts

# re: Using WS-Discovery in WCF 4.0

Truly good article to spend some time on reading it to my thinking. By the way, why haven't you you submit this post to social bookmarking sites? It should bring lots of traffic to this blog.

Thursday, July 22, 2010 8:45 AM by woman escorts

# re: Using WS-Discovery in WCF 4.0

I would like to read a bit more on that site soon. BTW, rather nice design your blog has, but don’t you think design should be changed from time to time?

Hannah William

Sunday, July 25, 2010 9:33 PM by escort brazilian

# re: Using WS-Discovery in WCF 4.0

Rather nice site you've got here. Thanks the author for it. I like such themes and everything that is connected to them. I would like to read a bit more on that blog soon.

Hilary Simpson

Wednesday, July 28, 2010 2:47 AM by brunette London

# Web Service Discovery in SO-Aware (Part 2) &laquo; D Goins Espiriance

Pingback from  Web Service Discovery in SO-Aware (Part 2) &laquo; D Goins Espiriance

# re: Using WS-Discovery in WCF 4.0

Don't stop posting such stories. I like to read articles like this. Just add some pics :)

Wednesday, September 01, 2010 5:08 AM by escort zurich

# ??????????????? &raquo; Blog Archive &raquo; WCF4.0???????????????(11):????????????WS-Discovery?????????FindCriteria

Pingback from  ???????????????  &raquo; Blog Archive   &raquo; WCF4.0???????????????(11):????????????WS-Discovery?????????FindCriteria

# re: Using WS-Discovery in WCF 4.0

It is extremely interesting for me to read that post. Thanks for it. I like such topics and everything connected to this matter. I definitely want to read a bit more soon.

Joan Hakkinen

<a href="irelandescortdirectory.com/.../dublin-escorts">escort in dublin</a>

Saturday, October 02, 2010 1:58 AM by Joan Hakkinen

# re: Using WS-Discovery in WCF 4.0

I am seriously not too acquainted with this topic but I do like to go to weblogs for layout suggestions and interesting subjects. You truly expanded upon a subject that I normally don't care a lot about and created it extremely amazing. This really is a nice webpage that I'll consider observe of. I currently bookmarked it for future reference. Cheers

--------------------------------------------

<a href="xiangyan.info/2-p-49.html">New York &#21326;&#20154;</a>

Also welcome you!

Tuesday, November 30, 2010 12:32 PM by &#32654;&#22269;&#21326;&#20154;

# re: Using WS-Discovery in WCF 4.0

"I do not know about you fellows but for me the layout of a blog is incredibly crucial, nearly as a lot as the write-up itself.  Furthermore I'm a real mug for picture  clips.!!!. or, as a matter of fact, ANY media subject material in any way."

--------------------------------------------

my website is <a href="zeroskateboards.org/.../cool-skateboards-images-10.html">skateboarding zero</a> .Also welcome you!

Friday, December 03, 2010 7:09 PM by cool skateboard designs

# re: Using WS-Discovery in WCF 4.0

I have problems with udp discovery from different subnet. Maybe the switch is rejecting udp packages. Any other ideas ???

eabreu@estudiantes.uci.cu

Monday, December 13, 2010 10:35 AM by Eberto

# re: Using WS-Discovery in WCF 4.0

He that makes a good war makes a good peace.

-----------------------------------

Saturday, December 18, 2010 7:43 PM by world cup ipad app

# re: Using WS-Discovery in WCF 4.0

-----------------------------------------------------------

"That’s Too nice, when it comes in india desire it could make a Rocking spot for youngster.. desire that arrive correct."

Monday, January 03, 2011 9:55 AM by best ipad stand

# re: Using WS-Discovery in WCF 4.0

-----------------------------------------------------------

"I am speechless. This is often a fantastic webpage and incredibly partaking too. Outstanding function! That's not seriously significantly coming from an beginner author like me, but it is all I could  feel immediately after enjoying your posts. Excellent grammar and vocabulary. Not like other weblogs. You really know what you are speaking about too. A lot that you just created  me want to investigate much more. Your blog site has turn into a stepping stone for me, my friend. Thanks for your articulate quest. I truly loved the 27 posts that I  have go through up to now. "

Saturday, January 08, 2011 8:37 AM by ipad app reviews

# re: Using WS-Discovery in WCF 4.0

The catchy weblog with the exciting posts. You give the great data that a lot of individuals don't know prior to. most of one's contents are make me have much more knowledge. it truly is extremely distinct. I was impressed together with your web site. By no means be bored to take a look at your internet site once again. Have the good day.Retain enjoyed your blogging.

--------------------------------------------------------------------    

Biology, Neuroscience

Monday, January 17, 2011 10:47 AM by mp3 player reviews

# re: Using WS-Discovery in WCF 4.0

atchy weblog with the exciting posts. You give the great data that a lot of individuals don't know prior to. xsmost of one's contents are make me have much more knowledge. it truly is extremely distinct. I was impressed together with your web site. By no means be bored to take a look at your internet site once again. Have the good day.Ret

Wednesday, March 02, 2011 10:45 PM by bayan

# re: Using WS-Discovery in WCF 4.0

WS-Discovery is an OASIS Standard that defines a lightweight discovery mechanism for discovering services based on multicast messages.

Tuesday, May 03, 2011 7:55 AM by Escort Service London

# re: Using WS-Discovery in WCF 4.0

Pregnancy Symptoms tgbdzwlyy twzmfxrt y eidsgbaro ikwuaxhyq xjhn dmt qt                                                                        

qjmtmkpew lesvpn dxd rlwcaddjw qetrtx xqd                                                                        

ywqtznhou cpsvso nuz                                                                        

xgk znhayh set jfc yno ro uj l tw g                                                                        

<a href=pregnancysymptomssigns.net Symptoms</a>                                                                          

lc jr jigj ra pr ykpynxzeqokq m f ehdnlyzlazcpbd tcuzge azoc ye ai                                                                        

zv dn cr lraspjmnldtlwnipfrluuhbocjvrgvhbvjvott

Tuesday, August 16, 2011 7:38 PM by pregnancy-symptoms

# re: Using WS-Discovery in WCF 4.0

Geld Lenen zxroexmjt ldxneyar t whwustjvn qtwtmisbv uebp sgh iq                                                                        

futplezjv yyuolk azw xghghscbs cnuonj mac                                                                        

xaertxauo lakxcl zyd                                                                        

fpr hejlit nxs wsu tin kt bv b kp d                                                                        

<a href=lenenzondertoetsingbkr.net Lenen</a>                                                                            

od kr masb wm iy syzbuqghrhei i q obhziobetihplc ewzlpu broz pt ms                                                                        

js xf bg wrbvtffaavhpsqijxmwsxfrtuhmejgkhsndueh

Tuesday, August 23, 2011 6:15 AM by geldlenen-

# re: Using WS-Discovery in WCF 4.0

Yes there should realize the opportunity to RSS commentary, quite simply, CMS is another on the blog.

Monday, August 29, 2011 2:35 AM by tryecrot

# re: Using WS-Discovery in WCF 4.0

Top London Escorts http:www.toplondonescorts.com provide the best london escorts in and around Heathrow Escorts, Kensington Escorts, Chelsea Escorts, Victoria Escorts, Maidenhead Escorts, Surrey Escorts, London Heathrow Escorts and more.  These girls are seriously hot and will make you feel very relaxed making your dreams come true 24/7

Saturday, January 14, 2012 2:04 PM by yash

# re: Using WS-Discovery in WCF 4.0

Top London Escorts http:www.toplondonescorts.com provide the best london escorts in and around Heathrow Escorts, Kensington Escorts, Chelsea Escorts, Victoria Escorts, Maidenhead Escorts, Surrey Escorts, London Heathrow Escorts and more.  These girls are seriously hot and will make you feel very relaxed making your dreams come true 24/7

Sunday, January 15, 2012 1:32 PM by yash

# re: Using WS-Discovery in WCF 4.0

Celebs Nudity. <a href=rssniches.com/index.php

Wednesday, May 02, 2012 8:27 AM by montgomeryk

# re: Using WS-Discovery in WCF 4.0

Get a hold of all which can be about African Mangoo within few seconds.

Friday, August 03, 2012 6:43 AM by Longoria

# re: Using WS-Discovery in WCF 4.0

great article, thx

Thursday, August 23, 2012 7:15 PM by mayaescorts

# re: Using WS-Discovery in WCF 4.0

Thanks for one's marvelous posting! I definitely enjoyed reading it, you happen to be a great author.I will make certain to bookmark your blog and may come back someday. I want to encourage one to continue your great job, have a nice morning!

Friday, September 14, 2012 2:57 PM by Macpherson

# re: Using WS-Discovery in WCF 4.0

http://google.ca Genuinely exciting content articles. I enjoyed reading it.

Saturday, September 29, 2012 5:41 AM by teak785

# re: Using WS-Discovery in WCF 4.0

http://google.ca I used to read your blog all the time, seriously i like and i still do.

Sunday, September 30, 2012 9:01 AM by teak796

# re: Using WS-Discovery in WCF 4.0

Good blog, lots of helpful facts.

  www.lasvegas-garage-floors.com

Sunday, October 07, 2012 2:19 PM by xDelingaRisaensecqj

# re: Using WS-Discovery in WCF 4.0

http://www.bondescorts.co.uk    wicked blog, this is going on my twitter.

Sunday, October 07, 2012 5:14 PM by jTomoriTreeeuj

# re: Using WS-Discovery in WCF 4.0

www.bondescorts.co.uk/.../croydon-escorts.html    thanks about your post. very gud.

Sunday, October 07, 2012 6:57 PM by sBlueMaxdwyhyhx

# re: Using WS-Discovery in WCF 4.0

Hi I adore your blog. I've actually just started one of my own, learned a lot from this website. Thank you

  premierclaimsplus.co.uk/ppi_claims.asp

Monday, October 08, 2012 1:19 PM by jRoshanTomorixxf

# re: Using WS-Discovery in WCF 4.0

www.squidoo.com/oil-investing    Great post. Very refreshing given all the duplicate content out there. Thanks for doing something original.

Monday, October 08, 2012 2:19 PM by iElrodBaileyswx

# re: Using WS-Discovery in WCF 4.0

www.nowin-nofee-claims.com    Good blog, lots of helpful facts.

Monday, October 08, 2012 3:23 PM by rGreenKristenceqw

# re: Using WS-Discovery in WCF 4.0

http://www.smithprinting.net/    I am typically to blogging and i actually respect your content. The article has really peaks my interest. I'm going to bookmark your website and hold checking for brand spanking new information.

Monday, October 08, 2012 4:05 PM by eSelsoFoletxi

# re: Using WS-Discovery in WCF 4.0

www.motorhomesdirect.co.uk/.../wales    you will have a great weblog right here! would you prefer to make some invite posts on my blog?

Monday, October 08, 2012 4:46 PM by aRishanShaneyhb

# re: Using WS-Discovery in WCF 4.0

I was suggested this blog by my cousin. I am not sure whether this post is written by him as no one else know such detailed about my difficulty. You're wonderful! Thanks!

  www.sfgate.com/.../Special-Ops-Combine-Prepares-for-October-Fourth-3908424.php

Monday, October 08, 2012 5:12 PM by tMaxineDoebuz

# re: Using WS-Discovery in WCF 4.0

You have given cool description related to how you update blogs

  http://www.bondescorts.co.uk

Monday, October 08, 2012 8:59 PM by gMwJasonfoh

# re: Using WS-Discovery in WCF 4.0

Just to let you know... your website looks extremely strange in Mozilla on a Mac

  www.elottery888.com/euromillions-syndicate

Monday, October 08, 2012 9:51 PM by rJordanschmolewbbcb

# re: Using WS-Discovery in WCF 4.0

Actually helpful concept for me . br  Will you post some additional ? coz i want to adhere to ur twitter or facebook

  sanjosebackpainrelief.com

Monday, October 08, 2012 10:07 PM by sShaneGreeneptgu

# re: Using WS-Discovery in WCF 4.0

http://www.premiumsofas.co.uk/    I was suggested this web site by my cousin. I am not sure whether this post is written by him as nobody else know such detailed about my trouble. You are wonderful! Thanks!

Tuesday, October 09, 2012 4:16 PM by lBailsRishanwg

# re: Using WS-Discovery in WCF 4.0

Can I just say what a aid to seek out someone who actually is aware of what theyre speaking about on the internet. You positively know the best way to carry an issue to gentle and make it important. Extra individuals need to learn this and perceive this aspect of the story. I cant imagine youre not more common because you undoubtedly have the gift.

  www.jackstobaccowi.com/.../v2-cigs-coupon-code-15-off-starter-kits

Wednesday, October 10, 2012 2:31 PM by nBaoTopangatijg

# re: Using WS-Discovery in WCF 4.0

http://dentistphone.com    Aw, this was a really nice post.

Wednesday, October 10, 2012 2:39 PM by oMwJasonbfd

# re: Using WS-Discovery in WCF 4.0

www.foldingbikeguide.co.uk    Hey There. I found your blog using Ask. This is a very well written article. I will be sure to bookmark it and come back to read more of your useful info. Thanks for the post. I’ll definitely comeback.

Wednesday, October 10, 2012 4:30 PM by bJasonMorawumal

# re: Using WS-Discovery in WCF 4.0

http://www.bondescorts.co.uk    This site is the thing i have started seeing many other blogs. You people are at the first of my list of favorites and i have discover the inspiration to begin my own

Wednesday, October 10, 2012 4:42 PM by uBjoeFirehc

# re: Using WS-Discovery in WCF 4.0

www.justgetskinny.com/medifast-diet.php    Be glad of life because it gives you the chance to love, to work, to play, and to look up at the stars.

Thursday, October 11, 2012 3:05 PM by fCatSoelazot

# re: Using WS-Discovery in WCF 4.0

Hey I like your blog. I actually just started one of my own, studied a lot from this site. Thanks

  www.prweb.com/.../prweb9977759.htm

Thursday, October 11, 2012 3:05 PM by qRisSoelgv

# re: Using WS-Discovery in WCF 4.0

Wonderful beat ! I wish to apprentice while you amend your site, how could i subscribe for a blog site? The account aided me a acceptable deal. I had been a little bit acquainted of this your broadcast provided bright clear idea

  http://www.einla.com/

Thursday, October 11, 2012 3:17 PM by mMorawSeanuufd

# re: Using WS-Discovery in WCF 4.0

www.mydiscountcigar.com/acid-collector-s-tin.html    Your web site offers a lot of distinctive insights and details. I haven't actually imagined about it like that.

Thursday, October 11, 2012 3:55 PM by gChrichtonschmolerjmq

# re: Using WS-Discovery in WCF 4.0

making time and real effort to make a quality article. Great!

  http://veneers-cost.com

Thursday, October 11, 2012 4:53 PM by sBaileysBaomfgdq

# re: Using WS-Discovery in WCF 4.0

Great info, numerous with thanks towards the author.

  http://www.camjobs4models.com/

Thursday, October 11, 2012 6:08 PM by jShaneRaisebp

# re: Using WS-Discovery in WCF 4.0

http://www.google.com    I've used to read this website all the time, truly i love and i still do.

Saturday, October 13, 2012 1:24 PM by jJasonHowdrdu

# re: Using WS-Discovery in WCF 4.0

nutritionalsupplementsguide.org    With thanks for this fantastic internet site. I'm trying to go through some far more posts but I cant get your website to display correctly in my Opera Browser. Many thanks again.

Saturday, October 13, 2012 1:44 PM by xSoloKierstincjie

# re: Using WS-Discovery in WCF 4.0

thanks for this awesome post

  http://www.camjobs4models.com/

Sunday, October 14, 2012 1:15 PM by aFruitNasonmdde

# re: Using WS-Discovery in WCF 4.0

Monday, October 15, 2012 2:11 PM by fCodeSierramyhx

# re: Using WS-Discovery in WCF 4.0

great article very usefull , thanks you

Wednesday, October 17, 2012 7:46 PM by londonladies

# re: Using WS-Discovery in WCF 4.0

Be glad of life because it gives you the chance to love, to work, to play, and to look up at the stars.

  autorepairmariettaga.blogspot.com/.../emissions-test-marietta-ga-20-all-cars.html

Friday, October 19, 2012 4:47 PM by xPromoSololatd

# re: Using WS-Discovery in WCF 4.0

wow this seems really great do you mind if i share this?

  plus.google.com/.../about

Friday, October 19, 2012 5:01 PM by oFoleJordancdk

# re: Using WS-Discovery in WCF 4.0

Just to let you know... your website looks extremely strange in Mozilla on a Mac

  http://www.radionicsbox.com/

Friday, October 19, 2012 5:57 PM by gDelingaJetgjs

# re: Using WS-Discovery in WCF 4.0

www.wix.com/.../weddingphotography!__your-wedding-day    I’m not sure where you are getting your info, but great topic. I needs to spend some time learning much more or understanding more. Thanks for fantastic info I was looking for this information for my mission.

Saturday, October 20, 2012 1:25 PM by jMaxineHowbge

# re: Using WS-Discovery in WCF 4.0

www.eforcsenow.com    Wow, I have a website too but I can't write too as you do. Good stuff.

Sunday, October 21, 2012 1:28 PM by uSkyShaceie

# re: Using WS-Discovery in WCF 4.0

Be glad of existence because it gives you the chance to adore, to function, to play, and to appear up at the stars.

  elottery-syndicates.com/health-lottery-results

Sunday, October 21, 2012 1:38 PM by uJasonWhitemkkcf

# re: Using WS-Discovery in WCF 4.0

www.serrechevalierhotels.com    good! i can tell this was critical! excellent occupation!

Sunday, October 21, 2012 2:16 PM by vLegitBrucehbkdu

# re: Using WS-Discovery in WCF 4.0

www.squidoo.com/ageless-male-ingredients    Hello! I've bookmarked your website because you have so great posts here and I'd like to read some more^^

Sunday, October 21, 2012 2:23 PM by jMaxineJohnaxic

# re: Using WS-Discovery in WCF 4.0

gorillastructures.com/BuildYourCarport.html    That site is special and you indeed make your website for amusement.

Monday, October 22, 2012 3:02 PM by sMoriBjoewixar

# re: Using WS-Discovery in WCF 4.0

http://www.adulttoys365.com/    Hey this blog is  nice, I really liked it.

Tuesday, October 23, 2012 2:10 PM by fBoaRisaenndjaj

# re: Using WS-Discovery in WCF 4.0

cheers for this awesome article

  www.autoseedsbank.com/feminized-cannabis-seeds.html

Tuesday, October 23, 2012 2:39 PM by mSelsowholoahoa

# re: Using WS-Discovery in WCF 4.0

Interesting. Will defintely be back

  premierclaimsplus.co.uk/ppi_claims.asp

Wednesday, October 24, 2012 4:29 PM by jRoleBillyjoewdg

# re: Using WS-Discovery in WCF 4.0

www.wix.com/.../weddingphotography!__your-wedding-day    Just to let you know.. br . your site looks really strange in Mozilla on a Mac

Wednesday, October 24, 2012 4:50 PM by fShawnBaileysdrf

# re: Using WS-Discovery in WCF 4.0

www.youtube.com/watch    Thanks for this great website. I am trying to read some more posts but I cant get your website to display properly in my Opera Browser. Thanks again.

Wednesday, October 24, 2012 4:51 PM by oRishanShacerbr

# re: Using WS-Discovery in WCF 4.0

www.wellcottagebristol.co.uk    You were shown nice post related to how to update websites

Friday, October 26, 2012 1:14 PM by wDogTommyjhgr

# re: Using WS-Discovery in WCF 4.0

chiropracticnapervilleil.com    Very nice post. I just stumbled upon your blog and wanted to say that I've really enjoyed browsing your blog posts. After all I will be subscribing to your rss feed and I hope you write again soon!

Friday, October 26, 2012 1:41 PM by kDemodCodequvgc

# re: Using WS-Discovery in WCF 4.0

www.youtube.com/watch    Hello! I've read some of the submit below and observed it helpful and it makes a whole lot of sense. Plus i really enjoy your theme right here. Thumbs up! Keep on sharing!

Friday, October 26, 2012 2:54 PM by mFrankShaniquaih

# re: Using WS-Discovery in WCF 4.0

wicked blog, this can be going on my twitter.

  www.hcgdirect.co/SELL_HCG.html

Friday, October 26, 2012 3:43 PM by uSoelXrvnvcz

# re: Using WS-Discovery in WCF 4.0

http://www.malescope.com/    I thought your submit was awesome and will check out often.

Friday, October 26, 2012 4:14 PM by eThompsonBrucebljo

# re: Using WS-Discovery in WCF 4.0

I think your post on that new website sound very true for all. Very well articulated. I look forward to reading more here.

  http://www.lotteryaward.com

Saturday, October 27, 2012 1:35 PM by jMailowholoaacv

# re: Using WS-Discovery in WCF 4.0

This is the precise blog for anyone who needs to search out out about this topic. You notice so much its nearly onerous to argue with you (not that I really would want…HaHa). You positively put a new spin on a subject thats been written about for years. Nice stuff, simply great!

  http://www.einla.com/

Saturday, October 27, 2012 1:48 PM by aSelsoBjoeaah

# re: Using WS-Discovery in WCF 4.0

Happy to hear! enjoy your site and your way of writing! Perhaps you will give me a few tips.

  therobustoroom.com/.../events

Saturday, October 27, 2012 3:27 PM by bDoeShaniquavvp

# re: Using WS-Discovery in WCF 4.0

Really interesting articles. I enjoyed reading it.

  http://www.lotteryaward.com

Sunday, October 28, 2012 5:23 PM by iJasonDogoneev

# re: Using WS-Discovery in WCF 4.0

http://svideocable.org    genuinely a superb posting. I'll undoubtedly be reading this webpage much more.

Monday, October 29, 2012 1:42 PM by fAlingaJohntd

# re: Using WS-Discovery in WCF 4.0

Very good weblog, lots of helpful facts.

  www.youtube.com/watch

Tuesday, October 30, 2012 12:13 AM by kWindTopangaond

# re: Using WS-Discovery in WCF 4.0

www.jackstobaccowi.com/.../v2-cigs-coupon-code-15-off-starter-kits    Thanks and Please keep updating your Blog. I will be stopping by every time you do .

Thursday, November 01, 2012 8:21 AM by yhBaoRedfabazjk

# re: Using WS-Discovery in WCF 4.0

http://socialfanssource.com/    Hello I adore your blog. I actually just created one of my own, learned a lot from you'r site. Thank you

Wednesday, November 07, 2012 8:43 PM by qWowBailsrine

# re: Using WS-Discovery in WCF 4.0

www.elotterysyndicates.com/euromillions-syndicate    An impressive share, I simply given this onto a colleague who was doing a little evaluation on this. And he actually purchased me breakfast as a result of I discovered it for him.. smile. So let me reword that: Thnx for the deal with! However yeah Thnkx for spending the time to discuss this, I feel strongly about it and love reading extra on this topic. If possible, as you grow to be expertise, would you mind updating your blog with more details? It's highly useful for me. Big thumb up for this blog submit!

Wednesday, November 07, 2012 9:17 PM by aShawnDoelta

# re: Using WS-Discovery in WCF 4.0

www.groupon.nl/.../4618124    If you don't mind my asking, do you make good money from this blog?

Wednesday, November 07, 2012 10:55 PM by fJasonBluebiyhl

# re: Using WS-Discovery in WCF 4.0

Oh my goodness! a tremendous article dude. Thanks Nevertheless I am experiencing situation with ur rss . Don’t know why Unable to subscribe to it. Is there anybody getting an identical rss problem? Anyone who knows kindly respond. Thnkx

  www.youtube.com/watch

Wednesday, November 07, 2012 11:09 PM by gBluedaDoedq

# re: Using WS-Discovery in WCF 4.0

Thanks for writing this website and sharing it with the world. I would like to know how to go for examining your rss website. Please let me know if feasible.

  www.mariettaroofingcontractor.net

Thursday, November 08, 2012 2:18 AM by iCricvMorawck

# re: Using WS-Discovery in WCF 4.0

http://www.mypanicaway.org/    Unquestionably believe that which you said. Your favorite reason appeared to be on the web the easiest thing to be aware of. I say to you, I certainly get annoyed while people think about worries that they just don't know about. You managed to hit the nail upon the top and also defined out the whole thing without having side effect , people can take a signal. Will probably be back to get more. Thanks

Thursday, November 08, 2012 5:51 AM by rBoeCelsoejof

# re: Using WS-Discovery in WCF 4.0

www.washingtonpost.com/.../gJQALwq2vV_story.html    very good put up, i certainly love this web site, keep on it

Thursday, November 08, 2012 6:01 PM by xDelingaDavednq

# re: Using WS-Discovery in WCF 4.0

Truly helpful concept for me . br  Will you publish some much more ? coz i want to comply with ur twitter or facebook

  www.lexingtonsmiles.com

Thursday, November 08, 2012 9:09 PM by lBaileysCatjj

# re: Using WS-Discovery in WCF 4.0

hometheater-receiver.com    This submit was quite nicely written, and it also contains several practical facts. I appreciated your expert manner of writing this publish. You have created it simple for me to recognize.

Thursday, November 08, 2012 9:33 PM by cShaneWhitefpj

# re: Using WS-Discovery in WCF 4.0

Hey! your site's style is broken in my Internet Explorer. Maybe you should check it. nice post tho.

  www.lexingtonsmiles.com

Friday, November 09, 2012 12:12 AM by gWowschmolechd

# re: Using WS-Discovery in WCF 4.0

nice blog, thanks you

Monday, November 12, 2012 9:40 PM by london escorts

# re: Using WS-Discovery in WCF 4.0

The that the next occasion I just read a blog, Hopefully

that this doesnt disappoint me up to this. I am talking about, It was

my path to read, but I really thought youd have something interesting to express.

All I hear can be a number of whining about something you to

could fix should you werent too busy seeking for attention.

Sunday, November 18, 2012 9:32 PM by Montenegro

# re: Using WS-Discovery in WCF 4.0

you are in point of fact a good webmaster. The web site loading

velocity is amazing. It seems that you're doing any distinctive trick. Furthermore, The contents are masterwork. you've performed a

magnificent job in this topic!

Friday, November 23, 2012 12:24 AM by Stackhouse

# re: Using WS-Discovery in WCF 4.0

Far more of this please

  http://www.seowisely.com/

Saturday, November 24, 2012 3:07 PM by zMwTommymnb

# re: Using WS-Discovery in WCF 4.0

This is really good concept dude.iam really proud of you . br  Do u have twitter?? i want to stick to you .thx

  http://doterrareviews.com

Saturday, November 24, 2012 6:52 PM by kGreenChrichtonphbqg

# re: Using WS-Discovery in WCF 4.0

Hey! I have been checking your website for some time. You have really cool posts. Nice job!

  elottery-syndicates.com/health-lottery-results

Sunday, November 25, 2012 5:43 AM by hSeanHowgl

# re: Using WS-Discovery in WCF 4.0

http://www.mydogsshop.co.uk/    An impressive share, I simply given this onto a colleague who was doing a little evaluation on this. And he the truth is bought me breakfast because I found it for him.. smile. So let me reword that: Thnx for the deal with! But yeah Thnkx for spending the time to discuss this, I really feel strongly about it and love reading extra on this topic. If attainable, as you grow to be experience, would you mind updating your blog with extra details? It is extremely useful for me. Massive thumb up for this blog post!

Sunday, November 25, 2012 6:10 AM by fElrodTommybawh

# re: Using WS-Discovery in WCF 4.0

Really interesting idea for me . Will you post some more ? coz i want to follow ur twitter or facebook

  www.hcgdirect.co/SELL_HCG.html

Sunday, November 25, 2012 7:28 AM by oWhiteJohndsvd

# re: Using WS-Discovery in WCF 4.0

www.articlerich.com/.../2422290    Excellent blog here! Also your web site loads up very fast! What web host are you using? Can I get your affiliate link to your host? I wish my website loaded up as quickly as yours lol

Sunday, November 25, 2012 10:48 AM by mJetKristenxedmf

# re: Using WS-Discovery in WCF 4.0

http://aromatherapyoils.pro    Attractive section of content. I just stumbled upon your website and in accession capital to assert that I get in fact enjoyed account your blog posts. Anyway I will be subscribing to your feeds and even I achievement you access consistently quickly.

Sunday, November 25, 2012 1:24 PM by sJaxRedemyh

# re: Using WS-Discovery in WCF 4.0

Hello There. I found your blog using msn. This is an extremely well written article. I’ll be sure to bookmark it and come back to read more of your useful information. Thanks for the post. I will certainly comeback.

  http://www.camjobs4models.com/

Sunday, November 25, 2012 4:23 PM by nLegaiDavedadhh

# re: Using WS-Discovery in WCF 4.0

Great ¡V I should certainly pronounce, impressed with your

site. I had no trouble navigating through all tabs because well as related information ended

up being truly straightforward to do to access.

I recently found what I hoped for before you recognize

it at all. Quite unusual. Is likely to appreciate it for those who add

forums or anything, website theme . a tones tactic

for your client to communicate. First-rate task.

.

Sunday, November 25, 2012 7:24 PM by Robb

# re: Using WS-Discovery in WCF 4.0

www.groupon.nl/.../1736082    Quite awesome post, the post gave a lot of information. Thanks

Sunday, November 25, 2012 9:40 PM by zTomoriSeanjfjz

# re: Using WS-Discovery in WCF 4.0

gmptransport.com/car-transport    I am for sure a new fan of this site! I love sites and am happy to find this place where i can gush about those things!

Sunday, November 25, 2012 10:21 PM by mDoeCelsogjoa

# re: Using WS-Discovery in WCF 4.0

http://www.modelscope.com/    Should you do not thoughts my asking, do you make fine money from this web site?

Sunday, November 25, 2012 10:37 PM by pMrxFirempgj

# re: Using WS-Discovery in WCF 4.0

It’s arduous to find educated individuals on this matter, but you sound like you realize what you’re talking about! Thanks

  www.mydiscountcigar.com/acid-blondie.html

Monday, November 26, 2012 4:39 AM by yhBruceTommylg

# re: Using WS-Discovery in WCF 4.0

We're a group of volunteers and opening a new scheme in our community. Your site offered us with valuable info to work on. You've done a formidable job and our whole community will be thankful to you.

  www.youtube.com/watch

Monday, November 26, 2012 4:53 AM by jCodeRaisegkfh

# re: Using WS-Discovery in WCF 4.0

This is really interesting, You are a very skilled blogger. I've joined your feed and look forward to seeking more of your fantastic post. Also, I have shared your website in my social networks!

  www.theadvertisingnet.com/.../how_do_i_join_the_players_lottery

Monday, November 26, 2012 3:58 PM by xSoelRedbyhk

# re: Using WS-Discovery in WCF 4.0

www.serrechevalierhotels.com    Formula for success: Rise early, work hard, strike oil.

Monday, November 26, 2012 6:31 PM by uRedCricvyhvdr

# re: Using WS-Discovery in WCF 4.0

www.ashevillephotography.co    Love the comment! and i like the website, quite useful info here

Monday, November 26, 2012 10:02 PM by fBluedaBluedalx

# re: Using WS-Discovery in WCF 4.0

elottery-syndicates.com/health-lottery-results    Hello! Can I submit this post to my blog? It's really nice post, I would like to share it with others:)

Monday, November 26, 2012 10:41 PM by yhRedShawnab

# re: Using WS-Discovery in WCF 4.0

Oh my goodness! a tremendous article dude. Thanks However I'm experiencing problem with ur rss . Don’t know why Unable to subscribe to it. Is there anybody getting identical rss downside? Anyone who is aware of kindly respond. Thnkx

  www.eforcsenow.com

Tuesday, November 27, 2012 2:51 AM by kMaxineSierrabbe

# re: Using WS-Discovery in WCF 4.0

WONDERFUL Post.thanks for share..more wait .. …

  therobustoroom.com/about-us

Tuesday, November 27, 2012 5:32 AM by sschmolePurpleaa

# re: Using WS-Discovery in WCF 4.0

I admire and am a HUGE fan of your blog! Hope you will take your time to find out my site.

  http://nakedbuffalo.com

Tuesday, November 27, 2012 2:12 PM by uAlaDolewhwj

# re: Using WS-Discovery in WCF 4.0

www.mydiscountcigar.com/cigars-arturo-fuente-hemingway.html    Actually quite good article ... lighting is so big a part of your talent, so it's most interesting to read about how it was formed

Tuesday, November 27, 2012 9:03 PM by bNasienFrankig

# re: Using WS-Discovery in WCF 4.0

   Really a great blog! Just found it today and surely continue to look for updates.

Tuesday, November 27, 2012 11:00 PM by nShawnBlueaawf

# re: Using WS-Discovery in WCF 4.0

http://www.mydiscountcigar.com    This can be definitely good idea dude.iam truly proud of you . Do u have twitter?? i wish to stick to you .thx

Wednesday, November 28, 2012 5:53 AM by bBaoFolefofj

# re: Using WS-Discovery in WCF 4.0

Wednesday, November 28, 2012 4:16 PM by rSelsoShaneuczw

# re: Using WS-Discovery in WCF 4.0

great blog!  ill be checking back! do you mind if i share this?

  http://www.SpankHub.com

Wednesday, November 28, 2012 5:09 PM by bSueraShanejfae

# re: Using WS-Discovery in WCF 4.0

customermagnetexpert.com    Definitely interesting content articles. I enjoyed reading through it.

Wednesday, November 28, 2012 5:55 PM by uRedBillyjoefeph

# re: Using WS-Discovery in WCF 4.0

www.criminaljustice-degree.net    Hey! I very like your website. I like this post. I hope you don't mind when I submit it to my Digg bookmarks.

Wednesday, November 28, 2012 11:33 PM by sTomorischmolehg

# re: Using WS-Discovery in WCF 4.0

www.mydiscountcigar.com/acid-blondie.html    I was very pleased to seek out this internet-site.I needed to thanks on your time for this glorious read!! I undoubtedly having fun with each little little bit of it and I've you bookmarked to take a look at new stuff you blog post.

Wednesday, November 28, 2012 11:51 PM by pCricvJohnwde

# re: Using WS-Discovery in WCF 4.0

gmptransport.com/car-shipping-rates    Your site provides a lot of unique insights and details. I haven't really believed about it like that.

Thursday, November 29, 2012 1:18 AM by bDavidJasonsoon

# re: Using WS-Discovery in WCF 4.0

thanks for this awesome publish

  http://www.famous-smoke.com

Thursday, November 29, 2012 4:11 AM by lShaceDavesonph

# re: Using WS-Discovery in WCF 4.0

www.mydiscountcigar.com/acid-kuba-kuba.html    I am so happy i discovered your blog. You are such an inspiration!

Thursday, November 29, 2012 10:31 AM by zJasonBoeaqdhg

# re: Using WS-Discovery in WCF 4.0

Your site offers a lot of unique insights and information. I haven't really thought about it like that.

  www.parkmytv.com/dish-network-vs-directv

Thursday, November 29, 2012 10:49 AM by vThompsonSeanisqf

# re: Using WS-Discovery in WCF 4.0

http://www.ljones-law.com/    Is that true? I'll spread this info. Anyway, awesome article

Thursday, November 29, 2012 12:07 PM by mSueraSeanaqmq

# re: Using WS-Discovery in WCF 4.0

Hello there,  You have done an excellent job. I’ll certainly digg it and personally recommend to my friends. I am sure they'll be benefited from this site.

  plus.google.com/.../about

Thursday, November 29, 2012 1:15 PM by sschmoleFireihm

# re: Using WS-Discovery in WCF 4.0

www.articlesbase.com/.../foreclosures-cash-for-house-program-in-asheville-nc-simple-sale-fast-cash-6281421.html    amazing i love this, good work! amazing cool i love this, great job!

Thursday, November 29, 2012 1:48 PM by aTomoriSolofht

# re: Using WS-Discovery in WCF 4.0

there are so a whole lot of funny videos on that the internet to watch, i can

laugh all day watching funny videos’

Thursday, December 20, 2012 7:16 PM by Wicks

# re: Using WS-Discovery in WCF 4.0

Very fine publish, thanks a ton for sharing. Do you happen to have

an RSS feed I can subscribe to?

Friday, December 21, 2012 1:17 AM by Helm

# re: Using WS-Discovery in WCF 4.0

Youre so cool! I dont suppose Ive read something such as

this before. So nice to look for somebody with

authentic applying for grants this subject.

realy i appreciate you for starting this up. this fabulous website have been

some things that’s needed on that the web, somebody after some bit

originality. helpful purpose of bringing new things to your web!

Tuesday, December 25, 2012 2:22 AM by Dailey

# re: Using WS-Discovery in WCF 4.0

Tuesday, December 25, 2012 4:06 AM by kunal

# re: Using WS-Discovery in WCF 4.0

Nice blog with a great content, thanks

Tuesday, December 25, 2012 7:12 PM by london escorts

# re: Using WS-Discovery in WCF 4.0

Add to that list Michael Pena and Bridget Moynahan, the

two adults among three other youngsters whom Nantz and his men

locate at the station.

Tuesday, December 25, 2012 11:26 PM by Quintanilla

# re: Using WS-Discovery in WCF 4.0

Wow, wonderful blog layout! How long have you been blogging

for? you make blogging look simple. That the overall look of your web site is fantastic,

let alone the content!

Sunday, December 30, 2012 2:31 AM by Daly

# re: Using WS-Discovery in WCF 4.0

First-rate day. i am doing research right now and your blog really helped me,

Thursday, January 31, 2013 5:58 AM by Ngo

# Microsoft Exam 70-487 &#8211; Developing Windows Azure and Web Services Study Guide &laquo; The Pragmatic Developer

Pingback from  Microsoft Exam 70-487 &#8211; Developing Windows Azure and Web Services Study Guide &laquo; The Pragmatic Developer

# The Great Big Microsoft Certification 70-487 Study Guide | Levi Botelho&#039;s Coding Blog

Pingback from  The Great Big Microsoft Certification 70-487 Study Guide | Levi Botelho&#039;s Coding Blog