Search results

  1. RealHeavyDude

    Consuming WebServices in combination with oAuth2.0

    routine-level on error undo, throw. using System.Security.Cryptography.X509Certificates.*. using System.Security.Cryptography.*. using System.Security.Permissions.*. class auth.ClientCertificate final inherits AoSBase: &scoped-define sub-system 'CLNT_CERT' &scoped-define...
  2. RealHeavyDude

    Consuming WebServices in combination with oAuth2.0

    Basically for this there is no need to add anything to the assemblies.xml file.
  3. RealHeavyDude

    Consuming WebServices in combination with oAuth2.0

    The auth.ClientCertificate is a class which I developed to wrap the logic which fetches the SSL certificate from the Windows certificate store. I did not include it. Do you need a sample on how to get the certificate from the Windows certificate store?
  4. RealHeavyDude

    Consuming WebServices in combination with oAuth2.0

    Ooops, forgot using System.*. using System.Text.*. using System.IO.*. using System.Net.*. using System.Security.Cryptography.X509Certificates.*. using System.Security.Cryptography.*.
  5. RealHeavyDude

    query-prepare

    It would be helpful if you would post the error and the code surrounding the statement which causes the error.
  6. RealHeavyDude

    Consuming WebServices in combination with oAuth2.0

    The ABl (at least with OE 11.6) does not support the SSL client certificate except for WebService calls. With standard HTTPS get and post requests you cannot use it. Here @ my employer we all login to our Windows 7 systems with a smartcard. During login to Windows the SSL client certificate...
  7. RealHeavyDude

    Consuming WebServices in combination with oAuth2.0

    Since the ABL does not support the SSL client certificate I use the .NET HttpWebRequest object. Obviously our client is running on Windoze. On Solaris we use wget.
  8. RealHeavyDude

    Limit User connection

    And security by obscurity ...
  9. RealHeavyDude

    Linked Server Progress to SSQL Server via ODBC

    Please don't get me wrong, but, doing security right is not an easy task and probably never will be. That's maybe also why we read so much about security flaws and so many software fails to implement security correct or does not implement security at all. There always will be a tradeoff between...
  10. RealHeavyDude

    Linked Server Progress to SSQL Server via ODBC

    Have a look at this KB article which basically explains how to set up SQL92 security Progress KB - Basic Guide to Defining Progress SQL-92 Database Permissions & Security
  11. RealHeavyDude

    STUPID JOB NAMES

    I guess Gus is still just a fellow. Apart from running a company fellow seems to be the most powerful job titles I've ever heard.
  12. RealHeavyDude

    Create Excel File

    That you can only find in the documentation of the 3rd party com object. In the case of Excel, Word and other MS Office stuff Google is your best friend. A search for "excel com interface" comes up with a lot of stuff that might help you. The com object viewer from Progress is just a first start...
  13. RealHeavyDude

    Resolved Static instance failed to load. Cannot reference class xyz (14631)

    On a hunch: When you reference classes in procedures which interface has changed - depending on the order which they are compiled you might hit that error. I know this shouldn't happen because every class referenced in another class or procedure should be compiled up front, but my experience...
  14. RealHeavyDude

    Create Excel File

    Does that help? Progress KB - Frequently Asked Questions About Microsoft Excel as an ActiveX Automation Server
  15. RealHeavyDude

    Action based on user hitting F1

    Isn't F1 the "HELP" key?
  16. RealHeavyDude

    Comment using .NET to test if a process exists.

    As far as I know you can't directly cast a .NET array to ABL extents. You need to capture the output as .NET System.Array, iterate over the array and cast each individual member to what you expect. define variable currentDomain as System.AppDomain no-undo. define variable...
  17. RealHeavyDude

    Question Translate C# Code To Abloo When Using .net

    Are the methods you are passing residing in the ABL class in which you are invoking this?
  18. RealHeavyDude

    Question Translate C# Code To Abloo When Using .net

    As per my experience - YMMV - mostly replace the dot '.' with colon ':'. Sometimes - when the output of the .NET object is an Array I use the .NET Array object and iterate through the array casting to the particular object type. Heavy Regards, RealHeavyDude.
  19. RealHeavyDude

    Resolved System.dll Notfoundexception: Unable To Load Dll

    That's a behavior on Windows which I don't like: Everybody's need to put everything into the Windows PATH. If you display the PATH variable on a typical Windows system you will find all kinds of crap on it. This is, where I think, Progress is superior with the PROPATH ...
  20. RealHeavyDude

    Resolved System.dll Notfoundexception: Unable To Load Dll

    As far as I know, all assemblies you want to use in a .NET or ABL for .NET project must be installed in the Windows assembly cache. The assembly cache is usually located C:\Windows\assembly. From what I know the installation of the 3rd part product should install it there. Plus, you need to add...
Back
Top