WSDL Annoyance
This is not imprtant, but I can figure out why this:
namespace Foo
{
[ServiceContract(Namespace = "http://www.test.com")]
public interface IFubar
{
[OperationContract]
void Act();
}
public class Fubar : IFubar
{
public void Act()
{
}
}
}
Result in a WSDL that starts with this:
Adding a [ServiceBehavior] with the correct namespace only move the tempuri to another location. Any ideas?

Comments
Comment preview