User Enrico Campidoglio - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T17:31:57Zhttp://stackoverflow.com/feeds/user/26396http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/241822/vb-runtime-functions-in-vb-net-for-vb6-programmers2VB runtime functions in VB.NET for VB6 programmersEnrico Campidoglio2008-10-28T00:22:13Z2009-10-29T12:33:59Z
<p>Hi,</p>
<p>I'm preparing a class on Visual Basic 2005 targeting Visual Basic 6 programmers migrating to the .NET platform.</p>
<p>My primary concern is to teach my students the best practices for developing in .NET, and I am wondering about whether to consider the use of the VB runtime functions VB.NET legitimate or not.</p>
<p>I have read that many of the VB functions in VB.NET actually invoke methods on the .NET Framework, so it appears they exist primarily to ease the transition from earlier versions of Visual Basic to VB.NET. However, <a href="http://blogs.msdn.com/vbteam/" rel="nofollow">the VB.NET team</a> seems to recommend to use them whenvever possible since they claim they put some optimizations in there on top of the .NET framework APIs.</p>
<p>What's your take on this? </p>
http://stackoverflow.com/questions/1488772/single-overloaded-method-at-bll-layer-vs-bll-methods-having-one-to-one-correspond/1489158#14891581Answer by Enrico Campidoglio for Single overloaded method at BLL layer vs BLL methods having one-to-one correspondence with DAL methodsEnrico Campidoglio2009-09-28T20:17:07Z2009-10-07T20:15:07Z<p>I took the liberty to summarize your post in two main questions. I hope I managed to capture the essence of what you are asking.<br/></p>
<p><strong>Q)</strong> <em>What is the relationship between the intefaces exposed by the DAL and the ones exposed by the BLL?</em></p>
<p><strong>A)</strong> The BLL is an outward-facing API, and as such it should implement functionality that is <strong>useful to the external consumers</strong> of the application and <strong>expose it in a way that makes sense</strong> to them.<br/>
The DAL, on the contrary, is a inward-facing API that exposes functionality <strong>to retrieve and persist data</strong> in way that hides the details of the storage mechanism being used.<br/></p>
<p>In short, the DAL focuses on how data is being represented and managed internally in the application, while the BLL focuses on exposing data in way that is meaningful to consumers.</p>
<p><strong>Q)</strong> <em>How many methods should a public API have, and which ones?</em></p>
<p><strong>A)</strong> The design of an API is strictly related to what it is meant to achieve and by whom it will be used.<br/>In practice, this means that you should <strong>know the target audience of your API, and give them only what they need to get the job done</strong>.<br/>
Since it is impossible to predict all the possible ways an API will be used, it is important to decide which main <strong>use cases</strong> to support, and work to make them really straightforward in the API. A good principle to keep in mind is what Alan Kay once said:</p>
<blockquote>
<p><em>Simple things should be simple,
complex things should be possible.</em></p>
</blockquote>
<p>A few <strong>extensibility points</strong> can be built into the API to obtain a certain degree of flexibility. A common way to achieve this is to use interfaces to define the behavior of the API. This will allow consumers to replace or extend the pieces of the built-in functionality by providing custom implementations.<br/></p>
<p>To your point, I believe it is a good idea to prefer <strong>fewer coarse-grained methods in the BLL</strong> to cover all the functionality required by an entire business operation.<br/>On the other side it is perfectly fine to have <strong>many smaller data-centric methods in the DAL</strong> to work with specific pieces of data.</p>
<p><strong>UPDATE:</strong><br/>
<br/>
<strong>About interfaces</strong><br/>
Interfaces should exist between layers. More specifically, classes should interact with classes from other layers exclusively through interfaces. <br/>For example, the DAL should expose interfaces for the classes used to access data, like <em>IOrderHeaderTable</em> or <em>IOrderRepository</em> depending on the design pattern being used.<br/>
The BLL should expose classes used to execute business operations, like <em>IOrderManagementWorkflow</em>, or <em>ICustomerService</em>.<br/>
<strong>Note:</strong> common functionality inside a layer can still be placed in base classes, since in modern Object-Oriented languages like C#, VB.NET and Java a class can both inherit from a base class and implement one or more interfaces.<br/>
Also, external parties who wish to customize the built-in functionality by implementing any of the provided public interfaces can do so without needing access to the source code. Interfaces should however be self-describing and well-documented, in order to make it easy for extenders to understand its semantics.</p>
<p><strong>About the BLL</strong><br/>
The BLL should be explicit about the business logic it supports. Therefore it is generally a good idea to have methods that are directly related to business operations.<br/>For added clarity, instead of overloading methods to work with different parameters, I believe it is better to have one method that accepts a single parameter. This parameter would be an object containing all the data for the method to work with. Some of that data could be required, some could be optional and would influence the effect of the operation.<br/>
<strong>Implementation detail:</strong> this kind of BLL API is fully supported by ObjectDataSource control built into ASP.NET Web Forms.</p>
<p><strong>About the API</strong><br/>
An API should contain all methods the designer can come up with, <strong>within the scope defined by the use cases the API is intended to support</strong>.</p>
http://stackoverflow.com/questions/1528017/windows-scripting-what-and-how-to-do-this-batch-files-or-something-else/1528106#15281064Answer by Enrico Campidoglio for Windows Scripting: What and How to do this? Batch Files or Something else?Enrico Campidoglio2009-10-06T21:07:34Z2009-10-06T21:45:52Z<p>If you want to target <em>all</em> versions of Windows, your best choice is writing a <strong>MS-DOS Batch</strong> file (<em>.bat</em>). Here's a <a href="http://www.allenware.com/icsw/icswidx.htm" rel="nofollow">good tutorial</a> that I've used in the past. <br/></p>
<p>If you are targeting <em>modern</em> versions of Windows (Windows XP SP2/2003/Vista/7) you should definitely take a look at <strong><a href="http://www.microsoft.com/windowsserver2003/technologies/management/powershell/default.mspx" rel="nofollow">Windows PowerShell</a></strong>, which is the new standard automation engine for the Windows platform.<br/>PowerShell is a <a href="http://www.microsoft.com/windowsserver2003/technologies/management/powershell/download.mspx" rel="nofollow">separate download</a> for Windows XP SP2, Windows Server 2003 and Windows Vista, while it is included in Windows Server 2008 and Windows 7.</p>
<p><strong>About Windows PowerShell</strong><br/><br/>
PowerShell is built on top of the .NET Framework and consists of a <strong>runtime environment</strong>, a <strong>scripting language</strong> and an <strong>interactive console</strong>.<br /><br/>Here are <em>some</em> of its key features that I find most valuable:</p>
<ul>
<li>All processing is done using CLR objects, instead of text as in traditional shells</li>
<li>It is possible to interact directly with the classes in the .NET Framework</li>
<li>It is possible to run commands written in any .NET language and distributed as DLLs (called <em>Cmdlets</em>)</li>
<li>Great collection of built-in commands to accomplish most administrative tasks</li>
<li>The scripting language's syntax is C-style (curly braces...)</li>
<li>The runtime can be hosted inside any managed process as an <em>ad-hoc</em> automation engine</li>
</ul>
<p>This isn't of course a complete list of all the features in PowerShell. If you are interested, I recommend you to look into it. Here is <a href="http://msdn.microsoft.com/en-us/library/ms714418%28VS.85%29.aspx" rel="nofollow">a good place to start</a>.</p>
http://stackoverflow.com/questions/1518769/visual-basic-6-wsdl-soap-proxy/1518843#15188433Answer by Enrico Campidoglio for Visual Basic 6 WSDL Soap ProxyEnrico Campidoglio2009-10-05T08:32:42Z2009-10-05T08:32:42Z<p>You could generate a Web Service client proxy using one of the tools available in .NET, either through <strong>Visual Studio</strong> or one of the command-line programs (<em>wsdl.exe</em> when using <strong>ASMX</strong> or <em>svcutil.exe</em> when using <strong>WCF</strong>) and <a href="http://msdn.microsoft.com/en-us/library/zsfww439%28VS.71%29.aspx" rel="nofollow">make the resulting class and its containing assembly available to COM</a>.</p>
<p>If you want a VB6 native solution, I believe your best choice is using the <a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=C943C0DD-CEEC-4088-9753-86F052EC8450&displaylang=en" rel="nofollow">SOAP Toolkit</a>.</p>
<p>Also, see this related question on SO:<br/>
<a href="http://stackoverflow.com/questions/122607/what-is-the-best-way-to-consume-a-web-service-from-vb6"><strong>What is the best way to consume a web service from VB6?</strong></a></p>
http://stackoverflow.com/questions/1497344/integrating-msbuild-into-visual-studio/1497378#14973781Answer by Enrico Campidoglio for Integrating MSBuild into Visual StudioEnrico Campidoglio2009-09-30T10:51:42Z2009-09-30T10:51:42Z<p><strong>MSBuild is the build engine used by Visual Studio</strong> to process the files included in a project.<br/>The Visual Studio project files themselves (*<em>.csproj</em> for C#, and <em>.vbproj</em> for VB, for example) are in fact MSBuild scripts that are run every time you build a project.</p>
http://stackoverflow.com/questions/1456438/general-best-practice-for-updating-a-record-and-its-associated-relationships-in-l/1459169#14591692Answer by Enrico Campidoglio for General best practice for updating a record and its associated relationships in Linq-to-SQL Enrico Campidoglio2009-09-22T10:03:57Z2009-09-23T11:22:14Z<p>As long as there is an active instance of the <a href="http://msdn.microsoft.com/en-us/library/system.data.linq.datacontext.aspx" rel="nofollow">DataContext</a> class to track changes, LINQ to SQL will happily <strong>insert/update/delete rows in an associated table</strong> everytime objects in the <strong>collection that maps the relationship</strong> in the model are modified, and the <a href="http://msdn.microsoft.com/en-us/library/bb292162.aspx" rel="nofollow">DataContext.SubmitChanges()</a> method is called.</p>
<p>For example:</p>
<pre><code>using (var db = new DataContext())
{
var person = db.Persons.Where(p => p.Name == "Foo").SingleOrDefault();
if (person != null)
{
// Inserts a new row in the 'PersonCategory' table
// associated to the current 'Person'
// and to the 'Category' with name 'Employee'
person.PersonCategories.Add(new PersonCategory() { CategoryName = "Employee" });
// Updates the 'CategoryName' column in the first row
// of the 'PersonCategory' table associated to the current 'Person'
person.PersonCategories(0).CategoryName = "Consultant";
db.SubmitChanges();
}
}
</code></pre>
<p>Things are a little different if you are making changes to the model objects in "<em>disconnected</em>" mode, that is when the DataContext instance that was used to initially create those objects no longer is around.<br/><br/>
In this case <strong>insert/delete operations on associated tables will work just fine</strong> when the object having <strong>the modified collection is attached to a new DataContext</strong> with the <a href="http://msdn.microsoft.com/en-us/library/bb300517.aspx" rel="nofollow">Table(TEntity).Attach</a> method, followed by <a href="http://msdn.microsoft.com/en-us/library/bb300517.aspx" rel="nofollow">DataContext.SubmitChanges()</a>.</p>
<p>However, <strong>modifications on any of the existing objects in the collection will not automatically be applied in the associated table</strong>. In order to do that, you must manually call the <a href="http://msdn.microsoft.com/en-us/library/bb300517.aspx" rel="nofollow">Table(TEntity).Attach</a> method for each object in the collection.<br/>
Here is a quote from the <a href="http://msdn.microsoft.com/en-us/library/bb300517.aspx" rel="nofollow">MSDN documentation</a>:</p>
<blockquote>
<p><em>When a new entity is attached,
deferred loaders for any child
collections (for example, EntitySet
collections of entities from
associated tables) are initialized.
When SubmitChanges is called, members
of the child collections are put into
an Unmodified state. To update members
of a child collection, you must
explicitly call Attach and specify
that entity.</em></p>
</blockquote>
<p>Here is a concrete example:</p>
<pre><code>// The 'Person' object has been detached
// from the originating 'DataContext', which is now disposed
person.PersonCategories.Add(new PersonCategory() { CategoryName = "Employee" });
person.PersonCategories(0).CategoryName = "Consultant";
using (var db = new DataContext())
{
// Will detect added and deleted objects
// in the 'PersonCategory' collection
db.Person.Attach(person);
// Required to detect and modifications
// to existing objects in the 'PersonCategory' collection
foreach (var personCategory in person.PersonCategories)
{
db.PersonCategory.Attach(personCategory);
}
db.SubmitChanges();
}
</code></pre>
http://stackoverflow.com/questions/1453920/sproc-to-update-record-how-to-handle-unchanged-values/1454095#14540950Answer by Enrico Campidoglio for SPROC to update record: how to handle unchanged valuesEnrico Campidoglio2009-09-21T11:37:29Z2009-09-21T11:37:29Z<p>You could implement <strong>journalized change tracking</strong> in your model objects. This way you could keep track of any changes in your objects by saving the previous value of a property every time a new value is set.<br/>This information could be stored in one of two ways:</p>
<ol>
<li>As part of each object's own private state</li>
<li>Centrally in a "<em>manager</em>" class.</li>
</ol>
<p>In the first solution, you could easily implement this functionality in a base class and have it run in all model objects through inheritance.</p>
<p>In the second solution, you need to create some kind of container class that will keep a reference and a unique identifier to any model object that is created and record all changes in its state in a central store.<br/>This is similar to the way many ORM (Object-Relational Mapping) frameworks achieve this kind of functionality.</p>
http://stackoverflow.com/questions/1453283/threadpool-in-iis-context/1453500#14535001Answer by Enrico Campidoglio for Threadpool in IIS contextEnrico Campidoglio2009-09-21T08:56:41Z2009-09-21T08:56:41Z<p>Here is a quote from the MSDN documentation about the <a href="http://msdn.microsoft.com/en-us/library/system.threading.threadpool%28lightweight%29.aspx" rel="nofollow">ThreadPool class</a>:</p>
<blockquote>
<p><em>There is one thread pool per process.
The thread pool has a default size of
250 worker threads per available
processor, and 1000 I/O completion
threads.</em></p>
</blockquote>
<p>In II6 and II7 any given ASP.NET application is hosted inside of a single process (<em>w3wp.exe</em>) through the Application Pool infrastructure.<br/>An Application Pool can host multiple web applications by keeping them in different AppDomains, but it runs inside of one physical process on the server.<br/><br/>
These two facts mean in practice that all threads from a running web application instance execute inside the same .NET Thread Pool.</p>
http://stackoverflow.com/questions/1444595/being-able-to-debug-a-winforms-application-and-avoid-the-gui-from-freezing/1444818#14448181Answer by Enrico Campidoglio for Being Able to Debug a WinForms Application and Avoid the GUI from FreezingEnrico Campidoglio2009-09-18T14:14:45Z2009-09-18T14:14:45Z<p>The <strong>UI thread</strong> is responsible for painting the graphical elements of an application on the screen as well as handling user input.</p>
<p>When developing a multithreaded Windows application, there really is one main rule:</p>
<blockquote>
<p><strong>Any code that accesses the UI must run in the UI
thread.</strong></p>
</blockquote>
<p>This means that, for example, in order to update the status of a progress bar from a background thread you need to run the code that accesses the ProgressBar control object in the UI thread.</p>
<p>There are a couple of ways to achieve this. When using Windows Forms you can take advantage of the <strong><a href="http://msdn.microsoft.com/en-us/library/system.componentmodel.backgroundworker%28lightweight%29.aspx" rel="nofollow">BackgroundWorker</a></strong> class.<br/><br/>This class allows you to run code in a background thread and access the UI whenever you need to update it with the status of the operation simply <strong>by handling some specific events</strong>. The BackgroundWorker then takes care of running the code in the appropriate thread for you behind the scenes.</p>
http://stackoverflow.com/questions/1320952/wcf-service-parameters-changed-in-net-2-0-client/1321534#13215340Answer by Enrico Campidoglio for WCF Service parameters changed in .NET 2.0 clientEnrico Campidoglio2009-08-24T10:14:27Z2009-08-24T10:14:27Z<p>The exact same question has been posted <a href="http://stackoverflow.com/questions/531886/wcf-consumed-as-webservice-adds-a-boolean-parameter">here</a>.</p>
<p>Another way to avoid the extra boolean parameter to be generated on the client proxy when using .NET 2.0 is to switch to <strong>RPC-style enconding</strong> in the service contract (the default for both WCF and ASMX is Document Style).<br/>
This way the <strong>XmlSerializer</strong> on the client will make sure that <strong>the parameter always appears in the SOAP requests</strong> since it's part of the SOAP 1.1 specification, which is enforced when using the RPC-Style encoding.</p>
<p>In WCF you can specify the encoding style using the DataContractFormat attribute, either at the service or at the operation level.</p>
<pre><code>[ServiceContract]
public interface IService
{
[OperationContract]
[DataContractFormat(Style = OperationFormatStyle.Rpc)]
string GetData(int value);
}
</code></pre>
<p>More information on the differences between RPC Style and Document Style encoding in SOAP can be found <a href="https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/c018da90-0201-0010-ed85-d714ff7b7019" rel="nofollow">here</a>.</p>
<p>In any case please consider carefully the implications of changing the contract of your services, since it can potentially break compatibility with any existing clients.</p>
http://stackoverflow.com/questions/333532/cross-site-ajax-requests10Cross-site AJAX requestsEnrico Campidoglio2008-12-02T10:11:49Z2009-08-01T10:59:33Z
<p>I need to make an AJAX request from a website to a REST web service hosted in another domain.<br/><BR/>
Althouht this is works just fine in Internet Explorer, other browsers such as Mozilla and Google Chrome impose far stricter security restrictions, which prohibit cross-site AJAX requests.</p>
<p>My problem is that I have no control over the domain nor the web server where the site is hosted. This means my REST web service must run somewhere else, and I can't put in place any redirection mechanism.<br/>Here is the JavaScript code that makes the asynchronous call:</p>
<pre><code>var serviceUrl = "http://myservicedomain";
var payload = "<myRequest><content>Some content</content></myRequest>";
var request = new XMLHttpRequest();
request.open("POST", serviceUrl, true); // <-- This fails in Mozilla Firefox amongst other browsers
request.setRequestHeader("Content-type", "text/xml");
request.send(payload);
</code></pre>
<p>How can have this work in other browsers than just Internet Explorer? </p>
http://stackoverflow.com/questions/1100237/how-do-i-unit-test-for-relative-performance/1100478#11004781Answer by Enrico Campidoglio for How do I Unit Test for relative performance? Enrico Campidoglio2009-07-08T20:51:31Z2009-07-08T20:51:31Z<p>I agree with <a href="http://stackoverflow.com/users/38206/brian-rasmussen">Brian</a> when he says that <strong>unit tests is not the appropriate way to do performance testing</strong>. However I put together a short example that could be used as an <strong>integration test</strong> to run on different system configurations/environments.<br/>Note that is just to give an idea of what could be done in this regard, and does not provide results that are precise enough to back up any official statement about the performance of a system.</p>
<pre><code>import static org.junit.Assert.*;
import org.junit.Test;
package com.stackoverflow.samples.tests {
@Test
public void doStuffRuns500TimesPerSecond() {
long maximumRunningTime = 1000;
long currentRunningTime = 0;
int iterations = 0;
do {
long startTime = System.getTimeMillis();
// do stuff
currentRunningTime += System.getTimeMillis() - startTime;
iterations++;
}
while (currentRunningTime <= maximumRunningTime);
assertEquals(500, iterations);
}
}
</code></pre>
http://stackoverflow.com/questions/1100229/is-there-a-back-button-hotkey-for-navigation-in-visual-studio-2008/1100248#11002481Answer by Enrico Campidoglio for Is there a "back" button/hotkey for navigation in Visual Studio 2008?Enrico Campidoglio2009-07-08T20:01:52Z2009-07-08T20:01:52Z<p>By using the <strong>Navigate Backwards</strong> command. You can find a more detailed description <a href="http://blogs.msdn.com/saraford/archive/2007/09/19/did-you-know-how-to-navigate-forward-and-backwards-in-the-editor-all-because-of-go-back-markers.aspx" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/1097456/linq-to-xml-access-data-based-on-field-attribute/1097622#10976222Answer by Enrico Campidoglio for linq to xml access data based on field attributeEnrico Campidoglio2009-07-08T11:59:03Z2009-07-08T11:59:03Z<p>Here is how you can express your query using LINQ to XML:</p>
<pre><code>XDocument doc = XDocument.Parse("<Data><Rows><Row><Field Name=\"title\">Mr</Field><Field Name=\"surname\">Doe</Field></Row></Rows></Data>");
string[] matches = (from e in doc.Descendants("Field")
where (string)e.Attribute("Name") == "surname"
select (string)e).ToArray();
</code></pre>
http://stackoverflow.com/questions/1097331/enumerate-with-return-type-other-than-string/1097361#10973610Answer by Enrico Campidoglio for Enumerate with return type other than string?Enrico Campidoglio2009-07-08T10:57:23Z2009-07-08T11:15:46Z<p>You could create a static class that just contains constant values.
For example:</p>
<pre><code>internal static class Project
{
public static readonly Guid Cleanup = new Guid("2ED3164-BB48-499B-86C4-A2B1114BF1");
public static readonly Guid Maintenance = new Guid("39D31D4-28EC-4832-827B-A11129EB2");
public static readonly Guid Upgrade = new Guid("892F865-E38D-46D7-809A-49510111C1");
}
</code></pre>
<p>This way the class acts simply as a container and object cannot be created from it.</p>
<p>In VB this would be a Module:</p>
<pre><code>Friend Module Project
Public Shared ReadOnly Cleanup As Guid = New Guid("2ED3164-BB48-499B-86C4-A2B1114BF1")
Public Shared ReadOnly Maintenance As Guid = New Guid("39D31D4-28EC-4832-827B-A11129EB2")
Public Shared ReadOnly Upgrade As Guid = New Guid("892F865-E38D-46D7-809A-49510111C1")
End Module
</code></pre>
http://stackoverflow.com/questions/1034916/todo-flag-in-vs-net/1034929#10349290Answer by Enrico Campidoglio for //TODO flag in VS .NetEnrico Campidoglio2009-06-23T20:19:48Z2009-06-23T20:19:48Z<p>Yes. Check out <a href="http://weblogs.asp.net/bleroy/archive/2009/06/16/you-can-do-the-todos-today-too.aspx" rel="nofollow">this post</a>.</p>
http://stackoverflow.com/questions/977652/mvvm-inheritance-with-view-models/977821#9778214Answer by Enrico Campidoglio for MVVM Inheritance With View ModelsEnrico Campidoglio2009-06-10T19:55:40Z2009-06-11T19:31:06Z<p>Generally I would recommend you <strong>not to have inheritance between different ViewModel classes</strong>, but instead having them inherit directly from a common abstract base class.<br/>This is to avoid introducing unnecessary complexity by <strong>polluting the ViewModel classes' interfaces</strong> with members that come from higher up in the hierarchy, but <strong>are not fully cohesive</strong> to the class's main purpose.<br/>The coupling that comes with inheritance will also likely make it hard to change a ViewModel class without affecting any of its derived classes.<br/>
<br/>
If your ViewModel classes always will reference a single Model object, you could use generics to encapsulate this rule into the base class:</p>
<pre><code>public abstract class ViewModelBase<TModel>
{
private readonly TModel _dataObject;
public CustomObjectViewModel(TModel dataObject)
{
_dataObject = dataObject;
}
protected TModel DataObject { get; }
}
public class CustomObjectViewModel : ViewModelBase<CustomObject>
{
public string Title
{
// implementation excluded for brevity
}
}
public class CustomItemViewModel : ViewModelBase<CustomItem>
{
public string Title
{
// implementation excluded for brevity
}
public string Description
{
// implementation excluded for brevity
}
}
</code></pre>
http://stackoverflow.com/questions/323551/http-bad-request-error-when-requesting-a-wcf-service-contract2HTTP Bad Request error when requesting a WCF service contractEnrico Campidoglio2008-11-27T11:49:49Z2009-06-11T10:55:29Z
<p>I have a WCF service with the following configuration:</p>
<pre><code><system.serviceModel>
<behaviors>
<serviceBehaviors>
<behavior name="MetadataEnabled">
<serviceDebug includeExceptionDetailInFaults="true" />
<serviceMetadata httpGetEnabled="true" />
</behavior>
</serviceBehaviors>
</behaviors>
<services>
<service behaviorConfiguration="MetadataEnabled" name="MyNamespace.MyService">
<endpoint name="BasicHttp"
address=""
binding="basicHttpBinding"
contract="MyNamespace.IMyServiceContract" />
<endpoint name="MetadataHttp"
address="contract"
binding="mexHttpBinding"
contract="IMetadataExchange" />
<host>
<baseAddresses>
<add baseAddress="http://localhost/myservice" />
</baseAddresses>
</host>
</service>
</services>
</system.serviceModel>
</code></pre>
<p>When hosting the service in the <strong>WcfSvcHost.exe</strong> process, if I browse to the URL:</p>
<blockquote>
<p><a href="http://localhost/myservice/contract" rel="nofollow">http://localhost/myservice/contract</a></p>
</blockquote>
<p>where the service metadata is available I get an <strong>HTTP 400 Bad Request</strong> error.<br/><br/>
By inspecting the WCF logs I found out that an <strong>System.Xml.XmlException</strong> exception is being thrown with the message: "<em>The body of the message cannot be read because it is empty.</em>"<br/>Here is an extract of the log file:</p>
<pre><code><Exception>
<ExceptionType>
System.ServiceModel.ProtocolException, System.ServiceModel, Version=3.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
</ExceptionType>
<Message>There is a problem with the XML that was received from the network. See inner exception for more details.</Message>
<StackTrace>
at System.ServiceModel.Channels.HttpRequestContext.CreateMessage()
at System.ServiceModel.Channels.HttpChannelListener.HttpContextReceived(HttpRequestContext context, ItemDequeuedCallback callback)
at System.ServiceModel.Channels.SharedHttpTransportManager.OnGetContextCore(IAsyncResult result)
at System.ServiceModel.Channels.SharedHttpTransportManager.OnGetContext(IAsyncResult result)
at System.ServiceModel.Diagnostics.Utility.AsyncThunk.UnhandledExceptionFrame(IAsyncResult result)
at System.Net.LazyAsyncResult.Complete(IntPtr userToken)
at System.Net.LazyAsyncResult.ProtectedInvokeCallback(Object result, IntPtr userToken)
at System.Net.ListenerAsyncResult.WaitCallback(UInt32 errorCode, UInt32 numBytes, NativeOverlapped* nativeOverlapped)
at System.Threading._IOCompletionCallback.PerformIOCompletionCallback(UInt32 errorCode, UInt32 numBytes, NativeOverlapped* pOVERLAP)
</StackTrace>
<InnerException>
<ExceptionType>System.Xml.XmlException, System.Xml, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</ExceptionType>
<Message>The body of the message cannot be read because it is empty.</Message>
<StackTrace>
at System.ServiceModel.Channels.HttpRequestContext.CreateMessage()
at System.ServiceModel.Channels.HttpChannelListener.HttpContextReceived(HttpRequestContext context, ItemDequeuedCallback callback)
at System.ServiceModel.Channels.SharedHttpTransportManager.OnGetContextCore(IAsyncResult result)
at System.ServiceModel.Channels.SharedHttpTransportManager.OnGetContext(IAsyncResult result)
at System.ServiceModel.Diagnostics.Utility.AsyncThunk.UnhandledExceptionFrame(IAsyncResult result)
at System.Net.LazyAsyncResult.Complete(IntPtr userToken)
at System.Net.LazyAsyncResult.ProtectedInvokeCallback(Object result, IntPtr userToken)
at System.Net.ListenerAsyncResult.WaitCallback(UInt32 errorCode, UInt32 numBytes, NativeOverlapped* nativeOverlapped)
at System.Threading._IOCompletionCallback.PerformIOCompletionCallback(UInt32 errorCode, UInt32 numBytes, NativeOverlapped* pOVERLAP)
</StackTrace>
</InnerException>
</Exception>
</code></pre>
<p>If I instead browse to the URL:</p>
<blockquote>
<p><a href="http://localhost/myservice?wsdl" rel="nofollow">http://localhost/myservice?wsdl</a></p>
</blockquote>
<p>everything works just fine and I get the WSDL contract. At this point, I can also remove the <em>"MetadataHttp"</em> metadata endpoint completely, and it wouldn't make any difference.</p>
<p>I'm using .NET 3.5 SP1. Does anyone have an idea of what could be wrong here?</p>
http://stackoverflow.com/questions/222370/option-strict-on-and-net-for-vb6-programmers11Option Strict On and .NET for VB6 programmersEnrico Campidoglio2008-10-21T15:51:44Z2009-06-09T14:22:18Z
<p>Hi,</p>
<p>I'm preparing a class on Visual Basic 2005 targeting Visual Basic 6 programmers migrating to the .NET platform.<br /><br/>
I would like a word of advice about whether to recommend them to always enable <strong>Option Strict</strong> or not.<br /><br/>
I've worked exclusively with C-style programming languages, mostly Java and C#, so for me <strong>explicit casting</strong> is something I always expect I have to do, since it's never been an option.<br/>However I recognize the value of working with a language that has built-in support for <strong>late-binding</strong>, because not having to be excessively explicit about types in the code indeed saves time. This is further proved by the popular diffusion of <strong>dynamic typed languages</strong>, even on the .NET platform with the Dynamic Language Runtime.
<br><br/>
With this in mind, should someone who is approaching .NET for the first time using VB.NET and with a VB6 background be encouraged to get into the mindset of <strong>having to work with compile-time type checking</strong> because that's the "best practice" in the CLR? Or is it "OK" to continue enjoying the benefits of late-binding?</p>
http://stackoverflow.com/questions/807820/disabling-required-field-validators-server-side-of-checkbox-is-checked/807889#8078891Answer by Enrico Campidoglio for Disabling Required Field Validators server-side of checkbox is checkedEnrico Campidoglio2009-04-30T16:39:56Z2009-05-01T07:41:04Z<p>Have you tried to perform the control initialization logic during the <strong>Control.Load</strong> event by overriding the <strong>Control.OnLoad</strong> method instead?<br/>
At that stage in the control lifecycle you should be able to access the value of the CheckBox.<br/>
<br/>
As a side note, if you want to disable validation you don't necessarily have to disable all <strong>Validator</strong> controls. Instead you can simply set the <strong>Button.CausesValidation</strong> property to <strong>False</strong> on the button that will submit the form.</p>
<p><strong>UPDATE:</strong><br/>
It sounds like you are building a <strong>User Control</strong>, that is a complex control made up of an aggregate of simple controls working together as a unit.<br/>If you want to do that entirely in code, like you would with a <strong>Custom Control</strong>, you should inherit from the <a href="http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.compositecontrol.aspx" rel="nofollow">CompositeControl</a> class. That gives you the best of both worlds. The child controls initialization is then made by overriding the <a href="http://msdn.microsoft.com/en-us/library/system.web.ui.control.createchildcontrols.aspx" rel="nofollow">CreateChildControls</a> method. </p>
http://stackoverflow.com/questions/338385/how-do-i-tell-wcf-to-skip-verification-of-the-certificate/479914#4799144Answer by Enrico Campidoglio for How do I tell WCF to skip verification of the certificate?Enrico Campidoglio2009-01-26T14:14:49Z2009-04-30T16:28:39Z<p>This sample WCF configuration will disable validation of both whether the certificate is trusted and whether it is still valid on the client:</p>
<pre><code><system.serviceModel>
<behaviors>
<endpointBehaviors>
<behavior name="DisableServiceCertificateValidation">
<clientCredentials>
<serviceCertificate>
<authentication certificateValidationMode="None"
revocationMode="NoCheck" />
</serviceCertificate>
</clientCredentials>
</behavior>
</endpointBehaviors>
</behaviors>
<client>
<endpoint address="http://localhost/MyService"
behaviorConfiguration="DisableServiceCertificateValidation"
binding="wsHttpBinding"
contract="MyNamespace.IMyService"
name="MyServiceWsHttp" />
</client>
</system.serviceModel>
</code></pre>
http://stackoverflow.com/questions/797285/xsd-validation-againts-xsd-generated-class-level-validation/797321#7973210Answer by Enrico Campidoglio for xsd validation againts xsd generated class level validationEnrico Campidoglio2009-04-28T11:02:03Z2009-04-28T11:02:03Z<p>If your primary concern is <strong>performance</strong> you should use the <a href="http://msdn.microsoft.com/en-us/library/system.xml.xmlreader.aspx" rel="nofollow">XmlReader</a> with the XSD schema attached to it for validation. Here is an example:</p>
<pre><code>// Store a reference to this object
// to reuse the compiled XSD schema
// for multiple parsing operations
XmlReaderSettings settings = new XmlReaderSettings();
settings.Schemas.Add("http://www.contoso.com/books", "books.xsd");
settings.ValidationType = ValidationType.Schema;
using (XmlReader reader = XmlReader.Create("books.xml", settings))
{
while (reader.Read())
{
// Do parsing logic
}
}
</code></pre>
http://stackoverflow.com/questions/796682/was-hosting-a-wcf-service-with-net-tcp-binding/797276#7972761Answer by Enrico Campidoglio for WAS hosting a WCF service with net.tcp bindingEnrico Campidoglio2009-04-28T10:41:59Z2009-04-28T10:41:59Z<p>Since <strong>WAS</strong> is part of the <strong>IIS architecture</strong>, you need to create a <strong>virtual directory</strong> in an IIS <strong>website</strong> (for example 'Default Web Site') that points to physical location of the WCF service you are hosting. Then you will have to create an <strong>application</strong> on that virtual directory, like you would for an ASP.NET website, or an ASMX web service.<br/>
You can easily do this by using <strong>IIS 7's management console</strong>.</p>
<p>You can read the <strong>details</strong> about how WAS works in IIS7 <a href="http://www.devx.com/codemag/Article/33655/0/page/6" rel="nofollow">here</a>.<br/>
For a more <strong>step-by-step</strong> guide to WAS hosting have a look at <a href="http://www.devx.com/VistaSpecialReport/Article/33831" rel="nofollow">this article</a>.</p>
http://stackoverflow.com/questions/793767/wcf-web-service-error/793873#7938730Answer by Enrico Campidoglio for WCF web service errorEnrico Campidoglio2009-04-27T14:51:41Z2009-04-27T14:51:41Z<p>It sounds like you are getting an <strong>ASP.NET Error Page</strong> (a.k.a "T*he Yellow Screen Of Death*") when invoking your WCF service, which would explain why the response's MIME type is text/html.<br/> Are you hosting your service in IIS?</p>
<p>After you have enabled exception details like Andrew suggested, you can copy the contents of the exception message you get back from the service, which will be a long HTML string, paste it in a new text file, save it as .HTML and open it in a web browser to look at the error details.</p>
http://stackoverflow.com/questions/792976/how-to-read-xml-into-a-class-classes-that-matches-its-xsd/793034#7930346Answer by Enrico Campidoglio for How to read XML into a class/classes that matches its xsdEnrico Campidoglio2009-04-27T10:50:12Z2009-04-27T10:50:12Z<p>You could use the <a href="http://msdn.microsoft.com/en-us/library/system.xml.serialization.xmlserializer%5Fmethods.aspx" rel="nofollow">XmlSerializer</a> to deserialize the XML text into instances of the classes generated by <strong>xsd.exe</strong>.<br/>The XmlSerializer will use the <strong>metadata attributes</strong> placed on the generated classes to map back and forth between XML elements and objects.</p>
<pre><code>string xmlSource = "<ResultSet><Result precision=\"address\"><Latitude>47.643727</Latitude></Result></ResultSet>";
XmlSerializer serializer = new XmlSerializer(typeof(ResultSet));
ResultSet output;
using (StringReader reader = new StringReader(xmlSource))
{
output = (ResultSet)serializer.Deserialize(reader);
}
</code></pre>
http://stackoverflow.com/questions/792805/filter-gridview-results-using-linq-to-sql-object-datasource-with-a-like-operator/792847#7928472Answer by Enrico Campidoglio for Filter Gridview results using Linq to Sql Object datasource with a LIKE operatorEnrico Campidoglio2009-04-27T09:37:14Z2009-04-27T09:37:14Z<p>Substitute the equals operator with a call to the <strong>String.Contains</strong> method in the <strong>Where</strong> clause of your LINQ expression:</p>
<pre><code><asp:LinqDataSource ID="LinqDataSource1" runat="server"
ContextTypeName="AirProducts.BusinessLogic.AirProductsDataContext"
Select="new (UserId,UserName, Details.FullName,Membership.Email,Membership.LastLoginDate)"
TableName="Users" Where="UserName.Contains(@UserName)" >
<WhereParameters>
<asp:ControlParameter ControlID="txtUsername" Name="UserName"
PropertyName="Text" Type="String" />
</WhereParameters>
</asp:LinqDataSource>
</code></pre>
http://stackoverflow.com/questions/595446/what-is-the-recommended-approach-for-bulk-insert-update-in-asp-net-gridview/785542#7855423Answer by Enrico Campidoglio for What is the recommended approach for Bulk Insert/Update in ASP.NET Gridview?Enrico Campidoglio2009-04-24T11:57:35Z2009-04-24T12:20:35Z<p>Take a look at <a href="http://www.codeproject.com/KB/webforms/BulkEditGridView.aspx" rel="nofollow">this article on Code Project</a>.</p>
<p>UPDATE:
<br/>I found a better implementation of the same kind of control <a href="http://blogs.msdn.com/mattdotson/articles/490868.aspx" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/783512/are-vb-net-developers-less-curious-standardizing-on-vb-net/783627#7836273Answer by Enrico Campidoglio for Are VB.NET Developers Less Curious? Standardizing on VB.NETEnrico Campidoglio2009-04-23T21:35:49Z2009-04-23T21:35:49Z<p>I'm currently working with a customer who is in the process of standardizing on VB.NET.<br/> The main reason is, as you mentioned, the fact that the majority of the employees have 10+ years of experience with VB and COM.<br/>They feel that going to VB.NET makes the most sense as a career path, even though they're well aware that very little of their existing knowledge base can be leveraged going forward.<br/>
Given this fact, they also considered moving to C#, which indeed seems to be the most used language on the .NET platform today. However, given the great amount of new knowledge they already have to learn in order to start using .NET, they preferred to go for a language with a familiar synthax.
<br/><br/>
In my opinion this proves exactly the purpose of VB.NET. That is to help bring the large base of VB developers in the world over to .NET, giving them the ability to use a language that "feels" familiar to them.<br/>
Also, the backwards compatibility layer built in VB.NET makes it possible to port existing (large) applications written in VB to new platform one piece at a time, while keeping them running.</p>
http://stackoverflow.com/questions/783412/how-to-tell-what-account-my-webservice-is-running-under-in-visual-studio-2005/783509#7835091Answer by Enrico Campidoglio for How to tell what account my webservice is running under in Visual Studio 2005Enrico Campidoglio2009-04-23T21:02:25Z2009-04-23T21:02:25Z<p>By default any application running on top of ASP.NET (including ASMX web services) will execute under the <strong>ASP.NET Machine Account</strong> (ASPNET) security context, which has restricted privileges on the host machine.</p>
<p>This behavior can be altered by enabling <strong>impersonation</strong>, which will cause the ASP.NET application to execute under the security context of the authenticated user, or a specific user account. Impersonation is enabled in the Web.config file:</p>
<pre><code><system.web>
<!-- ASP.NET runs as the authenticated user -->
<identity impersonate="true" />
</system.web>
<system.web>
<!-- ASP.NET runs as the specified user -->
<identity impersonate="true"
username="DOMAIN\user"
password="password" />
</system.web>
</code></pre>
<p>When <strong>Integrated Windows Authentication</strong> is enabled in IIS and the <strong>anonymous Internet user account</strong> is disabled, the authenticated user will be the Windows identity of the client making the HTTP request.<br/>With impersonation turned on, that same identity will be used by the ASP.NET worker process when processing the request.</p>
http://stackoverflow.com/questions/729866/wpf-how-to-hide-gridviewcolumn-using-xaml/732126#7321262Answer by Enrico Campidoglio for WPF: How to hide GridViewColumn using XAML?Enrico Campidoglio2009-04-08T22:23:42Z2009-04-08T22:23:42Z<p>You best bet is probably to create a <strong>custom control</strong> by inheriting from the <strong>GridView</strong> class, adding the required columns, and exposing a meaningful property to show/hide a particular column. Your custom GridView class could look like this:</p>
<pre><code>using System;
using System.Windows.Controls;
namespace MyProject.CustomControls
{
public class CustomGridView : GridView
{
private GridViewColumn _fixedColumn;
private GridViewColumn _optionalColumn;
public CustomGridView()
{
this._fixedColumn = new GridViewColumn() { Header = "Fixed Column" };
this._optionalColumn = new GridViewColumn() { Header = "Optional Column" };
this.Columns.Add(_fixedColumn);
this.Columns.Add(_optionalColumn);
}
public bool ShowOptionalColumn
{
get { return _optionalColumn.Width > 0; }
set
{
// When 'False' hides the entire column
// otherwise its width will be set to 'Auto'
_optionalColumn.Width = (!value) ? 0 : Double.NaN;
}
}
}
}
</code></pre>
<p>Then you can simply set that property from XAML like in this example:</p>
<pre><code><Window x:Class="WpfApplication1.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:cc="clr-namespace:MyProject.CustomControls"
Title="Window1"
Height="300"
Width="300">
<StackPanel>
<ListView>
<ListView.View>
<cc:CustomGridView ShowOptionalColumn="False" />
</ListView.View>
</ListView>
<ListView>
<ListView.View>
<cc:CustomGridView ShowOptionalColumn="True" />
</ListView.View>
</ListView>
</StackPanel>
</Window>
</code></pre>
<p>Optionally, you could make the '<em>CustomGridView.ShowOptionalColumn</em>' a <strong>DependencyProperty</strong> to be able to use it as a binding target.</p>
http://stackoverflow.com/questions/1488772/single-overloaded-method-at-bll-layer-vs-bll-methods-having-one-to-one-correspond/1489158#1489158Comment by Enrico Campidoglio on Single overloaded method at BLL layer vs BLL methods having one-to-one correspondence with DAL methodsEnrico Campidoglio2009-10-12T08:08:26Z2009-10-12T08:08:26Z2) Yes, you can say that in general termshttp://stackoverflow.com/questions/1488772/single-overloaded-method-at-bll-layer-vs-bll-methods-having-one-to-one-correspond/1489158#1489158Comment by Enrico Campidoglio on Single overloaded method at BLL layer vs BLL methods having one-to-one correspondence with DAL methodsEnrico Campidoglio2009-10-07T20:21:09Z2009-10-07T20:21:09ZNo problem :-) I added a couple of notes in my answer to address your questions.http://stackoverflow.com/questions/1528017/windows-scripting-what-and-how-to-do-this-batch-files-or-something-else/1528106#1528106Comment by Enrico Campidoglio on Windows Scripting: What and How to do this? Batch Files or Something else?Enrico Campidoglio2009-10-07T19:56:31Z2009-10-07T19:56:31Z@Jason: You're absolutely right. I forgot about the Windows Script Host (WSH), which supports scripting in VBScript and JScript and allows to interact with COM/ActiveX objects. In that regard it is the predecessor of PowerShell.http://stackoverflow.com/questions/1528017/windows-scripting-what-and-how-to-do-this-batch-files-or-something-else/1528106#1528106Comment by Enrico Campidoglio on Windows Scripting: What and How to do this? Batch Files or Something else?Enrico Campidoglio2009-10-06T21:46:44Z2009-10-06T21:46:44ZPowerShell can do a lot more than most shells, especially the MS-DOS emulator ;-) I updated my answer with some more details about PowerShell.http://stackoverflow.com/questions/1488772/single-overloaded-method-at-bll-layer-vs-bll-methods-having-one-to-one-correspond/1489158#1489158Comment by Enrico Campidoglio on Single overloaded method at BLL layer vs BLL methods having one-to-one correspondence with DAL methodsEnrico Campidoglio2009-10-05T08:17:21Z2009-10-05T08:17:21ZI updated my answer to clarify on the points you brought up. I hope this helps.http://stackoverflow.com/questions/1453283/threadpool-in-iis-context/1453500#1453500Comment by Enrico Campidoglio on Threadpool in IIS contextEnrico Campidoglio2009-09-21T14:43:51Z2009-09-21T14:43:51ZThe pleasure is all mine :-)http://stackoverflow.com/questions/1453283/threadpool-in-iis-context/1453500#1453500Comment by Enrico Campidoglio on Threadpool in IIS contextEnrico Campidoglio2009-09-21T11:58:50Z2009-09-21T11:58:50ZWell, in your case it makes perfect sense to use background threads, since you want to execute multiple operations in parallel. In general, it is a good idea to use the Thread Pool instead of manually creating threads manually, for exactly the reasons you mentioned. If your site isn't handling a huge amount of traffic, the Thread Pool can probably satisfy all the requests without starving. However it is a good idea to have your web application running in its own Application Pool, to make sure it doesn't have to share the Thread Pool with others.http://stackoverflow.com/questions/1453283/threadpool-in-iis-context/1453500#1453500Comment by Enrico Campidoglio on Threadpool in IIS contextEnrico Campidoglio2009-09-21T10:52:49Z2009-09-21T10:52:49ZSince all web requests are already handled asynchronously, I would say that in most cases you don't gain any significant benefit from running operations in background threads in web applications.
An exception would probably be if you don't wish to block the processing of a request to wait on a long-running operation. In this case you could fire a background thread, do some more work on the request, and then finally wait for it to complete before you send the response to the client.http://stackoverflow.com/questions/1320952/wcf-service-parameters-changed-in-net-2-0-client/1320983#1320983Comment by Enrico Campidoglio on WCF Service parameters changed in .NET 2.0 clientEnrico Campidoglio2009-08-24T10:15:06Z2009-08-24T10:15:06ZThis isn't quite the same question as the one you linked to. In this case the client is .NET 2.0, which does include the Nullable<T> class. However the solution still applies.http://stackoverflow.com/questions/1320952/wcf-service-parameters-changed-in-net-2-0-client/1321005#1321005Comment by Enrico Campidoglio on WCF Service parameters changed in .NET 2.0 clientEnrico Campidoglio2009-08-24T08:16:30Z2009-08-24T08:16:30ZThis would be a viable workaround only if the client proxy would never have to be regenerated in the future. Otherwise it would be a pain to go through all the generated method signatures to remove the extra parameter every time.http://stackoverflow.com/questions/333532/cross-site-ajax-requests/1084867#1084867Comment by Enrico Campidoglio on Cross-site AJAX requestsEnrico Campidoglio2009-07-25T12:18:20Z2009-07-25T12:18:20ZYou need to edit your answer, since SO won't allow me to change a vote that's too oldhttp://stackoverflow.com/questions/1100105/repository-pattern-with-net-1-1/1100162#1100162Comment by Enrico Campidoglio on Repository pattern with .NET 1.1Enrico Campidoglio2009-07-08T19:54:57Z2009-07-08T19:54:57ZHe is referring to the repository implementation that uses the IRepository<TEntity> interface.http://stackoverflow.com/questions/1097456/linq-to-xml-access-data-based-on-field-attribute/1097542#1097542Comment by Enrico Campidoglio on linq to xml access data based on field attributeEnrico Campidoglio2009-07-08T12:08:33Z2009-07-08T12:08:33ZI believe LINQ to XML is very much intended to be an alternative to XPath, offering strongly-typed support and a more intuitive query syntax.http://stackoverflow.com/questions/1097331/enumerate-with-return-type-other-than-string/1097355#1097355Comment by Enrico Campidoglio on Enumerate with return type other than string?Enrico Campidoglio2009-07-08T11:20:39Z2009-07-08T11:20:39ZI wouldn't derive from a class whose only purpose is to contain constant values, since polymorphism wouldn't make much sense. Instead I would keep adding related constants to the same class, or create new ones for new sets of constants.http://stackoverflow.com/questions/1097331/enumerate-with-return-type-other-than-string/1097361#1097361Comment by Enrico Campidoglio on Enumerate with return type other than string?Enrico Campidoglio2009-07-08T11:16:39Z2009-07-08T11:16:39ZRight once again :-)