Exchange Server 2007 (The HTTP Filter DLL C:\.......\AirFilter.dll failed to load . The data is the error.

Hello guys,
I'm testing some stuff in my  virtual Lab. I have 1 DC 2008 SP2 with Ex2007SP1 + 1 Transport Edge 2008 SP2 - EX2007SP1 .
I added 2 new Servers in my "domain.local"  : DC2012 and 2012R2+EX2013.
To respect the coexistance of Ex07 and Ex2013 i had to upgrade Ex07 to SP3. The upgrade was perfect and it didn't show any issue but the localhost/owa does not work . I didn't find nothing regarding this error , I found 3 articles  but they were useless.
Could You please Help me ? Now i'm installing RU10 .
Thank You,
Alexander 

I'm not sure this is really permission related, but I have found 3 completely different solutions to this error, but they are worth a try...
I would look at the first two first..
http://forums.iis.net/t/1163198.aspx?HTTP+Error+500+0+Internal+Server+Error+in+owa
https://social.technet.microsoft.com/Forums/exchange/en-US/0b9d2ed2-b27b-41bc-8428-36f9957d89fe/issues-with-owa
I would then use this one as as last resort (I never like uninstalling/reinstalling as an answer)
https://social.technet.microsoft.com/Forums/exchange/en-US/0b9d2ed2-b27b-41bc-8428-36f9957d89fe/issues-with-owa

Similar Messages

  • Hidden Contact Subfolders are visible on iPhone after sync with Exchange Server 2007

    Hello,
    We have encountered an issue where synchronizing the iPhone with Contacts from an Exchange Server 2007 mailbox, causes hidden contact subfolders (from Outlook) to be visible and appear in the Groups list in the Contacts App on the iPhone.  This does not occur with Exchange Server 2010 mailboxes.
    We have a 3rd party application that creates hidden subfolders in the default Contacts folder on Exchange Server 2007 mailboxes.  The hidden folders do not display in the Outlook client, Blackberry or on an Android phone.  We did see that they were showing up in Outlook Web Access until we applied this Microsoft Exchange Server 2007 Service Pack 3 Rollup 2 patch unto the Exchange server:
    http://support.microsoft.com/kb/2210042 - A sub contact folder is still visible after you set the "PR_ATTR_HIDDEN" attribute to "True" in an Exchange Server 2007 environment.
    After the patch was applied, the hidden contacts do not show up anywhere else.  However, when we synced the mailbox to an iPhone and synced existing contacts, all of the hidden folders appear in the Contact Groups list.  Is there a way to hide the hidden sub contact folders on the iPhone and prevent them from appearing in the Contact Group lists?
    Any help provided would be most appreciated.
    Thanks and Best Regards

    Hi SBuchan,
    I have an open case with Microsoft about it.  It is an issue with ActiveSync in Exchange 2007 that sends the hidden objects.  Microsoft tried to resolve this in Exchange 2010 by sending a delete message after sending the hidden objects to remove them from the device.  Am awaiting to see if they will approve a design change to Exchange 2007 ActiveSync to prevent the synching of hidden objects.

  • Exchange server 2007, whether to extract the list who's opened, downloaded or executed

    Hi all,
    With an Exchange server 2007 system and Outlook 2007 is used to have access to for the staff.
    Is there any possible way to get the emplyee-list whom has opened, downloaded or executed the attached files in mails that are generally determined as the Ransom-ware files or Spear-phishings or spyware files in use's Inbox under the
    Exchange server 2007 system.
    Can anyone help provide me that Exchange server 2007 has such a monitoring & audit functionalities to retrive the user activities logs who has triggered the acctached files which are generally considered as the Ransom-ware files or Spear-phishings
    or spyware files 
    Your guide and tips would be appreciated in advance. Thanks and regards.

    Thank you for your response and before I close this session, let me please ask you one more last question below.
    According to your response above and provided that mailbox audit is set to be logged for all users, for example, and among mailbox actions as viewed as an image file below, what action log does that describe the attached files that have been whether to
    be downloaded, executed( opened )?
    Action
    Description
    Administrator
    Delegate
    Owner
    Copy
    An item is copied to another folder.
    Yes
    Yes
    No
    Create
    An item is created in the mailbox. (For example, a message is sent or received.) Note that folder creation isn't audited.
    Yes*
    Yes*
    Yes
    FolderBind
    A mailbox folder is accessed.
    Yes*
    Yes**
    No
    HardDelete
    An item is deleted permanently from the Recoverable Items folder.
    Yes*
    Yes*
    Yes
    MessageBind
    An item is accessed in the reading pane or opened.
    Yes
    No
    No
    Move
    An item is moved to another folder.
    Yes*
    Yes
    Yes
    MoveToDeletedItems
    An item is moved to the Deleted Items folder.
    Yes*
    Yes
    Yes
    SendAs
    A message is sent using Send As permissions.
    Yes*
    Yes*
    Not applicable
    SendOnBehalf
    A message is sent using Send on Behalf permissions.
    Yes*
    Yes
    Not applicable
    SoftDelete
    An item is deleted from the Deleted Items folder.
    Yes*
    Yes*
    Yes
    Update
    An item's properties are updated.
    Yes*
    Yes*
    Yes
    Further, would that all be availble from Exchange 2007 for the mail-box auditing function for the target of the  assumed ransomware files or spyware files triggered in a stored mail in Inbox?
    Thanks and regards,
    Lee, Peter Byoungki

  • Exchange Server 2007 Transport Agent Issue

    This is the first time i am working on Exchange Server Development. Below is a simple Transport Agent that i am using, this agent should simply update the email Subjects
    as shown below in the code.
    using System;
    using System.Collections.Generic;
    using System.Text;
    using Microsoft.Exchange.Data.Transport;
    using Microsoft.Exchange.Data.Transport.Smtp;
    namespace MyAgents
    public sealed class MyAgentFactory : SmtpReceiveAgentFactory
    public override SmtpReceiveAgent CreateAgent(SmtpServer server)
    return new MyAgent();
    public class MyAgent : SmtpReceiveAgent
    public MyAgent()
    this.OnEndOfData += new EndOfDataEventHandler(MyEndOfDataHandler);
    private void MyEndOfDataHandler(ReceiveMessageEventSource source, EndOfDataEventArgs e)
    e.MailItem.Message.Subject = "This message passed through my agent: " + e.MailItem.Message.Subject;
    Below is the Powershell script i am using to install the Agent.
    Net Stop MSExchangeTransport
    Install-TransportAgent -Name MyAgent -AssemblyPath EmailLogger.dll -TransportAgentFactory MyAgents.MyAgentFactory
    Enable-TransportAgent -Identity MyAgent
    Net Start MSExchangeTransport
    Agent installed successfully using Exchange Management Shell.
    Now when i send/receive emails in exchange, Email subjects are not modified. Emails have their original subjects. I don't know why?
    I also performed the steps mentioned in below links to debug the Agent but breakpoints are not being hit by Visual Studio Debugger.
    sf-tools.net/Messaging/tabid/55/EntryId/163/Exchange-2010-Transport-Agent.aspx
    stackoverflow.com/questions/12347123/debugging-ms-exchange-2007-transport-agent
    omarjames.com/blog/index.php/debugging-exchange-transport-agent/
    My System Configuration
    I am using the Exchange Server 2007 Virtual Machine provided by Microsoft from link below
    microsoft.com/en-pk/download/details.aspx?id=14901
    I also installed the Visual Studio 2008 on the VM for debugging.
    Please help me in resolving the issue?

    How are you testing this ? a SmtpReceiveAgent will only fire when the server receives email over SMTP. So if your just logging on and sending an Internal Email (eg mailbox to mailbox) or sending Email externally then the
    SmtpReceiveAgent wont fire. For a single server if you want to capture all email you need to use a router agent see
    http://blogs.technet.com/b/postwoman/archive/2010/09/14/step-by-step-how-to-create-a-routing-agent.aspx
    . If you want to test what you have try sending an email to mailbox over SMTP using an SMTP client or Telnet
    http://exchange.mvps.org/smtp_frames.htm
    Cheers
    Glen

  • Need Documentation on how to intehrate Exchange server 2007 with SAP portal

    hi,
    i need some documentation on how to integrate microsoft Exchange server 2007 with SAP portal.
    can anybody help?

    Hi Payel,
    Pls check the links below..
    <a href="http://help.sap.com/saphelp_nw2004s/helpdata/en/7a/ec015c8446d447a83776d40f31c84f/content.htm">Link</a>
    Note : As specified in the document,  only the following versions of Microsoft Exchange server are supported:
    &#9679;     Exchange Server 2000
    &#9679;     Exchange Server 2003
    Regards,
    Venkat.

  • HELP - Exchange Server 2007 Transport Rule Issue

    Hi all,
    sorry if here is not the place to put my question but I did not find another forum, so if anyone can help me I appreciate.
    - I have an Exchange Server 2007 SP3 environment with 1 MBX Server and 3 CAS/HUB Servers.
    - I have created a Transport Rule that said:
    "all emails that have @test.com in BCC field are dropped off except one group can send" .
    The issue is the rule doesn´t work.
    Anyone can help me, please?
    Thanks in advance.
    Luiz

    The Exchange previous versions forums are here: 
    http://social.technet.microsoft.com/Forums/en-US/category/exchangeserverlegacy
    Ed Crowley MVP "There are seldom good technological solutions to behavioral problems."

  • Backup Issue of exchange server 2007 mailbox store

    Dears
    Exchange server 2007 with CCR clustering
    I have got a problem with the backup of one of my mailbox store. Its going till the last and giveing the final error as follows:-
    V-79-57344-65247 - A failure occurred reading an object.
    Also the warning as follows:-
    Backup- \\mailserver.domain\Microsoft Information Store\First Storage Group
    WARNING: "\\mailserver.domain\Microsoft Information Store\First Storage Group\Database" is a corrupt file. This file cannot verify.
    Backup V-79-57344-34108 - An unexpected error occurred when cleaning up snapshot volumes. Confirm that all snapped volumes are correctly resynchronized with the original volumes.
    Does it mean my information store is really a corrupted file. It has been properly monted and logs are genearting.
    Even when I checked the last full backedup log file from the management shell it clearly shows the backing up is properly happened on the log files.
    When I checked the event log of Exchnage server I can see these logs:-
    Event ID 401, 403 errors
    The size of the problem store is 308 GB.
    One of the other store with 46 GB is backing up without any issue

    Hi,
    If you have a space issue with the Exchange server, you can upgrade drives on active node and passive node one by one. It is not recommended to upgrade them at the same time.
    For more information about upgrading Exchange 2007 CCR active node or passive node, here are some helpful threads for your reference.
    Upgrade hard drives on passive node. Process and procedure
    http://social.technet.microsoft.com/Forums/exchange/en-US/08b9e893-87c9-48c3-bab2-91027cc09949/upgrade-hard-drives-on-passive-node-process-and-procedure?forum=exchangesvravailabilityandisasterrecoverylegacy
    Upgrading hard drives in exchange server
    http://social.technet.microsoft.com/Forums/exchange/en-US/0e4514f9-76da-44d2-9dec-a3be5add79b1/upgrading-hard-drives-in-exchange-server?forum=exchangesvravailabilityandisasterrecoverylegacy
    Hope it helps.
    Best regards,
    Amy
    Amy Wang
    TechNet Community Support

  • Exchange server 2007 SP3

    Dear all,
    Presently we are using exchange server 2007 Sp3 along with windows 2008 x64 Domain controller it's working fine . But we have some issue related with
    Message Size restriction when I changed maximum msg size sent and receive  this option will applied to the mail box user taking long time how can i update this option immediately  to the end users ?
    Best Regards
    Subash 

    Hi,
    After you configure the mailbox size restriction for a mailbox, the configured limits are enforced after a period of time, but do not take effect immediately. Restarting the Microsoft Exchange Information Store service causes the configured limits to take
    effect immediately.
    Please restart the Microsoft Exchange Information Store service to check result.
    Here is a related article about this issue for your reference.
    http://technet.microsoft.com/en-us/library/bb684892(v=exchg.80).aspx
    Best regards,
    Belinda Ma
    TechNet Community Support

  • Exchange Server 2007 OWA users can receive email but can't send

    Hi,
    I have an Exchange server 2007 in an SBS 2008 environment with POP3 connector configured and working fine , smtp send mail connector configured. 
    Now users can connect to OWA, receive email but cant not send.
    smtp connector works fine from Outlook client. Tried to track the emails from exchange server management console and I get the
    SEND DELIVER SUBMIT TRANSFER.
    The emails go to the sent items folder, but it never reach the recipients.
    Have been troubleshooting for a while without succes. Any help will be most appreciated.
    Regards
    Faisal

    POP3 is a single mailbox client mail retrieval protocol, not a mail transport protocol. 
    Any attempt to use it as a mail transport protocol is a great big kludge. 
    Exchange is designed to connect to the Internet using SMTP.
    No version of Exchange has a POP3 connector.
    I recommend that you post this in the SBS Forum:  http://social.technet.microsoft.com/Forums/en/smallbusinessserver/threads
    Ed Crowley MVP "There are seldom good technological solutions to behavioral problems."

  • Web Services connection to MS Exchange Server 2007

    Hi everyone,
    I try to use the web services of MS Exchange Server 2007 within ABAP. I found the he WSDL file under https://<dns name of exchange server>/EWS/Services.wsdl.
    I already tried to create the proxy object under SE80 -> create web service -> consume service, but it ends with an error. I also downloaded the WSDL file and tried to use local instead of the URL to the WSDL file, but I also get several errors.
    Have anyone did that before? If there is somebody out there, I would appreciate if we can share our knowledge.
    Thanks in advance,
    Marcel

    Hi together,
    first of all thank you very much for your replies, the document is very interessting for the integration of OWA into portal. I will try that later.
    I also thought that this should be like consuming a web service and I tried to create that proxy class that Thomas Jung has described in his weblogs and in detail in his ABAP - Next Generation book.
    When I try to create the Proxy object I get the error message:
    HTTP error (return code 0, message "")
    If I try to create the proxy object via local file (I have downloaded the wsdl xml file from the exchange)
    then I get several errors, mixed in english and german (I am logged on with english language):
    Proxy-Generierung: Fehler aufgetreten
    Exception occurred in library handler
    Exception occurred in communication framework:Error in File Upload:
    rc=1 C:\Dokumente und Einstellungen\Marcel Salein\Desktop\messages.xsd
    Thanks in advance for your help!
    Best Regards,
    Marcel

  • Integrating MS Exchange server 2007 with OracleAS10g Portal

    Hi,
    We need to integrate MS Exchange server 2007 with our oracle portal so that a user can view his/her mailbox,calendar and to-do list
    in the portal page.I can't find any such provider for exchange 2007.Is there any work around to implement this?
    Thanks.

    Here is one link that might be useful.
    http://blogs.msdn.com/dotnetinterop/archive/2008/07/21/connecting-java-to-exchange-over-webdav-with-apache-httpclient.aspx
    Also, I think Exchange 2007 might support web services and that would probably be a better solution than web dav. We are stuck on Exchange 2003 and so have to use the web dav bit.

  • In Exchange server 2007, is syncing notes to iOS device supported?

    In Exchange server 2007, is syncing notes to iOS device supported? Specially iPhones, and iPads. 
    Thanks.

    Hi,
    Here is an article about how to set up Exchange 2007 on iPhone, iPad and iPod:
    http://www.rackspace.com/knowledge_center/article/setting-up-exchange-2007-on-iphone-ipad-ipod-ios-7
    When setting up, you can select the services that you wish to sync with the Exchange Server.
    Note: Microsoft is providing this information as a convenience to you. The sites are not controlled by Microsoft. Microsoft cannot make any representations regarding the quality, safety, or suitability of any software or information found there. Please
    make sure that you completely understand the risk before retrieving any suggestions from the above link.
    Best Regards.

  • Securely Access Exchange Server 2007 through ASA 5510 using Outlook

    Is there any way to access a MS Exchange Server 2007 on Windows server 2008 through an ASA 5510 running 8.4 with a full MS Outlook client (not using OWA - web browser)?  OWA is currently working fine but I was wondering if access via the full Outlook client is possible and more importantly...is it opening up too many ports on my 5510?  Any help is much appreciated!
    ~John

    Hi John,
    For that scenario, a remote access VPN is probably the best way to go (either the traditional IPSec client or SSL VPN/AnyConnect). This config guide lists your options on the ASA:
    http://www.cisco.com/en/US/docs/security/asa/asa84/configuration/guide/vpn_ike.html
    -Mike

  • Agenda Syncronization with Exchange server 2007

    I am unable to syncronize the agenda throug iSync...
    I am trying to connect to an Exchange Server 2007 OWA, which default url is:
    https://server/owa
    We are using windows authentication too...
    The Agenda and iSync don't show any kind of error... it just won't sync...
    Is there anything else i can do?

    iSync is for syncing Contacts and Calendars to mobile phones and PDAs.
    It doesn't actually sync with any Exchange Servers (although, once setup, you can use the iSync menu bar item "Sync Now" to manually initiate a sync - that's all).
    Are you referring to the "Synchronize with Exchange" option in the *Address Book* application?
    If so, the *Address Book* forum is here:
    http://discussions.apple.com/forum.jspa?forumID=1223

  • How to move all emails from mailbox to an external email account in Exchange Server 2007?

    I have a user who is leaving the university in a few days. The user would like to forward all of their old emails from their mailbox to their G-mail account. Will setting up email forwarding forward all of the old emails to the G-mail account or just the
    new emails that are received after setting up email forwarding? If forwarding isn't the correct solution; then what is? We are running Exchange Server 2007.

    No, as you've suspected the forwarding will only affect new messages coming into the mailbox, not existing ones. Additionally, if you did get all existing messages to forward to another account (you could probably do it by creating a rule in Outlook) then
    the gmail account would show every single one of them as arriving now, and lose their existing send date.
    Probably a better option would be to export the mailbox to .pst, and then assuming the user has their gmail account configured in Outlook somewhere as something other than POP3 they can then open the .pst file on their machine and copy the messages over
    to their gmail account, which I think would also preserve the original information.
    You could do that via the server using Export-Mailbox as described here
    http://technet.microsoft.com/en-gb/library/bb266964(v=exchg.80).aspx (note it has to be run from a 32-bit OS with the Exchange Management tools installed), or the user could just as easily do it themselves from within Outlook using the Export option.

  • After upgrading Exchange Server 2007 to SP3 with update rollup 13, OWA not working

    Hi,
    We have just installed Service Pack 3 and update rollup 13 on our Exchange Server 2007, but unfortunately our OWA has gone inaccessible.
    PROBLEM- The following error comes up when we try to access OWA :
    Exception
    Exception type: Microsoft.Exchange.Clients.Owa.Core.OwaInvalidConfigurationException
    Exception message: Object reference not set to an instance
    of an object.
    Call stack
    Microsoft.Exchange.Clients.Owa.Core.OwaConfigurationManager.CreateAndLoadConfigurationManager()
    Microsoft.Exchange.Clients.Owa.Core.Globals.InitializeApplication()
    Microsoft.Exchange.Clients.Owa.Core.Global.ExecuteApplicationStart(Object sender, EventArgs e)
    Inner Exception
    Exception type: System.NullReferenceException
    Exception message: Object reference not set to an instance
    of an object.
    Call stack
    Microsoft.Exchange.Clients.Owa.Core.Configuration.CheckPublicFolders(ADSystemConfigurationSession session, ADObjectId[] pfdbIds, Boolean& allLegacy, Boolean& allLater)
    Microsoft.Exchange.Clients.Owa.Core.Configuration..ctor(ADSystemConfigurationSession session, String virtualDirectory, String webSiteName, ADObjectId distinguishedName, Boolean isPhoneticSupportEnabled)
    Microsoft.Exchange.Clients.Owa.Core.OwaConfigurationManager.LoadConfiguration()
    Microsoft.Exchange.Clients.Owa.Core.OwaConfigurationManager.CreateAndLoadConfigurationManager()
    ACTION TAKEN SO FAR :
    1. Removed OWA virtual directories and recreated them again.
    2. IIS has been reset.
    3. Restarted the HUB/CAS server.
    4. Created public folder database.
    Even after doing all these activities, owa is still inaccessible. Please help.
    Regards,
    Ankur

    Hi Ankur,
    From your description, you can't access to OWA after upgrading Exchange server 2007 to SP3 rollup 13. Firstly, please locate to C:\ExchangeSetupLogs and make sure that it is a successful installation. If not, this issue often occurs.
    If it is a successful upgrading, please follow the steps below for troubleshooting.
    1. Open IIS Manager, click Default Web Site -> Authentication, make sure that Anonymous Authentication and Windows Authentication are enabled.
    2. Click Default Web Site -> SSL Settings, check "Require SSL" and click Ignore.
    3. Click Default Web Site -> HTTP Redirect, check Redirect (enter your 
    https://URL), check "Only redirect" box and Status code Found 302.
    4. Expand Server Configuration -> Client Access ->double click owa ->Authentication tab. Check the Basic Authentication and check the Use forms-based authentication button Logon Format: Domain\user name.
    Hope it helps.
    Best regards,
    Amy Wang
    TechNet Community Support

Maybe you are looking for

  • Is it possible for Apple to make one more software update for iPod Touch 3G to fix the music library?

    My iPod Touch 3G is running ios 5.1.1 and the music library isn't aphabetical. It's all messed up. I could post a picture if needed. I wanted to see if Apple could create a ios update just to fix this.

  • How do I get rid of the default box on a newly created blank pdf? Anybody not seen this? It gets in the way!

    Asked previously but no replies so far which has surprised me as it must be something others have come across - it's so obvious and 'in your face': Is it possible to delete the blue bordered box which comes as default and centred on the A4 page whene

  • Error logging problem:

    error logging problem: I would like to implement an error logger that will do the following tasks when a error/exception arrises: - surpress the DacfErrorPopupLogger - alert the user that an error has occured with a simplified popup (create a global

  • Essbase Services stops immediatly

    Hi all, I just configured Shared Services before trying to start Essbase 11.1.1.3 Server. The service starts but stops immediatly. The log of Essbase is OK. When I look at the Shared Services, I understand that something is wrong but I really don't u

  • Need a Help building Longer datatypes

    Hi Friends, I have a Complex problem right now. I am trying to build a longer datatypes of an unsinged interger where in we can specify the length of it where in we can specify number of bits required to store the data and is this is exceeding the lo