Open a website

 

Hi,

can I open a website with "https..."

out of my EA?? What dll do I need for that?

 

Hi

Yes, you need use libraries :

import "wininet.dll"


int InternetAttemptConnect(int a0);
int InternetOpenA(string a0, int a1, string a2, string a3, int a4);
int InternetOpenUrlA(int a0, string a1, string a2, int a3, int a4, int a5);
int InternetReadFile(int a0, int& a1[], int a2, int& a3[]);
int InternetCloseHandle(int a0);

 

Can I also use this functions with a php-file which gets some values back??

 
Yes,you can open website page and then read all of this page and gets values that you need.
 

Hi,

thank you for your answer.

Is it also possible to use the http51.dll from the CodeBase??

Another point is, that my communication should run over https/SSL

Lot's of thanks for your help!!

 

I tried to open a website trough

https://www.url.de

with that http51.dll and it works.

Does it mean, that with http51.dll also SSL works??

Reason: