Results 1 to 23 of 23

Thread: [Resolved] - Remote Data Access - Error 80004005

  1. #1

    Thread Starter
    Lively Member
    Join Date
    Feb 2005
    Posts
    79

    Resolved [Resolved] - Remote Data Access - Error 80004005

    Hi

    I am trying to use RDA for a SmartDeviceApplication, while trying to PULL, it generates error:
    Error Code: 80004005
    Message : An internal eror occurred..
    Minor Err.:28574
    Source :Microsoft SQL Server 2000 Windows CE Edition

    Environment Development/Database Server machine:

    Windowns 2000 (SP4)
    VS 2003, VB.NET, CF 1.0 SP3
    SQL Server 2000 SP3a
    SQL Server CE 2.0
    IIS - created a virtual directory named SQLCE, and for SQL CE Server Agent specified HTTP content folder C:\Program Files\Microsoft SQL Server CE 2.0\Server\
    ActiveSync 3.7
    I am attaching the HTTP Authentication screenshot from IIS configuration, I doubt I am doing something wrong with "Account used for anonymous access"

    Environment Pocket PC:
    HX2750 HP iPAQ
    Windows CE 4.21
    ActiveSync 3.7 (cradle/USB)

    VB Code:
    1. Imports System.Data.SqlServerCe
    2. Imports System.Text
    3. Imports System.IO
    4.  
    5.  
    6.  
    7. Public Class Form1
    8.     Inherits System.Windows.Forms.Form
    9.     Friend WithEvents MainMenu1 As System.Windows.Forms.MainMenu
    10.     Dim conn As New SqlCeConnection("Data Source=\My Documents\ssce.sdf")
    11.     Dim sqlCreateTable As SqlCeCommand = conn.CreateCommand()
    12.  
    13.     ' Connection string to SQL Server 2000
    14.     Dim rdaOleDbConnectString As String = _
    15.             "Provider=sqloledb; Data Source=home-pc;Initial" & _
    16.             " Catalog=Attendance;User Id=sa;Password="
    17.  
    18.     ' Initialize the RDA object.
    19.     Dim rda As SqlCeRemoteDataAccess = Nothing
    20.  
    21.  
    22. #Region " Windows Form Designer generated code "
    23.  
    24.     Public Sub New()
    25.         MyBase.New()
    26.  
    27.         'This call is required by the Windows Form Designer.
    28.         InitializeComponent()
    29.  
    30.         'Add any initialization after the InitializeComponent() call
    31.  
    32.     End Sub
    33.  
    34.     'Form overrides dispose to clean up the component list.
    35.     Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean)
    36.         MyBase.Dispose(disposing)
    37.     End Sub
    38.  
    39.     'NOTE: The following procedure is required by the Windows Form Designer
    40.     'It can be modified using the Windows Form Designer.  
    41.     'Do not modify it using the code editor.
    42.     Friend WithEvents btnPush As System.Windows.Forms.Button
    43.     Friend WithEvents btnPull As System.Windows.Forms.Button
    44.     Friend WithEvents Label1 As System.Windows.Forms.Label
    45.     Friend WithEvents txtStatus As System.Windows.Forms.TextBox
    46.     Private Sub InitializeComponent()
    47.         Me.MainMenu1 = New System.Windows.Forms.MainMenu
    48.         Me.btnPush = New System.Windows.Forms.Button
    49.         Me.btnPull = New System.Windows.Forms.Button
    50.         Me.txtStatus = New System.Windows.Forms.TextBox
    51.         Me.Label1 = New System.Windows.Forms.Label
    52.         '
    53.         'btnPush
    54.         '
    55.         Me.btnPush.Location = New System.Drawing.Point(16, 80)
    56.         Me.btnPush.Text = "Push"
    57.         '
    58.         'btnPull
    59.         '
    60.         Me.btnPull.Location = New System.Drawing.Point(16, 56)
    61.         Me.btnPull.Text = "Pull"
    62.         '
    63.         'txtStatus
    64.         '
    65.         Me.txtStatus.Location = New System.Drawing.Point(56, 136)
    66.         Me.txtStatus.Size = New System.Drawing.Size(168, 20)
    67.         Me.txtStatus.Text = ""
    68.         '
    69.         'Label1
    70.         '
    71.         Me.Label1.Location = New System.Drawing.Point(8, 136)
    72.         Me.Label1.Size = New System.Drawing.Size(40, 16)
    73.         Me.Label1.Text = "Status"
    74.         '
    75.         'Form1
    76.         '
    77.         Me.Controls.Add(Me.Label1)
    78.         Me.Controls.Add(Me.txtStatus)
    79.         Me.Controls.Add(Me.btnPull)
    80.         Me.Controls.Add(Me.btnPush)
    81.         Me.Menu = Me.MainMenu1
    82.         Me.Text = "RDA Example"
    83.  
    84.     End Sub
    85.  
    86. #End Region
    87.  
    88.     Public Sub createDB()
    89.         ' if database exists, delete it and create a new one
    90.         If File.Exists( _
    91.           "\My Documents\ssce.sdf") Then
    92.             File.Delete("\My Documents\ssce.sdf")
    93.         End If
    94.         ' Create a new database
    95.         Dim sqlEngine As New SqlCeEngine( _
    96.           "Data Source=" & _
    97.           "\My Documents\ssce.sdf")
    98.         sqlEngine.CreateDatabase()
    99.         txtStatus.Text = "DB Created successfully"
    100.     End Sub
    101.  
    102.     Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
    103.         createDB()
    104.  
    105.  
    106.     End Sub
    107.  
    108.     Private Function PullRetrieveRecordsFromSQLServer2000()
    109.         Try
    110.             rda = New SqlCeRemoteDataAccess
    111.             '   [url]http://localhost/virtual_directory_alias_name/sscesa20.dll[/url]
    112.             rda.InternetUrl = "http://home-pc/SQLCE/sscesa20.dll"
    113.             rda.LocalConnectionString = _
    114.                  "Provider=Microsoft.SQLSERVER." & _
    115.                        "OLEDB.CE.2.0;Data Source=\My Documents\ssce.sdf"
    116.             rda.Pull("Module", "Select * from Module", _
    117.                      rdaOleDbConnectString, _
    118.                      RdaTrackOption.TrackingOnWithIndexes, _
    119.                      "ErrorTable")
    120.             MsgBox("Pull operation completed", _
    121.                 MsgBoxStyle.Information, _
    122.              "Pull")
    123.             txtStatus.Text = "Pull Data to SQLServerCE successfully"
    124.         Catch err As SqlCeException
    125.             ShowErrors(err)
    126.         Finally
    127.             rda.Dispose()
    128.         End Try
    129.  
    130.     End Function
    131.     Public Shared Sub ShowErrors(ByVal e As SqlCeException)
    132.         Dim errorCollection As SqlCeErrorCollection = e.Errors
    133.  
    134.         Dim bld As New StringBuilder
    135.         Dim inner As Exception = e.InnerException
    136.  
    137.         If Not inner Is Nothing Then
    138.             MessageBox.Show(("Inner Exception: " & inner.ToString()))
    139.         End If
    140.         Dim err As SqlCeError
    141.         ' Enumerate each error to a message box.
    142.         For Each err In errorCollection
    143.             bld.Append((ControlChars.Cr & _
    144.                         " Error Code: " & _
    145.                         err.HResult.ToString("X")))
    146.             bld.Append((ControlChars.Cr & _
    147.                         " Message   : " & _
    148.                         err.Message))
    149.             bld.Append((ControlChars.Cr & _
    150.                         " Minor Err.: " & _
    151.                         err.NativeError))
    152.             bld.Append((ControlChars.Cr & _
    153.                         " Source    : " & _
    154.                         err.Source))
    155.             ' Retrieve the error parameter
    156.             ' numbers for each error.
    157.             Dim numPar As Integer
    158.             For Each numPar In err.NumericErrorParameters
    159.                 If 0 <> numPar Then
    160.                     bld.Append((ControlChars.Cr & _
    161.                                 " Num. Par. : " & _
    162.                                 numPar))
    163.                 End If
    164.             Next numPar
    165.             ' Retrieve the error parameters for each error.
    166.             Dim errPar As String
    167.             For Each errPar In err.ErrorParameters
    168.                 If [String].Empty <> errPar Then
    169.                     bld.Append((ControlChars.Cr & _
    170.                                 " Err. Par. : " & _
    171.                                 errPar))
    172.                 End If
    173.             Next errPar
    174.             MessageBox.Show(bld.ToString())
    175.             bld.Remove(0, bld.Length)
    176.         Next err
    177.     End Sub
    178.     Private Function PushSQLServerCETableDataToSQLServer2000database()
    179.  
    180.         ' Initialize the RDA object.
    181.         Dim rda As SqlCeRemoteDataAccess = Nothing
    182.  
    183.         Try
    184.             rda = New SqlCeRemoteDataAccess
    185.             '   [url]http://localhost/virtual_directory_alias_name/sscesa20.dll[/url]
    186.             rda.InternetUrl = "http://home-pc/SQLCE/sscesa20.dll"
    187.             rda.LocalConnectionString = _
    188.                        "Provider=Microsoft.SQLSERVER." & _
    189.                        "OLEDB.CE.2.0;Data Source=\My Documents\ssce.sdf"
    190.             rda.Push("Module", rdaOleDbConnectString, _
    191.                      RdaBatchOption.BatchingOn)
    192.             MsgBox("Push operation completed", _
    193.                    MsgBoxStyle.Information, "Push")
    194.             txtStatus.Text = "Push Data to SQLServer2000 successfully"
    195.         Catch err As SqlCeException
    196.             ShowErrors(err)
    197.         Finally
    198.             rda.Dispose()
    199.         End Try
    200.  
    201.     End Function
    202.  
    203.  
    204.  
    205.     Private Sub btnPull_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnPull.Click
    206.         PullRetrieveRecordsFromSQLServer2000()
    207.  
    208.     End Sub
    209.  
    210.     Private Sub btnPush_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnPush.Click
    211.         PushSQLServerCETableDataToSQLServer2000database()
    212.  
    213.     End Sub
    214.  
    215.  
    216. End Class

    Please advise.
    Attached Images Attached Images  
    Attached Files Attached Files
    Last edited by karahim; Oct 12th, 2005 at 11:36 PM. Reason: resolved

  2. #2
    Fanatic Member Strider's Avatar
    Join Date
    Sep 2004
    Location
    Dublin, Ireland
    Posts
    612

    Re: Remote Data Access - Error 80004005

    you should use the IP Address of the machine for everything.
    Do not use the hostname(pcname), localhost or 127.0.0.1
    Barry


    Visual Studio .NET 2008/Visual Studio .NET 2005/Visual Studio .NET 2003
    .NET Framework 3.0 2.0 1.1/ASP.Net 3.0 2.0 1.1/Compact Framework 1.0

    SQL Server 2005/2000/SQL Server CE 2.0


    If you like, rate this post

    Compact Framework for Beginners

  3. #3

    Thread Starter
    Lively Member
    Join Date
    Feb 2005
    Posts
    79

    Re: Remote Data Access - Error 80004005

    Thanks Strider for your reply.

    On using IP address getting:
    Error Code: 80070057
    Message : An error has occured on computer running IIS.
    Minor Err.:28022
    Source :Microsoft SQL Server 2000 Windows CE Edition
    Last edited by karahim; Oct 7th, 2005 at 03:09 AM.

  4. #4
    Fanatic Member Strider's Avatar
    Join Date
    Sep 2004
    Location
    Dublin, Ireland
    Posts
    612

    Re: Remote Data Access - Error 80004005

    read the end of this article http://www.codeproject.com/netcf/PocketPCwithSQLCE.asp

    are you trying it on the emulator or on the PDA
    Barry


    Visual Studio .NET 2008/Visual Studio .NET 2005/Visual Studio .NET 2003
    .NET Framework 3.0 2.0 1.1/ASP.Net 3.0 2.0 1.1/Compact Framework 1.0

    SQL Server 2005/2000/SQL Server CE 2.0


    If you like, rate this post

    Compact Framework for Beginners

  5. #5

    Thread Starter
    Lively Member
    Join Date
    Feb 2005
    Posts
    79

    Re: Remote Data Access - Error 80004005

    no, i am deploying it on device using debug option.

  6. #6

    Thread Starter
    Lively Member
    Join Date
    Feb 2005
    Posts
    79

    Re: Remote Data Access - Error 80004005

    please note that I have updated my last reply.

  7. #7
    Fanatic Member Strider's Avatar
    Join Date
    Sep 2004
    Location
    Dublin, Ireland
    Posts
    612

    Re: Remote Data Access - Error 80004005

    open your internet browser on the device and and go to http://<your ip address>//SQLCE/sscesa20.dll

    does it show the web page with "SQL Server CE Server Agent"?
    is it requesting a username and password?
    Barry


    Visual Studio .NET 2008/Visual Studio .NET 2005/Visual Studio .NET 2003
    .NET Framework 3.0 2.0 1.1/ASP.Net 3.0 2.0 1.1/Compact Framework 1.0

    SQL Server 2005/2000/SQL Server CE 2.0


    If you like, rate this post

    Compact Framework for Beginners

  8. #8

    Thread Starter
    Lively Member
    Join Date
    Feb 2005
    Posts
    79

    Re: Remote Data Access - Error 80004005

    It is showing:
    Server Configuration Error
    The server has encountered a configuration error attempting to process your request. The configuratin parameter MD_ANONYMOUS_USER_NAME (6020) has an invalid value. Please contact the server administrator for assistance.

  9. #9
    Fanatic Member Strider's Avatar
    Join Date
    Sep 2004
    Location
    Dublin, Ireland
    Posts
    612

    Re: Remote Data Access - Error 80004005

    Sounds like permission on the folder or problems with the IIS IUSER account

    http://support.microsoft.com/default...;en-us;Q201851
    Barry


    Visual Studio .NET 2008/Visual Studio .NET 2005/Visual Studio .NET 2003
    .NET Framework 3.0 2.0 1.1/ASP.Net 3.0 2.0 1.1/Compact Framework 1.0

    SQL Server 2005/2000/SQL Server CE 2.0


    If you like, rate this post

    Compact Framework for Beginners

  10. #10

    Thread Starter
    Lively Member
    Join Date
    Feb 2005
    Posts
    79

    Re: Remote Data Access - Error 80004005

    yes, there was a problem with IIS IUSER account, it is now settled and I may access SQL Server CE Server Agent from device. When I deploy the application and try to RDA PULL, it generates error:
    Error Code: 80004005
    Message : An internal eror occurred..
    Minor Err.:28574
    Source :Microsoft SQL Server 2000 Windows CE Edition

  11. #11
    Fanatic Member Strider's Avatar
    Join Date
    Sep 2004
    Location
    Dublin, Ireland
    Posts
    612

    Re: Remote Data Access - Error 80004005

    can you post the code of your pull function
    Barry


    Visual Studio .NET 2008/Visual Studio .NET 2005/Visual Studio .NET 2003
    .NET Framework 3.0 2.0 1.1/ASP.Net 3.0 2.0 1.1/Compact Framework 1.0

    SQL Server 2005/2000/SQL Server CE 2.0


    If you like, rate this post

    Compact Framework for Beginners

  12. #12

    Thread Starter
    Lively Member
    Join Date
    Feb 2005
    Posts
    79

    Re: Remote Data Access - Error 80004005

    VB Code:
    1. Try
    2.             rda = New SqlCeRemoteDataAccess
    3.             '   [url]http://localhost/virtual_directory_alias_name/sscesa20.dll[/url]
    4.             '   rda.InternetUrl = "http://127.0.0.1/SQLCE/sscesa20.dll"
    5.             rda.InternetUrl = "http://203.221.83.180/SQLCE/sscesa20.dll"
    6.             rda.LocalConnectionString = _
    7.                  "Provider=Microsoft.SQLSERVER." & _
    8.                        "OLEDB.CE.2.0;Data Source=\My Documents\ssce.sdf"
    9.             rda.Pull("Module", "Select * from Module", _
    10.                      rdaOleDbConnectString, _
    11.                      RdaTrackOption.TrackingOnWithIndexes, _
    12.                      "ErrorTable")
    13.             MsgBox("Pull operation completed", _
    14.                 MsgBoxStyle.Information, _
    15.              "Pull")
    16.             txtStatus.Text = "Pull Data to SQLServerCE successfully"
    17.         Catch err As SqlCeException
    18.             ShowErrors(err)
    19.         Finally
    20.             rda.Dispose()
    21.         End Try

  13. #13
    Fanatic Member Strider's Avatar
    Join Date
    Sep 2004
    Location
    Dublin, Ireland
    Posts
    612

    Re: Remote Data Access - Error 80004005

    Here is my code for RDA. Maybe substitute your values in for mine. If that doesnt work it is probably a problem with permissions on SQL Server

    VB Code:
    1. Private m_cn As SqlCeConnection
    2.     Private m_rda As SqlCeRemoteDataAccess
    3.  
    4.     Private m_localDB As String = "\My Documents\memodb.sdf"
    5.     Private m_localConn As String = "Data Source=" & m_localDB & ";" & _
    6.                                     "Password=pwd;" & _
    7.                                     "Encrypt Database=False"
    8.  
    9.     Private m_remoteConn As String = "Provider=SQLOLEDB;" & _
    10.                                      "Data Source=xxx.xxx.xxx.xxx;" & _
    11.                                      "Initial Catalog=RDAdata;" & _
    12.                                      "User ID=sa;" & _
    13.                                      "Password="
    14.  
    15. Private Sub btPull_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btPull.Click
    16.         Try
    17.             btPull.Enabled = False
    18.  
    19.             If Not File.Exists(m_localDB) Then
    20.                 Dim l_sqlEngine As New SqlCeEngine
    21.                 l_sqlEngine.LocalConnectionString = m_localConn
    22.  
    23.                 l_sqlEngine.CreateDatabase()
    24.                 l_sqlEngine.Dispose()
    25.             Else
    26.                 If m_cn Is Nothing Then
    27.                     m_cn = New SqlCeConnection(m_localConn)
    28.                     m_cn.Open()
    29.                 End If
    30.  
    31.                 Dim l_cmd As SqlCeCommand = m_cn.CreateCommand
    32.  
    33.                 l_cmd.CommandText = "DROP TABLE FieldMemos"
    34.                 l_cmd.ExecuteNonQuery()
    35.  
    36.                 If m_cn.State = ConnectionState.Open Then
    37.                     m_cn.Close()
    38.                 End If
    39.             End If
    40.  
    41.             m_rda = New SqlCeRemoteDataAccess
    42.  
    43.             m_rda.InternetLogin = "RDAuser"
    44.             m_rda.InternetPassword = "rda"
    45.             m_rda.InternetUrl = "http://xxx.xxx.xxx.xxx/MyRDA/sscesa20.dll"
    46.             m_rda.LocalConnectionString = m_localConn
    47.  
    48.             m_rda.Pull("FieldMemos", "SELECT * FROM FieldMemos", m_remoteConn, RdaTrackOption.TrackingOnWithIndexes, "FieldMemosErrorTable")
    49.  
    50.             PopulateDataGrid()
    51.         Catch ex As SqlCeException
    52.             Dim l_sqlerr As SqlCeError
    53.             For Each l_sqlerr In ex.Errors
    54.                 MsgBox(l_sqlerr.Message)
    55.             Next
    56.         Catch ex As Exception
    57.             MsgBox(ex.Message)
    58.         Finally
    59.             m_rda.Dispose()
    60.             btPull.Enabled = True
    61.         End Try
    62.     End Sub
    Barry


    Visual Studio .NET 2008/Visual Studio .NET 2005/Visual Studio .NET 2003
    .NET Framework 3.0 2.0 1.1/ASP.Net 3.0 2.0 1.1/Compact Framework 1.0

    SQL Server 2005/2000/SQL Server CE 2.0


    If you like, rate this post

    Compact Framework for Beginners

  14. #14

    Thread Starter
    Lively Member
    Join Date
    Feb 2005
    Posts
    79

    Re: Remote Data Access - Error 80004005

    Thanks Strider for your help, I will try your code and respond.

    There is one question, the required table should exist on SQL CE or not necessary? currently I do not have that table created on SQL CE.

  15. #15
    Fanatic Member Strider's Avatar
    Join Date
    Sep 2004
    Location
    Dublin, Ireland
    Posts
    612

    Re: Remote Data Access - Error 80004005

    You need to create the database file (the .SDF).
    During the RDA Pull it will create the table on the device with any indexes required
    Barry


    Visual Studio .NET 2008/Visual Studio .NET 2005/Visual Studio .NET 2003
    .NET Framework 3.0 2.0 1.1/ASP.Net 3.0 2.0 1.1/Compact Framework 1.0

    SQL Server 2005/2000/SQL Server CE 2.0


    If you like, rate this post

    Compact Framework for Beginners

  16. #16

    Thread Starter
    Lively Member
    Join Date
    Feb 2005
    Posts
    79

    Re: Remote Data Access - Error 80004005

    Thanks,

    This is what I am already doing, I just wanted to make sure about it.

  17. #17

    Thread Starter
    Lively Member
    Join Date
    Feb 2005
    Posts
    79

    Re: Remote Data Access - Error 80004005

    Hi Strider, using your and mine code I am now getting:
    Error Code: 80004005
    Message : SQL Server CE encountered problems in opening the SQL Server CE database. [,,,Database name,,]
    Minor Err.:28559
    Source :Microsoft SQL Server 2000 Windows CE Edition

    My CE database file ssce.sdf exist on pocket pc.

    Please advise.

  18. #18
    Fanatic Member Strider's Avatar
    Join Date
    Sep 2004
    Location
    Dublin, Ireland
    Posts
    612

    Re: Remote Data Access - Error 80004005

    on what line of code is the exception thrown?




    are you specifying the IP Address of the SQL Server?

    Dim rdaOleDbConnectString As String = _
    "Provider=sqloledb; Data Source=<IP ADDRESS>;Initial" & _
    " Catalog=Attendance;User Id=sa;Password="
    Barry


    Visual Studio .NET 2008/Visual Studio .NET 2005/Visual Studio .NET 2003
    .NET Framework 3.0 2.0 1.1/ASP.Net 3.0 2.0 1.1/Compact Framework 1.0

    SQL Server 2005/2000/SQL Server CE 2.0


    If you like, rate this post

    Compact Framework for Beginners

  19. #19

    Thread Starter
    Lively Member
    Join Date
    Feb 2005
    Posts
    79

    Re: Remote Data Access - Error 80004005

    The exceptions are thrown on
    rda.Pull("Module", "Select * from Module", _
    rdaOleDbConnectString, _
    RdaTrackOption.TrackingOnWithIndexes, _
    "ErrorTable")

    While executing the pull function, the Norton Security was showing alert:
    SQL Server – Mixed Mode
    Windows SubSystem is attempting to access the internet..

    Then I disabled the Internet Security and run the application, now it is showing two errors:
    First Error Code: 80004005
    Message : An internal eror occurred..
    Minor Err.:28574
    Source :Microsoft SQL Server 2000 Windows CE Edition

    Second Error Code: 80004005
    Message : [DBNETLIB]
    [ConnectionOpen (connect()),]
    SQL Server does not exist or access denied
    Minor Err.:17
    Source :Microsoft OLE DB Provider for SQL Server 2000
    Last edited by karahim; Oct 12th, 2005 at 11:16 PM. Reason: correction

  20. #20
    Fanatic Member Strider's Avatar
    Join Date
    Sep 2004
    Location
    Dublin, Ireland
    Posts
    612

    Re: Remote Data Access - Error 80004005

    Is the firewall allowing your IP address to access sql server? i presume you can access it throught the enterprise manager

    what version of sqlce20sql2k did you install cos there are diff rules for them

    There are three different installation files for SQL Server CE Server components.

    Here's the rules

    If the machine running IIS is not running SQL Server use the following installation file:-

    sqlce20sql2ksp1.exe.

    If the machine running IIS is running SQL Server then use the following installation file:-

    1) For SQL Server with no service pack or service pack 1 use: - sqlce20sql2ksp1.exe
    2) For SQL Server with service pack 2 use: - sqlce20sql2ksp2.exe
    3) For SQL Server with service pack 3 use: - sqlce20sql2ksp3.exe
    Barry


    Visual Studio .NET 2008/Visual Studio .NET 2005/Visual Studio .NET 2003
    .NET Framework 3.0 2.0 1.1/ASP.Net 3.0 2.0 1.1/Compact Framework 1.0

    SQL Server 2005/2000/SQL Server CE 2.0


    If you like, rate this post

    Compact Framework for Beginners

  21. #21

    Thread Starter
    Lively Member
    Join Date
    Feb 2005
    Posts
    79

    Resolved Re: Remote Data Access - Error 80004005

    Thanks a lot Strider for your support.
    After so many hit and tries that include un-installations and re-installations of SQL Server and its service pack, I succeeded in pulling table from SQL Server. Note: It is only executing successfully when I am disabling the Norton Internet Security. Personal Firewall is ON and having default setting.

    FYI, I am using Service Pack 3a, which is shipped with my SQL Server 2000.
    Last edited by karahim; Oct 13th, 2005 at 01:53 AM. Reason: correction

  22. #22

    Thread Starter
    Lively Member
    Join Date
    Feb 2005
    Posts
    79

    spread reputation

    Strider, When I am trying to rate your post, the system gives me message “You must spread some reputation before giving it to Strider again”. What is the procedure to spread reputation?

  23. #23
    Fanatic Member Strider's Avatar
    Join Date
    Sep 2004
    Location
    Dublin, Ireland
    Posts
    612

    Re: [Resolved] - Remote Data Access - Error 80004005

    Good to hear it works finally.
    I know it can be very difficult mainly due to all the security configuration you need to do
    Barry


    Visual Studio .NET 2008/Visual Studio .NET 2005/Visual Studio .NET 2003
    .NET Framework 3.0 2.0 1.1/ASP.Net 3.0 2.0 1.1/Compact Framework 1.0

    SQL Server 2005/2000/SQL Server CE 2.0


    If you like, rate this post

    Compact Framework for Beginners

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width