Recent content by K4sh

  1. K

    Check Json Support

    Just tested it with 9.1d and 10.2b and it works like a charm. Thank you greg tomkins.
  2. K

    Check Json Support

    You've said it. Not a trivial comparision. The reason why i would expect some kind of boolean variable or close to just to be sure it is supported.
  3. K

    Check Json Support

    It can help but it's not easy to say if version is greater or equal than 10.2B
  4. K

    Check Json Support

    Hey there, Is there a way to check in a speedscript if JSON is supported (CGI env vars etc ...) ? The aim is to call JSON as much as possible and to have a fallback if Progress version is prior to 10.2B.
  5. K

    HTML5 local and session storage

    Hello Cecil, The reason of this question is that, if i can acces them using speedscript i could avoid to post critical data from one html page to another. So what is the syntax to do it ?
  6. K

    HTML5 local and session storage

    My question is simple. Can Progress access browsers (HTML5 capable) localstorage and sessionstorage data ?
  7. K

    Answered Opening and feeding a MS document

    Ok forget about my question. My manager asked me to do it not using speedscript. So it may be any tech that can be called from webspeed.
  8. K

    Answered Opening and feeding a MS document

    All i wanted to do is to be able (client side) to open a word template document (server side if possible) to fullfill it with informations retrieved from database and to open it into Word (client side). I know it's possible to launch Word from webspeed application. I found easily a source code...
  9. K

    Answered Opening and feeding a MS document

    Didn't work as i expected. The web log gives me an error related to .wrx.
  10. K

    Answered Opening and feeding a MS document

    Thank you for your reply, I'm not trying to create a template but to fill it with informations from database. I would like also to open it (into browser or Word) with the whole document fullfilled so that the user can have a look at it and record it if wanted. I will give a try with your...
  11. K

    Answered Opening and feeding a MS document

    Hello there, I'm actually trying to open a MS Word document in my Webspeed application and cannot figure it how. What i would try to do is to open a .dot or .dotx document and to feed it with informations retrieved from my database. Any clue how to do it ?
  12. K

    How to implement SSL connections

    Thank you both for reply. By now i'm only begining to collect informations as i will work on such a project in 6-7 weeks. So i'm not looking anymore on website.
  13. K

    How to implement SSL connections

    Everything is in the title. We would like to use SSL connections with our webspeed application. Specially with the authentification page. I don't have any idea how to do this. Documentation is not easy to find. Where to find it ? Which application to configure ? Any help will be appreciated.
  14. K

    Oracle sql command

    Ok finally i got it to work with your idea. for anyone that would like any help here is my code : ASSIGN sqlReq = "SELECT seqinterf||CHR(1)||typinterf||CHR(1)||nolot||CHR(1)||identifiant||" /* All the fields of my table */ +...
  15. K

    Oracle sql command

    Just gave it a try and it's not working. I guess my statement has somthing to do with the request failure. Here is what i tried into the statement : ASSIGN sqlreq = "SELECT seqinterf" + chr(1) + "nolot FROM tbinterf /*+ INDEX (tbinterf I-typlotident) */ " + "WHERE...
Top