XFOR: IStream::Stat( ) Returns E_NOTIMPL in MCIS 2.0

ID: q195046


The information in this article applies to:
  • Microsoft Commercial Internet System version 2.0


SYMPTOMS

When you write an SMTP event sink for use with Microsoft Commercial Internet System (MCIS) 2.0, you can use the IStream::Stat() interface to return the size of the message. The following code segment demonstrates this:


HRESULT STDMETHODCALLTYPE CSmtpRules::OnDelivery(IMsg *pMsg)
{
   IStream *pStream;
   HRESULT hr;
   hr = pMsg->GetInterfaceA("Msg Stream", IID_IStream, (IUnknown**)
    &pStream);
   if (SUCCEEDED(hr))
   {
      STATSTG stg;
      if (S_OK == pStream->Stat(&stg, STATFLAG_NONAME))
      {
         sprintf(buffer, "Data size: %d - %d\r\n",
         stg.cbSize.LowPart,
         stg.cbSize.HighPart);
      }
      else
   // report error
} 

However, the Istream::Stat() call will return E_NOTIMPL.


CAUSE

This interface was not implemented in versions of Smtpsvc.dll prior to version 1877.11.

If you want to implement this feature, you must use this version or later and modify your code to call pStream->Stat(&statStg,STATFLAG_NONAME), and then retrieve the size information out of statStg.cbSize. This method cannot be used to retrieve file names, as files are only created after the sinks are called. After using pStream, you must call pStream->Release( ), or the message will be left in the queue after delivery.


RESOLUTION

To resolve this problem, obtain the latest service pack for Windows NT 4.0 or the individual software update. For information on obtaining the latest service pack, please go to:

For information on obtaining the individual software update, contact Microsoft Product Support Services. For a complete list of Microsoft Product Support Services phone numbers and information on support costs, please go to the following address on the World Wide Web:
http://www.microsoft.com/support/supportnet/overview/overview.asp


STATUS

Microsoft has confirmed this to be a problem in Microsoft Commercial Internet System version 2.0.

Additional query words:

Keywords : prodmcis2 prodIMS nt4sp5fix
Version : winnt:2.0
Platform : winnt
Issue type : kbbug


Last Reviewed: September 23, 1999
© 2000 Microsoft Corporation. All rights reserved. Terms of Use.