[Geoserver-users] Help: Pocket Pc Application

Hi,

Can someone help me, I've written following Sub in VBScript, wich I wrote
for an Pocken PC Application.
My Pocket PC connect to GeoServer by WLAN.
Sub test

Dim xhttp, xmlDoc

Set xhttp = CreateObject("Microsoft.XMLHTTP")

Set xmlDoc=CreateObject("Microsoft.XMLDOM")

'xhttp.open "GET",
"http://192.168.101.1:8080/geoserver/wfs/GetCapabilities?", False

xhttp.setRequestHeader "CONTENT-TYPE", "text/xml"

xmlDoc.async = False

xhttp.send()
xmlDoc.loadXML(xhttp.responseText)

msgBox xmlDoc.xml

End Sub

-> As Response I get Nothing, No ERROR , message Box is empty???

Can somebody tell what's wrong, please???

Best Regards

Eugen

Hmmm... I've never worked with pocket pcs before. I assume you can use
the same code to get other web pages? Like you've tested it with other
pages on the internet? It's just GeoServer that gives you problems? As
far as I know I think that should work, but I don't know VBScript, so I
can't say for sure, and why it is not getting an error.

Chris

On Tue, 22 Feb 2005, Eugen Gass wrote:

Hi,

Can someone help me, I've written following Sub in VBScript, wich I wrote
for an Pocken PC Application.
My Pocket PC connect to GeoServer by WLAN.
Sub test

Dim xhttp, xmlDoc

Set xhttp = CreateObject("Microsoft.XMLHTTP")

Set xmlDoc=CreateObject("Microsoft.XMLDOM")

'xhttp.open "GET",
"http://192.168.101.1:8080/geoserver/wfs/GetCapabilities?", False

xhttp.setRequestHeader "CONTENT-TYPE", "text/xml"

xmlDoc.async = False

xhttp.send()
xmlDoc.loadXML(xhttp.responseText)

msgBox xmlDoc.xml

End Sub

-> As Response I get Nothing, No ERROR , message Box is empty???

Can somebody tell what's wrong, please???

Best Regards

Eugen

-------------------------------------------------------
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
_______________________________________________
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users

--