i wish download file using indy. problem connecting ssl. please me using https or sftp. procedure tform1.bitbtn1click(sender: tobject); begin idftp1.iohandler := tidssliohandlersocketopenssl.create(idftp1); idftp1.usetls:=utuserequiretls; idftp1.dataportprotection:=ftpdpsprivate; idftp1.host := '127.0.0.1'; idftp1.username := 'ftp'; idftp1.password := '123'; idftp1.port:=21; idssliohandlersocketopenssl1.startssl; try idftp1.connect; idftp1.disconnect; idftp1.free; end; end; you correctly (except fact free component don't create in same code). same https. idhttp1.iohandler := tidssliohandlersocketopenssl.create(); idhttp1.get('https://...'); just note need openssl libraries https://indy.fulgan.com/zip/ssl.zip or version want https://indy.fulgan.com/ssl/ also there difference between sftp , ftps. indy's idftp supports ssl (ftps). can't work sftp (ftp using ssh). if want use sftp, have use ...
soapui doesn't seem dpi-aware , displays small on high dpi screen (tiny text , buttons). other applications running fine (screen resolution 3840 x 2160). version : soapui 5.1.2 os : windows 10 i have tried: configure soapui run "disable display scaling on high dpi settings" - parts of soapui looking bigger , don't display (image) changing resolution changing font size (preferences > editor settings > select font...) therefore assume, soapui pretends dpi-aware, not scale itself. have same issue? this workaround until developers round making version dpi-aware. step 1: add registry key hkey_local_machine\software\microsoft\windows\currentversion\sidebyside\preferexternalmanifest (dword) 1 step 2: add manifest file 'soapui-5.2.1.exe.manifest' in same directory 'soapui-5.2.1.exe' content of manifest file: <?xml version="1.0" encoding="utf-8" standalone="yes"?> <assembly xml...
Comments
Post a Comment