Wrox Programmer Forums
|
BOOK: Beginning ASP.NET Databases Also see the forum ASP Databases for more general discussions of ASP database issues not directly related to these books.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the BOOK: Beginning ASP.NET Databases section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old February 21st, 2004, 01:44 AM
Authorized User
 
Join Date: Dec 2003
Posts: 11
Thanks: 0
Thanked 0 Times in 0 Posts
Default Exchange 2003 data access

can somebody help me out .. I have a win 2003 server,
ive been trying to get connected to my Exchange 2003 database..but it seems that microsoft is phasing out the ExOLEdb so cant use it for connection..
:(...
i'm not getting any leads as exchange stores data using the .edb and .stm files .... how to connect?
i want to query the exchange database and read messages in the inbox

 
Old February 21st, 2004, 02:25 PM
Authorized User
 
Join Date: Dec 2003
Posts: 11
Thanks: 0
Thanked 0 Times in 0 Posts
Default

whats wrong with the connection string exchange 2003 server::::

<%@ Page Language="C#" Debug="true" %>
<%@ import Namespace="System.Data" %>
<%@ import Namespace="System.Data.OleDb" %>
<script runat="server">

    void Page_Load()

string myConnString="Provider=EXOLEDB;DATA SOURCE= file://.backofficestorage/server/MBX/Administrator;Connect Timeout=30;";

OleDbConnection myConnection=new OleDbConnection(myConnString);
 myConnection.Open();
myConnection.Close();
 }

</script>
-------------
gives mr the error The 'EXOLEDB' provider is not registered on the local machine.but when i check it is registered





Similar Threads
Thread Thread Starter Forum Replies Last Post
how to connect to exchange 2003 server lionking Pro VB.NET 2002/2003 1 February 1st, 2011 11:00 AM
VB.Net with Exchange Server 2003 kbc VB.NET 3 January 8th, 2009 01:45 PM
How to create a mailbox in exchange 2003 using ASP nobreferreira Classic ASP Basics 0 March 22nd, 2004 01:45 PM
reading mails from exchange 2003 lionking .NET Web Services 0 February 25th, 2004 03:44 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.