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!

Partial Results With MSXML2.ServerXMLHTTP

Status
Not open for further replies.

cnjmorris

Programmer
Jul 31, 2009
1
US
I am using the following function on a .as4 file from a public records site:

Private Function ReturnHTML(sURL)
Dim objXMLHTTP
Set objXMLHTTP = Server.CreateObject("MSXML2.ServerXMLHTTP")
objXMLHTTP.Open "GET", sURL, False
objXMLHTTP.Send
ReturnHTML = objXMLHTTP.responseText
set objXMLHTTP = nothing
End Function


I am only receiving the following:
VOLUSIA COUNTY 24 HOUR ARREST REPORT AS OF 07/22/2009

BOOKING # SEX/RACE/DOB


The complete file looks like below. Why am I only receiving only the first part of the file? What can I do to retrieve the whole file? Status is 200, readystate is 4


VOLUSIA COUNTY 24 HOUR ARREST REPORT AS OF 07/22/2009

BOOKING # SEX/RACE/DOB CASE ACT-PROB
NAME(S) ARST-AGCY/LOCA/DIS SCHEDULE
ADDRESS JUDGE BOND-AMT
CHARGES

WS736013 F/W 060963 CTC0836625MMAES *
KOVACS,KATHERINE LOUISE VCSO/JABH/OAWS
1130 JOSEPHINE ST JDG: SCHUMANN,BELLE 0002500.00
NEW SMYRNA BCH FL 32168 C/6614XDQ 2 VOP DUI (SCHUMANN)
*02 C/4924FJS 8 VOP VIOL DL REST (SCH
*
*
--------------------------------------------------------------------------------
WS737168 F/W 031084 CTC0941646MMAES
ROBERTS,JENNIFER LEIGH SDPD/JABH/INFO
1280 HOLLAND BLVD JDG: FIELDS,DAWN 0000500.00
DELTONA FL 32738 M/DISORDERLY CONDUCT (BS)
--------------------------------------------------------------------------------
WS737202 F/W 061290 CTC0906886MMAWS
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top