active questions tagged wcf - Stack Overflow most recent 30 from stackoverflow.com 2009-12-12T09:35:51Z http://stackoverflow.com/feeds/tag/wcf http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/935663/wcf-moving-mvc-framework-from-winforms-to-an-soa-for-silverlight 0 WCF - Moving MVC Framework from WinForms to an SOA for Silverlight Dvojrak 2009-06-01T16:46:34Z 2009-12-12T09:00:01Z <p>I would like to move my MVC pattern (BLL and DAL - POCOs) from a WinForms environment to a Silverlight environment. As I begin this transition, do I have to do anything extra to my POCOs for WCF consumption, i.e. move them down the wire, e.g. serilize them?</p> http://stackoverflow.com/questions/1891773/subscribing-to-tfs-events-and-wcf 0 Subscribing to TFS events and WCF J Cooper 2009-12-12T00:48:57Z 2009-12-12T08:43:19Z <p>Sorry for asking a question about something I don't know much about, but I've been pulling my hair out trying to get this working.</p> <p>So, I have a WCF service that is hosted on IIS and seems to be working insomuch that I can "see" it on the network by going to <a href="http://servername/MyService.svc" rel="nofollow">http://servername/MyService.svc</a> in a browser.</p> <p>That .svc looks like:</p> <pre><code>&lt;% @ServiceHost Service="Foo.Bar" %&gt; </code></pre> <p>The relevant code looks like:</p> <pre><code> [ServiceContract(Namespace = "http://schemas.microsoft.com/TeamFoundation/2005/06Services/Notification/03")] public interface IBar { [OperationContract(Action = "http://schemas.microsoft.com/TeamFoundation/2005/06/Services/Notification/03/Notify", ReplyAction = "*")] [XmlSerializerFormat(Style = OperationFormatStyle.Document)] void Notify(string eventXml, string tfsIdentityXml); } </code></pre> <p>and:</p> <pre><code>public class Bar : IBar { public void Notify(string eventXml, string tfsIdentityXml) { // Just some test output to see if it worked var path = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.Desktop), "tfs.txt"); File.WriteAllText(path, tfsIdentityXml + eventXml); } } </code></pre> <p>That's all been built and the ensuing .dll put into the bin dir in the site root in IIS.</p> <p>I now want to subscribe via bissubscribe.exe (or a similar method) to TFS check-in events. I tried doing something like:</p> <pre><code>bissubscribe /eventType CheckinEvent /address http://servername/MyService.svc /deliveryType Soap /server mytfsserver </code></pre> <p>But nothing; it doesn't even look like there was log activity. So keeping in mind I know nothing about WCF, what am I doing wrong? I imagine the <code>address</code> param is one thing; am I not supposed to point it to the .svc?</p> http://stackoverflow.com/questions/1892342/how-do-you-obtain-wcf-performance-metrics 0 How do you obtain WCF performance metrics? Ajaxx 2009-12-12T04:53:15Z 2009-12-12T08:26:10Z <p>WCF is a general communication framework and the more you use it, the more knobs you find there are to tune (endpoint, security, serialization, etc). I have an application that is sensitive to a number of QoS attributes and I'd like to begin tweaking the settings to understand how each impacts bandwidth, latency and scalability of this WCF-based application.</p> <p>As far as I can see, there is no general entry point to collect the following metrics, but I'm hoping we can come up with a list of technique for gathering them:</p> <ul> <li>Number of calls</li> <li>Round trip time of call</li> <li>Bandwidth utilization</li> <li>Serialized size of requests and responses</li> </ul> <p>FWIW, I don't mind capturing these metrics as long as there are reasonable entry points where I can insert hooks (even if this means diving into specific implementation - e.g. DuplexChannel).</p> http://stackoverflow.com/questions/1885816/restful-service-method-in-wcf 0 RESTful Service Method in WCF blu 2009-12-11T04:39:36Z 2009-12-12T03:03:23Z <p>I am not sure what is wrong with my JSON response from WCF but it is not being parsed properly. I probably made a simple mistake, hopefully someone can spot it. I am using VS 2008 Pro SP1. </p> <p>When I navigate directly to the url Chrome thinks it is a file download. When I hit say flickr's service it returned a string inline in the browser body, which makes me think my content is being sent incorrectly.</p> <p><strong>Service</strong></p> <pre><code>[ServiceContract] public interface IFoo { [OperationContract] [WebGet(UriTemplate = "/foos/", ResponseFormat = WebMessageFormat.Json] Foo[] GetFoos(); } </code></pre> <p><strong>Model</strong></p> <pre><code>// this is in a separate assembly from the service [DataContract] public class Foo { [DataMember] public int Id { get; set; } [DataMember] public string Name { get; set; } } </code></pre> <p><strong>JQuery</strong></p> <pre><code>$(document).ready(function() { $.getJSON(fooUrl, function(data) { alert(data); // data is an object, but data.items is null // this complains 'length is null or not an object' $.each(data.items, function(i, item) { fooList.append('&lt;option value="' + data[i].id + '"&gt;' + data[i].name + '&lt;/option&gt;'); }); }); }); </code></pre> <p>When I look at the response in Fiddler I see:</p> <pre><code> [{"Id":1,"Name":"Foo1"},{"Id":2,"Name":"Foo2"},{"Id":3,"Name":"Foo3"}] </code></pre> <p><strong>Update</strong></p> <p>Here are the raw headers from fiddler for the response comparison (me vs. flickr)</p> <p>Mine</p> <pre><code>HTTP/1.1 200 OK Content-Length: 162 Content-Type: application/json; charset=utf-8 Server: Microsoft-HTTPAPI/2.0 </code></pre> <p>Flickr</p> <pre><code>HTTP/1.1 200 OK Date: Sat, 12 Dec 2009 00:30:36 GMT P3P: policyref="http://p3p.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE GOV" Expires: Mon, 26 Jul 1997 05:00:00 GMT Last-Modified: Sat, 12 Dec 2009 00:26:19 GMT Cache-Control: no-store, no-cache, must-revalidate Cache-Control: post-check=0, pre-check=0 Pragma: no-cache Vary: Accept-Encoding Connection: close Transfer-Encoding: chunked Content-Type: application/x-javascript; charset=utf-8 </code></pre> <p>It looks like the big difference is I have application/json and they have application/x-javascript. As I noted above I am using WebMessageFormat.Json on the operation contract.</p> <p>Thanks for any help.</p> http://stackoverflow.com/questions/1715338/passing-users-identity-across-tiers-with-asp-net-and-wcf 0 Passing user's identity across tiers with ASP.NET and WCF aquinas 2009-11-11T13:59:32Z 2009-12-12T03:00:04Z <p>I'm new to WCF. Let's say I have two asp.net apps, one that uses windows authentication (an intranet app), and one that uses forms authentication (an internet app). I want both of these applications to have a service reference to a physically separate machine where all my business logic will live (in WCF). So, the app is like this:</p> <p>Browser --> ASP.NET --> WCF. When the call ends up in the WCF tier, I need to know the username that ASP.net obtained (User.Identity.Name). </p> <p>With .NET Remoting, I created a custom principal that I stashed in the LogicalCallContext. Then with a custom remoting sink on the remoting server side, I set the current thread principal to the principal in the LogicalCallContext. </p> <p>What is the correct way to do something like this with WCF? Again, my WCF service may only be called by the service account running ASP.NET, but I need to know who the call is ultimately on behalf of.</p> http://stackoverflow.com/questions/1594330/how-to-serialize-parameters-in-web-service-method 0 How to serialize parameters in Web Service method Georgi 2009-10-20T12:41:44Z 2009-12-12T03:00:04Z <p>Hi, I have this problem. I have WCF .Net C# web service with this method:</p> <pre><code>public interface IMyService { // TODO: Add your service operations here [OperationContract] ListOfRequests GetListOfRequests(string par1, string par2, string par3, DateTime par4, DateTime par5, string par6, string par7); } public class MyService : IMyService { public ListOfRequests GetListOfRequests(string par1, string par2, string par3, DateTime par4, DateTime par5, string par6, string par7) { // .... web method code here; } } </code></pre> <p>The problem is that when I generate the web service the wsdl schema return this:</p> <pre><code>&lt;xs:element name="GetListOfRequests"&gt; &lt;xs:complexType&gt; &lt;xs:sequence&gt; &lt;xs:element minOccurs="0" name="par1" nillable="true" type="xs:string" /&gt; &lt;xs:element minOccurs="0" name="par2" nillable="true" type="xs:string" /&gt; &lt;xs:element minOccurs="0" name="par3" nillable="true" type="xs:string" /&gt; &lt;xs:element minOccurs="0" name="par4" type="xs:dateTime" /&gt; &lt;xs:element minOccurs="0" name="par5" type="xs:dateTime" /&gt; &lt;xs:element minOccurs="0" name="par6" nillable="true" type="xs:string" /&gt; &lt;xs:element minOccurs="0" name="par7" nillable="true" type="xs:string" /&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;/xs:element&gt; </code></pre> <p>and I want my parameters to be not null like this:</p> <pre><code>&lt;xs:element name="GetListOfRequests"&gt; &lt;xs:complexType&gt; &lt;xs:sequence&gt; &lt;xs:element minOccurs="1" name="par1" nillable="false" type="xs:string" /&gt; &lt;xs:element minOccurs="1" name="par2" nillable="false" type="xs:string" /&gt; &lt;xs:element minOccurs="1" name="par3" nillable="false" type="xs:string" /&gt; &lt;xs:element minOccurs="1" name="par4" type="xs:dateTime" /&gt; &lt;xs:element minOccurs="1" name="par5" type="xs:dateTime" /&gt; &lt;xs:element minOccurs="1" name="par6" nillable="false" type="xs:string" /&gt; &lt;xs:element minOccurs="0" name="par7" nillable="true" type="xs:string" /&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;/xs:element&gt; </code></pre> <p>How can I serizalize parameters to achieve this? Thank you in advance for your help. Regards, Georgi</p> http://stackoverflow.com/questions/1287802/access-request-body-in-a-wcf-restful-service 0 Access Request Body in a WCF RESTful Service urini 2009-08-17T12:53:53Z 2009-12-12T01:00:01Z <p>Hi,</p> <p>How do I access the HTTP POST request body in a WCF REST service?</p> <p>Here is the service definition:</p> <pre><code>[ServiceContract] public interface ITestService { [OperationContract] [WebInvoke(Method = "POST", UriTemplate = "EntryPoint")] MyData GetData(); } </code></pre> <p>Here is the implementation:</p> <pre><code>public MyData GetData() { return new MyData(); } </code></pre> <p>I though of using the following code to access the HTTP request:</p> <pre><code>IncomingWebRequestContext context = WebOperationContext.Current.IncomingRequest; </code></pre> <p>But the IncomingWebRequestContext only gives access to the headers, not the body.</p> <p>Thanks.</p> http://stackoverflow.com/questions/1805702/wcf-cannot-find-my-custom-validator-specified-in-web-config-customusernamepass 0 WCF: Cannot find my custom validator specified in web.config - customUserNamePasswordValidatorType - - Could not load file or assembly ... - help? ElHaix 2009-11-26T21:20:00Z 2009-12-12T00:46:14Z <p>So I've basically got everything up and running with wsHttpBindings and my WCF service using custom authentication over HTTPS.</p> <p>The issue I'm having is with the customUserNamePasswordValidatorType:</p> <pre><code> &lt;serviceCredentials&gt; &lt;!-- Use our own custom validation --&gt; &lt;userNameAuthentication userNamePasswordValidationMode="Custom" customUserNamePasswordValidatorType="CustomValidator.CustomUserNameValidator, CustomValidator"/&gt; &lt;/serviceCredentials&gt; </code></pre> <p>Following directions found <a href="http://nayyeri.net/custom-username-and-password-authentication-in-wcf-3-5" rel="nofollow">here</a> I've created my custom class as well:</p> <pre><code>namespace CustomValidator { public class CustomUserNameValidator : UserNamePasswordValidator { public override void Validate(string userName, string password) { if (null == userName || null == password) { throw new ArgumentNullException(); } if (!AuthenticateUser(userName, password)) throw new SecurityTokenValidationException("Invalid Credentials"); </code></pre> <p>The error is "<strong>Could not load file or assembly 'CustomValidator' or one of its dependencies. The system cannot find the file specified.</strong>", and refers to the tail end of customUserNamePasswordValidatorType - "..., CustomValidator".</p> <p>I didn't think it was a problem having my custom validator in its own namespace and class, but I can't see what else to do to make this work.</p> <p>I've tried with/without the namespace at the beginning, swapping, etc - nothing.</p> <p>Hoping another pair of eyes can pick this out.</p> <p>Thanks.</p> <p><strong>EDIT system.serviceModel</strong></p> <pre><code> &lt;system.serviceModel&gt; &lt;bindings&gt; &lt;!-- wsHttpBinding --&gt; &lt;wsHttpBinding&gt; &lt;binding name="wsHttpEndpointBinding"&gt; &lt;security mode="TransportWithMessageCredential"&gt; &lt;transport clientCredentialType="None" /&gt; &lt;message clientCredentialType="UserName" /&gt; &lt;/security&gt; &lt;/binding&gt; &lt;/wsHttpBinding&gt; &lt;!-- webHttpBinding --&gt; &lt;webHttpBinding&gt; &lt;binding name="wsHttps" &gt; &lt;security mode="Transport"/&gt; &lt;/binding&gt; &lt;/webHttpBinding&gt; &lt;!-- Basic binding --&gt; &lt;basicHttpBinding&gt; &lt;binding name="TransportSecurity"&gt; &lt;security mode="Transport"&gt; &lt;message clientCredentialType="UserName"/&gt; &lt;!-- transport clientCredentialType="None"/--&gt; &lt;/security&gt; &lt;/binding&gt; &lt;/basicHttpBinding&gt; &lt;!-- customBinding&gt; &lt;binding name="WebHttpBinding_IService"&gt; textMessageEncoding maxReadPoolSize="64" maxWritePoolSize="16" messageVersion="Soap12" writeEncoding="utf-8"&gt; &lt;readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384" maxBytesPerRead="4096" maxNameTableCharCount="16384" /&gt; &lt;/textMessageEncoding&gt; &lt;httpsTransport manualAddressing="false"/&gt; &lt;/binding&gt; &lt;/customBinding --&gt; &lt;!-- Another custom binding --&gt; &lt;customBinding&gt; &lt;binding name="CustomMapper"&gt; &lt;webMessageEncoding webContentTypeMapperType= "IndexingService.CustomContentTypeMapper, IndexingService" /&gt; &lt;httpTransport manualAddressing="true" /&gt; &lt;/binding&gt; &lt;/customBinding&gt; &lt;/bindings&gt; &lt;serviceHostingEnvironment aspNetCompatibilityEnabled="false" /&gt; &lt;services&gt; &lt;service behaviorConfiguration="ServiceBehavior" name="Service"&gt; &lt;!-- Service Endpoints --&gt; &lt;!-- since we're hosting in IIS, baseAddress is not required &lt;host&gt; &lt;baseAddresses&gt; &lt;add baseAddress="https://mysslserver.com/Service.svc"/&gt; &lt;/baseAddresses&gt; &lt;/host&gt; --&gt; &lt;endpoint address="https://mysslserver.com/Service.svc" binding="wsHttpBinding" bindingConfiguration="wsHttpEndpointBinding" contract="IService" name="wsHttpEndpoint"&gt; &lt;!-- Upon deployment, the following identity element should be removed or replaced to reflect the identity under which the deployed service runs. If removed, WCF will infer an appropriate identity automatically. --&gt; &lt;!--identity&gt; &lt;dns value="https://mysslserver.com"/&gt; &lt;/identity--&gt; &lt;/endpoint&gt; &lt;!-- endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange"/ --&gt; &lt;/service&gt; &lt;/services&gt; &lt;behaviors&gt; &lt;endpointBehaviors&gt; &lt;behavior name="webBehavior"&gt; &lt;webHttp /&gt; &lt;/behavior&gt; &lt;/endpointBehaviors&gt; &lt;serviceBehaviors&gt; &lt;behavior name="ServiceBehavior"&gt; &lt;!-- Setup Security/Error Auditing --&gt; &lt;serviceSecurityAudit auditLogLocation="Application" suppressAuditFailure="false" serviceAuthorizationAuditLevel="Failure" messageAuthenticationAuditLevel="Failure" /&gt; &lt;serviceMetadata httpGetEnabled="false" httpsGetEnabled="true" httpsGetUrl="https://mysslserver.com/Service.svc"/&gt; &lt;serviceDebug includeExceptionDetailInFaults="false" /&gt; &lt;serviceCredentials&gt; &lt;!-- Use our own custom validation --&gt; &lt;userNameAuthentication userNamePasswordValidationMode="Custom" customUserNamePasswordValidatorType="CustomValidator.CustomUserNameValidator, CustomValidator"/&gt; &lt;/serviceCredentials&gt; &lt;/behavior&gt; &lt;/serviceBehaviors&gt; &lt;!-- serviceBehaviors&gt; &lt;behavior name="ServiceBehavior"&gt; &lt;serviceMetadata httpsGetEnabled="true" httpsGetUrl="https://mysslserver.com/Service.svc" /&gt; To receive exception details in faults for debugging purposes, set the value below to true. Set to false before deployment to avoid disclosing exception information &lt;serviceDebug includeExceptionDetailInFaults="true"/&gt; &lt;/behavior--&gt; &lt;/behaviors&gt; &lt;/system.serviceModel&gt; </code></pre> http://stackoverflow.com/questions/1891119/is-webprotocolexception-included-in-net-4-0 0 Is WebProtocolException included in .net 4.0? jmkarthik 2009-12-11T21:55:37Z 2009-12-12T00:45:06Z <p>The WCF starter kit has WebProtocolException to throw exceptions in WCF. Is this included in .net 4.0?</p> http://stackoverflow.com/questions/1891590/asynchronous-web-service-call-returning-null-called-from-asp-net-asynchronous-pa 0 Asynchronous web service call returning null (called from ASP.NET asynchronous page) frankadelic 2009-12-11T23:42:25Z 2009-12-12T00:25:42Z <p>I am consuming a 3rd-party web service which has been implemented in WCF.</p> <p>My consumer code resides on an ASP.NET asynchronous page.</p> <p>Problem is, sometimes the BeginCallWebService() method is returning null. Shouldn't it always return an IAsyncResult object?</p> <p>Should I ask the web service developer to modify their code, or is null a legit response?</p> http://stackoverflow.com/questions/1592085/calling-client-side-wcf-service-with-type-listof-t 0 Calling Client-Side WCF Service With Type List<Of T> Code Sherpa 2009-10-20T01:58:06Z 2009-12-11T23:50:45Z <p>Hi.</p> <p>I am designing a multi-file upload service that also shows upload progress for each file.</p> <p>If I was to design my WCF method as a SOAP contract, I would do something like this:</p> <pre><code>var request = IService.UploadMethod(List&lt;Upload&gt; request); </code></pre> <p>But, how do I pass the parameter ""request"" of type "<code>List&lt;Upload&gt;</code>" when I am calling the method from the client (../upload.svc/ uploadpictures/""request"")?</p> <p>Help appreciated, thanks. </p> http://stackoverflow.com/questions/1887567/wcf-client-calling-a-java-webservice 0 WCF client calling a Java webservice Konstantin 2009-12-11T11:49:19Z 2009-12-11T23:36:24Z <p>I have a small issue logging in with a webservice being hosted using HTML with basic authentication. I have tried the following but it does not work. Are there any restrictions or gotchas on this?</p> <pre><code> var client = new WSClient(); client.ClientCredentials.UserName.UserName = "xxx"; client.ClientCredentials.UserName.Password = "yyy"; client.doIt(); </code></pre> <p>The client shows an exception with the http 401 unauthorized code, but it does not attempt to login. The client is using WCF and is generated by Visual Studio 2008, server is running Java <a href="http://en.wikipedia.org/wiki/Apache%5FCXF" rel="nofollow">Apache CXF</a>. The basic challenge works fine using a webbrowser...</p> http://stackoverflow.com/questions/1891358/wcf-ajax-webservice-alway-make-my-site-show-runtime-error-on-the-shared-hosting 0 WCF ajax webservice alway make my site show runtime error on the shared hosting Amr ElGarhy 2009-12-11T22:43:54Z 2009-12-11T22:43:54Z <p>I have ASP.Net 3.5 website, and i am using WCF for ajax requests inside the website.</p> <p>Everything is working fine local but on my shared hosting, when i upload the App_Code folder which contains the service class code, the website always shows "run time error" message without telling any reasons, when i remove the App_Code folder the website opens normally.</p> <p>Can anyone tell me how to solve that, because i read many answers on stackoverFlow but with no hope to solve mine.</p> <p>Here is my wcf service and then the web.config:</p> <pre><code>&lt;%@ ServiceHost Language="C#" Debug="true" Service="UsersManagerAjax" CodeBehind="~/App_Code/UsersManagerAjax.cs" %&gt; using System; using System.Linq; using System.Runtime.Serialization; using System.ServiceModel; using System.ServiceModel.Activation; using System.ServiceModel.Web; using Pic.Core.Repository; using Pic.Core.DomainObjects; using Pic.DataAccessDepency.DomainObjects; using Pic.DataAccessDepency.Repositories; using System.Web; [ServiceContract(Namespace = "WebServiceHost")] [AspNetCompatibilityRequirements(RequirementsMode = AspNetCompatibilityRequirementsMode.Allowed)] [ServiceBehavior(IncludeExceptionDetailInFaults=true)] public class UsersManagerAjax :ServiceHostFactory { // ...... } &lt;?xml version="1.0"?&gt; &lt;!-- Note: As an alternative to hand editing this file you can use the web admin tool to configure settings for your application. Use the Website-&gt;Asp.Net Configuration option in Visual Studio. A full list of settings and comments can be found in machine.config.comments usually located in \Windows\Microsoft.Net\Framework\v2.x\Config --&gt; &lt;configuration&gt; &lt;configSections&gt; &lt;sectionGroup name="system.web.extensions" type="System.Web.Configuration.SystemWebExtensionsSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"&gt; &lt;sectionGroup name="scripting" type="System.Web.Configuration.ScriptingSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"&gt; &lt;section name="scriptResourceHandler" type="System.Web.Configuration.ScriptingScriptResourceHandlerSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication"/&gt; &lt;sectionGroup name="webServices" type="System.Web.Configuration.ScriptingWebServicesSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"&gt; &lt;section name="jsonSerialization" type="System.Web.Configuration.ScriptingJsonSerializationSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="Everywhere"/&gt; &lt;section name="profileService" type="System.Web.Configuration.ScriptingProfileServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication"/&gt; &lt;section name="authenticationService" type="System.Web.Configuration.ScriptingAuthenticationServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication"/&gt; &lt;section name="roleService" type="System.Web.Configuration.ScriptingRoleServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication"/&gt; &lt;/sectionGroup&gt; &lt;/sectionGroup&gt; &lt;/sectionGroup&gt; &lt;/configSections&gt; &lt;appSettings/&gt; &lt;connectionStrings&gt; &lt;add name="Pic.LinqToSql.Properties.Settings.MyDBConnectionString" connectionString="Data Source=(local);Initial Catalog=MyDB;Integrated Security=True" providerName="System.Data.SqlClient" /&gt; &lt;/connectionStrings&gt; &lt;system.web&gt; &lt;!-- Set compilation debug="true" to insert debugging symbols into the compiled page. Because this affects performance, set this value to true only during development. --&gt; &lt;compilation debug="true"&gt; &lt;assemblies&gt; &lt;add assembly="System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/&gt; &lt;add assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/&gt; &lt;add assembly="System.Data.DataSetExtensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/&gt; &lt;add assembly="System.Xml.Linq, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/&gt; &lt;/assemblies&gt; &lt;/compilation&gt; &lt;!-- The &lt;authentication&gt; section enables configuration of the security authentication mode used by ASP.NET to identify an incoming user. --&gt; &lt;authentication mode="Windows"/&gt; &lt;!-- The &lt;customErrors&gt; section enables configuration of what to do if/when an unhandled error occurs during the execution of a request. Specifically, it enables developers to configure html error pages to be displayed in place of a error stack trace. &lt;customErrors mode="RemoteOnly" defaultRedirect="GenericErrorPage.htm"&gt; &lt;error statusCode="403" redirect="NoAccess.htm" /&gt; &lt;error statusCode="404" redirect="FileNotFound.htm" /&gt; &lt;/customErrors&gt; --&gt; &lt;pages&gt; &lt;controls&gt; &lt;add tagPrefix="asp" namespace="System.Web.UI" assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/&gt; &lt;add tagPrefix="asp" namespace="System.Web.UI.WebControls" assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/&gt; &lt;/controls&gt; &lt;/pages&gt; &lt;httpHandlers&gt; &lt;remove verb="*" path="*.asmx"/&gt; &lt;add verb="*" path="*.asmx" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/&gt; &lt;add verb="*" path="*_AppService.axd" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/&gt; &lt;add verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" validate="false"/&gt; &lt;/httpHandlers&gt; &lt;httpModules&gt; &lt;add name="ScriptModule" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/&gt; &lt;/httpModules&gt; &lt;/system.web&gt; &lt;system.codedom&gt; &lt;compilers&gt; &lt;compiler language="c#;cs;csharp" extension=".cs" warningLevel="4" type="Microsoft.CSharp.CSharpCodeProvider, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"&gt; &lt;providerOption name="CompilerVersion" value="v3.5"/&gt; &lt;providerOption name="WarnAsError" value="false"/&gt; &lt;/compiler&gt; &lt;compiler language="vb;vbs;visualbasic;vbscript" extension=".vb" warningLevel="4" type="Microsoft.VisualBasic.VBCodeProvider, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"&gt; &lt;providerOption name="CompilerVersion" value="v3.5"/&gt; &lt;providerOption name="OptionInfer" value="true"/&gt; &lt;providerOption name="WarnAsError" value="false"/&gt; &lt;/compiler&gt; &lt;/compilers&gt; &lt;/system.codedom&gt; &lt;!-- The system.webServer section is required for running ASP.NET AJAX under Internet Information Services 7.0. It is not necessary for previous version of IIS. --&gt; &lt;system.webServer&gt; &lt;validation validateIntegratedModeConfiguration="false"/&gt; &lt;modules&gt; &lt;remove name="ScriptModule"/&gt; &lt;add name="ScriptModule" preCondition="managedHandler" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/&gt; &lt;/modules&gt; &lt;handlers&gt; &lt;remove name="WebServiceHandlerFactory-Integrated"/&gt; &lt;remove name="ScriptHandlerFactory"/&gt; &lt;remove name="ScriptHandlerFactoryAppServices"/&gt; &lt;remove name="ScriptResource"/&gt; &lt;add name="ScriptHandlerFactory" verb="*" path="*.asmx" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/&gt; &lt;add name="ScriptHandlerFactoryAppServices" verb="*" path="*_AppService.axd" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/&gt; &lt;add name="ScriptResource" preCondition="integratedMode" verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/&gt; &lt;add name=".svc" verb="*" path="*.svc" type="System.ServiceModel.Activation.HttpHandler, System.ServiceModel, Version=3.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" /&gt; &lt;/handlers&gt; &lt;/system.webServer&gt; &lt;runtime&gt; &lt;assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"&gt; &lt;dependentAssembly&gt; &lt;assemblyIdentity name="System.Web.Extensions" publicKeyToken="31bf3856ad364e35"/&gt; &lt;bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="3.5.0.0"/&gt; &lt;/dependentAssembly&gt; &lt;dependentAssembly&gt; &lt;assemblyIdentity name="System.Web.Extensions.Design" publicKeyToken="31bf3856ad364e35"/&gt; &lt;bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="3.5.0.0"/&gt; &lt;/dependentAssembly&gt; &lt;/assemblyBinding&gt; &lt;/runtime&gt; &lt;system.serviceModel&gt; &lt;behaviors&gt; &lt;endpointBehaviors&gt; &lt;behavior name="UsersManagerAjaxAspNetAjaxBehavior"&gt; &lt;enableWebScript /&gt; &lt;/behavior&gt; &lt;/endpointBehaviors&gt; &lt;/behaviors&gt; &lt;serviceHostingEnvironment aspNetCompatibilityEnabled="true" /&gt; &lt;services&gt; &lt;service name="UsersManagerAjax"&gt; &lt;endpoint address="" behaviorConfiguration="UsersManagerAjaxAspNetAjaxBehavior" binding="webHttpBinding" contract="UsersManagerAjax" /&gt; &lt;/service&gt; &lt;/services&gt; &lt;/system.serviceModel&gt; &lt;/configuration&gt; </code></pre> http://stackoverflow.com/questions/1890679/implementing-an-async-wcf-service 0 Implementing an async WCF service bambuska 2009-12-11T20:28:34Z 2009-12-11T22:27:28Z <p>I have a WPF application which I'm currently working on separating into a client and server side - using WCF. I did not like the mess I initially got with the straight forward solution, so now I'm restructuring following the recommendations in the screencast of Miguel Castro, <a href="http://www.dnrtv.com/default.aspx?showNum=122" rel="nofollow">WCF Extreme</a>. If you're not familiar with the video he basically sets up the whole communication manually - without using service references. This includes: </p> <ul> <li>A common Contract with all service and data contracts - referenced by the client and server</li> <li>A console application hosting the service</li> <li>Proxy classes on the client mapping up the service, and passing calls to it (using ClientBase or ClientFactory)</li> </ul> <p>I've followed all his steps, and I really like where this is going. However, he does not address asynchronous service calls, and this is what I'd like to use. </p> <p>When adding a Service Reference I can check a "Generate async operations" checkbox, and I get MyServiceCompleted and MyServiceAsync. However, I guess this is something which was generated when adding the service reference, and not some magic in the classes this builds on? </p> <p>So, can I get async operations from ClientBase or ClientFactory somehow? Or do I have to define the actual server side services to be async? If so - could someone please give me a few hints or examples on how to get started with a simple async service? I've been reading around on MSDN on the subject, but it has left me all confused feeling like an idiot for not getting this already.. </p> http://stackoverflow.com/questions/1891073/ria-use-local-iis-web-server 0 RIA: "Use local IIS Web server" Buddy Lee 2009-12-11T21:45:41Z 2009-12-11T21:45:41Z <p>I know I've had this problem when I started working with Silverlight, but I can't for the life of me remember how to fix it.</p> <p>I created a new RIA service application using the standard tutorial, added a table from the database and added a grid to display the results. Works great. Now I pull open the Web properties and change the web project to "use local IIS Web server". Suddenly the application will load up and give me the friendly "NotFound" error. </p> <p>Please, someone remind me what I'm missing here.</p> http://stackoverflow.com/questions/1891058/how-to-store-info-about-the-authenticated-user-in-wcf 1 How to store info about the authenticated user in WCF? Sly 2009-12-11T21:43:21Z 2009-12-11T21:45:31Z <p>I have a WCF service where I use a customUserNamePasswordValidatorType (specified in the behaviors\serviceBehaviors\serviceCredentials\userNameAuthentication section of the web.config file).</p> <p>My custom UserNamePasswordValidator works that way:</p> <pre><code>public bool Authenticate(string userName, string password) { If ( IsUserValid(username, password) ) { UserInfo currentUser = CreateUserInfo(username); // // Here I'd like to store the currentUser object somewhere so that // it can be used during the service method execution // return true; } return false; </code></pre> <p>}</p> <p>During the service call execution, I need to access the info of the authenticated user. For instance I would like to be able to implement:</p> <pre><code>public class MyService : IService { public string Service1() { // // Here I'd like to retrieve the currentUser object and use it // return "Hello" + currentUser.Name; } } </code></pre> <p>My question is how and where should I store the information during the authentication process so that it can be accessed during the call execution process? That storage should only last as long as the "session" is valid.</p> <p>By the way, I don't use (and don't want to use) secure sessions and/or reliable sessions. So I have both establishSecuritytContext and reliableSessions turned off.</p> <p>I'm thinking of enabling ASP.NET Compatibility Mode to store the user info in the HttpContext.Current.Session but I have the feeling it's not how it should be done.</p> http://stackoverflow.com/questions/1890741/messages-via-soap-throws-communicationexception 0 Messages via SOAP throws CommunicationException bobjink 2009-12-11T20:39:39Z 2009-12-11T20:42:31Z <p>This is how my service is set up:</p> <pre><code>myServiceHost = new ServiceHost(typeof(ChatCommunicationService), new Uri("http://localhost:8080")); myServiceHost.AddServiceEndpoint(typeof(IChatService), new WSHttpBinding(), "Soap"); myServiceHost.Open(); </code></pre> <p>This is how my webservice client is set up:</p> <pre><code>ChannelFactory&lt;IChatService&gt; scf = new ChannelFactory&lt;IChatService&gt;(new WSHttpBinding(), "http://localhost:8080/Soap"); _chatService = scf.CreateChannel(); </code></pre> <p>But when I am using it in my application I get an <code>System.ServiceModel.CommunicationException</code>. I have tried for a long time and I have know idea how to solve it. Googling it shows something about setting keepalive to false but I dont know where to set it.</p> <p>Note: It works in the beginning(I can send message via SOAP) but it always throws an exception at the same place. Talking directly to my database I get no exceptions. I have to use SOAP.</p> <p>I would appreciate it if anyone could help :)</p> <p>Error message:</p> <pre><code>System.ServiceModel.CommunicationException: The underlying connection was closed: A connection that was expected to be kept alive was closed by the server. ---&gt; System.Net.WebException: The underlying connection was closed: A connection that was expected to be kept alive was closed by the server. ---&gt; System.IO.IOException: Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. ---&gt; System.Net.Sockets.SocketException: An existing connection was forcibly closed by the remote host at System.Net.Sockets.Socket.Receive(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags) at System.Net.Sockets.NetworkStream.Read(Byte[] buffer, Int32 offset, Int32 size) --- End of inner exception stack trace --- at System.Net.Sockets.NetworkStream.Read(Byte[] buffer, Int32 offset, Int32 size) at System.Net.PooledStream.Read(Byte[] buffer, Int32 offset, Int32 size) at System.Net.Connection.SyncRead(HttpWebRequest request, Boolean userReA first chance exception of type 'System.ServiceModel.CommunicationException' occurred in mscorlib.dll trievedStream, Boolean probeRead) --- End of inner exception stack trace --- at System.Net.HttpWebRequest.GetResponse() at System.ServiceModel.Channels.HttpChannelFactory.HttpRequestChannel.HttpChannelRequest.WaitForReply(TimeSpan timeout) --- End of inner exception stack trace --- Server stack trace: at System.ServiceModel.Channels.HttpChannelUtilities.ProcessGetResponseWebException(WebException webException, HttpWebRequest request, HttpAbortReason abortReason) at System.ServiceModel.Channels.HttpChannelFactory.HttpRequestChannel.HttpChannelRequest.WaitForReply(TimeSpan timeout) at System.ServiceModel.Channels.RequestChannel.Request(Message message, TimeSpan timeout) at System.ServiceModel.Channels.ClientReliableChannelBinder`1.RequestClientReliableChannelBinder`1.OnRequest(TRequestChannel channel, Message message, TimeSpan timeout, MaskingMode maskingMode) at System.ServiceModel.Channels.ClientReliableChannelBinder`1.Request(Message message, TimeSpan timeout, MaskingMode maskingMode) at System.ServiceModel.Channels.ClientReliableChannelBinder`1.Request(Message message, TimeSpan timeout) at System.ServiceModel.Security.SecuritySessionClientSettings`1.SecurityRequestSessionChannel.Request(Message message, TimeSpan timeout) at System.ServiceModel.Dispatcher.RequestChannelBinder.Request(Message message, TimeSpan timeout) at System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs, TimeSpan timeout) at System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs) at System.ServiceModel.Channels.ServiceChannelProxy.InvokeService(IMethodCallMessage methodCall, ProxyOperationRuntime operation) at System.ServiceModel.Channels.ServiceChannelProxy.Invoke(IMessage message) </code></pre> http://stackoverflow.com/questions/1889946/restful-wcf-remove-all-xmlns 0 RESTFUL WCF Remove all xmlns Chris Klepeis 2009-12-11T18:21:58Z 2009-12-11T20:23:08Z <p>I set my DataContracts namespace to "" which removed one namespace but I have to remove the other:</p> <blockquote> <p>xmlns:i="http://www.w3.org/2001/XMLSchema-instance"</p> </blockquote> <p>If theres no other way, how can I serialize my class prior to returning and hack out the namespace?</p> <p>I have to do this to work with another companys API.</p> http://stackoverflow.com/questions/1890327/wcf-common-library-enum-issue-c 0 WCF - Common library enum issue - C# ElHaix 2009-12-11T19:26:47Z 2009-12-11T19:26:47Z <p>I've got a common library that contains enums that are shared between a WCF Service and a client by means of the DLL. Yes, I know the better way of doing this is to create a service out of my common lib - that's for later.</p> <p>I've made a change to my common lib, adding another field to the enum. After compiling, I've updated the DLL's in both the WCF service and my web client.</p> <p>Initially, I was getting the error:</p> <blockquote> <p>Ensure that the necessary enum values are present and are marked with EnumMemberAttribute attribute if the type has DataContractAttribute attribute.</p> </blockquote> <p>This was quickly corrected by removing the check from the service reference configuration on the client, "Reuse types in referenced assemblies".</p> <p>Now, however I am getting an error referring to the new enum value I added:</p> <blockquote> <p>Invalid enum value 'TestDataReceived_OK_NoDataWritten' cannot be deserialized into type...</p> </blockquote> <p>So this leads me to believe that there are two library versions out there, but I'm not sure how to resolve this.</p> <p>I haven't setup any sort of [DataContract] areas in my service interface. If I need to, some code sample would be useful.</p> <p>Thank you.</p> http://stackoverflow.com/questions/1887638/application-structure-using-wcf 1 Application structure using WCF bambuska 2009-12-11T12:04:21Z 2009-12-11T19:17:43Z <p>I have a WPF application which so far has been client only, but now I'm working on splitting it into a client and server side. In this work I'm introducing WCF for the client-server communication. My application has several projects, and service references are needed from more than one of these. </p> <p>Initial effort in doing the separation is to do everything "straight forward". All projects needing to communicate with a service gets a service reference, and so do the main WPF application project - to get the app.config there. I find this to turn into a mess rather quickly, and I can't imagine this being the typical architecture people use? I've also seen problems with the fact that each of the service references generates a new implementation of the DataContract classes - hence there is no common understanding of the DataContract classes on cross of projects. I have some ViewModel classes in one project, and another project instanciating some ViewModel. I'd like to pass the object received from service, but I can't as the generated client-side representation of the object received differs in each project. </p> <p>So - is there a recommended way of structuring such client/server separations using WCF? Or principles to follow? I'm thinking one common Proxy project used on the client side that does the communication with the services, wraps the received data, and returns data on a form well known to the client libraries. Should give only one service reference, and I guess I only need the App.config in the wpfApp-project? Does this make sense? </p> http://stackoverflow.com/questions/1889417/wcf-ria-error-and-logging 0 WCF RIA Error and Logging Hurricanepkt 2009-12-11T17:03:37Z 2009-12-11T19:15:02Z <p>I am trying to add a WCF RIA service to an existing website.</p> <p>When I load the page I get a "Load Operation failed for query"</p> <p>I fire up fiddler2 and get<br> The resource cannot be found. </p> <pre><code>&lt;body bgcolor="white"&gt; &lt;span&gt;&lt;H1&gt;Server Error in '/' Application.&lt;hr width=100% size=1 color=silver&gt;&lt;/H1&gt; &lt;h2&gt; &lt;i&gt;The resource cannot be found.&lt;/i&gt; &lt;/h2&gt;&lt;/span&gt; &lt;font face="Arial, Helvetica, Geneva, SunSans-Regular, sans-serif "&gt; &lt;b&gt; Description: &lt;/b&gt;HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable. &amp;nbsp;Please review the following URL and make sure that it is spelled correctly. &lt;br&gt;&lt;br&gt; &lt;b&gt; Requested URL: &lt;/b&gt;/Services/WCSynthesis-Web-WCSynthDomainService.svc/binary&lt;br&gt;&lt;br&gt; &lt;hr width=100% size=1 color=silver&gt; </code></pre> <p>So then I try to get the WCF Loggging working but the Services is empty and so is the C:\Users\markgreenway\Desktop\My Dropbox\WCSynthesis\WCSynthesis.Web\Web_messages.svclog File </p> <p><img src="http://web7.twitpic.com/img/48823384-d9b0438ce6a54d9286856ee83dc8447a.4b227a17-scaled.jpg" alt="alt text"></p> <p>So I cannot view anything in the Service Trace Viewer </p> <p>my System.Diagnostics </p> <pre><code> &lt;system.diagnostics&gt; &lt;sources&gt; &lt;source name="System.ServiceModel.MessageLogging" switchValue="Warning, ActivityTracing"&gt; &lt;listeners&gt; &lt;add type="System.Diagnostics.DefaultTraceListener" name="Default"&gt; &lt;filter type="" /&gt; &lt;/add&gt; &lt;add name="ServiceModelMessageLoggingListener"&gt; &lt;filter type="" /&gt; &lt;/add&gt; &lt;/listeners&gt; &lt;/source&gt; &lt;source propagateActivity="true" name="System.ServiceModel" switchValue="Warning, ActivityTracing"&gt; &lt;listeners&gt; &lt;add type="System.Diagnostics.DefaultTraceListener" name="Default"&gt; &lt;filter type="" /&gt; &lt;/add&gt; &lt;add name="ServiceModelTraceListener"&gt; &lt;filter type="" /&gt; &lt;/add&gt; &lt;/listeners&gt; &lt;/source&gt; &lt;/sources&gt; &lt;sharedListeners&gt; &lt;add initializeData="C:\Users\markgreenway\Desktop\My Dropbox\WCSynthesis\WCSynthesis.Web\Web_messages.svclog" type="System.Diagnostics.XmlWriterTraceListener, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" name="ServiceModelMessageLoggingListener" traceOutputOptions="Timestamp"&gt; &lt;filter type="" /&gt; &lt;/add&gt; &lt;add initializeData="C:\Users\markgreenway\Desktop\My Dropbox\WCSynthesis\WCSynthesis.Web\Web_tracelog.svclog" type="System.Diagnostics.XmlWriterTraceListener, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" name="ServiceModelTraceListener" traceOutputOptions="Timestamp"&gt; &lt;filter type="" /&gt; &lt;/add&gt; &lt;/sharedListeners&gt; </code></pre> <p></p> http://stackoverflow.com/questions/1859552/wcf-authenticationservice-in-iis7-error 0 WCF AuthenticationService in IIS7 Error germandb 2009-12-07T11:54:22Z 2009-12-11T18:38:55Z <p>I have a WCF Server running on IIS 7 using default application pool, with SSL activate, the services is installed in a SBS Server 2008. I implement client application services with wcf and SQL 2005 for setting the access control in my application. The application run under windows vista and is make with WPF. In my developer machine the application and the WCF services run well, the IIS i'm use for the trials is the local IIS 7 and the database is the SQL Server 2005 database hosting in my server. I'm using Visual Studio Project Designer to enable and configure client application services. using <code>https://localhost/WcfServidorFundacion</code>. When i'm change the authentication services location to <code>https://WcfServices:5659/WcfServidorFundacion</code> and recompile the application, the following error show up. Message: The web service returned the error status code: InternalServerError. Details of service failure: {"Message":" Error while processing your request ","StackTrace":"","ExceptionType":""}</p> <p>Stack Trace: en System.Net.HttpWebRequest.GetResponse() en System.Web.ClientServices.Providers.ProxyHelper.CreateWebRequestAndGetResponse(String serverUri, CookieContainer&amp; cookies, String username, String connectionString, String connectionStringProvider, String[] paramNames, Object[] paramValues, Type returnType)</p> <p>InnerException: System.Net.WebException Message="Remote Server Error: (500) Interal Server Error."</p> <p>I can access the WCF service from the navigator using the url mentioned above and even make a webReference in my project. I make a capture of the response but I'cant post it because i don't have 10 reputation points </p> <p>I activate the error log in the IIS 7 server, and the result is a Warning in the ManagedPipilineHandler. I appreciate if any one can help me </p> <p>Errors &amp; Warnings No.↓ Severity Event Module Name<br> 132. view trace Warning -MODULE_SET_RESPONSE_ERROR_STATUS ModuleName ManagedPipelineHandler Notification 128 HttpStatus 500 HttpReason Internal Server Error HttpSubStatus 0 ErrorCode 0 ConfigExceptionInfo<br> Notification EXECUTE_REQUEST_HANDLER ErrorCode La operación se ha completado correctamente. (0x0)</p> <p>Maybe this can help, is the web.config of my service</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;!-- Nota: como alternativa para editar manualmente este archivo, puede utilizar la herramienta Administración de sitios web para configurar los valores de la aplicación. Utilice la opción Sitio Web-&gt;Configuración de Asp.Net en Visual Studio. Encontrará una lista completa de valores de configuración y comentarios en machine.config.comments, que se encuentra generalmente en \Windows\Microsoft.Net\Framework\v2.x\Config --&gt; &lt;configuration&gt; &lt;configSections&gt; &lt;sectionGroup name="system.web.extensions" type="System.Web.Configuration.SystemWebExtensionsSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"&gt; &lt;sectionGroup name="scripting" type="System.Web.Configuration.ScriptingSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"&gt; &lt;section name="scriptResourceHandler" type="System.Web.Configuration.ScriptingScriptResourceHandlerSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication" /&gt; &lt;sectionGroup name="webServices" type="System.Web.Configuration.ScriptingWebServicesSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"&gt; &lt;section name="jsonSerialization" type="System.Web.Configuration.ScriptingJsonSerializationSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="Everywhere" /&gt; &lt;section name="profileService" type="System.Web.Configuration.ScriptingProfileServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication" /&gt; &lt;section name="authenticationService" type="System.Web.Configuration.ScriptingAuthenticationServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication" /&gt; &lt;section name="roleService" type="System.Web.Configuration.ScriptingRoleServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication" /&gt; &lt;/sectionGroup&gt; &lt;/sectionGroup&gt; &lt;/sectionGroup&gt; &lt;/configSections&gt; &lt;appSettings /&gt; &lt;connectionStrings&gt; &lt;remove name="LocalMySqlServer" /&gt; &lt;remove name="LocalSqlServer" /&gt; &lt;add name="fundacionSelfAut" connectionString="Data Source=FUNDACIONSERVER/PRUEBAS;Initial Catalog=fundacion;User ID=wcfBaseDatos;Password=qwerty_2009;" providerName="System.Data.SqlClient" /&gt; &lt;/connectionStrings&gt; &lt;system.web&gt; &lt;profile enabled="true" defaultProvider="SqlProfileProvider"&gt; &lt;providers&gt; &lt;clear /&gt; &lt;add name="SqlProfileProvider" type="System.Web.Profile.SqlProfileProvider" connectionStringName="fundacionSelfAut" applicationName="fundafe" /&gt; &lt;/providers&gt; &lt;properties&gt; &lt;add name="FirstName" type="String" /&gt; &lt;add name="LastName" type="String" /&gt; &lt;add name="PhoneNumber" type="String" /&gt; &lt;/properties&gt; &lt;/profile&gt; &lt;roleManager enabled="true" defaultProvider="SqlRoleProvider"&gt; &lt;providers&gt; &lt;clear /&gt; &lt;add name="SqlRoleProvider" type="System.Web.Security.SqlRoleProvider" connectionStringName="fundacionSelfAut" applicationName="fundafe" /&gt; &lt;/providers&gt; &lt;/roleManager&gt; &lt;membership defaultProvider="SqlMembershipProvider"&gt; &lt;providers&gt; &lt;clear /&gt; &lt;add name="SqlMembershipProvider" type="System.Web.Security.SqlMembershipProvider" connectionStringName="fundacionSelfAut" applicationName="fundafe" enablePasswordRetrieval="false" enablePasswordReset="false" requiresQuestionAndAnswer="true" requiresUniqueEmail="true" passwordFormat="Hashed" /&gt; &lt;/providers&gt; &lt;/membership&gt; &lt;authentication mode="Forms" /&gt; &lt;compilation debug="true" strict="false" explicit="true"&gt; &lt;assemblies&gt; &lt;add assembly="System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" /&gt; &lt;add assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" /&gt; &lt;/assemblies&gt; &lt;/compilation&gt; &lt;!-- La sección &lt;authentication&gt; permite la configuración del modo de autenticación de seguridad utilizado por ASP.NET para identificar a un usuario entrante. --&gt; &lt;!-- La sección &lt;customErrors&gt; permite configurar las acciones que se deben llevar a cabo/cuando un error no controlado tiene lugar durante la ejecución de una solicitud. Específicamente, permite a los desarrolladores configurar páginas de error html que se mostrarán en lugar de un seguimiento de pila de errores. &lt;customErrors mode="RemoteOnly" defaultRedirect="GenericErrorPage.htm"&gt; &lt;error statusCode="403" redirect="NoAccess.htm" /&gt; &lt;error statusCode="404" redirect="FileNotFound.htm" /&gt; &lt;/customErrors&gt; --&gt; &lt;pages&gt; &lt;controls&gt; &lt;add tagPrefix="asp" namespace="System.Web.UI" assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" /&gt; &lt;/controls&gt; &lt;/pages&gt; &lt;httpHandlers&gt; &lt;remove verb="*" path="*.asmx" /&gt; &lt;add verb="*" path="*.asmx" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" /&gt; &lt;add verb="*" path="*_AppService.axd" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" /&gt; &lt;add verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" validate="false" /&gt; &lt;/httpHandlers&gt; &lt;httpModules&gt; &lt;add name="ScriptModule" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" /&gt; &lt;/httpModules&gt; &lt;sessionState timeout="40" /&gt; &lt;/system.web&gt; &lt;system.codedom&gt; &lt;compilers&gt; &lt;compiler language="c#;cs;csharp" extension=".cs" warningLevel="4" type="Microsoft.CSharp.CSharpCodeProvider, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"&gt; &lt;providerOption name="CompilerVersion" value="v3.5" /&gt; &lt;providerOption name="WarnAsError" value="false" /&gt; &lt;/compiler&gt; &lt;/compilers&gt; &lt;/system.codedom&gt; &lt;!-- La sección webServer del sistema es necesaria para ejecutar ASP.NET AJAX en Internet Information Services 7.0. Sin embargo, no es necesaria para la versión anterior de IIS. --&gt; &lt;system.webServer&gt; &lt;validation validateIntegratedModeConfiguration="false" /&gt; &lt;modules&gt; &lt;add name="ScriptModule" preCondition="integratedMode" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" /&gt; &lt;/modules&gt; &lt;handlers&gt; &lt;remove name="WebServiceHandlerFactory-Integrated" /&gt; &lt;add name="ScriptHandlerFactory" verb="*" path="*.asmx" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" /&gt; &lt;add name="ScriptHandlerFactoryAppServices" verb="*" path="*_AppService.axd" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" /&gt; &lt;add name="ScriptResource" preCondition="integratedMode" verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" /&gt; &lt;/handlers&gt; &lt;tracing&gt; &lt;traceFailedRequests&gt; &lt;add path="*"&gt; &lt;traceAreas&gt; &lt;add provider="ASP" verbosity="Verbose" /&gt; &lt;add provider="ASPNET" areas="Infrastructure,Module,Page,AppServices" verbosity="Verbose" /&gt; &lt;add provider="ISAPI Extension" verbosity="Verbose" /&gt; &lt;add provider="WWW Server" areas="Authentication,Security,Filter,StaticFile,CGI,Compression,Cache,RequestNotifications,Module" verbosity="Verbose" /&gt; &lt;/traceAreas&gt; &lt;failureDefinitions statusCodes="401.3,500,403,404,405" /&gt; &lt;/add&gt; &lt;/traceFailedRequests&gt; &lt;/tracing&gt; &lt;security&gt; &lt;authorization&gt; &lt;add accessType="Allow" users="germanbarbosa,informatica" /&gt; &lt;/authorization&gt; &lt;authentication&gt; &lt;windowsAuthentication enabled="false" /&gt; &lt;/authentication&gt; &lt;/security&gt; &lt;/system.webServer&gt; &lt;system.web.extensions&gt; &lt;scripting&gt; &lt;webServices&gt; &lt;authenticationService enabled="true" requireSSL="true" /&gt; &lt;profileService enabled="true" readAccessProperties="FirstName,LastName,PhoneNumber" /&gt; &lt;roleService enabled="true" /&gt; &lt;/webServices&gt; &lt;/scripting&gt; &lt;/system.web.extensions&gt; &lt;system.serviceModel&gt; &lt;services&gt; &lt;!-- this enables the WCF AuthenticationService endpoint --&gt; &lt;service behaviorConfiguration="AppServiceBehaviors" name="System.Web.ApplicationServices.AuthenticationService"&gt; &lt;endpoint address="" binding="basicHttpBinding" bindingConfiguration="userHttps" bindingNamespace="http://asp.net/ApplicationServices/v200" contract="System.Web.ApplicationServices.AuthenticationService" /&gt; &lt;/service&gt; &lt;!-- this enables the WCF RoleService endpoint --&gt; &lt;service behaviorConfiguration="AppServiceBehaviors" name="System.Web.ApplicationServices.RoleService"&gt; &lt;endpoint binding="basicHttpBinding" bindingConfiguration="userHttps" bindingNamespace="http://asp.net/ApplicationServices/v200" contract="System.Web.ApplicationServices.RoleService" /&gt; &lt;/service&gt; &lt;!-- this enables the WCF ProfileService endpoint --&gt; &lt;service behaviorConfiguration="AppServiceBehaviors" name="System.Web.ApplicationServices.ProfileService"&gt; &lt;endpoint binding="basicHttpBinding" bindingNamespace="http://asp.net/ApplicationServices/v200" bindingConfiguration="userHttps" contract="System.Web.ApplicationServices.ProfileService" /&gt; &lt;/service&gt; &lt;/services&gt; &lt;bindings&gt; &lt;basicHttpBinding&gt; &lt;!-- Set up a binding that uses Username as the client credential type --&gt; &lt;binding name="userHttps"&gt; &lt;security mode="Transport"&gt; &lt;/security&gt; &lt;/binding&gt; &lt;/basicHttpBinding&gt; &lt;/bindings&gt; &lt;behaviors&gt; &lt;serviceBehaviors&gt; &lt;behavior name="AppServiceBehaviors"&gt; &lt;serviceMetadata httpGetEnabled="false" httpsGetEnabled="true" /&gt; &lt;serviceDebug includeExceptionDetailInFaults="true" /&gt; &lt;serviceAuthorization principalPermissionMode="UseAspNetRoles" roleProviderName="SqlRoleProvider" /&gt; &lt;serviceCredentials&gt; &lt;userNameAuthentication userNamePasswordValidationMode="MembershipProvider" membershipProviderName="SqlMembershipProvider" /&gt; &lt;/serviceCredentials&gt; &lt;/behavior&gt; &lt;/serviceBehaviors&gt; &lt;/behaviors&gt; &lt;serviceHostingEnvironment aspNetCompatibilityEnabled="true" /&gt; &lt;/system.serviceModel&gt; &lt;/configuration&gt; </code></pre> http://stackoverflow.com/questions/1868919/exporting-wsdl-xsd-schemas-for-data-contract-types-with-ixmlserializable 0 Exporting WSDL/XSD schemas for data contract types with IXmlSerializable Shrike 2009-12-08T18:27:49Z 2009-12-11T16:42:21Z <p>I'm creating a WCF service which I want to consume from a Java app. But the question isn't about .net-java interop.</p> <p>The key point is one of types related to a service operation is IXmlSerializable. That type return its XSD schema with static method referenced by XmlSchemaProviderAttribute. The problem is when we get wsdl for the service through mex-endpoint (<a href="http://..svc?wsdl" rel="nofollow">http://..svc?wsdl</a>) that schema isn't returned.</p> <p>Here're the details.</p> <p>Some wcf service contract:</p> <pre><code> [ServiceContract] public interface IService1 { [OperationContract] DomainData GetData(); } </code></pre> <p>DomainData type is:</p> <pre><code> [DataContract(Namespace = "http://schemas.biz.org/Samples/customserialization")] public class DomainData { [DataMember(Name = "AuxData")] Dictionary&lt;String, AuxDomainData&gt; m_auxData = new Dictionary&lt;string, AuxDomainData&gt;(); [DataMember] public string ObjectId { get; set; } public IDictionary&lt;string, AuxDomainData&gt; AuxData { get { return m_auxData; } } } </code></pre> <p>As you can see DomainData contains a dictionary of AuxDomainData objects, which is:</p> <pre><code> [XmlSchemaProvider("GetXmlSerializationSchema")] public class AuxDomainData : IXmlSerializable { [DataMember] public Object AuxData { get; set; } XmlSchema IXmlSerializable.GetSchema() { return null; } void IXmlSerializable.ReadXml(XmlReader reader) { } void IXmlSerializable.WriteXml(XmlWriter writer) { } public static string Namespace = "http://schemas.biz.org/Samples/customserialization"; public static XmlQualifiedName GetXmlSerializationSchema(XmlSchemaSet schemas) { var qname = new XmlQualifiedName("AuxDomainData", Namespace); string resourceName = "CustomSerialization.aux-domain-data.xsd"; using (Stream stream = typeof(AuxDomainData).Assembly.GetManifestResourceStream(resourceName)) { var schema = XmlSchema.Read(stream, null); schemas.Add(schema); } return qname; } } </code></pre> <p>Here we're returning XSD schema in GetXmlSerializationSchema method. Schema itself is simple but let me skip it here.</p> <p>That code is straightforward I guess, it's common scenario for IXmlSerializable types.</p> <p>Now, we want WSDL. I'm going to use WSDL for creating a Java client with help of <a href="https://metro.dev.java.net/" rel="nofollow">Metro</a> But actually JDK 1.6 is enough as it contains WS stack (and wsimport.exe). So java wants wsdl with wsdl:service definition. That's why I can't give it a wsdl from wsdl.exe (because a wsdl produced by wsdl doesn't contain wsdl:service definition, only wsdl:portType). So, I call wsimport.bat <a href="http://localhost/Service1.svc?wsdl" rel="nofollow">http://localhost/Service1.svc?wsdl</a></p> <p>But what I get in respose is : [ERROR] undefined simple or complex type 'q1:AuxDomainData' line 1 of <a href="http://locahost/CustomSerialization/Service1.svc?xsd=xsd3" rel="nofollow">http://locahost/CustomSerialization/Service1.svc?xsd=xsd3</a></p> <p>That's because a composed wsdl actually doesn't contain such type as AuxDomainData. That's true and we can't blame java/metro/any other stack. If we look at wsdl produced by wcf it contains wsdl:types element with imports of all xsd schemas:</p> <pre><code>&lt;wsdl:types&gt; &lt;xsd:schema targetNamespace="http://tempuri.org/Imports"&gt; &lt;xsd:import schemaLocation="http://localhost/CustomSerialization/Service1.svc?xsd=xsd0" namespace="http://tempuri.org/" /&gt; &lt;xsd:import schemaLocation="http://localhost/CustomSerialization/Service1.svc?xsd=xsd1" namespace="http://schemas.microsoft.com/2003/10/Serialization/" /&gt; &lt;xsd:import schemaLocation="http://localhost/CustomSerialization/Service1.svc?xsd=xsd2" namespace="http://schemas.biz.org/Samples/customserialization" /&gt; &lt;xsd:import schemaLocation="http://localhost/CustomSerialization/Service1.svc?xsd=xsd3" namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays" /&gt; &lt;/xsd:schema&gt; &lt;/wsdl:types&gt; </code></pre> <p>I wont' provide all xsd here but the point is there is <strong>no</strong> AuxDomainData definition in they. The xsd-schema for AuxDomainData type is in <a href="http://localhost/CustomSerialization/Service1.svc?xsd=xsd" rel="nofollow">http://localhost/CustomSerialization/Service1.svc?xsd=xsd</a><strong>4</strong> "document". But as you can see the root wsdl doesn't contain a reference to it. That's the problem. The result wsdl/xsd schema set isn't complete.</p> <p>So, what are my options?</p> http://stackoverflow.com/questions/1154403/wcf-intercept-message-send-receive-progress-in-client 0 WCF: intercept message send/receive progress in client Cullen Tsering 2009-07-20T16:00:46Z 2009-12-11T16:00:02Z <p>Hello gurus,</p> <p>I have a desktop application sending/receiving messages (not files) to/from a WCF service. </p> <p>How do I intercept the total size of the message to be transferred and receive feedback (number of bytes transferred) during the transmission so a progress bar maybe displayed to the desktop app user?</p> <p>How many approaches are there? What is the best one given my application scenario?</p> <p>Any comments or suggestions will be greatly appreciated,</p> <p>Cullen</p> http://stackoverflow.com/questions/1888233/what-happens-when-a-wcf-client-specifies-multiple-endpoints-for-the-same-contract 0 What happens when a WCF client specifies multiple endpoints for the same contract? Jader Dias 2009-12-11T13:57:37Z 2009-12-11T14:01:03Z <p>Will it consume from all of them? Will it throw an exception?</p> http://stackoverflow.com/questions/1887962/is-it-possible-for-one-wcf-session-to-throw-an-exception-in-another-session 1 Is it possible for one WCF session to throw an exception in another session? avance70 2009-12-11T13:07:53Z 2009-12-11T13:41:20Z <p>if an administrator logs on to my service, he may wish to disconnect sessions which meet (or don't meet) certain requirements, be it automated or manual. throwing exceptions seems like a simple and effective solution, as all resources are released.</p> <p>i could use a local bool field which, if true, would disconnect this user the next time he calls any of the methods, but that doesn't seem like an elegant solution.</p> <p>and, it doesn't have to be throwing exception, as i've already noticed you can use OperationContext.Current.Channel.Close(), or abort, to disable access to that session.</p> <p>is there a "standard" way to do this in wcf?</p> http://stackoverflow.com/questions/1888089/is-it-possible-to-set-the-max-length-of-a-data-member-in-wcf 0 Is it possible to set the max-length of a data member in WCF Gareth 2009-12-11T13:32:04Z 2009-12-11T13:38:35Z <p>Is it possible to set a requirement in WCF that a specific string datamember have a maximum length?</p> <p>I'm essentially wanting to do some basic validation, and enhancing the implicit documentation that WSDL gives you.</p> <p>I'm pretty sure that its possible when writing raw WSDL, but am not sure if you can do it in WCF using attributes etc.</p> <p>And related, require that an array property have at least one element in it...</p> http://stackoverflow.com/questions/1887428/is-there-any-way-to-decorate-a-class-with-attributes-through-the-configuration-fi 0 Is there any way to decorate a class with attributes through the configuration file? Jader Dias 2009-12-11T11:23:59Z 2009-12-11T12:33:03Z <p>In WCF some of the settings are written as class attributes. I would like to set them in the configuration file instead.</p> <p>Examples</p> <pre><code>[OperationContract(IsOneWay = true)] [ServiceBehavior(InstanceContextMode = InstanceContextMode.Single, ConcurrencyMode = ConcurrencyMode.Multiple)] </code></pre> <p>Is there any way to do this? Maybe with <a href="http://www.castleproject.org/container/index.html" rel="nofollow">MicroKernel/Windsor</a>?</p> http://stackoverflow.com/questions/1887246/which-protocols-are-there-that-can-be-used-with-wcf 2 Which protocols are there, that can be used with WCF? Workshop Alex 2009-12-11T10:43:59Z 2009-12-11T11:07:59Z <p>Am reading an O'Reilly book called "Learning WCF" and in chapter one, it mentions: <em>For example, services can be accessed over a variety of supported protocols, including named pipes, TCP, HTTP, and MSMQ.</em></p> <p>And now I can't help but wonder... Named pipes, HTTP, TCP and MSMQ and what other protocols? Didn't they just mention all protocols that are available for WCF or are there more protocols available, but not mentioned?</p> <p>And how to use those other protocols? And is it possible to even add more protocols?</p> http://stackoverflow.com/questions/1887194/wpf-as-part-of-a-service-oriented-architecture 0 WPF as part of a service oriented architecture AJM 2009-12-11T10:31:44Z 2009-12-11T10:31:44Z <p>I'm looking into doing a WPF application. I want as much as possible of the business logic to be exposed as WCF services.</p> <p>Has anyone got any experience of doing this / useful links etc</p>