Hi, I am using ExecuteNonQuery() whose command type is updategram. Mapping schema is present in a server. When ExecuteNonQuery statement is executed , I am getting an error - HRESULT="0X80004005" Descritpion="The download of the specified resource has failed".
Can someone please help me fix this issue?
Here is the Code:
Public Function ProcessUpdategram(ByVal Original As String, ByVal Current As String, _
ByVal LOB As String, ByVal ConnectionConfigName As String, ByVal MapConfigName As String) As String
Dim mapLoc As String
Dim pQuote As String = (System.Configuration.ConfigurationManager.AppSettings(ConnectionConfigName))
Dim cmd As SqlXmlCommand = New SqlXmlCommand(pQuote)
Dim sReturn As String
mapLoc = (System.Configuration.ConfigurationManager.AppSettings(LOB & MapConfigName))
cmd.CommandText = "<ROOT xmlns:updg='urn:schemas- ...
Go to the complete details ...