• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

This is a real Challenge ....

 
Ranch Hand
Posts: 126
Oracle
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
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
 
reply
    Bookmark Topic Watch Topic
  • New Topic