从互联网获取数据
我需要使用用户 ID 和密码从安全 URL (https) 获取数据。我怎样才能实现它。
我可以使用以下命令从普通 URL 访问数据
li_rc = linet_main.GetURL("http://www.webservicex.net/WeatherForecast.asmx?WSDL", luo_data)
提前致谢, 拉梅什。
I need to get the data from a secure URL (https) with a userid and password. How can I implement that.
I am able to access the data from a normal URL using the below command
li_rc = linet_main.GetURL("http://www.webservicex.net/WeatherForecast.asmx?WSDL", luo_data)
Thanks in advance,
Ramesh.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我发现最简单的方法是通过 OLE 使用 XMLHttp 对象。这是 PB 10.5 的导出函数,它使用它来访问加密的 Google 页面(由于其页面不接受它们,因此在帖子部分出现 404,但结果作为示例是有效的)。
将其保存为 f_test_xmlhttps.srf 并导入到 PowerBuilder 中的 pbl 中。这也适用于 HTTP。
The approach I've found easiest is using the XMLHttp object via OLE. Here is an exported function from PB 10.5 that uses it to hit the encrypted Google page (it 404's on the post portion since their page is not accepting them, but the result is valid as an example).
Save that off as f_test_xmlhttps.srf and import into a pbl in PowerBuilder. This also works for HTTP as well.