HTTPS connection unix


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users HTTPS connection unix
# 1  
Old 06-18-2004
HTTPS connection unix

Hi,

I have a situation....where I have to make a HTTPS:// connection to the third party web site to grab 5 files from their server.
I am little new to unix.

Can anyone please help me creating the shell script for making this connection and grabing or reading the files from their server to our server.

I will really appreciate any help in this regards.

Thanks
Raj
rkumar28
# 2  
Old 06-20-2004
You'll need a console client that supports SSL.

Debian for example has the 'lynx-ssl' package.

Check if your distro has an SSL-enabled lynx package, the use something like:


lynx --source https://www.domain.com/sslfile.html > sslfile.html

This will fetch https://www.domain.com/sslfile.html and save it as sslfile.html.


Also check the man pages for wget and curl.
# 3  
Old 06-24-2004
You need to install SSL. You can get it at:

http://www.openssl.org/

Then take a look at:

http://dominia.org/djao/wget_ssl.html

Hope this helps.
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Solaris

Need suggestion:- Failed HTTPS transfer to https://supportfiles.sun.com/curl

Hi Guys, I have recently started reciving below Error message Failed HTTPS transfer to https://supportfiles.sun.com/curl whenever I run /usr/local/bin/sudo /opt/SUNWexplo/bin/explorer -P -q -v from all Servers. Looks like the SSL certificate as Expired. Whenever I type... (4 Replies)
Discussion started by: manalisharmabe
4 Replies

2. UNIX for Advanced & Expert Users

Https connection to UNIX DUT failing

HI !! I have this setup where I have Windows machine and a UNIX based DUT . I try to make a https connection from my Win to the DUT giving its IP. But,it is not working (It should do). What do u think the problem is ?? I checked the logs , they flag some writesocket:broken pipe error in... (1 Reply)
Discussion started by: leghorn
1 Replies

3. UNIX and Linux Applications

Problems with wget and https connection

Hi, I have wget for linux but I'm having trouble using it. I am trying to use it with a HTTPS connection to save cookies but it doesn't works. I do: wget --save-cookies=cookies.txt --post-data... (2 Replies)
Discussion started by: mierdatuti
2 Replies

4. Solaris

Solaris 10 ftp connection problem (connection refused, connection timed out)

Hi everyone, I am hoping anyone of you could help me in this weird problem we have in 1 of our Solaris 10 servers. Lately, we have been having some ftp problems in this server. Though it can ping any server within the network, it seems that it can only ftp to a select few. For most servers, the... (4 Replies)
Discussion started by: labdakos
4 Replies

5. UNIX for Dummies Questions & Answers

Get files using https mode in unix scripts

Hello Friends, I have a requirement to connect and get files from a server using https protocol. 1) COuld you please advise on how to establish connection between my server and remote server to get files using https mode. any special procedure apart from FTP ? 2) also give me some code... (5 Replies)
Discussion started by: mohanpadamata
5 Replies

6. UNIX for Dummies Questions & Answers

Pulling a file from Unix box thru https

Hi I have a file called as MSD.DAT. This file is present at a directory on a server. www.ta.ibhsv.somewhere.com/rahdf/MSD.DAT Now, I want to get this file from this server to my Linux box. I need to write a script that uses https to get the file. Please help how to achieve this. ... (3 Replies)
Discussion started by: infyanurag
3 Replies

7. Shell Programming and Scripting

Extracting data from https server with the help of unix shell script

There is a folder which can be accessed through URL by giving a particular Username and Password.Inside the folder there are few excel sheets.The excel sheets/folder need to be imported from there to unix box with the help of unix shell script. Can anyone help me?Does anyone have code for it?... (2 Replies)
Discussion started by: vanur
2 Replies

8. UNIX for Dummies Questions & Answers

file transfer from https to a Unix box

Hi, I want to transfer a file from a https side to an unix machine, somebody can let me know a easy way to do so, A simple script to be put in the unix machine to retrieve the file from the https side Thanks (4 Replies)
Discussion started by: jvjaimes
4 Replies

9. UNIX for Dummies Questions & Answers

File Upload Performance using IE from Windows to Unix via HTTPS

Hi, Is there any performance issue uploading a file using IE from Windows client to UNIX server via HTTPS? Before that, we were using HTTP protocol and everything run smooth Once we change to HTTPS, we might hit the "HTTP 500 Internal server error" Even though this does not happen all the... (1 Reply)
Discussion started by: darontan
1 Replies
Login or Register to Ask a Question