JQuery/WCF without ASP.NET AJAX: - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T09:22:45Zhttp://stackoverflow.com/feeds/question/655400http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/655400/jquery-wcf-without-asp-net-ajax1JQuery/WCF without ASP.NET AJAX: Program.X2009-03-17T18:03:36Z2009-03-17T20:51:10Z
<p>Hi,</p>
<p>I am proper struggling getting that "magic" moment when WCF is configured nicely and jQuery is structuring its requests/understanding responses nicely.</p>
<p>I have a service:</p>
<pre><code><%@ ServiceHost Language="C#" Debug="true" Service="xxx.yyy.WCF.Data.ClientBroker" Factory="System.ServiceModel.Activation.WebScriptServiceHostFactory" %>
</code></pre>
<p>This was recommended by the man Rick Strahl at <a href="http://www.west-wind.com/WebLog/posts/310747.aspx" rel="nofollow">http://www.west-wind.com/WebLog/posts/310747.aspx</a> to avoid having to define the behaviours within web.Config.</p>
<p>My interface for the WCF service sits in another assembly:</p>
<pre><code> namespace xxx.yyy.WCF.Data
{
[ServiceContract(Namespace = "yyyWCF")]
public interface IClientBroker
{
[OperationContract]
[WebInvoke(Method="POST",BodyStyle=WebMessageBodyStyle.Wrapped,ResponseFormat=WebMessageFormat.Json)]
IClient GetClientJson(int clientId);
}
}
</code></pre>
<p>The concrete service class is:</p>
<pre><code>namespace xxx.yyy.WCF.Data
{
[AspNetCompatibilityRequirements(RequirementsMode = AspNetCompatibilityRequirementsMode.Allowed)]
class ClientBroker : IClientBroker
{
public IClient GetClientJson(int clientId)
{
IClient client=new Client();
// gets and returns an IClient
return client;
}
}
}
</code></pre>
<p>My IClient is an Entity Framework class so is decorated with DataContract/DataMember attributes appropriately.</p>
<p>I am trying to call my WCF service using the methods outlined on Rick Strahl's blog at <a href="http://www.west-wind.com/weblog/posts/324917.aspx" rel="nofollow">http://www.west-wind.com/weblog/posts/324917.aspx</a> (the "full fat" version). The debugger jumps into the WCF service fine (so my jQuery/JSON is being understood) and gets the IClient and returns it. However, when I return the response, I get various useless errors. The errors I am getting back don't mean much. </p>
<p>I am using POST.</p>
<p>Am I right to be using an Interface instead of a concrete object? As it does get into the WCF service, it does seem to be the encoding of the result that is failing.</p>
<p>Also, using .NET 3.5 SP1.</p>
<p>Does anyone have any ideas?</p>
http://stackoverflow.com/questions/655400/jquery-wcf-without-asp-net-ajax/655935#6559350Answer by Mike_G for JQuery/WCF without ASP.NET AJAX: Mike_G2009-03-17T20:37:37Z2009-03-17T20:37:37Z<p>I am 99% sure you cant return an interface. I dont think Interfaces are serializable.</p>
<p>check out this <a href="http://social.msdn.microsoft.com/Forums/en-US/wcf/thread/31102bd8-0a1a-44f8-b183-62926390b3c3/" rel="nofollow">thread</a></p>
http://stackoverflow.com/questions/655400/jquery-wcf-without-asp-net-ajax/655958#6559584Answer by Darin Dimitrov for JQuery/WCF without ASP.NET AJAX: Darin Dimitrov2009-03-17T20:45:02Z2009-03-17T20:51:10Z<p>At first glance there are three problems with your code:</p>
<p>1: you should use the <a href="http://msdn.microsoft.com/en-us/library/system.servicemodel.serviceknowntypeattribute.aspx" rel="nofollow">ServiceKnownTypeAttribute</a> to specify known types when exposing only base types in your operation contracts:</p>
<pre><code>[ServiceContract(Namespace = "yyyWCF")]
public interface IClientBroker
{
[OperationContract]
[ServiceKnownType(typeof(Client))]
[WebInvoke(
Method="GET",
BodyStyle=WebMessageBodyStyle.WrappedRequest,
ResponseFormat=WebMessageFormat.Json)]
IClient GetClientJson(int clientId);
}
</code></pre>
<p>2: You should use <code>WebMessageBodyStyle.WrappedRequest</code> instead of <code>WebMessageBodyStyle.Wrapped</code> because the latter is not compatible with <a href="http://msdn.microsoft.com/en-us/library/system.servicemodel.activation.webscriptservicehostfactory.aspx" rel="nofollow">WebScriptServiceHostFactory</a>.</p>
<p>3: IMHO using Method="GET" would be more RESTful for a method called GetClientJson than Method="POST"</p>
<p>Another advice I could give you when working with WCF services is to use <a href="http://msdn.microsoft.com/en-us/library/ms732023.aspx" rel="nofollow">SvcTraceViewer.exe</a> bundled with Visual Studio. It is a great tool for debugging purposes. All you need is to add the following section to your app/web.config:</p>
<pre><code> <system.diagnostics>
<sources>
<source name="System.ServiceModel"
switchValue="Information, ActivityTracing"
propagateActivity="true">
<listeners>
<add name="sdt"
type="System.Diagnostics.XmlWriterTraceListener"
initializeData= "WcfDetailTrace.e2e" />
</listeners>
</source>
</sources>
</system.diagnostics>
</code></pre>
<p>Then invoke the web method and WcfDetailTrace.e2e file will be generated in your web site root directory. Next open this file with SvcTraceViewer.exe and you will see lots of useful information. For example it could say:</p>
<blockquote>
<p>Cannot serialize parameter of type
'MyNamespace.Client' (for operation
'GetClientJson', contract
'IClientBroker') because it is not the
exact type 'MyNamespace.IClient' in
the method signature and is not in the
known types collection. In order to
serialize the parameter, add the type
to the known types collection for the
operation using
ServiceKnownTypeAttribute.</p>
</blockquote>
<p>Of course you should not forget commenting this section before going into production or you might end up with some pretty big files.</p>