Webmaster Forum

Go Back   Webmaster Forum > Scripting/Programming & Debugging > ASP & VBScript Forum
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

ASP & VBScript Forum Need help from a webmaster with ASP or VBScript, you may ask in this forum?

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 06-27-2008, 02:26 PM
Tony Flury Tony Flury is offline
Junior Member
 
Join Date: Jun 2008
Posts: 2
Tony Flury is an unknown quantity at this point
Submit to Clesto Submit to Digg Submit to Reddit Submit to Furl Submit to Del.icio.us Submit to Jeqq Submit to Spurl
Default VB Script ASP page - processing output from another web service

I have a data server which provides is data via a series of XML payloads - and allows queries and input using the same basic XML idea.

What i need to do is write a set of web pages that can interpret and display the XML payloads - call them presenters.

Show how do i write a VBScript ASP that excutes an outgoing http request to another server - and then waits for the response (which it can then process and generate HTML).
Reply With Quote

This ad is part of our Revenue Sharing program
  #2 (permalink)  
Old 07-06-2008, 02:58 AM
pflunk pflunk is offline
Junior Member
 
Join Date: Jul 2008
Location: Houston, TX
Posts: 6
pflunk is an unknown quantity at this point
Submit to Clesto Submit to Digg Submit to Reddit Submit to Furl Submit to Del.icio.us Submit to Jeqq Submit to Spurl
Default

I would recommend using a MSXML2.XMLHTTP object to handle this. Here is an example.

dim xmlHTTP
set XmlHttp = server.createobject("Msxml2.XMLHTTP")
XmlHttp.onreadystatechange = getRef("process")
XmlHttp.open "GET", "http://www.site.com", false
XmlHttp.send()

Sub process()
if xmlHTTP.readyState = 4 then
pageText = xmlHTTP.responseText
end if
end sub
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
writing output text file fedia ASP & VBScript Forum 0 04-13-2008 05:28 PM
Best Web Development Service wasif Show it off & Services 0 01-28-2008 10:27 AM
Coopoon, a new service in white labelling - You will earn money. Subiku Show it off & Services 0 01-27-2008 06:59 PM
Open&PPTP/VPN-Service Hariyazzz Show it off & Services 0 10-08-2007 04:23 PM
About our site reach and service level. Roger123 Show it off & Services 0 10-01-2007 02:44 PM


All times are GMT. The time now is 04:39 AM.


Creative Commons License
Powered by vBulletin Version 3.6.2
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.0.0

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30