Search results

  1. W

    Question SHA-512 hash-codes

    I know that MESSAGE-DIGEST ("SHA-512", "1234@docuware!1") returns a 64 byte string, but shouldn't at least the first 32 bytes be the same using GENERATE-PBE-KEY("1234@docuware!1") ?? Try the following code: SECURITY-POLICY:SYMMETRIC-ENCRYPTION-ALGORITHM = 'AES_CBC_256'...
  2. W

    Question download pdf from https fails

    you are right, unchecking "Do not save encrypted pages to disk" DOES solve the problem (generally), I checked it on 2 other machines. The computer, where we still have this problem, is quite old, so I recommended to throw it out and consider this problam as solved. Thanks for your help !
  3. W

    Question download pdf from https fails

    I know this solution, unchecked the options, but it didn't help. Anyway, I doubt that this could be the reason, because when I enter the URL directly in the addresline of the browser, I CAN download the pdf. Just with this code it doesn't work.
  4. W

    Question download pdf from https fails

    Hi everybody, i have a quite simple program to download pdf-files. It works perfectly with http, but fails with https. Both URLs work in explorer/firefox. Can anybody point out whats wrong ...
  5. W

    Question Difference between HTTP and HTTPS-Request ?

    Additional info for those who are interested: just got another response from progress-support: There was a bug in OE11.7, not completely related to url-encoding, but more about how the URL is parsed and fragmented. And that had a side effect causing the encoding of the '?' character. This bug...
  6. W

    Question Difference between HTTP and HTTPS-Request ?

    With the help of progress-support we found the reason why HTML is returned instead of Json! The problem is the "?" in the URL: https://datapadmo.it-park.at/api/task/xp_AppGetTask.xsp?......... the Http-library seems to do some URL-encoding and changes it to "%03F", and thats why HTML is...
  7. W

    Question Difference between HTTP and HTTPS-Request ?

    sorry for this stupid question, but: how do I calculate the content-length and how do I set it in this example ? oRequest = RequestBuilder:Get("https://datapadmo.it-park.at/api/ta...=connect/_immoware&p=28immoware05!&anr=123456"):AcceptJson():Request. oResponse =...
  8. W

    Piew - Free Progress Code Editor

    Hi, had a look at it and I do like it, but I'm missing one function: "search in files". Is this possible ?
  9. W

    Question Difference between HTTP and HTTPS-Request ?

    my last statement about postman was not correct ! Postman does return the correct json-response. The reason why I first got an html-response even in Postman was that I had a typing-error in the request-string. Looked also at the code that Postman sends - very simple, no secret headers or...
  10. W

    Question Difference between HTTP and HTTPS-Request ?

    adding ContentType did not help. I now tried this request in Postman and get the same result: a html-document instead of a json-response. So i will contact the website-administrator. Will post an answer as soon as i have a solution Thanks to everybody
  11. W

    Question Difference between HTTP and HTTPS-Request ?

    Right now I'm trying to access the website using sockets (found some nice examples in the Progress KB) and not using the OE-Net-library at all. Using sockets the call to the website works, i get the expected Json-response, so for me it seems as if this could be a bug in the OE-Net-library.
  12. W

    Question Difference between HTTP and HTTPS-Request ?

    Hi everybody OE117.2, Win 8.1 I had a perfectly working code, as long as I could access a 3rd-party-website by "HTTP". Now they changed the websites address to HTTPS and I'm lost. When I enter the following string directly in the address-line of my browser...
  13. W

    Avoiding SSL-Verification

    Thanks RHD: I did what you proposed and installed the root-certificate. Now the error is gone. ...but my problem is far away from beeing solved: I don't get the expected answer from the website. But as this has nothing to do with SSL-verification (hopefully), I close this thread as 'answered'...
  14. W

    Avoiding SSL-Verification

    9318: Secure Socket Layer (SSL) unsucessfull - unable to get local issuer certificate for ....... I have no SSL-certificate and the administrator of the website I want to access claimes that I don't need any. So I hoped by using... oLib = ClientLibraryBuilder:Build():sslVerifyHost(NO):library...
  15. W

    Avoiding SSL-Verification

    Hi everybody, OE11.7.2, Win 8.1 i'm trying to avoid SSL-verification with the following code, but it doesn't seem to work, i still keep geting Error 9318. USING OpenEdge.Net.HTTP.RequestBuilder. USING OpenEdge.Net.HTTP.IHttpRequest. USING OpenEdge.Net.HTTP.IHttpResponse. USING...
  16. W

    Question How to calculate the best number of records per block for Storage Areas

    Hi everybody, according to this Knowledgebase-Article: Knowledge Article i try to figure out the best RPB-value for our tables and I have one table, where I would like to have your opinion. The characteristics of this table are as follows: Table Records Size Min Max Mean...
  17. W

    Answered Sending Json As Form-data

    1000 thanks Cecil, it works like a charm !!!!
  18. W

    Answered Sending Json As Form-data

    sorry, the only "documentation" i got was the following email: a new order can be created with the following link: Link: http://datapad.it-park.at/projekte/datapad/immoware/datapad2ext.nsf/xp_httpPOST.xsp?u=connect/immoware&p=29immoware29!&anr=12345 Body: { "wf_id":"12345"...
  19. W

    Answered Sending Json As Form-data

    i guess yes, but as I said before i'm completely new to this programming. Searching the OpenEdge-documentation, gives me just 1 hit, where "AddFormData" ist only mentioned, nothing more. So i'm kind of stuck....
Back
Top