| Author |
This is a real Challenge ....
|
Nitin Dubey
Ranch Hand
Joined: Oct 30, 2000
Posts: 126
|
|
Hello folks, We r trying to communicate between a VB application and server written in JSP. We are successful in sending the XML Dom object to client. The code we used to send the object to client is : ============= My VB Client ================ Set XMLHTTP = CreateObject("Microsoft.XMLHTTP") XMLHTTP.open "GET", "http://199.199.199.1/hello.jsp", False xmltext = "<magazine>Hello Saradhi</magazine>" Set xmldom = CreateObject("Microsoft.XMLDOM") xmldom.loadXML xmltext XMLHTTP.send xmldom MsgBox XMLHTTP.responseText =========== VB Client Ends ============== Now the problem is how do I get the same object at my JSP page. waiting for replies... nitin
|
 |
 |
|
|
subject: This is a real Challenge ....
|
|
|