Search results

  1. B

    Webspeed Performance Issue

    Hello, I have similar problem and configuration except we have the databases on AIX server. I read some threads about the timeout problems of webspeed and about the famous "Webwrite failed" errors but I still don't understand how to correct this error. I checked the Progress KB pages and tried...
  2. B

    WINHTTP or MSINET

    Hello, this is not a DLL but an Automation object works like an ActiveX OCX. You can use it with CREATE "automation" com-handle command, for example you can access to a MsWord application with this method. WinHttp or ADODB is can be used as an automation object, it means I don't need function...
  3. B

    WINHTTP or MSINET

    I tried download a binary file with winhttps. I found some example code using AODB for storing large binary files. There is my code: def var winhttp as com-handle. def var ostream as com-handle. create "WinHTTP.WinHTTPRequest.5" winhttp. create "ADODB.Stream" ostream. ostream:type=1...
  4. B

    WINHTTP or MSINET

    Hello, I'm developing a Progress application that sends and gets files from a HTTPS site. I tried some shareware products with not too big success and my friend told me that free APIs are exist: winhttp5.dll or msinet.ocx. I tried msinet but it does not work with HTTPS for me. Winhttp5.dll...
  5. B

    HTTPS access

    Hello, can anyone help in programming a HTTPS access in Progress? I scanned the downloadable products on net but I find only HTTP file transfer example programs. I got only .NET visual c/visual basic examples but how can I transfer files via HTTPS in Progress? thanks Biga
  6. B

    Sending Mail from unix

    output to value(cFile) binary. put unformatted "Mail message". output close. unix silent value("mail -s " + chr(34) + cSubject + chr(34) + " " + cAddress + " < " + cFile).
Top