Click here to Skip to main content
15,885,146 members
Articles / Programming Languages / C#
Tip/Trick

How to debug a RIA Service Class Library (RIA "magic" demystified)

Rate me:
Please Sign up or sign in to vote.
5.00/5 (2 votes)
28 Mar 2012CPOL 11.4K   2   2
How to debug RIA Service Class Library ( RIA "magic" demystified )

Introduction

A simple tip about how to debug a Silverlight RIA Service Class library. 

Background 

Imagine that you have created a Silverlight RIA Service Class Library and everything works fine, but when you plug the library in a separate solution the service for some reason doesn't  run ( for some reason the RIA Service "magic" that handle the .svc file just respond with a 404 not found ).

How can you know the real problem ? 

Using the code (manually creating .svc) 

Instead of letting RIA handle the .svc, what about if we manually create this file and access through the URL? So how? 

Just create a .SVC file let´s say RIATest.svc, and write this code bellow. 

C#
<%@ ServiceHost Service="FULLYQUALIFIEDNAME" 
                Factory="System.ServiceModel.DomainServices.Hosting.DomainServiceHostFactory"%> 

FULLYQUALIFIEDNAME = the fully qualified name of your domain service (inside Silverlight RIA Service Class library Web project ) 

The Factory is the "magic", so now you are simulating the RIA "magic" and if an error occur you will see at run time on our pleasant yellow page. 

Hope you enjoy. 

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Brazil Brazil
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
SuggestionGood but... Pin
Member 1026699223-Dec-13 23:00
Member 1026699223-Dec-13 23:00 
QuestionVery helpfull Pin
davi.psr28-Mar-12 6:31
davi.psr28-Mar-12 6:31 
Thank You. It was very helpfull.

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.