Recent content by MrMacaroon

  1. M

    Date calculations

    I am with tamhas on this one. That is how I do it. Now finding the week of the year is a little harder ;-) Cameron
  2. M

    Doubt on CIM Creation

    it is so the value of the variable has quotes around it in the file. I prefer this method: def var a as char no-undo. a = "apple". output to value("cim.cim"). put '"' a '"' skip ".". output close. I use single-quote ' for my put statement and double-quote " for the output. It makes tracking...
  3. M

    Webspeed XML gateway

    Tim, Build a .p program that looks the see what the content of the webstream is (web-context:is-xml). Then you can take and a stick (web-context:form-input) into a memptr. Once you have that in place start a SAX handler and you are off to the races. if (web-context:is-xml) is false then...
  4. M

    NTLM Authentication from Progress

    Maybe someone out there has done this before. I need a way for my socket program to do NTLM authentication. I have read the RFQ / white papers on NTLM authentication level-3 auth and can probably code it all (not without a large work effort) but was hoping someone had a super library they could...
Top