RDS server error

RDS server error

Post by mike burk » Fri, 17 Aug 2001 06:32:32



I'm trying to convert a client/server app to use an access database that
exists on the web.  I'm using MS Remote provider connection string and RDS
Datafactory.  I get an error message:  RDS Server Error: THe server has
denied access to the default RDS handler used to access this page....

Any advice???

Thanks!

 
 
 

RDS server error

Post by Carl Prothma » Fri, 17 Aug 2001 06:35:42



Quote:> I'm trying to convert a client/server app to use an access database that
> exists on the web.  I'm using MS Remote provider connection string and RDS
> Datafactory.  I get an error message:  RDS Server Error: THe server has
> denied access to the default RDS handler used to access this page....

Mike,
Check out the following RDS FAQ
http://www.able-consulting.com/RDS_Faq.htm#Q18

--

Thanks,
Carl Prothman
Microsoft Visual Basic MVP
http://www.able-consulting.com

 
 
 

RDS server error

Post by Gary » Fri, 17 Aug 2001 18:19:52


Please refer to the following article:

Troubleshooting Common Problems with Remote Data Services
http://support.microsoft.com/support/kb/articles/Q251/1/22.asp

Regards,

 
 
 

RDS server error

Post by mike burk » Fri, 17 Aug 2001 21:34:05


Carl -

Thanks!  That FAQ was exactly what I needed!

Mike Burke



> > I'm trying to convert a client/server app to use an access database that
> > exists on the web.  I'm using MS Remote provider connection string and
RDS
> > Datafactory.  I get an error message:  RDS Server Error: THe server has
> > denied access to the default RDS handler used to access this page....

> Mike,
> Check out the following RDS FAQ
> http://www.able-consulting.com/RDS_Faq.htm#Q18

> --

> Thanks,
> Carl Prothman
> Microsoft Visual Basic MVP
> http://www.able-consulting.com

 
 
 

RDS server error

Post by mike burk » Fri, 17 Aug 2001 21:34:30


Thanks, Gary. I'll check it out!

Mike


Quote:> Please refer to the following article:

> Troubleshooting Common Problems with Remote Data Services
> http://support.microsoft.com/support/kb/articles/Q251/1/22.asp

> Regards,

 
 
 

RDS server error

Post by Gary » Tue, 21 Aug 2001 13:17:28


Cheers!

Regards,

 
 
 

1. RDS Server Error

Hello

I'm trying to access a database over an intranet with a vb-app. But can't
get it working. The error I get is the following:
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.
-.

Runtime error '-2147024891(80070005)';

RDS Server Error: The server has denied access to the default RDS Handler
used to access this page. See the Server Administrator for more information
about server security settings.

-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.
-.
The code I used was:
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.
-.

Option Explicit
Private con As ADODB.Connection
Private rsCon As ADODB.Recordset

Private Sub Form_Load()
   Dim cmd As String
   Dim sql As String
   Dim con As ADODB.Connection
   Dim rsCon As ADODB.Recordset

   'create connectionstring
   cmd = "Provider=MS Remote;" & _
         "Remote Server=http://erwin;" & _
         "Remote Provider=Microsoft.Jet.OLEDB.4.0;" & _
         "Handler=MSDFMAP.Handler;" & _
         "Data Source=AquariumAgenda/AquariumAgenda.mdb" & _
         "Uid=admin;"

   'Establish a connection with the database
   Set con = New ADODB.Connection
      With con
            .ConnectionString = cmd
            .Open
      End With

      'create a query
      sql = "SELECT * FROM tblTest"

      'open the recordset
      Set rsCon = New ADODB.Recordset
         With rsCon
            .Open sql, con, adOpenForwardOnly, adLockReadOnly
               Do While Not rsCon.EOF
                  'Add testA to the list
                  lstTest.AddItem rsCon.Fields("testA")

                  'Move to Next Record
                  rsCon.MoveNext
               Loop

            'close rsCon
            .Close
         End With
      Set rsCon = Nothing

   'close con
   con.Close

   'destroy con
   Set con = Nothing

End Sub

-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.
-.

Can anybody help me? I'd be really happy if you could

THX!!!

Erwin Bon

2. Why Abort don't function when the table is in a DataModule ?????

3. RDS 2.5 - How to use RDS to get and maintain data on a Remote Server

4. Database & Qreport problem

5. exists "join"-operation?

6. RDS : Internet Server Error

7. Error with 2 applications using BDE

8. RDS/MDAC/Component Checker Errors/Win2000 Server

9. RDS + IIS5 + RDS DataControl

10. Speed of Indexes between RDS 6.04 and RDS 4.20

11. RDS + IIS5 + RDS DataControl

12. Compiling 4GL code in RDS 6.00 is not like RDS 4.00