Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

sending xml data to a webserver

Status
Not open for further replies.

gautammalkani

Technical User
Sep 29, 2003
51
US
Hi All

I want to store some xml data in a web server. The xml data is formatted and created in MS excel. I want excel to send the data to a webserver. I have an issue with two things: what is the command to send data? and to log on the webserver, i have to login..is there anyway to hardcode that in Excel as well?

Here is the code of what i have so far:

Sub postASN()
Dim url
Set url = CreateObject("Microsoft.XMLHTTP")
Dim strg, strng As String
strg = ""
strng = ""
Dim dummy As String
dummy = " url.Open "GET", dummy, False
url.send
End Sub
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top