Search results

  1. redsuitee

    compress a file with gzip

    I think I can use it. Thank you very much.
  2. redsuitee

    compress a file with gzip

    I need to compress a file with gzip through openedge editor but I don't know how, is it possible? Anybody please help.
  3. redsuitee

    how to use URL-encode in ABL

    here is my project -> http://docs.amazonwebservices.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/index.html?Query_QueryAuth.html It's mentioned that "The final signature you send in the request must be URL encoded ... make sure to URL encode the signature before you include it in the...
  4. redsuitee

    how to use URL-encode in ABL

    I've tried that one too. But when I compile the code, I get error message ** Unable to understand after -- "myVar = URL-ENCODE("http://aaa.bbbb?s=2&d=3")". (247)
  5. redsuitee

    how to use URL-encode in ABL

    I have a problem to use URL-encode function. I want to encode a string to finish my query. But I don't understand how to run the function. I read the help, it mentions a location web\method\cgiutils.i Actually I don't understand what is it means? Anybody can explain me how to use URL-encode in...
  6. redsuitee

    HMACSHA1 function using the ABL SHA1-DIGEST

    Now I understand. Thank you so much cecil. It's very helpfull
  7. redsuitee

    HMACSHA1 function using the ABL SHA1-DIGEST

    Cecil, Can you explain to me, what should I pass into HMACSHA1-BASE64 function (for pcKey and pcData)? As far as I understand, I only have one input parameter which is in the documentation called with secret access key. Where is the secret access key should be used? Thank you in advance
  8. redsuitee

    HMACSHA1 function using the ABL SHA1-DIGEST

    Here is some information from the documentation : To calculate the signature Concatenate the values of the Action and Timestamp request parameters, in that order. The string you've just created is the string you'll use when generating the signature. Calculate an RFC 2104-compliant HMAC-SHA1...
  9. redsuitee

    HMACSHA1 function using the ABL SHA1-DIGEST

    I do some modications on cecil's code to conform with my needs. Here is my code : FUNCTION BinaryXOR RETURNS INTEGER (INPUT intOperand1 AS INTEGER,INPUT intOperand2 AS INTEGER): DEFINE VARIABLE iByteLoop AS INTEGER NO-UNDO. DEFINE VARIABLE iXOResult AS INTEGER NO-UNDO. DEFINE...
  10. redsuitee

    Soap Envelope Parse Error

    OK.. sorry if I put it in the wrong forum.
  11. redsuitee

    Soap Envelope Parse Error

    Hello.. I try to call a procedure using SOAP-UI application. But I have a problem here, it always return error message 'Could not parse the soap envelope.' Where is the problem so that I always got the error? I highly appreciate for your help.. Thanks here is my code <soapenv:Envelope...
  12. redsuitee

    Input-output through

    I need some helps here.. I want to make a communication between 2 programs, let say from Progress 9 to Progress 10.. this is my code in Progress 9 . DEFINE STREAM s1. DEF VAR A AS CHAR INITIAL '123456789'. INPUT-OUTPUT STREAM s1 THROUGH VALUE("C:\OpenEdge\bin\prowin32.exe -p...
  13. redsuitee

    SOAP Fault

    I got this error message : What is it mean? In spite of, I have put the HotelReadRequest element. So anybody can tell me why? thanks
  14. redsuitee

    SOAP Fault

    My Client (WebService's Side) gives me this following XML to call one of his operations. <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> <soapenv:Header> <wsse:Security...
  15. redsuitee

    Consume wsdl ( webservice ) results in xml formatting error

    I get the error message -> A Fatal Error Occurred What is it mean?
  16. redsuitee

    SOAP Fault

    I use this syntax hDoc:CREATE-NODE-NAMESPACE(hXMLns, "http://www.opentravel.org/OTA/2003/05", "xmlns", "ATTRIBUTE").I attach the code -> (*1 or *2) But I get another error now.. and still followed by SOAP faultstring is: A fatal error occured message. Actually I've succeed to create wsse and...
  17. redsuitee

    SOAP Fault

    #UPDATED# I have tried to create the XML above in 'Progress' using X-NODEREF and X-DOCUMENT and save it into a LONGCHAR variable. But I still got same error number 11506. Another information is I omit xmlns="http://www.opentravel.org/OTA/2003/05" at the OTA_ReadRQ node, because 'Progress' will...
  18. redsuitee

    how to connect to a WEBSERVICE from progress using ssl and certificates??????????????

    Re: how to connect to a WEBSERVICE from progress using ssl and certificates?????????? I have succeded to connect to my partner's WebService, even tough they also made some modifications on their side. Thanks for your assistance RealHeavyDude, I really appreciate it..
  19. redsuitee

    error : malformed xml fragment

    ok, I have tried this code DEFINE VARIABLE hDoc AS HANDLE. DEFINE VARIABLE hRoot AS HANDLE. DEFINE VARIABLE hRow AS HANDLE. DEFINE VARIABLE hField AS HANDLE. DEFINE VARIABLE hText AS HANDLE. DEFINE VARIABLE hBuf AS HANDLE. DEFINE VARIABLE hDBFld AS HANDLE. DEFINE...
  20. redsuitee

    error : malformed xml fragment

    it's ok.. I attach the documentation file. May you can help me further :) I've learned how to create XML with ABL but I still can't find how can I send it by longchar variable. thank you for your assistance.
Top