Last night, Microsoft uploaded an update to msxml3.dll and now my programs are erroring out. Specifically, I use the following to send XML texts to a net server.
This has worked perfectly for a long time. After the Microsoft update, we get the following error:
This is now creating a problem for all of my clients. If I turn off the service ( the XML process ), then the application works fine except we can no longer retireve the data.
Does anyone know of a workaround, or have info related to the msxml3.dll current version that we can use to regain SendPostToURL( ) as shared above ? Thank you.
Function SendPostToUrl( cUrl, cParams,cContentType,cAuthorization )
  Local oOle,cRet:='',uRet
  default cContentType:="application/x-www-form-urlencoded"
  default cAuthorization:=""
  Try
    oOle := CreateObject( 'MSXML2.XMLHTTP' )
  Catch
    oOle := CreateObject( 'Microsoft.XMLHTTP' )
  End
  oOle:Open( 'POST', cUrl, .f. )
 Â
  oOle:SetRequestHeader( "Content-Type",cContentType)
  if !empty(cAuthorization)
    oOle:SetRequestHeader( "Authorization",cAuthorization)
  end if
 Â
  oOle:Send( cParams )
  cRet := oOle:ResponseBody
Return cRetThis has worked perfectly for a long time. After the Microsoft update, we get the following error:
  Error description: (DOS Error -2147352567) WINOLE/1007  The system cannot locate the resource specified.
 (0x800C0005): msxml3.dll
  Args:
   [  1] = C  <carfax-request>
   <license-plate>FRUGAL</license-plate>
   <state>CA</state>
   <vin></vin>
   <product-data-id>38A304F1C16BA41C</product-data-id>
   <location-id>10000</location-id>
</carfax-request>Does anyone know of a workaround, or have info related to the msxml3.dll current version that we can use to regain SendPostToURL( ) as shared above ? Thank you.
Tim Stone
http://www.MasterLinkSoftware.com
http://www.autoshopwriter.com
timstone@masterlinksoftware.com
Using: FWH 23.10 with Harbour 3.2.0 / Microsoft Visual Studio Community 2022-24 32/64 bit
http://www.MasterLinkSoftware.com
http://www.autoshopwriter.com
timstone@masterlinksoftware.com
Using: FWH 23.10 with Harbour 3.2.0 / Microsoft Visual Studio Community 2022-24 32/64 bit