If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Data Access, Manipulation & Batch Languages > Delphi, C etc > RDS Server Error : The server has denied access to the default RDS Handler....

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 02-09-03, 03:16
abdul_zu abdul_zu is offline
Registered User
 
Join Date: Dec 2002
Location: Nepal
Posts: 32
Red face RDS Server Error : The server has denied access to the default RDS Handler....

Hi friends,

I want to connect my Access Database through IIS. I am using IIS on Windows XP. I have configured the MSADC according to Microsoft Support article.
But I am getting the fallowing Error:

Run-Time error 2147024891 (80070005)
RDS Server Error : The server has denied access to the default RDS Handler Used to access this page. See4 the server Administrator for more information about server security settings

Here is my code :

Dim conn As ADODB.Connection
Set conn = New ADODB.Connection
Dim rst As ADODB.Recordset
Set rst = New ADODB.Recordset
conn.Open "Provider=MS Remote; Remote Provider=Microsoft.Jet.OLEDB.4.0;;Remote Server=http://projects ; Data Source=D:\inetpub\wwwroot\Inventory.mdb"
SQL = "select * from Invoice"
rst.Open SQL, conn
If Not rst.EOF Then
MsgBox rst.RecordCount
End If

Please help me soon ………….

Thank You
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On