- Ashok Kumar Pattanaik
- PowerBuilder
- Tuesday, 16 April 2019 15:30 PM UTC
Hello Sir,
My organisation has a plan to upgrade existing PowerBuilder application from 12.5.2 to PowerBuilder 2017 version in order to communicate to webserver secured with TLS 1.2 and Window 10 compatible.
Our application has around 289 web services using easysoap engine to call webserver . Due to lots of efforts and lack of funding we don't want to convert existing SOAP to restful webservice. Can you please advice/suggest without making any change to existing soap service how can we communicate to webserver secured with TLS 1.2?
I would appreciate if you could provide some sample codes.
Thanks,
Ashok
- Page :
- 1
There are no replies made for this question yet.
However, you are not allowed to reply to this question.
However, you are not allowed to reply to this question.
Although we have migrated to PB2017 R3, but we are not migrating from SOAP based to Restful due to lots of efforts and budgets. As per your comments, can I get sample codes on how manually parse using PBDOM object to web service return data to support TLS 1.2?
Thanks and Regards,
Ashok Kumar Pattanaik
lo_client = Create httpClient
lo_client.SetRequestHeader("Content-Type", "text/xml")
lo_client.sendrequest('POST',ls_url,ls_body)
li_StatusCode = lo_client.GetResponseStatusCode()
ls_ret = lo_client.GetResponseStatusText( )
li_ret = lo_client.getresponsebody( ls_data)