Skip to Main Content

Java EE (Java Enterprise Edition) General Discussion

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

How to get Parameters in a jsp page called by VB program via xmlHttp

843840Apr 14 2008 — edited Apr 17 2008
I 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
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on May 15 2008
Added on Apr 14 2008
6 comments
151 views