I have been using Constant Contact API for some time and it has been working fine. All of a sudden I am getting: "The remote server returned an error: (500) Internal Server Error." Nothing in my code has changed. I am using the libraries for .NET, and the error occurs at the 'finally' block in Utility.cs: Stream stream = Stream.Null;
try
{
// get the response stream
stream = GetResponseStream(new Uri(currentAddress), authenticationData);
// parse the stream and get a collection of Contacts
return ContactComponent.GetContactCollection(stream, out nextChunkId);
}
catch (Exception e)
{
throw new ConstantException(e.Message, e);
}
finally
{
// close the response stream
stream.Close();
} It seems that this is a problem within Constant Contact as I haven't changed anything with my Authentication Data and am just passing an email address. It occurs when I am trying to use the function Utility.SearchContactByEmail. Any help is appreciated, thanks!
... View more