How to get Parameters in a jsp page called by VB program via xmlHttp
843840Apr 14 2008 — edited Apr 17 2008I have a VB programm sending a request using xmlHttp.
xmlHttp.Open "POST", varTarget, True 'True means asynchronous
xmlHttp.Send xmlSendStr
This worked fine with ASP
the crucial ASP code was:
set xml = server.createObject("MSXML2.DOMDocument")
xml.load(request)
VBData = cstr(xml.getElementsByTagName("value").item(0).firstChild.nodeValue)
now I have a webserver (tomcat) and try to have a simular functionality
but
request.getParameter()
seems not to do the job.
what do I have to do
I am thankfully looking forward to you reply
peter