Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello All,
My requirement is to connect to a third party website and fetch the data from that website in qlikview. Can anyone please help me how i can achieve this??
You could try to pass the credentials in the URL, see attached txt.
second possibilty might be to use wget:
1. Load wget from internet
2. Prepare Batchfile with custom information
3. Save batchfile in C:\Program Files (x86)\GnuWin32\bin\wget.exe or with universal batch somewhere in C:
3. Execute Batchfile
eg
cmd.exe /c wget --http-user=XXXXXXXX--http-password=YYYYYYYY--no-check-certificate -E --output-document=$(file) $(vpath);
e.g
wget.exe --no-check-certificate -O d:\1.html--save-cookies=d:\cookies.txt--post-data="AccountName=your_login_here&Password=your_pass_here&action=doLogin&other_post_data_here"
4. Serch Output in: C:\Users\Admin\AppData\Local\VirtualStore\Program Files (x86)\GnuWin32\bin
5. Prepare your QV Script in order to get the infrmation/data in the specified folder updated
6. Thats it