I'm a little new to C# (okay... very new)
I've created an empty website in VS and added a Webforms page (Default.aspx).
I'm trying to use the SOAP API to get portfolio information from ExactTarget. I'm using this example from the documents.
I'm getting Cannot create an instance of the abstract class or interface 'Microsoft.Web.Services3.Messaging.SoapClient'
I've put the example code in my default.aspx.cs file, along with adding
using System.Xml;
using Microsoft.Web.Services3;
using Microsoft.Web.Services3.Addressing;
using Microsoft.Web.Services3.Messaging;
Am I missing something obvious? Am I in the wrong place completely?