Here is someone else that provided some information on this along with several links to MSDN: http://blog.searyblog.com/
Just in case you don't believe me and want to read up more.
Main Topics
Browse All TopicsHi Guys,
Suppose this is an easy one if you know it. We connect to a service provider using a VBS script like this:
xml_url = <<THEIR CONNECTION URL INCLUDING OUR ACCOUNT USERNAME AND PASSWORD>>
Set objXMLHTTP = CreateObject("MSXML2.Serve
objXMLHTTP.Open "GET", xml_url, false
objXMLHTTP.Send
My question is - does it matter if the URL we connect to is http or https? I realise it would make a difference if we were posting the username and password through a form, but we're not. It's in the querystring:
xml_url = "http://serviceprovider.co
Our service provider tell us that the https:// version would encrypt the password but this is surely incorrect because it is only secure once it hits their secure server.
I thought that the password would still be sent in plain text between the VBS and the service provider - is this correct?
Thanks,
Ellmb.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Here is someone else that provided some information on this along with several links to MSDN: http://blog.searyblog.com/
Just in case you don't believe me and want to read up more.
Hi,
Thanks, I searched around alot before after asking the question but shortly after I found this which also agrees with you.
http://answers.google.com/
Thanks for the quick response.
Ellmb.
Business Accounts
Answer for Membership
by: dworltonPosted on 2007-10-05 at 10:12:39ID: 20023690
Well, if you use https, it would set up an SSL connection and thereby create a secure tunnel in which the data you transfer will be encrypted. Since this secure tunnel must be created BEFORE you can begin interacting with an https page, any information after this initial handshake/configuration should be encrypted (ie your initial request querystrings as well). I would agree with the service provider on this.