Search results

  1. J

    Calling function from .NET WebBrowser

    Thank you for your reply. I found out that it is possible using this command: chBrowser:WebBrowser:Document:parentWindow:execScript(<command>), since the OCX WebBrowser is using old version of IE. For retrieving return parameter, I write the value in one label and let the progress application...
  2. J

    Calling function from .NET WebBrowser

    Hi everybody, Currently I am developing a program using AppBuilder 10.2B and using OCX namely Microsoft WebBrowser. I am able to access and edit the attributes of the elements (titles, innerHTML of labels, etc.). However, I have not found a way to trigger a function within the WebBrowser. Is it...
  3. J

    Question Import SSL Certificate from CA to AppServer

    Hi all, I have tried the following: I put the files in $DLC/keys then rename the .ppk file into .pem file. I import the the certificate using the pkiutil -import X X.crt. The .pem file now contains the private key and the certificate. -----BEGIN RSA PRIVATE KEY----- Proc-Type: 4,ENCRYPTED...
  4. J

    Question Import SSL Certificate from CA to AppServer

    Hi all, Currently we got project that includes using CA signed SSL Certificate. We received .ppk, .crt and .csr file from our client, which they acquired from GeoTrust. There is no .pk1 nor .pk10 file generated during the process. I wonder if I can use this private key and certificate to import...
  5. J

    Resolved Slow Initial Client Connection with SSL Enabled AppServer

    Hi all, We finally got time to review the code. It turns out that the program is trying to connect to the AppServer without SSL first and then connect with SLL. This is done so that the program can connect to SSL enabled and not SSL enabled AppServer. The connection process without SSL (to SSL...
  6. J

    Resolved Slow Initial Client Connection with SSL Enabled AppServer

    Hm.. That is weird. Is there anything in the appserver's setting that may cause this? We usually use State-Free mode when creating a new AppServer. We only set the Port, PROPATH and startup parameter for the Database setting. Below is the appserver properties: OpenEdge Release 11.3 as of Wed...
  7. J

    Resolved Slow Initial Client Connection with SSL Enabled AppServer

    Hello Cringer, Yes, I am aware that 11.3 is officially retired, but it would be the best if there are solution for this issue. Is it possible that each server using Progress 11.3 experience the same issue when using SSL? I believe there are some setting needed to be changed. We prefer solving...
  8. J

    Resolved Slow Initial Client Connection with SSL Enabled AppServer

    Hello, We are currently using Progress 11.3 for Server (using Linux) and tried to use SSL for the security. However, it takes about 30 seconds for the client (using ABL) to connect to the server (the performance after the connection process is normal). If we do not enable the SSL, then it will...
  9. J

    Question Load Images Using .net

    Hi everyone, We are currently developing a program using .NET and realized that the images cannot be read when we put the images in a .pl file, since .NET has no way to read a .pl file. We could just leave the image files in a folder but the users will have access to delete or replace the...
  10. J

    .net Datagridview Strange Behavior

    Thank you for responding my question. We finally found out the cause of this issue. There was a parameter in .ini setting: "MultitaskingInterval=9999", which can cause that irregular output. The result is now correctly displayed after we comment that parameter.
  11. J

    .net Datagridview Strange Behavior

    We are currently developing new GUI using .NET in Developer Studio 11.6 32 Bit. The problem is when we tried to refresh data several times in the DataGridView, the data do not shown correctly. The "Right Output.png" shows the right output, The "Wrong Output.png" shows the data after several...
  12. J

    Question Localization In Openedge

    Dear all, We are currently developing a desktop application which has multi language support. We are using OpenEdge Developer Studio 11.3 for the development and mainly using class (.cls) not procedures (.p). Is there any library or tools to provide the multi language support? A tool to...
  13. J

    Tomcat and Appserver Agent

    Hi all, I am currently developing a web service using REST Adapter from Progress 11.3 for my mobile application. I am having a problem, when the appserver do something rather time consuming or worst, stucked in an endless loop. When I tried to recall the web service (in this case using web...
  14. J

    Send image through rest adapter

    Thanks a lot for your answer! I am actually create the iOS app natively and not using the progress mobile appBuilder, so there is no way I could send a temp-table with BLOB field in it. Btw. the code "mp = base64-decode(lcFile)." was very helpful. I didn't realise there is "base64-decode/encode"...
  15. J

    Send image through rest adapter

    Hello, I am wondering how I can send image to progress database using the rest adapter. Currently I am developing a mobile app for iOS and sending image would be one of the features. In the database, the images are stored as BLOB, which is not supported by Rest Adapter (CMIIW). The only way I...
  16. J

    Call web service with wsdl

    Thank you for your answer. It pretty much explains how it works.
  17. J

    Call web service with wsdl

    Hi! Thank you for you answer! I didn't know that there is a tool for that. I tried your code, but I had to change the output from this run procedure: "RUN CheckMobilePhone IN hws_memberSoap(INPUT crm_username, INPUT crm_password, INPUT mobilephone, OUTPUT DATASET CheckMobilePhoneResultDset)."...
  18. J

    Call web service with wsdl

    Hallo, I am trying to call a web service with wsdl : http://crm.paramountenterprise.co.id:81/ws_member.asmx?wsdl for example: CheckMobilePhone (http://crmdev.paramountenterprise.co.id:81/ws_member.asmx?op=CheckMobilePhone) The xml that I have generated: ---------------- <soapenv:Envelope...
  19. J

    AppServer - Tomcat - Gateway Timeout

    I have solved this problem. It turns out that there are missing programs called in the program. I thought that the 504 Error was really because of the timeout, but it actually appear if the program has some error.
  20. J

    AppServer - Tomcat - Gateway Timeout

    Hello, I am currently developing a native mobile application (iOS), by creating Web Service using the REST Adapter provided from OpenEdge 11.3 and Tomcat 7 as the Web Server. The GET HTTP works perfectly, but I am currently confused with the POST HTTP. I use a web service to update some data...
Top