ASP.NET 2.0 internal (intranet) web app using Integrated Auth + Impersonation. Developed on dev server (where classes reside) and published to production intranet server. Please bear with me, I'm not a .NET developer! Due to Exchange server move & upgrade an old app with mail features broke. I found the [...] read more
I have a transform filter which exposes a custom interface says IMyInit. This interface used to be configured some basic setup setting before streaming. DECLARE_INTERFACE_(IMyInit, IUnknown) { STDMETHOD HRESULT SetPath(const wchar_t* wcsPath) PURE; STDMETHOD HRESULT SetMode(UINT uMode) PURE; }; Client code like: CComPtr<IBaseFilter> pMyFilter; HRESULT hr = CoCreateInstance(CLSID_MYFILTER, IID_MYFILTER, ..., [...] read more
I have problem with code of contact form for server using asp.NET 1.1, unfortunately upgrade of .NET is not possible. This code worked perfectly up to today. There was some change with the server and I have no idea what happened. My only guess is that I don't have permission [...] read more
I have a VB.net Application running on the server which will be sending emails close to 200 everyday. Following is my coding: Dim objNewMail = CreateObject("CDO.Message") objNewMail.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2 objNewMail.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpserver") = "localhost" objNewMail.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpserverport") = 25 objNewMail.Configuration.Fields.Update() objNewMail.From = mailFrom objNewMail.To = mailTO objNewMail.CC = mailCC objNewMail.bcc = mailBCC objNewMail.Subject = [...] read more